[<prev] [next>] [day] [month] [year] [list]
Message-ID: <Pine.LNX.4.64.0712141717260.28689@sbz-30.cs.Helsinki.FI>
Date: Fri, 14 Dec 2007 17:17:41 +0200 (EET)
From: Pekka J Enberg <penberg@...helsinki.fi>
To: alan@...hat.com, viro@...iv.linux.org.uk, hch@...radead.org,
peterz@...radead.org, linux-kernel@...r.kernel.org,
linux-fsdevel@...r.kernel.org
Subject: [RFC/PATCH 6/8] revoke: wire up i386 system call V7
From: Pekka Enberg <penberg@...helsinki.fi>
Make revokeat system call available to user-space on i386.
[akpm@...ux-foundation.org: fix 32-bit userspace]
Cc: Alan Cox <alan@...hat.com>
Cc: Al Viro <viro@...iv.linux.org.uk>
Cc: Christoph Hellwig <hch@...radead.org>
Cc: Peter Zijlstra <peterz@...radead.org>
Signed-off-by: Pekka Enberg <penberg@...helsinki.fi>
---
arch/x86/ia32/ia32entry.S | 1 +
arch/x86/kernel/syscall_table_32.S | 1 +
include/asm-x86/unistd_32.h | 3 ++-
3 files changed, 4 insertions(+), 1 deletion(-)
Index: 2.6/arch/x86/ia32/ia32entry.S
===================================================================
--- 2.6.orig/arch/x86/ia32/ia32entry.S 2007-11-23 09:58:11.000000000 +0200
+++ 2.6/arch/x86/ia32/ia32entry.S 2007-12-14 16:40:59.000000000 +0200
@@ -726,4 +726,5 @@ .quad compat_sys_utimensat /* 320 */
.quad compat_sys_timerfd
.quad sys_eventfd
.quad sys32_fallocate
+ .quad sys_revokeat /* 325 */
ia32_syscall_end:
Index: 2.6/arch/x86/kernel/syscall_table_32.S
===================================================================
--- 2.6.orig/arch/x86/kernel/syscall_table_32.S 2007-11-23 09:58:11.000000000 +0200
+++ 2.6/arch/x86/kernel/syscall_table_32.S 2007-12-14 16:40:59.000000000 +0200
@@ -324,3 +324,4 @@ .long sys_utimensat /* 320 */
.long sys_timerfd
.long sys_eventfd
.long sys_fallocate
+ .long sys_revokeat /* 325 */
Index: 2.6/include/asm-x86/unistd_32.h
===================================================================
--- 2.6.orig/include/asm-x86/unistd_32.h 2007-11-23 09:58:11.000000000 +0200
+++ 2.6/include/asm-x86/unistd_32.h 2007-12-14 16:40:59.000000000 +0200
@@ -330,10 +330,11 @@ #define __NR_utimensat 320
#define __NR_timerfd 322
#define __NR_eventfd 323
#define __NR_fallocate 324
+#define __NR_revokeat 325
#ifdef __KERNEL__
-#define NR_syscalls 325
+#define NR_syscalls 326
#define __ARCH_WANT_IPC_PARSE_VERSION
#define __ARCH_WANT_OLD_READDIR
--
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