|
|
@@ -726,6 +726,7 @@ static void __dma_rx_do_complete(struct uart_8250_port *p, bool error)
|
|
|
struct dma_tx_state state;
|
|
|
int count;
|
|
|
unsigned long flags;
|
|
|
+ int ret;
|
|
|
|
|
|
dma_sync_single_for_cpu(dma->rxchan->device->dev, dma->rx_addr,
|
|
|
dma->rx_size, DMA_FROM_DEVICE);
|
|
|
@@ -741,8 +742,10 @@ static void __dma_rx_do_complete(struct uart_8250_port *p, bool error)
|
|
|
|
|
|
count = dma->rx_size - state.residue;
|
|
|
|
|
|
- tty_insert_flip_string(tty_port, dma->rx_buf, count);
|
|
|
- p->port.icount.rx += count;
|
|
|
+ ret = tty_insert_flip_string(tty_port, dma->rx_buf, count);
|
|
|
+
|
|
|
+ p->port.icount.rx += ret;
|
|
|
+ p->port.icount.buf_overrun += count - ret;
|
|
|
unlock:
|
|
|
spin_unlock_irqrestore(&priv->rx_dma_lock, flags);
|
|
|
|