Wire the new sys_socket2 system call to the x86-64 architecture.

Signed-off-by: Davide Libenzi <[EMAIL PROTECTED]>


- Davide


Index: linux-2.6.mod/arch/x86_64/ia32/ia32entry.S
===================================================================
--- linux-2.6.mod.orig/arch/x86_64/ia32/ia32entry.S     2007-06-06 
13:18:01.000000000 -0700
+++ linux-2.6.mod/arch/x86_64/ia32/ia32entry.S  2007-06-06 13:19:19.000000000 
-0700
@@ -720,4 +720,5 @@
        .quad compat_sys_timerfd
        .quad sys_eventfd
        .quad sys_nonseqfd
+       .quad sys_socket2               /* 325 */
 ia32_syscall_end:
Index: linux-2.6.mod/include/asm-x86_64/unistd.h
===================================================================
--- linux-2.6.mod.orig/include/asm-x86_64/unistd.h      2007-06-06 
13:18:01.000000000 -0700
+++ linux-2.6.mod/include/asm-x86_64/unistd.h   2007-06-06 13:19:19.000000000 
-0700
@@ -632,6 +632,8 @@
 __SYSCALL(__NR_eventfd, sys_eventfd)
 #define __NR_nonseqfd          284
 __SYSCALL(__NR_nonseqfd, sys_nonseqfd)
+#define __NR_socket2           285
+__SYSCALL(__NR_socket2, sys_socket2)
 
 #ifndef __NO_STUBS
 #define __ARCH_WANT_OLD_READDIR
Index: linux-2.6.mod/kernel/sys_ni.c
===================================================================
--- linux-2.6.mod.orig/kernel/sys_ni.c  2007-06-06 13:18:01.000000000 -0700
+++ linux-2.6.mod/kernel/sys_ni.c       2007-06-06 13:19:19.000000000 -0700
@@ -34,6 +34,7 @@
 cond_syscall(sys_recvfrom);
 cond_syscall(sys_recv);
 cond_syscall(sys_socket);
+cond_syscall(sys_socket2);
 cond_syscall(sys_setsockopt);
 cond_syscall(sys_getsockopt);
 cond_syscall(sys_shutdown);

-
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/

Reply via email to