In the resume path of a block driver GFP_NOIO must be used to avoid a possible deadlock. The onetouch subdriver of storage violates the requirement. Signed-off-by: Oliver Neukum <oliver@xxxxxxxxxx> Hi can this still go in? Regards Oliver -- commit e5e4ae0548bc4bf20696f42ff2cd7c8c4dd13757 Author: Oliver Neukum <oliver@xxxxxxxxxx> Date: Wed Aug 26 19:45:11 2009 +0200 usb:storage: onetouch must use GFP_NOIO in resume path diff --git a/drivers/usb/storage/onetouch.c b/drivers/usb/storage/onetouch.c index 380233b..80e65f2 100644 --- a/drivers/usb/storage/onetouch.c +++ b/drivers/usb/storage/onetouch.c @@ -163,7 +163,7 @@ static void usb_onetouch_pm_hook(struct us_data *us, int action) usb_kill_urb(onetouch->irq); break; case US_RESUME: - if (usb_submit_urb(onetouch->irq, GFP_KERNEL) != 0) + if (usb_submit_urb(onetouch->irq, GFP_NOIO) != 0) dev_err(&onetouch->irq->dev->dev, "usb_submit_urb failed\n"); break; -- To unsubscribe from this list: send the line "unsubscribe linux-usb" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html