From: Peter Zijlstra <peterz@infradead.org>
To: Steven Rostedt <rostedt@goodmis.org>
Cc: syzbot <syzbot+53f8ce8bbc07924b6417@syzkaller.appspotmail.com>,
linux-kernel@vger.kernel.org, mingo@redhat.com,
syzkaller-bugs@googlegroups.com
Subject: Re: BUG: using __this_cpu_read() in preemptible code in trace_hardirqs_on
Date: Wed, 21 Oct 2020 17:12:37 +0200 [thread overview]
Message-ID: <20201021151237.GK2628@hirez.programming.kicks-ass.net> (raw)
In-Reply-To: <20201021103433.38fed220@gandalf.local.home>
On Wed, Oct 21, 2020 at 10:34:33AM -0400, Steven Rostedt wrote:
> On Wed, 21 Oct 2020 15:17:33 +0200
> Peter Zijlstra <peterz@infradead.org> wrote:
>
> > > And I'm also guessing that we can call this with interrupts enabled (based
> > > on the comment).
> > >
> > > And we have this:
> > >
> > > local_irq_enable()
> > > trace_hardirqs_on()
> > > lockdep_hardirqs_on()
> > > __this_cpu_read()
> >
> > Moo, two threads..
> >
> > 20201019183355.GS2611@hirez.programming.kicks-ass.net
>
> But this one's much older ;-)
Yeah, my mailbox is a trainwreck :/
> >
> > ---
> >
> > On Tue, Oct 20, 2020 at 12:55:46AM +0800, kernel test robot wrote:
> > > [ 92.898145] BUG: using __this_cpu_read() in preemptible [00000000] code: trinity-c6/526
> >
> > > [ 92.903305] Call Trace:
> > > [ 92.905182] __this_cpu_preempt_check+0xf/0x11
> > > [ 92.905968] lockdep_hardirqs_on_prepare+0x2c/0x18f
> > > [ 92.906853] trace_hardirqs_on+0x49/0x53
> > > [ 92.907578] __bad_area_nosemaphore+0x3a/0x134
> >
> > Hurph, that's a spurious local_irq_enable(). I suppose this'll fix it.
> >
> > ---
> > diff --git a/kernel/locking/lockdep.c b/kernel/locking/lockdep.c
> > index 3e99dfef8408..9f818145ef7d 100644
> > --- a/kernel/locking/lockdep.c
> > +++ b/kernel/locking/lockdep.c
> > @@ -4057,9 +4057,6 @@ void lockdep_hardirqs_on_prepare(unsigned long ip)
> > if (unlikely(in_nmi()))
> > return;
> >
> > - if (unlikely(__this_cpu_read(lockdep_recursion)))
> > - return;
> > -
> > if (unlikely(lockdep_hardirqs_enabled())) {
>
> Hmm, would moving the recursion check below the check of the
> lockdep_hardirqs_enable() cause a large skew in the spurious enable stats?
> May not be an issue, but something we should check to make sure that
> there's not a path that constantly hits this.
Anything that sets recursion will have interrupts disabled.
next prev parent reply other threads:[~2020-10-21 15:12 UTC|newest]
Thread overview: 12+ messages / expand[flat|nested] mbox.gz Atom feed top
2020-10-13 11:22 BUG: using __this_cpu_read() in preemptible code in trace_hardirqs_on syzbot
2020-10-13 13:17 ` Steven Rostedt
2020-10-21 13:17 ` Peter Zijlstra
2020-10-21 14:34 ` Steven Rostedt
2020-10-21 15:12 ` Peter Zijlstra [this message]
2020-10-21 15:27 ` Steven Rostedt
2020-10-22 10:30 ` Peter Zijlstra
2020-10-22 20:32 ` Steven Rostedt
2020-10-23 8:18 ` Peter Zijlstra
2020-10-16 17:16 ` syzbot
2020-10-16 20:33 ` syzbot
2020-10-21 13:09 ` Dmitry Vyukov
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=20201021151237.GK2628@hirez.programming.kicks-ass.net \
--to=peterz@infradead.org \
--cc=linux-kernel@vger.kernel.org \
--cc=mingo@redhat.com \
--cc=rostedt@goodmis.org \
--cc=syzbot+53f8ce8bbc07924b6417@syzkaller.appspotmail.com \
--cc=syzkaller-bugs@googlegroups.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