Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > linux.kernel > #1637720
| From | "Paul E. McKenney" <paulmck@linux.vnet.ibm.com> |
|---|---|
| Newsgroups | linux.kernel |
| Subject | Re: [PATCH 2/3] livepatch/rcu: Warn when system consistency is broken in RCU code |
| Date | 2017-05-08 23:10 +0200 |
| Message-ID | <tEY4O-I2-15@gated-at.bofh.it> (permalink) |
| References | (2 earlier) <tEUaS-6rk-3@gated-at.bofh.it> <tEWmm-80A-23@gated-at.bofh.it> <tEWPo-8b6-17@gated-at.bofh.it> <tEXip-8Y-7@gated-at.bofh.it> <tEXLs-ls-19@gated-at.bofh.it> |
| Organization | linux.* mail to news gateway |
On Mon, May 08, 2017 at 03:43:33PM -0500, Josh Poimboeuf wrote: > On Mon, May 08, 2017 at 01:15:58PM -0700, Paul E. McKenney wrote: > > On Mon, May 08, 2017 at 02:47:29PM -0500, Josh Poimboeuf wrote: > > > On Mon, May 08, 2017 at 03:13:22PM -0400, Steven Rostedt wrote: > > > > [ . . . ] > > > > > > If rcu is not watching, calling rcu_enter_irq() will have it watch > > > > again. Even in NMI context I believe. > > > > > > What if you get an NMI while running in rcu_dynticks_eqs_enter() before > > > it increments rdtp->dynticks? Will rcu_enter_irq() still work from the > > rcu_irq_enter() > > > NMI? > > > > The rcu_nmi_enter() function willl notice that RCU is not watching, and > > will therefore atomically increment RCU's dynticks-idle counter, which > > will be atomically incremented again upon return. Since the bottom bit > > of this counter controls whether or not RCU is watching, RCU will be > > watching during the NMI, will stop watching upon return from the NMI, > > which restores state so as to allow rcu_irq_enter() to cause RCU to once > > again watch. (NMI algorithm due to Andy Lutomirski.) > > > > > I'm just trying to understand what are the cases where rcu_enter_irq() > > > *doesn't* work from an ftrace handler. > > > > It doesn't work from an NMI handler. Aside from possible architecture > > specific special cases, it should work everywhere else. > > Ok, so just to clarify. Is there a bug in the ftrace stack tracer in > the following situation? > > 1. RCU isn't watching > 2. An NMI hits > 3. ist_enter() calls into the ftrace stack tracer, before > rcu_nmi_enter() is called, so RCU isn't watching yet > 4. The ftrace stack tracer calls rcu_irq_enter(), which has no effect, > so RCU still isn't watching > 5. Hilarity ensues in the ftrace stack tracer This would be a problem if step 2's NMI hit rcu_irq_enter(), rcu_irq_exit(), and friends in just the wrong place. I would suggest that ftrace() do something like this... if (in_nmi()) rcu_nmi_enter(); else rcu_irq_enter(); Except that, as Steven will quickly point out, this won't work at the very edges of the NMI, when NMI_MASK won't be set in preempt_count(). Other thoughts? Thanx, Paul
Back to linux.kernel | Previous | Next — Previous in thread | Next in thread | Find similar | Unroll thread
[PATCH 0/3] livepatch/rcu: Handle some subtle issues between livepatching and RCU Petr Mladek <pmladek@suse.com> - 2017-05-04 13:00 +0200
[PATCH 1/3] livepatch/rcu: Guarantee consistency when patching idle kthreads Petr Mladek <pmladek@suse.com> - 2017-05-04 13:00 +0200
[PATCH 2/3] livepatch/rcu: Warn when system consistency is broken in RCU code Petr Mladek <pmladek@suse.com> - 2017-05-04 13:00 +0200
Re: [PATCH 2/3] livepatch/rcu: Warn when system consistency is broken in RCU code Josh Poimboeuf <jpoimboe@redhat.com> - 2017-05-08 19:00 +0200
Re: [PATCH 2/3] livepatch/rcu: Warn when system consistency is broken in RCU code Steven Rostedt <rostedt@goodmis.org> - 2017-05-08 21:20 +0200
Re: [PATCH 2/3] livepatch/rcu: Warn when system consistency is broken in RCU code Josh Poimboeuf <jpoimboe@redhat.com> - 2017-05-08 21:50 +0200
Re: [PATCH 2/3] livepatch/rcu: Warn when system consistency is broken in RCU code "Paul E. McKenney" <paulmck@linux.vnet.ibm.com> - 2017-05-08 22:20 +0200
Re: [PATCH 2/3] livepatch/rcu: Warn when system consistency is broken in RCU code Josh Poimboeuf <jpoimboe@redhat.com> - 2017-05-08 22:50 +0200
Re: [PATCH 2/3] livepatch/rcu: Warn when system consistency is broken in RCU code Josh Poimboeuf <jpoimboe@redhat.com> - 2017-05-08 23:00 +0200
Re: [PATCH 2/3] livepatch/rcu: Warn when system consistency is broken in RCU code "Paul E. McKenney" <paulmck@linux.vnet.ibm.com> - 2017-05-08 23:10 +0200
Re: [PATCH 2/3] livepatch/rcu: Warn when system consistency is broken in RCU code "Paul E. McKenney" <paulmck@linux.vnet.ibm.com> - 2017-05-08 23:10 +0200
Re: [PATCH 2/3] livepatch/rcu: Warn when system consistency is broken in RCU code Steven Rostedt <rostedt@goodmis.org> - 2017-05-08 23:20 +0200
Re: [PATCH 2/3] livepatch/rcu: Warn when system consistency is broken in RCU code "Paul E. McKenney" <paulmck@linux.vnet.ibm.com> - 2017-05-08 23:40 +0200
Re: [PATCH 2/3] livepatch/rcu: Warn when system consistency is broken in RCU code Josh Poimboeuf <jpoimboe@redhat.com> - 2017-05-09 00:20 +0200
Re: [PATCH 2/3] livepatch/rcu: Warn when system consistency is broken in RCU code "Paul E. McKenney" <paulmck@linux.vnet.ibm.com> - 2017-05-09 00:40 +0200
Re: [PATCH 2/3] livepatch/rcu: Warn when system consistency is broken in RCU code Josh Poimboeuf <jpoimboe@redhat.com> - 2017-05-09 18:20 +0200
Re: [PATCH 2/3] livepatch/rcu: Warn when system consistency is broken in RCU code "Paul E. McKenney" <paulmck@linux.vnet.ibm.com> - 2017-05-09 18:40 +0200
Re: [PATCH 2/3] livepatch/rcu: Warn when system consistency is broken in RCU code Petr Mladek <pmladek@suse.com> - 2017-05-10 18:10 +0200
Re: [PATCH 2/3] livepatch/rcu: Warn when system consistency is broken in RCU code "Paul E. McKenney" <paulmck@linux.vnet.ibm.com> - 2017-05-10 18:50 +0200
Re: [PATCH 2/3] livepatch/rcu: Warn when system consistency is broken in RCU code Josh Poimboeuf <jpoimboe@redhat.com> - 2017-05-10 20:00 +0200
Re: [PATCH 2/3] livepatch/rcu: Warn when system consistency is broken in RCU code Miroslav Benes <mbenes@suse.cz> - 2017-05-11 14:50 +0200
Re: [PATCH 2/3] livepatch/rcu: Warn when system consistency is broken in RCU code Josh Poimboeuf <jpoimboe@redhat.com> - 2017-05-11 17:10 +0200
Re: [PATCH 2/3] livepatch/rcu: Warn when system consistency is broken in RCU code Steven Rostedt <rostedt@goodmis.org> - 2017-05-08 23:20 +0200
Re: [PATCH 2/3] livepatch/rcu: Warn when system consistency is broken in RCU code Steven Rostedt <rostedt@goodmis.org> - 2017-05-08 22:20 +0200
Re: [PATCH 2/3] livepatch/rcu: Warn when system consistency is broken in RCU code Miroslav Benes <mbenes@suse.cz> - 2017-05-11 15:00 +0200
Re: [PATCH 2/3] livepatch/rcu: Warn when system consistency is broken in RCU code Petr Mladek <pmladek@suse.com> - 2017-05-11 16:00 +0200
Re: [PATCH 2/3] livepatch/rcu: Warn when system consistency is broken in RCU code "Paul E. McKenney" <paulmck@linux.vnet.ibm.com> - 2017-05-11 17:00 +0200
Re: [PATCH 2/3] livepatch/rcu: Warn when system consistency is broken in RCU code Josh Poimboeuf <jpoimboe@redhat.com> - 2017-05-11 17:30 +0200
Re: [PATCH 2/3] livepatch/rcu: Warn when system consistency is broken in RCU code Petr Mladek <pmladek@suse.com> - 2017-05-11 14:50 +0200
Re: [PATCH 0/3] livepatch/rcu: Handle some subtle issues between livepatching and RCU "Paul E. McKenney" <paulmck@linux.vnet.ibm.com> - 2017-05-04 19:00 +0200
csiph-web