Subject: [PATCH 008/008] [RESUBMIT2] USB: serial: suppress log entry From: Elina Pasheva <epasheva@xxxxxxxxxxxxxxxxxx> The following is summary of changes we have made to sierra.c driver in [PATCH 008/008] from the series dealing with improving urb handling: - Suppress an entry in logs by not re-submitting an urb when usb_submit_urb() returns -EPERM, as this shows that usb_kill_urb() is running (as suggested by Oliver Neukum ) Signed-off-by: Elina Pasheva <epasheva@xxxxxxxxxxxxxxxxxx> --- drivers/usb/serial/sierra.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) --- a/drivers/usb/serial/sierra.c 2009-05-22 14:47:09.000000000 -0700 +++ b/drivers/usb/serial/sierra.c 2009-05-22 14:55:01.000000000 -0700 @@ -582,7 +582,8 @@ static void sierra_instat_callback(struc dev_dbg(&port->dev, "%s: error %d\n", __func__, status); /* Resubmit urb so we continue receiving IRQ data */ - if (port->port.count && status != -ESHUTDOWN && status != -ENOENT) { + if (port->port.count && status != -ESHUTDOWN && status != -ENOENT && + status != -EPERM) { urb->dev = serial->dev; err = usb_submit_urb(urb, GFP_ATOMIC); if (err) -- 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