Remove duplicated syscall entry. This likely affects compilation with older GCC's (2.95.x), since in arch/x86_64/kernel/syscall.c this will result in assigning twice the same array element.
By experience, this works with newer GCC's but not with 2.95.3/4. Signed-off-by: Paolo 'Blaisorblade' Giarrusso <[EMAIL PROTECTED]> --- linux-2.6.11-paolo/include/asm-x86_64/unistd.h | 2 -- 1 files changed, 2 deletions(-) diff -puN include/asm-x86_64/unistd.h~remove-dup-sc include/asm-x86_64/unistd.h --- linux-2.6.11/include/asm-x86_64/unistd.h~remove-dup-sc 2005-03-29 19:52:55.000000000 +0200 +++ linux-2.6.11-paolo/include/asm-x86_64/unistd.h 2005-03-29 19:53:12.000000000 +0200 @@ -533,8 +533,6 @@ __SYSCALL(__NR_tgkill, sys_tgkill) __SYSCALL(__NR_utimes, sys_utimes) #define __NR_vserver 236 __SYSCALL(__NR_vserver, sys_ni_syscall) -#define __NR_vserver 236 -__SYSCALL(__NR_vserver, sys_ni_syscall) #define __NR_mbind 237 __SYSCALL(__NR_mbind, sys_mbind) #define __NR_set_mempolicy 238 _ - To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to [EMAIL PROTECTED] More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/

