The patch titled dvb-usb: fix crash in drivers/media/dvb/dvb-usb/cxusb.c has been removed from the -mm tree. Its filename was dvb-usb-fix-crash-in-drivers-media-dvb-dvb-usb-cxusbc.patch This patch was dropped because an updated version will be merged The current -mm tree may be found at http://userweb.kernel.org/~akpm/mmotm/ ------------------------------------------------------ Subject: dvb-usb: fix crash in drivers/media/dvb/dvb-usb/cxusb.c From: "Robert Lowery" <rglowery@xxxxxxxxxxxxxx> fe->dvb->priv is a dvb_usb_adapter, but the callback is expecting a dvb_usb_device. I'm not sure the best way to handle this as tuner-xc2028.c does not know about any dvb-usb code currently. In any case, the following patch seems to get it past the oops until the proper fix is in place. Chris Pascoe <c.pascoe@xxxxxxxxxxxxxx> Mauro Carvalho Chehab <mchehab@xxxxxxxxxxxxx> Cc: <stable@xxxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> --- drivers/media/dvb/dvb-usb/cxusb.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff -puN drivers/media/dvb/dvb-usb/cxusb.c~dvb-usb-fix-crash-in-drivers-media-dvb-dvb-usb-cxusbc drivers/media/dvb/dvb-usb/cxusb.c --- a/drivers/media/dvb/dvb-usb/cxusb.c~dvb-usb-fix-crash-in-drivers-media-dvb-dvb-usb-cxusbc +++ a/drivers/media/dvb/dvb-usb/cxusb.c @@ -565,7 +565,7 @@ static int cxusb_lgh064f_tuner_attach(st static int dvico_bluebird_xc2028_callback(void *ptr, int command, int arg) { - struct dvb_usb_device *d = ptr; + struct dvb_usb_device *d = ((struct dvb_usb_adapter *)ptr)->dev; switch (command) { case XC2028_TUNER_RESET: _ Patches currently in -mm which might be from rglowery@xxxxxxxxxxxxxx are dvb-usb-fix-crash-in-drivers-media-dvb-dvb-usb-cxusbc.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