From: Geert Uytterhoeven <geert@linux-m68k.org>
To: Simon Horman <horms@verge.net.au>
Cc: Geert Uytterhoeven <geert+renesas@glider.be>,
Greg KH <gregkh@linuxfoundation.org>,
Jiri Slaby <jslaby@suse.com>,
Laurent Pinchart <laurent.pinchart+renesas@ideasonboard.com>,
Ulrich Hecht <ulrich.hecht+renesas@gmail.com>,
Wolfram Sang <wsa+renesas@sang-engineering.com>,
"open list:SERIAL DRIVERS" <linux-serial@vger.kernel.org>,
Linux-Renesas <linux-renesas-soc@vger.kernel.org>,
Linux-sh list <linux-sh@vger.kernel.org>
Subject: Re: [PATCH v2 2/3] serial: sh-sci: Stop TX DMA workqueue during port shutdown
Date: Fri, 13 Jul 2018 08:00:05 +0000 [thread overview]
Message-ID: <CAMuHMdWNkHr+XeoDzB+BWFQX4jskgqxmO2Obc6SJ7HUC8XXS4w@mail.gmail.com> (raw)
In-Reply-To: <20180713074233.jxijuts35g5meejy@verge.net.au>
Hi Simon,
On Fri, Jul 13, 2018 at 9:42 AM Simon Horman <horms@verge.net.au> wrote:
> On Wed, Jul 11, 2018 at 05:15:57PM +0200, Geert Uytterhoeven wrote:
> > On Wed, Jul 11, 2018 at 4:52 PM Simon Horman <horms@verge.net.au> wrote:
> > > On Fri, Jul 06, 2018 at 11:05:42AM +0200, Geert Uytterhoeven wrote:
> > > > The transmit DMA workqueue is never stopped, hence the work function may
> > > > be called after the port has been shut down.
> > > >
> > > > Fix this race condition by cancelling queued work, if any, before DMA
> > > > release. Don't initialize the work if DMA initialization failed, as it
> > > > won't be used anyway.
> > > >
> > > > Signed-off-by: Geert Uytterhoeven <geert+renesas@glider.be>
> >
> > > > --- a/drivers/tty/serial/sh-sci.c
> > > > +++ b/drivers/tty/serial/sh-sci.c
> > > > @@ -1293,6 +1293,7 @@ static void sci_tx_dma_release(struct sci_port *s)
> > > > {
> > > > struct dma_chan *chan = s->chan_tx_saved;
> > > >
> > > > + cancel_work_sync(&s->work_tx);
> > > > s->chan_tx_saved = s->chan_tx = NULL;
> > > > s->cookie_tx = -EINVAL;
> > > > dmaengine_terminate_all(chan);
> > > > @@ -1548,10 +1549,9 @@ static void sci_request_dma(struct uart_port *port)
> > > > __func__, UART_XMIT_SIZE,
> > > > port->state->xmit.buf, &s->tx_dma_addr);
> > > >
> > > > + INIT_WORK(&s->work_tx, work_fn_tx);
> > > > s->chan_tx_saved = s->chan_tx = chan;
> > >
> > > Is it ok that work_fn_tx reads and writes s->work_tx which
> >
> > writes s->chan_tx?
>
> Yes :)
>
> > > is set after the call to INIT_WORK() ?
> >
> > Yes, unlike interrupt handlers, it isn't called until software kicks the
> > workqueue using schedule_work(&s->work_tx);
>
> Ok, so we are sure access is only happening on one CPU?
sci_request_dma() is called during early port setup, before it can be used.
So no other CPU should be using it (unless it contains a time machine ;-)
Gr{oetje,eeting}s,
Geert
--
Geert Uytterhoeven -- There's lots of Linux beyond ia32 -- geert@linux-m68k.org
In personal conversations with technical people, I call myself a hacker. But
when I'm talking to journalists I just say "programmer" or something like that.
-- Linus Torvalds
next prev parent reply other threads:[~2018-07-13 8:00 UTC|newest]
Thread overview: 12+ messages / expand[flat|nested] mbox.gz Atom feed top
2018-07-06 9:05 [PATCH v2 0/3] serial: sh-sci: Fix port shutdown DMA race conditions Geert Uytterhoeven
2018-07-06 9:05 ` [PATCH v2 1/3] serial: sh-sci: Postpone DMA release when falling back to PIO Geert Uytterhoeven
2018-07-11 14:40 ` Simon Horman
2018-07-11 15:28 ` Geert Uytterhoeven
2018-07-06 9:05 ` [PATCH v2 2/3] serial: sh-sci: Stop TX DMA workqueue during port shutdown Geert Uytterhoeven
2018-07-11 14:51 ` Simon Horman
2018-07-11 15:15 ` Geert Uytterhoeven
2018-07-13 7:42 ` Simon Horman
2018-07-13 8:00 ` Geert Uytterhoeven [this message]
2018-07-17 9:53 ` Simon Horman
2018-07-06 9:05 ` [PATCH v2 3/3] serial: sh-sci: Stop using deprecated dmaengine_terminate_all() Geert Uytterhoeven
2018-07-11 14:54 ` Simon Horman
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=CAMuHMdWNkHr+XeoDzB+BWFQX4jskgqxmO2Obc6SJ7HUC8XXS4w@mail.gmail.com \
--to=geert@linux-m68k.org \
--cc=geert+renesas@glider.be \
--cc=gregkh@linuxfoundation.org \
--cc=horms@verge.net.au \
--cc=jslaby@suse.com \
--cc=laurent.pinchart+renesas@ideasonboard.com \
--cc=linux-renesas-soc@vger.kernel.org \
--cc=linux-serial@vger.kernel.org \
--cc=linux-sh@vger.kernel.org \
--cc=ulrich.hecht+renesas@gmail.com \
--cc=wsa+renesas@sang-engineering.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).