Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 195341
b: refs/heads/master
c: 30af7fb
h: refs/heads/master
i:
  195339: 9115856
v: v3
  • Loading branch information
Johan Hovold authored and Greg Kroah-Hartman committed May 20, 2010
1 parent 5d3f4be commit 558dcf7
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 5 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: 7919c2fd9e07276403b9a4d9ae52305e0d70f923
refs/heads/master: 30af7fb5a40f8724c130428473edffa73170e04c
15 changes: 11 additions & 4 deletions trunk/drivers/usb/serial/generic.c
Original file line number Diff line number Diff line change
Expand Up @@ -309,10 +309,14 @@ static int usb_serial_generic_write_start(struct usb_serial_port *port)
/* don't have to grab the lock here, as we will
retry if != 0 */
port->write_urb_busy = 0;
} else
result = count;
return result;
}

return result;
spin_lock_irqsave(&port->lock, flags);
port->tx_bytes_flight += count;
spin_unlock_irqrestore(&port->lock, flags);

return count;
}

/**
Expand Down Expand Up @@ -400,7 +404,7 @@ int usb_serial_generic_chars_in_buffer(struct tty_struct *tty)
if (serial->type->max_in_flight_urbs)
chars = port->tx_bytes_flight;
else
chars = kfifo_len(&port->write_fifo);
chars = kfifo_len(&port->write_fifo) + port->tx_bytes_flight;
spin_unlock_irqrestore(&port->lock, flags);

dbg("%s - returns %d", __func__, chars);
Expand Down Expand Up @@ -510,7 +514,10 @@ void usb_serial_generic_write_bulk_callback(struct urb *urb)
port->urbs_in_flight = 0;
spin_unlock_irqrestore(&port->lock, flags);
} else {
spin_lock_irqsave(&port->lock, flags);
port->tx_bytes_flight -= urb->transfer_buffer_length;
port->write_urb_busy = 0;
spin_unlock_irqrestore(&port->lock, flags);

if (status)
kfifo_reset_out(&port->write_fifo);
Expand Down

0 comments on commit 558dcf7

Please sign in to comment.