The patch titled dvb-usb-remote: fix oops when changing keymap has been added to the -mm tree. Its filename is dvb-usb-remote-fix-oops-when-changing-keymap.patch *** Remember to use Documentation/SubmitChecklist when testing your code *** See http://www.zip.com.au/~akpm/linux/patches/stuff/added-to-mm.txt to find out what to do about this ------------------------------------------------------ Subject: dvb-usb-remote: fix oops when changing keymap From: Olaf Kirch <olaf.kirch@xxxxxxxxxx> DVB USB remotes do not support changing keycode maps but set input_dev->keycodesize and input_dev->keycodemax without setting input_dev->keycode. This causes kernel oops when user tries to look up (or change) current keymap. While the proper fix would be to make remotes handle keymap changes we'll just remove keycodemax and keycodesize initialization so EVIOCGKEYCODE and EVIOCSKEYCODE will simply return -EINVAL. http://bugzilla.kernel.org/show_bug.cgi?id=8312 Signed-off-by: Olaf Kirch <olaf.kirch@xxxxxxxxxx> Signed-off-by: Dmitry Torokhov <dtor@xxxxxxx> Cc: Mauro Carvalho Chehab <mchehab@xxxxxxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> --- drivers/media/dvb/dvb-usb/dvb-usb-remote.c | 2 -- 1 files changed, 2 deletions(-) diff -puN drivers/media/dvb/dvb-usb/dvb-usb-remote.c~dvb-usb-remote-fix-oops-when-changing-keymap drivers/media/dvb/dvb-usb/dvb-usb-remote.c --- a/drivers/media/dvb/dvb-usb/dvb-usb-remote.c~dvb-usb-remote-fix-oops-when-changing-keymap +++ a/drivers/media/dvb/dvb-usb/dvb-usb-remote.c @@ -107,8 +107,6 @@ int dvb_usb_remote_init(struct dvb_usb_d return -ENOMEM; input_dev->evbit[0] = BIT(EV_KEY); - input_dev->keycodesize = sizeof(unsigned char); - input_dev->keycodemax = KEY_MAX; input_dev->name = "IR-receiver inside an USB DVB receiver"; input_dev->phys = d->rc_phys; usb_to_input_id(d->udev, &input_dev->id); _ Patches currently in -mm which might be from olaf.kirch@xxxxxxxxxx are dvb-usb-remote-fix-oops-when-changing-keymap.patch dm-call-clone_init-early.patch dm-do-not-access-the-bio-after-generic_make_request.patch dm-get-rid-of-first_clone-in-dm-crypt.patch dm-allocate-smaller-clones.patch - 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