From: Michael Ellerman <mpe@ellerman.id.au>
To: Thomas Fourier <fourier.thomas@gmail.com>
Cc: "Thomas Fourier" <fourier.thomas@gmail.com>,
"Anatolij Gustschin" <agust@denx.de>,
"Madhavan Srinivasan" <maddy@linux.ibm.com>,
"Nicholas Piggin" <npiggin@gmail.com>,
"Christophe Leroy" <christophe.leroy@csgroup.eu>,
"Uwe Kleine-König" <u.kleine-koenig@baylibre.com>,
"open list:LINUX FOR POWERPC EMBEDDED MPC5XXX"
<linuxppc-dev@lists.ozlabs.org>,
"open list" <linux-kernel@vger.kernel.org>
Subject: Re: [PATCH] (powerpc/512) Fix possible `dma_unmap_single()` on uninitialized pointer
Date: Mon, 09 Jun 2025 10:49:59 +1000 [thread overview]
Message-ID: <878qm1wxfs.fsf@mpe.ellerman.id.au> (raw)
In-Reply-To: <20250605163717.18020-1-fourier.thomas@gmail.com>
Thomas Fourier <fourier.thomas@gmail.com> writes:
> If the device configuration fails (if `dma_dev->device_config()`),
> `sg_dma_address(&sg)` is not initialized and the jump to `err_dma_prep`
> leads to calling `dma_unmap_single()` on `sg_dma_address(&sg)`.
>
> Signed-off-by: Thomas Fourier <fourier.thomas@gmail.com>
> ---
> arch/powerpc/platforms/512x/mpc512x_lpbfifo.c | 3 +--
> 1 file changed, 1 insertion(+), 2 deletions(-)
>
> diff --git a/arch/powerpc/platforms/512x/mpc512x_lpbfifo.c b/arch/powerpc/platforms/512x/mpc512x_lpbfifo.c
> index 9668b052cd4b..ef3be438f914 100644
> --- a/arch/powerpc/platforms/512x/mpc512x_lpbfifo.c
> +++ b/arch/powerpc/platforms/512x/mpc512x_lpbfifo.c
> @@ -241,8 +241,7 @@ static int mpc512x_lpbfifo_kick(void)
>
> /* Make DMA channel work with LPB FIFO data register */
> if (dma_dev->device_config(lpbfifo.chan, &dma_conf)) {
> - ret = -EINVAL;
> - goto err_dma_prep;
> + return -EINVAL;
> }
>
> sg_init_table(&sg, 1);
Yep looks good. That's the first use of goto for error handling, and
it's clearly too early. All the previous error cases do a direct return.
Reviewed-by: Michael Ellerman <mpe@ellerman.id.au>
cheers
next prev parent reply other threads:[~2025-06-09 0:50 UTC|newest]
Thread overview: 3+ messages / expand[flat|nested] mbox.gz Atom feed top
2025-06-05 16:37 [PATCH] (powerpc/512) Fix possible `dma_unmap_single()` on uninitialized pointer Thomas Fourier
2025-06-09 0:49 ` Michael Ellerman [this message]
2025-06-09 7:40 ` Christophe Leroy
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=878qm1wxfs.fsf@mpe.ellerman.id.au \
--to=mpe@ellerman.id.au \
--cc=agust@denx.de \
--cc=christophe.leroy@csgroup.eu \
--cc=fourier.thomas@gmail.com \
--cc=linux-kernel@vger.kernel.org \
--cc=linuxppc-dev@lists.ozlabs.org \
--cc=maddy@linux.ibm.com \
--cc=npiggin@gmail.com \
--cc=u.kleine-koenig@baylibre.com \
/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;
as well as URLs for NNTP newsgroup(s).