From: Greg KH <gregkh@linuxfoundation.org>
To: Ginger Li <ginger.jzllee@gmail.com>
Cc: jirislaby@kernel.org, linux-serial@vger.kernel.org,
linux-kernel@vger.kernel.org, Maarten.Brock@sttls.nl
Subject: Re: [PATCH v2] serial: max3100: Fix a data race on s->rts in max3100_work()
Date: Wed, 23 Sep 2026 12:31:58 +0200 [thread overview]
Message-ID: <2026092348-police-filth-8d32@gregkh> (raw)
In-Reply-To: <20260922170239.33485-1-ginger.jzllee@gmail.com>
On Wed, Sep 23, 2026 at 01:02:39AM +0800, Ginger Li wrote:
> max3100_set_mctrl() stores the new RTS state and raises s->rts_commit to tell
> max3100_work() that it has to program it:
>
> spin_lock(&s->conf_lock);
> if (s->rts != rts) {
> s->rts = rts;
> s->rts_commit = 1;
> }
> if (s->loopback_commit || s->rts_commit)
> max3100_dowork(s);
> spin_unlock(&s->conf_lock);
>
> max3100_work() consumes s->rts_commit under s->conf_lock, but reads s->rts
> itself outside of the lock, both when it services that pending update and when
> it later transmits a character, so the state it programs into the hardware can
> be stale.
>
> Read s->rts into a local variable in the s->conf_lock protected snapshot at
> the top of the loop, before s->rts_commit is consumed, in the same way as
> s->conf is read before s->conf_commit.
>
> Fixes: 7831d56b0a35 ("tty: MAX3100")
> Signed-off-by: Ginger Li <ginger.jzllee@gmail.com>
> ---
> v2:
> - read s->rts into "rts" before s->rts_commit is consumed, as suggested by
> Maarten
> - mention s->rts_commit in the commit message
> - left the s->rts / s->rts_commit split alone; folding both into one byte
> would be a separate cleanup
> ---
> drivers/tty/serial/max3100.c | 6 ++++--
> 1 file changed, 4 insertions(+), 2 deletions(-)
>
> diff --git a/drivers/tty/serial/max3100.c b/drivers/tty/serial/max3100.c
> --- a/drivers/tty/serial/max3100.c
> +++ b/drivers/tty/serial/max3100.c
> @@ -236,6 +236,7 @@ static void max3100_work(struct work_struct *w)
> struct tty_port *tport = &s->port.state->port;
> unsigned char ch;
> int conf, cconf, cloopback, crts;
> + bool rts;
> int rxchars;
> u16 tx, rx;
>
> @@ -249,6 +250,7 @@ static void max3100_work(struct work_struct *w)
> s->conf_commit = 0;
> cloopback = s->loopback_commit;
> s->loopback_commit = 0;
> + rts = s->rts;
> crts = s->rts_commit;
> s->rts_commit = 0;
> spin_unlock(&s->conf_lock);
> @@ -258,7 +260,7 @@ static void max3100_work(struct work_struct *w)
> max3100_sr(s, 0x4001, &rx);
> if (crts) {
> max3100_sr(s, MAX3100_WD | MAX3100_TE |
> - (s->rts ? MAX3100_RTS : 0), &rx);
> + (rts ? MAX3100_RTS : 0), &rx);
> rxchars += max3100_handlerx(s, rx);
> }
>
> @@ -277,7 +279,7 @@ static void max3100_work(struct work_struct *w)
> }
> if (tx != 0xffff) {
> max3100_calc_parity(s, &tx);
> - tx |= MAX3100_WD | (s->rts ? MAX3100_RTS : 0);
> + tx |= MAX3100_WD | (rts ? MAX3100_RTS : 0);
> max3100_sr(s, tx, &rx);
> rxchars += max3100_handlerx(s, rx);
> }
> --
> 2.43.0
>
Hi,
This is the friendly patch-bot of Greg Kroah-Hartman. You have sent him
a patch that has triggered this response. He used to manually respond
to these common problems, but in order to save his sanity (he kept
writing the same thing over and over, yet to different people), I was
created. Hopefully you will not take offence and will fix the problem
in your patch and resubmit it so that it can be accepted into the Linux
kernel tree.
You are receiving this message because of the following common error(s)
as indicated below:
- You have marked a patch with a "Fixes:" tag for a commit that is in an
older released kernel, yet you do not have a cc: stable line in the
signed-off-by area at all, which means that the patch will not be
applied to any older kernel releases. To properly fix this, please
follow the documented rules in the
Documentation/process/stable-kernel-rules.rst file for how to resolve
this.
If you wish to discuss this problem further, or you have questions about
how to resolve this issue, please feel free to respond to this email and
Greg will reply once he has dug out from the pending patches received
from other developers.
thanks,
greg k-h's patch email bot
next prev parent reply other threads:[~2026-09-23 10:32 UTC|newest]
Thread overview: 3+ messages / expand[flat|nested] mbox.gz Atom feed top
[not found] <20260922053151.11260-1-ginger.jzllee@gmail.com>
2026-09-22 17:02 ` Ginger Li
2026-09-23 10:31 ` Greg KH [this message]
2026-09-24 8:32 ` Maarten Brock
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=2026092348-police-filth-8d32@gregkh \
--to=gregkh@linuxfoundation.org \
--cc=Maarten.Brock@sttls.nl \
--cc=ginger.jzllee@gmail.com \
--cc=jirislaby@kernel.org \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-serial@vger.kernel.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
all inboxes | Powered by JetHome®