From: Petr Mladek <pmladek@suse.com>
To: John Ogness <john.ogness@linutronix.de>
Cc: "chunlei.wang" <Chunlei.wang@mediatek.com>,
Sergey Senozhatsky <senozhatsky@chromium.org>,
Steven Rostedt <rostedt@goodmis.org>,
Matthias Brugger <matthias.bgg@gmail.com>,
linux-arm-kernel@lists.infradead.org,
linux-mediatek@lists.infradead.org, linux-kernel@vger.kernel.org
Subject: Re: [PATCH v2] printk: ringbuffer: Improve prb_next_seq() performance
Date: Mon, 1 Nov 2021 11:06:23 +0100 [thread overview]
Message-ID: <YX+8H8ApU/jm2lo9@alley> (raw)
In-Reply-To: <875ytih3j9.fsf@jogness.linutronix.de>
On Wed 2021-10-27 17:54:42, John Ogness wrote:
> On 2021-10-27, Petr Mladek <pmladek@suse.com> wrote:
> > diff --git a/kernel/printk/printk_ringbuffer.c b/kernel/printk/printk_ringbuffer.c
> > index 8a7b7362c0dd..24f47fbefbb5 100644
> > --- a/kernel/printk/printk_ringbuffer.c
> > +++ b/kernel/printk/printk_ringbuffer.c
> > @@ -474,8 +474,10 @@ static enum desc_state desc_read(struct prb_desc_ring *desc_ring,
> > * state has been re-checked. A memcpy() for all of @desc
> > * cannot be used because of the atomic_t @state_var field.
> > */
> > - memcpy(&desc_out->text_blk_lpos, &desc->text_blk_lpos,
> > - sizeof(desc_out->text_blk_lpos)); /* LMM(desc_read:C) */
> > + if (desc_out) {
> > + memcpy(&desc_out->text_blk_lpos, &desc->text_blk_lpos,
> > + sizeof(desc_out->text_blk_lpos)); /* LMM(desc_read:C) */
> > + }
> > if (seq_out)
> > *seq_out = info->seq; /* also part of desc_read:C */
> > if (caller_id_out)
>
> You also need this hunk:
>
> @@ -530,7 +530,8 @@ static enum desc_state desc_read(struct prb_desc_ring *desc_ring,
> state_val = atomic_long_read(state_var); /* LMM(desc_read:E) */
> d_state = get_desc_state(id, state_val);
> out:
> - atomic_long_set(&desc_out->state_var, state_val);
> + if (desc_out)
> + atomic_long_set(&desc_out->state_var, state_val);
> return d_state;
> }
>
> Sorry, I missed it in my last review. This time I build+boot tested the patch.
Urgh. Great catch! It seems that my testing was not good enough. Or
that I was just lucky.
> With this hunk added:
>
> Reviewed-by: John Ogness <john.ogness@linutronix.de>
I am going to queue it for 5.17 after the pull request for 5.16 is
accepted. I do not feel comfortable to rush this into 5.16, especially
after finding the bug. The merge window has just started...
Anyway, thanks a lot for review and catching the mistake.
Best Regards,
Petr
_______________________________________________
linux-arm-kernel mailing list
linux-arm-kernel@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/linux-arm-kernel
next prev parent reply other threads:[~2021-11-01 10:07 UTC|newest]
Thread overview: 6+ messages / expand[flat|nested] mbox.gz Atom feed top
2021-10-27 14:08 [PATCH v2] printk: ringbuffer: Improve prb_next_seq() performance Petr Mladek
2021-10-27 15:48 ` John Ogness
2021-11-01 10:06 ` Petr Mladek [this message]
2022-04-08 0:48 ` Saravana Kannan
2022-04-08 7:15 ` Petr Mladek
[not found] <CAGETcx-tH0+WoqH6s=Zw6VSaHwFcBhvaJKLJRLHGtUEs+skCvQ@mail.gmail.com>
2022-04-08 0:44 ` Saravana Kannan
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=YX+8H8ApU/jm2lo9@alley \
--to=pmladek@suse.com \
--cc=Chunlei.wang@mediatek.com \
--cc=john.ogness@linutronix.de \
--cc=linux-arm-kernel@lists.infradead.org \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-mediatek@lists.infradead.org \
--cc=matthias.bgg@gmail.com \
--cc=rostedt@goodmis.org \
--cc=senozhatsky@chromium.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;
as well as URLs for NNTP newsgroup(s).