From: Takashi Iwai <tiwai@suse.de>
To: Adrian Hunter <adrian.hunter@intel.com>
Cc: Ulf Hansson <ulf.hansson@linaro.org>,
linux-mmc@vger.kernel.org, linux-kernel@vger.kernel.org
Subject: Re: [PATCH] mmc: sdhci: Clear unused bounce buffer at DMA mmap error path
Date: Fri, 11 Jun 2021 12:06:29 +0200 [thread overview]
Message-ID: <s5ho8cc7m1m.wl-tiwai@suse.de> (raw)
In-Reply-To: <98f90fcb-1134-f90b-db42-29f9505de046@intel.com>
On Fri, 11 Jun 2021 11:56:16 +0200,
Adrian Hunter wrote:
>
> On 11/06/21 12:03 pm, Takashi Iwai wrote:
> > When DMA-mapping of the bounce buffer fails, the driver tries to fall
> > back, but it leaves the allocated host->bounce_buffer although its
> > size is zero. Later on, the driver checks the use of bounce buffer
> > with host->bounce_buffer pointer, and it tries to use the buffer
> > incorrectly, resulting in Oops.
> >
> > This patch clears the release the unused buffer and clears the
> > bounce_buffer pointer for addressing the problem.
> >
> > Signed-off-by: Takashi Iwai <tiwai@suse.de>
>
> One minor comment below, otherwise:
>
> Acked-by: Adrian Hunter <adrian.hunter@intel.com>
>
> > ---
> > drivers/mmc/host/sdhci.c | 6 +++++-
> > 1 file changed, 5 insertions(+), 1 deletion(-)
> >
> > diff --git a/drivers/mmc/host/sdhci.c b/drivers/mmc/host/sdhci.c
> > index bf238ade1602..5f467b98ca88 100644
> > --- a/drivers/mmc/host/sdhci.c
> > +++ b/drivers/mmc/host/sdhci.c
> > @@ -4072,9 +4072,13 @@ static void sdhci_allocate_bounce_buffer(struct sdhci_host *host)
> > bounce_size,
> > DMA_BIDIRECTIONAL);
> > ret = dma_mapping_error(mmc_dev(mmc), host->bounce_addr);
> > - if (ret)
> > + if (ret) {
> > + devm_kfree(mmc->parent, host->bounce_buffer);
>
> Everywhere else in this function mmc_dev(mmc) is used, so maybe
> use it here too instead of mmc->parent.
Doh, right, I wrote a patch based on the older kernel and refreshed
afterwards, but I forgot correcting this place. Will resubmit the
fixed version.
thanks,
Takashi
prev parent reply other threads:[~2021-06-11 10:06 UTC|newest]
Thread overview: 3+ messages / expand[flat|nested] mbox.gz Atom feed top
2021-06-11 9:03 [PATCH] mmc: sdhci: Clear unused bounce buffer at DMA mmap error path Takashi Iwai
2021-06-11 9:56 ` Adrian Hunter
2021-06-11 10:06 ` Takashi Iwai [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=s5ho8cc7m1m.wl-tiwai@suse.de \
--to=tiwai@suse.de \
--cc=adrian.hunter@intel.com \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-mmc@vger.kernel.org \
--cc=ulf.hansson@linaro.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