]> git.kernelconcepts.de Git - karo-tx-linux.git/commit
serial: imx: implement the flush_buffer hook
authorHuang Shijie <b32955@freescale.com>
Wed, 9 Oct 2013 07:13:23 +0000 (15:13 +0800)
committerLothar Waßmann <LW@KARO-electronics.de>
Wed, 20 Aug 2014 08:06:34 +0000 (10:06 +0200)
commit1c4acff68c2e7e81944e4a4bd004a4517405ccdb
treec99a3ce0a82a8e62eed37010ff4c57ff46a80f1b
parent16abff8448883e26c104e5e66fa9e0c4f612636a
serial: imx: implement the flush_buffer hook

The current driver does not implement the flush_buffer hook for
uart_ops. When we enable the DMA for the driver, and test it with Bluetooth,
we may meet the following bug for TX:

    [1] User application may call the flush operation at any time.
        The uart_flush_buffer() calls the uart_circ_clear() to set
        the xmit->head and xmit->tail with 0.

    [2] The TX DMA callback can be called at any time too.
        The dma_tx_call() will update the xmit->tail.

    If [2] occurs just after the [1], we will get the wrong xmit->tail.

This patch implements the flush_buffer hook to fix this issue.

Signed-off-by: Huang Shijie <b32955@freescale.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/tty/serial/imx.c