Signed-off-by: Oliver Neukum <oliver@xxxxxxxxxx> commit 37a863f6f83f21389eb7f01b201272c0239bd98b Author: Oliver Neukum <oliver@xxxxxxxxxx> Date: Thu Oct 1 14:52:17 2009 +0200 usb:usbserial:visor: fix accounting in error case data not pushed to the tty layer due to an error mustn't be counted diff --git a/drivers/usb/serial/visor.c b/drivers/usb/serial/visor.c index 1aa5d20..8e2d6dd 100644 --- a/drivers/usb/serial/visor.c +++ b/drivers/usb/serial/visor.c @@ -513,7 +513,8 @@ static void visor_read_bulk_callback(struct urb *urb) tty_kref_put(tty); } spin_lock(&priv->lock); - priv->bytes_in += available_room; + if (tty) + priv->bytes_in += available_room; } else { spin_lock(&priv->lock); -- 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