public inbox for dmaengine@vger.kernel.org
 help / color / mirror / Atom feed
From: Richard Genoud <richard.genoud@gmail.com>
To: Tudor Ambarus <tudor.ambarus@microchip.com>,
	ludovic.desroches@microchip.com, vkoul@kernel.org,
	richard.genoud@gmail.com, gregkh@linuxfoundation.org,
	jirislaby@kernel.org
Cc: nicolas.ferre@microchip.com, alexandre.belloni@bootlin.com,
	mripard@kernel.org, linux-arm-kernel@lists.infradead.org,
	dmaengine@vger.kernel.org, linux-kernel@vger.kernel.org,
	linux-serial@vger.kernel.org
Subject: Re: [PATCH 02/13] tty: serial: atmel: Check return code of dmaengine_submit()
Date: Fri, 19 Nov 2021 17:27:41 +0100	[thread overview]
Message-ID: <e87ef826-1d03-e319-1d27-d876cf4fda5f@gmail.com> (raw)
In-Reply-To: <20211116112036.96349-3-tudor.ambarus@microchip.com>

Hi,

Le 16/11/2021 à 12:20, Tudor Ambarus a écrit :
> The tx_submit() method of struct dma_async_tx_descriptor is entitled
> to do sanity checks and return errors if encountered. It's not the
> case for the DMA controller drivers that this client is using
> (at_h/xdmac), because they currently don't do sanity checks and always
> return a positive cookie at tx_submit() method. In case the controller
> drivers will implement sanity checks and return errors, print a message
> so that the client will be informed that something went wrong at
> tx_submit() level.
> 
> Fixes: 08f738be88bb ("serial: at91: add tx dma support")
> Signed-off-by: Tudor Ambarus <tudor.ambarus@microchip.com>
> ---
>  drivers/tty/serial/atmel_serial.c | 10 ++++++++++
>  1 file changed, 10 insertions(+)
> 
> diff --git a/drivers/tty/serial/atmel_serial.c b/drivers/tty/serial/atmel_serial.c
> index 2c99a47a2535..376f7a9c2868 100644
> --- a/drivers/tty/serial/atmel_serial.c
> +++ b/drivers/tty/serial/atmel_serial.c
> @@ -1004,6 +1004,11 @@ static void atmel_tx_dma(struct uart_port *port)
>  		desc->callback = atmel_complete_tx_dma;
>  		desc->callback_param = atmel_port;
>  		atmel_port->cookie_tx = dmaengine_submit(desc);
> +		if (dma_submit_error(atmel_port->cookie_tx)) {
> +			dev_err(port->dev, "dma_submit_error %d\n",
> +				atmel_port->cookie_tx);
> +			return;
> +		}
>  	}
>  
>  	if (uart_circ_chars_pending(xmit) < WAKEUP_CHARS)
> @@ -1258,6 +1263,11 @@ static int atmel_prepare_rx_dma(struct uart_port *port)
>  	desc->callback_param = port;
>  	atmel_port->desc_rx = desc;
>  	atmel_port->cookie_rx = dmaengine_submit(desc);
> +	if (dma_submit_error(atmel_port->cookie_rx)) {
> +		dev_err(port->dev, "dma_submit_error %d\n",
> +			atmel_port->cookie_rx);
> +		goto chan_err;
> +	}
>  
>  	return 0;
>  
> 

Acked-by: Richard Genoud <richard.genoud@gmail.com>


Thanks !

  reply	other threads:[~2021-11-19 16:27 UTC|newest]

Thread overview: 16+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2021-11-16 11:20 [PATCH 00/13] dmaengine: at_xdmac: Various fixes Tudor Ambarus
2021-11-16 11:20 ` [PATCH 01/13] dmaengine: at_xdmac: Don't start transactions at tx_submit level Tudor Ambarus
2021-11-16 11:20 ` [PATCH 02/13] tty: serial: atmel: Check return code of dmaengine_submit() Tudor Ambarus
2021-11-19 16:27   ` Richard Genoud [this message]
2021-11-16 11:20 ` [PATCH 03/13] tty: serial: atmel: Call dma_async_issue_pending() Tudor Ambarus
2021-11-19 16:04   ` Richard Genoud
2021-11-16 11:20 ` [PATCH 04/13] dmaengine: at_xdmac: Start transfer for cyclic channels in issue_pending Tudor Ambarus
2021-11-16 11:20 ` [PATCH 05/13] dmaengine: at_xdmac: Print debug message after realeasing the lock Tudor Ambarus
2021-11-16 11:20 ` [PATCH 06/13] dmaengine: at_xdmac: Fix concurrency over chan's completed_cookie Tudor Ambarus
2021-11-16 11:20 ` [PATCH 07/13] dmaengine: at_xdmac: Fix race for the tx desc callback Tudor Ambarus
2021-11-16 11:20 ` [PATCH 08/13] dmaengine: at_xdmac: Move the free desc to the tail of the desc list Tudor Ambarus
2021-11-16 11:20 ` [PATCH 09/13] dmaengine: at_xdmac: Fix concurrency over xfers_list Tudor Ambarus
2021-11-16 11:20 ` [PATCH 10/13] dmaengine: at_xdmac: Remove a level of indentation in at_xdmac_advance_work() Tudor Ambarus
2021-11-16 11:20 ` [PATCH 11/13] dmaengine: at_xdmac: Fix lld view setting Tudor Ambarus
2021-11-16 11:20 ` [PATCH 12/13] dmaengine: at_xdmac: Fix at_xdmac_lld struct definition Tudor Ambarus
2021-11-16 11:20 ` [PATCH 13/13] dmaengine: at_xdmac: Fix race over irq_status Tudor Ambarus

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=e87ef826-1d03-e319-1d27-d876cf4fda5f@gmail.com \
    --to=richard.genoud@gmail.com \
    --cc=alexandre.belloni@bootlin.com \
    --cc=dmaengine@vger.kernel.org \
    --cc=gregkh@linuxfoundation.org \
    --cc=jirislaby@kernel.org \
    --cc=linux-arm-kernel@lists.infradead.org \
    --cc=linux-kernel@vger.kernel.org \
    --cc=linux-serial@vger.kernel.org \
    --cc=ludovic.desroches@microchip.com \
    --cc=mripard@kernel.org \
    --cc=nicolas.ferre@microchip.com \
    --cc=tudor.ambarus@microchip.com \
    --cc=vkoul@kernel.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox