lists.openwall.net   lists  /  announce  owl-users  owl-dev  john-users  john-dev  passwdqc-users  yescrypt  popa3d-users  /  oss-security  kernel-hardening  musl  sabotage  tlsify  passwords  /  crypt-dev  xvendor  /  Bugtraq  Full-Disclosure  linux-kernel  linux-netdev  linux-ext4  linux-hardening  linux-cve-announce  PHC 
Open Source and information security mailing list archives
 
Hash Suite: Windows password security audit tool. GUI, reports in PDF.
[<prev] [next>] [day] [month] [year] [list]
Date:	Wed, 06 Jun 2007 15:30:31 -0700
From:	Davide Libenzi <davidel@...ilserver.org>
To:	Linux Kernel Mailing List <linux-kernel@...r.kernel.org>
Cc:	Linus Torvalds <torvalds@...ux-foundation.org>,
	Andrew Morton <akpm@...ux-foundation.org>,
	Ulrich Drepper <drepper@...hat.com>,
	Ingo Molnar <mingo@...e.hu>, Eric Dumazet <dada1@...mosbay.com>
Subject: [patch 8/8] fdmap v2 - wire sys_socket2 to x86-64

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


Signed-off-by: Davide Libenzi <davidel@...ilserver.org>


- 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 majordomo@...r.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Please read the FAQ at  http://www.tux.org/lkml/

Powered by blists - more mailing lists

Powered by Openwall GNU/*/Linux Powered by OpenVZ