The patch titled Subject: userfaultfd: remove kernel header include from uapi header has been removed from the -mm tree. Its filename was userfaultfd-remove-kernel-header-include-from-uapi-header.patch This patch was dropped because it was merged into mainline or a subsystem tree ------------------------------------------------------ From: Andre Przywara <andre.przywara@xxxxxxx> Subject: userfaultfd: remove kernel header include from uapi header As include/uapi/linux/userfaultfd.h is a user visible header file, it should not include kernel-exclusive header files. So trying to build the userfaultfd test program from the selftests directory fails, since it contains a reference to linux/compiler.h. As it turns out, that header is not really needed there, so we can simply remove it to fix that issue. Signed-off-by: Andre Przywara <andre.przywara@xxxxxxx> Cc: Andrea Arcangeli <aarcange@xxxxxxxxxx> Cc: Shuah Khan <shuahkh@xxxxxxxxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> --- include/uapi/linux/userfaultfd.h | 2 -- 1 file changed, 2 deletions(-) diff -puN include/uapi/linux/userfaultfd.h~userfaultfd-remove-kernel-header-include-from-uapi-header include/uapi/linux/userfaultfd.h --- a/include/uapi/linux/userfaultfd.h~userfaultfd-remove-kernel-header-include-from-uapi-header +++ a/include/uapi/linux/userfaultfd.h @@ -11,8 +11,6 @@ #include <linux/types.h> -#include <linux/compiler.h> - #define UFFD_API ((__u64)0xAA) /* * After implementing the respective features it will become: _ Patches currently in -mm which might be from andre.przywara@xxxxxxx are -- 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