diff options
author | Mike Frysinger <vapier@gentoo.org> | 2011-05-23 21:45:42 -0400 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2011-05-28 17:02:55 -0400 |
commit | 427472c967977256db42ffbf16f65f2770278b7f (patch) | |
tree | 34fab15c2e1a4a5b7af60481332f22ed442805f6 /arch/blackfin | |
parent | 63917efc4feb856e134eedc9ad7a9810fec12968 (diff) |
Blackfin: wire up new sendmmsg syscall
Signed-off-by: Mike Frysinger <vapier@gentoo.org>
Diffstat (limited to 'arch/blackfin')
-rw-r--r-- | arch/blackfin/include/asm/unistd.h | 3 | ||||
-rw-r--r-- | arch/blackfin/mach-common/entry.S | 1 |
2 files changed, 3 insertions, 1 deletions
diff --git a/arch/blackfin/include/asm/unistd.h b/arch/blackfin/include/asm/unistd.h index 6ff9c411b145..0ccba60b9ccf 100644 --- a/arch/blackfin/include/asm/unistd.h +++ b/arch/blackfin/include/asm/unistd.h | |||
@@ -398,8 +398,9 @@ | |||
398 | #define __NR_clock_adjtime 377 | 398 | #define __NR_clock_adjtime 377 |
399 | #define __NR_syncfs 378 | 399 | #define __NR_syncfs 378 |
400 | #define __NR_setns 379 | 400 | #define __NR_setns 379 |
401 | #define __NR_sendmmsg 380 | ||
401 | 402 | ||
402 | #define __NR_syscall 380 | 403 | #define __NR_syscall 381 |
403 | #define NR_syscalls __NR_syscall | 404 | #define NR_syscalls __NR_syscall |
404 | 405 | ||
405 | /* Old optional stuff no one actually uses */ | 406 | /* Old optional stuff no one actually uses */ |
diff --git a/arch/blackfin/mach-common/entry.S b/arch/blackfin/mach-common/entry.S index dda11ef06be5..225d311c9701 100644 --- a/arch/blackfin/mach-common/entry.S +++ b/arch/blackfin/mach-common/entry.S | |||
@@ -1754,6 +1754,7 @@ ENTRY(_sys_call_table) | |||
1754 | .long _sys_clock_adjtime | 1754 | .long _sys_clock_adjtime |
1755 | .long _sys_syncfs | 1755 | .long _sys_syncfs |
1756 | .long _sys_setns | 1756 | .long _sys_setns |
1757 | .long _sys_sendmmsg /* 380 */ | ||
1757 | 1758 | ||
1758 | .rept NR_syscalls-(.-_sys_call_table)/4 | 1759 | .rept NR_syscalls-(.-_sys_call_table)/4 |
1759 | .long _sys_ni_syscall | 1760 | .long _sys_ni_syscall |