mirror of https://lore.kernel.org/lkml/
 help / color / mirror / Atom feed
* Re: [PATCH v3] ata: pata_arasan_cf: Use dev_err_probe() instead dev_err() in data_xfer()
       [not found] <20230719100322.6164-1-duminjie@vivo.com>
@ 2023-07-19 10:14 ` Damien Le Moal
  0 siblings, 0 replies; only message in thread
From: Damien Le Moal @ 2023-07-19 10:14 UTC (permalink / raw)
  To: 杜敏杰,
	Viresh Kumar, Sergey Shtylyov,
	open list:LIBATA PATA ARASAN COMPACT FLASH CONTROLLER, open list
  Cc: opensource.kernel

On 7/19/23 19:03, 杜敏杰 wrote:
> It is possible for dma_request_chan() to return EPROBE_DEFER, which means
> acdev->host->dev is not ready yet.
> At this point dev_err() will have no output.
> 
> Signed-off-by: Minjie Du <duminjie@vivo.com>
> ---
> V1 - V3:
> Fix code format.
> ---
>  drivers/ata/pata_arasan_cf.c | 3 ++-
>  1 file changed, 2 insertions(+), 1 deletion(-)
> 
> diff --git a/drivers/ata/pata_arasan_cf.c b/drivers/ata/pata_arasan_cf.c
> index 6ab294322..c85932c20 100644
> --- a/drivers/ata/pata_arasan_cf.c
> +++ b/drivers/ata/pata_arasan_cf.c
> @@ -529,7 +529,8 @@ static void data_xfer(struct work_struct *work)
>  	/* dma_request_channel may sleep, so calling from process context */
>  	acdev->dma_chan = dma_request_chan(acdev->host->dev, "data");
>  	if (IS_ERR(acdev->dma_chan)) {
> -		dev_err(acdev->host->dev, "Unable to get dma_chan\n");
> +		dev_err_probe(acdev->host->dev, PTR_ERR(acdev->dma_chan),
> +						"Unable to get dma_chan\n")

Seriously ? You keep resending the same. Still not aligned. And even
worse: this will not even compile as this is missing ";".

Please improve your process and (1) act on comments and (2) properly
test your changes.


>  		acdev->dma_chan = NULL;
>  		goto chan_request_fail;
>  	}

-- 
Damien Le Moal
Western Digital Research


^ permalink raw reply	[flat|nested] only message in thread

only message in thread, other threads:[~2023-07-19 10:14 UTC | newest]

Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
     [not found] <20230719100322.6164-1-duminjie@vivo.com>
2023-07-19 10:14 ` [PATCH v3] ata: pata_arasan_cf: Use dev_err_probe() instead dev_err() in data_xfer() Damien Le Moal

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox

all inboxes | Powered by JetHome®