The patch titled Subject: syscalls: make kcmp syscall available for all architectures has been removed from the -mm tree. Its filename was syscalls-make-kcmp-syscall-available-for-all-architectures.patch This patch was dropped because an updated version will be merged ------------------------------------------------------ From: Heiko Carstens <heiko.carstens@xxxxxxxxxx> Subject: syscalls: make kcmp syscall available for all architectures Remove the x86 dependency, since the system call is not architecture dependent. Also add a ptrace.h include, so it compiles at least also on s390. Signed-off-by: Heiko Carstens <heiko.carstens@xxxxxxxxxx> Reviewed-by: Cyrill Gorcunov <gorcunov@xxxxxxxxxx> Cc: Michal Marek <mmarek@xxxxxxx> Cc: "H. Peter Anvin" <hpa@xxxxxxxxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> --- kernel/Makefile | 4 +--- kernel/kcmp.c | 1 + 2 files changed, 2 insertions(+), 3 deletions(-) diff -puN kernel/Makefile~syscalls-make-kcmp-syscall-available-for-all-architectures kernel/Makefile --- a/kernel/Makefile~syscalls-make-kcmp-syscall-available-for-all-architectures +++ a/kernel/Makefile @@ -25,9 +25,7 @@ endif obj-y += sched/ obj-y += power/ -ifeq ($(CONFIG_CHECKPOINT_RESTORE),y) -obj-$(CONFIG_X86) += kcmp.o -endif +obj-$(CONFIG_CHECKPOINT_RESTORE) += kcmp.o obj-$(CONFIG_FREEZER) += freezer.o obj-$(CONFIG_PROFILING) += profile.o obj-$(CONFIG_STACKTRACE) += stacktrace.o diff -puN kernel/kcmp.c~syscalls-make-kcmp-syscall-available-for-all-architectures kernel/kcmp.c --- a/kernel/kcmp.c~syscalls-make-kcmp-syscall-available-for-all-architectures +++ a/kernel/kcmp.c @@ -4,6 +4,7 @@ #include <linux/string.h> #include <linux/random.h> #include <linux/module.h> +#include <linux/ptrace.h> #include <linux/init.h> #include <linux/errno.h> #include <linux/cache.h> _ Patches currently in -mm which might be from heiko.carstens@xxxxxxxxxx are checksyscalls-fix-here-document-handling.patch linux-next.patch thp-x86-introduce-have_arch_transparent_hugepage.patch thp-remove-assumptions-on-pgtable_t-type.patch thp-introduce-pmdp_invalidate.patch thp-make-madv_hugepage-check-for-mm-def_flags.patch thp-s390-thp-splitting-backend-for-s390.patch thp-s390-thp-pagetable-pre-allocation-for-s390.patch thp-s390-disable-thp-for-kvm-host-on-s390.patch thp-s390-architecture-backend-for-thp-on-s390.patch thp-s390-architecture-backend-for-thp-on-s390-fix.patch -- To unsubscribe from this list: send the line "unsubscribe linux-arch" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html