The patch titled Subject: userfaultfd: fix UFFDIO_CONTINUE ioctl request definition has been removed from the -mm tree. Its filename was userfaultfd-fix-uffdio_continue-ioctl-request-definition.patch This patch was dropped because an alternative patch was merged ------------------------------------------------------ From: Gleb Fotengauer-Malinovskiy <glebfm@xxxxxxxxxxxx> Subject: userfaultfd: fix UFFDIO_CONTINUE ioctl request definition This ioctl request reads from uffdio_continue structure which justifies _IOC_READ flag. See NOTEs in include/uapi/asm-generic/ioctl.h for more information. Link: https://lkml.kernel.org/r/20210601143432.1002481-1-glebfm@xxxxxxxxxxxx Link: https://lkml.kernel.org/r/20210531140146.481553-1-glebfm@xxxxxxxxxxxx Fixes: f619147104c8 ("userfaultfd: add UFFDIO_CONTINUE ioctl") Signed-off-by: Gleb Fotengauer-Malinovskiy <glebfm@xxxxxxxxxxxx> Acked-by: Peter Xu <peterx@xxxxxxxxxx> Reviewed-by: Axel Rasmussen <axelrasmussen@xxxxxxxxxx> Reviewed-by: Dmitry V. Levin <ldv@xxxxxxxxxxxx> Cc: Daniel Colascione <dancol@xxxxxxxxxx> Cc: Lokesh Gidra <lokeshgidra@xxxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> --- include/uapi/linux/userfaultfd.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) --- a/include/uapi/linux/userfaultfd.h~userfaultfd-fix-uffdio_continue-ioctl-request-definition +++ a/include/uapi/linux/userfaultfd.h @@ -81,8 +81,8 @@ struct uffdio_zeropage) #define UFFDIO_WRITEPROTECT _IOWR(UFFDIO, _UFFDIO_WRITEPROTECT, \ struct uffdio_writeprotect) -#define UFFDIO_CONTINUE _IOR(UFFDIO, _UFFDIO_CONTINUE, \ - struct uffdio_continue) +#define UFFDIO_CONTINUE _IOWR(UFFDIO, _UFFDIO_CONTINUE, \ + struct uffdio_continue) /* read() structure */ struct uffd_msg { _ Patches currently in -mm which might be from glebfm@xxxxxxxxxxxx are