aboutsummaryrefslogtreecommitdiffstats
path: root/arch
diff options
context:
space:
mode:
authorMichal Simek <michal.simek@xilinx.com>2014-08-07 15:59:05 +0200
committerMichal Simek <michal.simek@xilinx.com>2014-08-21 10:07:05 +0200
commit53133453a9f791dff5b6403bc2f1208b474ae792 (patch)
tree013fc2feecaf7ddb53edcdce1e4f91ca1ec421af /arch
parentmicroblaze: Wire-up seccomp syscall (diff)
downloadlinux-dev-53133453a9f791dff5b6403bc2f1208b474ae792.tar.xz
linux-dev-53133453a9f791dff5b6403bc2f1208b474ae792.zip
microblaze: Wire-up getrandom syscall
Add new getrandom syscall. Signed-off-by: Michal Simek <michal.simek@xilinx.com>
Diffstat (limited to 'arch')
-rw-r--r--arch/microblaze/include/uapi/asm/unistd.h1
-rw-r--r--arch/microblaze/kernel/syscall_table.S1
2 files changed, 2 insertions, 0 deletions
diff --git a/arch/microblaze/include/uapi/asm/unistd.h b/arch/microblaze/include/uapi/asm/unistd.h
index 3fafcd25b3b4..ad5526ad1670 100644
--- a/arch/microblaze/include/uapi/asm/unistd.h
+++ b/arch/microblaze/include/uapi/asm/unistd.h
@@ -400,5 +400,6 @@
#define __NR_sched_getattr 382
#define __NR_renameat2 383
#define __NR_seccomp 384
+#define __NR_getrandom 385
#endif /* _UAPI_ASM_MICROBLAZE_UNISTD_H */
diff --git a/arch/microblaze/kernel/syscall_table.S b/arch/microblaze/kernel/syscall_table.S
index 342da7ebd80a..c7c806db61ce 100644
--- a/arch/microblaze/kernel/syscall_table.S
+++ b/arch/microblaze/kernel/syscall_table.S
@@ -385,3 +385,4 @@ ENTRY(sys_call_table)
.long sys_sched_getattr
.long sys_renameat2
.long sys_seccomp
+ .long sys_getrandom /* 385 */