diff options
author | Paul Mundt <lethal@linux-sh.org> | 2009-12-11 15:29:31 +0900 |
---|---|---|
committer | Paul Mundt <lethal@linux-sh.org> | 2009-12-11 15:29:31 +0900 |
commit | c89fbd3987d058fad3ea072aab68adfbdd13e498 (patch) | |
tree | 664ec0fcf8074e87d6384c35025d1b459b795923 /arch/sh/include/asm/unistd_64.h | |
parent | d580cd96c8ee0c2647b810a2a8762cf631a5f97b (diff) | |
download | op-kernel-dev-c89fbd3987d058fad3ea072aab68adfbdd13e498.zip op-kernel-dev-c89fbd3987d058fad3ea072aab68adfbdd13e498.tar.gz |
sh: Wire up recvmmsg syscall.
The stub already existed in the _64 syscall table, but was lacking a
__NR_recvmmsg definition, while it was absent entirely for _32 variants.
Signed-off-by: Paul Mundt <lethal@linux-sh.org>
Diffstat (limited to 'arch/sh/include/asm/unistd_64.h')
-rw-r--r-- | arch/sh/include/asm/unistd_64.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/arch/sh/include/asm/unistd_64.h b/arch/sh/include/asm/unistd_64.h index 343ce8f..3e7645d 100644 --- a/arch/sh/include/asm/unistd_64.h +++ b/arch/sh/include/asm/unistd_64.h @@ -385,10 +385,11 @@ #define __NR_pwritev 362 #define __NR_rt_tgsigqueueinfo 363 #define __NR_perf_event_open 364 +#define __NR_recvmmsg 365 #ifdef __KERNEL__ -#define NR_syscalls 365 +#define NR_syscalls 366 #define __ARCH_WANT_IPC_PARSE_VERSION #define __ARCH_WANT_OLD_READDIR |