From: Paul Mundt Date: Fri, 20 Jul 2007 03:27:09 +0000 (+0900) Subject: sh: Wire up fallocate() syscall. X-Git-Url: http://git.osdn.net/view?a=commitdiff_plain;h=0c99adb0a6dfe292842a8142b48e494d7731f5fe;p=sagit-ice-cold%2Fkernel_xiaomi_msm8998.git sh: Wire up fallocate() syscall. Signed-off-by: Paul Mundt --- diff --git a/arch/sh/kernel/syscalls.S b/arch/sh/kernel/syscalls.S index ff5656e60c05..91fb7024e06f 100644 --- a/arch/sh/kernel/syscalls.S +++ b/arch/sh/kernel/syscalls.S @@ -358,3 +358,4 @@ ENTRY(sys_call_table) .long sys_signalfd .long sys_timerfd .long sys_eventfd + .long sys_fallocate diff --git a/include/asm-sh/unistd.h b/include/asm-sh/unistd.h index 77bcb09d6ac8..b182b1cb05fd 100644 --- a/include/asm-sh/unistd.h +++ b/include/asm-sh/unistd.h @@ -332,8 +332,9 @@ #define __NR_signalfd 321 #define __NR_timerfd 322 #define __NR_eventfd 323 +#define __NR_fallocate 324 -#define NR_syscalls 324 +#define NR_syscalls 325 #ifdef __KERNEL__