From: sashiko-bot@kernel.org
To: "Rosen Penev" <rosenp@gmail.com>
Cc: cassel@kernel.org, dlemoal@kernel.org, linux-ide@vger.kernel.org
Subject: Re: [PATCH] ata: pata_ep93xx: use devm_dma_request_chan for DMA channels
Date: Thu, 23 Jul 2026 21:47:15 +0000 [thread overview]
Message-ID: <20260723214716.67B201F000E9@smtp.kernel.org> (raw)
In-Reply-To: <20260723214128.356942-1-rosenp@gmail.com>
Thank you for your contribution! Sashiko AI review found 1 potential issue(s) to consider:
- [High] Failure to clear DMA channel pointers on configuration error causes incorrect UDMA enablement.
--
--- Patch [1]: [PATCH] ata: pata_ep93xx: use devm_dma_request_chan for DMA channels ---
commit 320ef19a1b3a76deb7df0daa1ed0cdbb72e88bfa
Author: Rosen Penev <rosenp@gmail.com>
ata: pata_ep93xx: use devm_dma_request_chan for DMA channels
This commit converts the manual DMA channel request/release in
ep93xx_pata_dma_init() to the managed devm_dma_request_chan() API. It removes
the now-unused ep93xx_pata_release_dma() helper and simplifies the error path
cleanup.
> diff --git a/drivers/ata/pata_ep93xx.c b/drivers/ata/pata_ep93xx.c
> index 339ee5e43e9f3..04ab37134fb20 100644
> --- a/drivers/ata/pata_ep93xx.c
> +++ b/drivers/ata/pata_ep93xx.c
[ ... ]
> @@ -683,7 +671,7 @@ static int ep93xx_pata_dma_init(struct ep93xx_pata_data *drv_data)
> ret = dmaengine_slave_config(drv_data->dma_rx_channel, &conf);
> if (ret) {
> dev_warn(dev, "failed to configure rx dma channel, using PIO\n");
> - goto fail_release_dma;
> + return 0;
> }
>
> /* Configure transmit channel direction and destination address */
[Severity: High]
If dmaengine_slave_config() fails, will this leave drv_data->dma_rx_channel
non-NULL?
The old fail_release_dma path called ep93xx_pata_release_dma(), which explicitly
freed the channel and set drv_data->dma_rx_channel to NULL. Without nullifying
it here, the driver might incorrectly assume the channel is fully configured.
> @@ -694,21 +682,10 @@ static int ep93xx_pata_dma_init(struct ep93xx_pata_data *drv_data)
> ret = dmaengine_slave_config(drv_data->dma_tx_channel, &conf);
> if (ret) {
> dev_warn(dev, "failed to configure tx dma channel, using PIO\n");
> - goto fail_release_dma;
> + return 0;
> }
>
> return 0;
[Severity: High]
Similarly, does returning early here without clearing drv_data->dma_tx_channel
leave the pointer set?
Later in ep93xx_pata_probe(), the code relies on these pointers to check
if UDMA should be enabled:
if (drv_data->dma_rx_channel && drv_data->dma_tx_channel) {
const struct soc_device_attribute *match;
match = soc_device_match(ep93xx_soc_table);
if (match)
ap->udma_mask = (unsigned long) match->data;
else
ap->udma_mask = ATA_UDMA2;
}
If the pointers are left non-NULL after a configuration failure, will the driver
incorrectly advertise UDMA capabilities and attempt to use unconfigured
channels for I/O?
--
Sashiko AI review · https://sashiko.dev/#/patchset/20260723214128.356942-1-rosenp@gmail.com?part=1
prev parent reply other threads:[~2026-07-23 21:47 UTC|newest]
Thread overview: 2+ messages / expand[flat|nested] mbox.gz Atom feed top
2026-07-23 21:41 [PATCH] ata: pata_ep93xx: use devm_dma_request_chan for DMA channels Rosen Penev
2026-07-23 21:47 ` sashiko-bot [this message]
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=20260723214716.67B201F000E9@smtp.kernel.org \
--to=sashiko-bot@kernel.org \
--cc=cassel@kernel.org \
--cc=dlemoal@kernel.org \
--cc=linux-ide@vger.kernel.org \
--cc=rosenp@gmail.com \
--cc=sashiko-reviews@lists.linux.dev \
/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