From: Michal Simek Date: Thu, 16 Apr 2009 09:29:13 +0000 (+0200) Subject: microblaze: Add missing preadv and pwritev syscalls X-Git-Tag: v3.12-rc1~14738^2~10 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=df4f3eb7c318e34899e9499bc5c9295690f7a106;p=kernel%2Fkernel-generic.git microblaze: Add missing preadv and pwritev syscalls Signed-off-by: Michal Simek --- diff --git a/arch/microblaze/include/asm/unistd.h b/arch/microblaze/include/asm/unistd.h index d9d3903..b5e2f5f 100644 --- a/arch/microblaze/include/asm/unistd.h +++ b/arch/microblaze/include/asm/unistd.h @@ -378,8 +378,10 @@ #define __NR_sendmsg 360 /* new */ #define __NR_recvmsg 361 /* new */ #define __NR_accept04 362 /* new */ +#define __NR_preadv 363 /* new */ +#define __NR_pwritev 364 /* new */ -#define __NR_syscalls 363 +#define __NR_syscalls 365 #ifdef __KERNEL__ #ifndef __ASSEMBLY__ diff --git a/arch/microblaze/kernel/syscall_table.S b/arch/microblaze/kernel/syscall_table.S index 529b0db..3bb42ec 100644 --- a/arch/microblaze/kernel/syscall_table.S +++ b/arch/microblaze/kernel/syscall_table.S @@ -363,3 +363,5 @@ ENTRY(sys_call_table) .long sys_sendmsg /* 360 */ .long sys_recvmsg .long sys_ni_syscall + .long sys_ni_syscall + .long sys_ni_syscall