The patch titled Subject: drivers/hid/uhid.c: check write() bitness using in_compat_syscall has been removed from the -mm tree. Its filename was uhid-check-write-bitness-using-in_compat_syscall.patch This patch was dropped because it was merged into mainline or a subsystem tree ------------------------------------------------------ From: Andy Lutomirski <luto@xxxxxxxxxx> Subject: drivers/hid/uhid.c: check write() bitness using in_compat_syscall uhid changes the format expected in write() depending on bitness. It should check the syscall bitness directly. Signed-off-by: Andy Lutomirski <luto@xxxxxxxxxx> Cc: David Herrmann <dh.herrmann@xxxxxxxxxxxxxx> Acked-by: Jiri Kosina <jkosina@xxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> --- drivers/hid/uhid.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff -puN drivers/hid/uhid.c~uhid-check-write-bitness-using-in_compat_syscall drivers/hid/uhid.c --- a/drivers/hid/uhid.c~uhid-check-write-bitness-using-in_compat_syscall +++ a/drivers/hid/uhid.c @@ -384,7 +384,7 @@ struct uhid_create_req_compat { static int uhid_event_from_user(const char __user *buffer, size_t len, struct uhid_event *event) { - if (is_compat_task()) { + if (in_compat_syscall()) { u32 type; if (get_user(type, buffer)) _ Patches currently in -mm which might be from luto@xxxxxxxxxx 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