Skip to content

Commit f8d08a1

Browse files
committed
Merge tag 'microblaze-3.17-rc2' of git://git.monstr.eu/linux-2.6-microblaze
Pull microblaze update from Michal Simek: "Wire-up seccomp/getrandom/memfd_create syscalls" * tag 'microblaze-3.17-rc2' of git://git.monstr.eu/linux-2.6-microblaze: microblaze: Wire-up memfd_create syscall microblaze: Wire-up getrandom syscall microblaze: Wire-up seccomp syscall
2 parents 372b1db + 83c43c4 commit f8d08a1

File tree

2 files changed

+6
-0
lines changed

2 files changed

+6
-0
lines changed

arch/microblaze/include/uapi/asm/unistd.h

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -399,5 +399,8 @@
399399
#define __NR_sched_setattr 381
400400
#define __NR_sched_getattr 382
401401
#define __NR_renameat2 383
402+
#define __NR_seccomp 384
403+
#define __NR_getrandom 385
404+
#define __NR_memfd_create 386
402405

403406
#endif /* _UAPI_ASM_MICROBLAZE_UNISTD_H */

arch/microblaze/kernel/syscall_table.S

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -384,3 +384,6 @@ ENTRY(sys_call_table)
384384
.long sys_sched_setattr
385385
.long sys_sched_getattr
386386
.long sys_renameat2
387+
.long sys_seccomp
388+
.long sys_getrandom /* 385 */
389+
.long sys_memfd_create

0 commit comments

Comments
 (0)