The patch titled x86_64: hide cond_syscall behind __KERNEL__ has been removed from the -mm tree. Its filename was x86_64-hide-cond_syscall-behind-__kernel__.patch This patch was dropped because it was merged into mainline or a subsystem tree ------------------------------------------------------ Subject: x86_64: hide cond_syscall behind __KERNEL__ From: Mike Frysinger <vapier@xxxxxxxxxx> This brings x86_64 into line with all other architectures by only defining cond_syscall() when __KERNEL__ is defined. Signed-off-by: Mike Frysinger <vapier@xxxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> --- include/asm-x86_64/unistd.h | 2 ++ 1 files changed, 2 insertions(+) diff -puN include/asm-x86_64/unistd.h~x86_64-hide-cond_syscall-behind-__kernel__ include/asm-x86_64/unistd.h --- a/include/asm-x86_64/unistd.h~x86_64-hide-cond_syscall-behind-__kernel__ +++ a/include/asm-x86_64/unistd.h @@ -676,6 +676,7 @@ asmlinkage long sys_rt_sigaction(int sig #endif /* __KERNEL__ */ #endif /* __NO_STUBS */ +#ifdef __KERNEL__ /* * "Conditional" syscalls * @@ -683,5 +684,6 @@ asmlinkage long sys_rt_sigaction(int sig * but it doesn't work on all toolchains, so we just do it by hand */ #define cond_syscall(x) asm(".weak\t" #x "\n\t.set\t" #x ",sys_ni_syscall") +#endif /* __KERNEL__ */ #endif /* _ASM_X86_64_UNISTD_H_ */ _ Patches currently in -mm which might be from vapier@xxxxxxxxxx are clean-modulessymvers-in-external-module-dirs.patch printk-add-interfaces-for-external-access-to-the-log-buffer.patch printk-add-interfaces-for-external-access-to-the-log-buffer-fix.patch printk-add-interfaces-for-external-access-to-the-log-buffer-fix-2.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