From: OGAWA Hirofumi On i386, we don't use sys_ prefix for __NR_*. This patch removes it. [FWIW, _syscall*() macros will generate foo() instead of sys_foo().] Signed-off-by: OGAWA Hirofumi Signed-off-by: Andrew Morton --- include/asm-i386/unistd.h | 4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-) diff -puN include/asm-i386/unistd.h~remove-sys_-prefix-of-new-syscalls-from-__nr_sys_ include/asm-i386/unistd.h --- devel/include/asm-i386/unistd.h~remove-sys_-prefix-of-new-syscalls-from-__nr_sys_ 2006-04-01 16:54:26.000000000 -0800 +++ devel-akpm/include/asm-i386/unistd.h 2006-04-01 16:54:26.000000000 -0800 @@ -318,8 +318,8 @@ #define __NR_unshare 310 #define __NR_set_robust_list 311 #define __NR_get_robust_list 312 -#define __NR_sys_splice 313 -#define __NR_sys_sync_file_range 314 +#define __NR_splice 313 +#define __NR_sync_file_range 314 #define NR_syscalls 315 _