The patch titled Subject: fs/ioctl: remove unnecessary __user annotation has been added to the -mm tree. Its filename is fs-ioctl-remove-unnecessary-__user-annotation.patch This patch should soon appear at https://ozlabs.org/~akpm/mmots/broken-out/fs-ioctl-remove-unnecessary-__user-annotation.patch and later at https://ozlabs.org/~akpm/mmotm/broken-out/fs-ioctl-remove-unnecessary-__user-annotation.patch Before you just go and hit "reply", please: a) Consider who else should be cc'ed b) Prefer to cc a suitable mailing list as well c) Ideally: find the original patch on the mailing list and do a reply-to-all to that, adding suitable additional cc's *** Remember to use Documentation/process/submit-checklist.rst when testing your code *** The -mm tree is included into linux-next and is updated there every 3-4 working days ------------------------------------------------------ From: Amit Daniel Kachhap <amit.kachhap@xxxxxxx> Subject: fs/ioctl: remove unnecessary __user annotation __user annotations are used by the checker (e.g sparse) to mark user pointers. However here __user is applied to a struct directly, without a pointer being directly involved. Although the presence of __user does not cause sparse to emit a warning, __user should be removed for consistency with other uses of offsetof(). Note: No functional changes intended. Link: https://lkml.kernel.org/r/20211122101256.7875-1-amit.kachhap@xxxxxxx Signed-off-by: Amit Daniel Kachhap <amit.kachhap@xxxxxxx> Cc: Vincenzo Frascino <Vincenzo.Frascino@xxxxxxx> Cc: Kevin Brodsky <Kevin.Brodsky@xxxxxxx> Cc: Al Viro <viro@xxxxxxxxxxxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> --- fs/ioctl.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) --- a/fs/ioctl.c~fs-ioctl-remove-unnecessary-__user-annotation +++ a/fs/ioctl.c @@ -430,7 +430,7 @@ static int ioctl_file_dedupe_range(struc goto out; } - size = offsetof(struct file_dedupe_range __user, info[count]); + size = offsetof(struct file_dedupe_range, info[count]); if (size > PAGE_SIZE) { ret = -ENOMEM; goto out; _ Patches currently in -mm which might be from amit.kachhap@xxxxxxx are fs-ioctl-remove-unnecessary-__user-annotation.patch