The patch titled revoke: wire up i386 system calls has been added to the -mm tree. Its filename is revoke-wire-up-i386-system-calls.patch *** Remember to use Documentation/SubmitChecklist when testing your code *** See http://www.zip.com.au/~akpm/linux/patches/stuff/added-to-mm.txt to find out what to do about this ------------------------------------------------------ Subject: revoke: wire up i386 system calls From: Pekka Enberg <penberg@xxxxxxxxxxxxxx> Make revokeat and frevoke system calls available to user-space on i386. Acked-by: Alan Cox <alan@xxxxxxxxxx> Signed-off-by: Pekka Enberg <penberg@xxxxxxxxxxxxxx> Cc: Christoph Hellwig <hch@xxxxxx> Cc: Michael Kerrisk <mtk-manpages@xxxxxxx> Cc: Andi Kleen <ak@xxxxxxx> Cc: <linux-arch@xxxxxxxxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> --- arch/i386/kernel/syscall_table.S | 2 ++ include/asm-i386/unistd.h | 4 +++- 2 files changed, 5 insertions(+), 1 deletion(-) diff -puN arch/i386/kernel/syscall_table.S~revoke-wire-up-i386-system-calls arch/i386/kernel/syscall_table.S --- a/arch/i386/kernel/syscall_table.S~revoke-wire-up-i386-system-calls +++ a/arch/i386/kernel/syscall_table.S @@ -320,3 +320,5 @@ ENTRY(sys_call_table) .long sys_getcpu .long sys_epoll_pwait .long sys_lutimesat /* 320 */ + .long sys_revokeat + .long sys_frevoke diff -puN include/asm-i386/unistd.h~revoke-wire-up-i386-system-calls include/asm-i386/unistd.h --- a/include/asm-i386/unistd.h~revoke-wire-up-i386-system-calls +++ a/include/asm-i386/unistd.h @@ -326,10 +326,12 @@ #define __NR_getcpu 318 #define __NR_epoll_pwait 319 #define __NR_lutimesat 320 +#define __NR_revokeat 321 +#define __NR_frevoke 322 #ifdef __KERNEL__ -#define NR_syscalls 321 +#define NR_syscalls 323 #define __ARCH_WANT_IPC_PARSE_VERSION #define __ARCH_WANT_OLD_READDIR _ Patches currently in -mm which might be from penberg@xxxxxxxxxxxxxx are slab-introduce-krealloc.patch slab-introduce-krealloc-fix.patch unionfs-fix-slab-abuses-with-krealloc.patch slab-ensure-cache_alloc_refill-terminates.patch module-use-krealloc.patch slab-use-cpu_lock_.patch revoke-special-mmap-handling.patch revoke-core-code.patch revoke-support-for-ext2-and-ext3.patch revoke-add-documentation.patch revoke-wire-up-i386-system-calls.patch slab-leaks3-default-y.patch - To unsubscribe from this list: send the line "unsubscribe mm-commits" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html