Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1753248AbbFPS5z (ORCPT ); Tue, 16 Jun 2015 14:57:55 -0400 Received: from smtprelay0195.hostedemail.com ([216.40.44.195]:59229 "EHLO smtprelay.hostedemail.com" rhost-flags-OK-OK-OK-FAIL) by vger.kernel.org with ESMTP id S1754660AbbFPS5s (ORCPT ); Tue, 16 Jun 2015 14:57:48 -0400 X-Session-Marker: 726F737465647440676F6F646D69732E6F7267 X-Spam-Summary: 10,1,0,,d41d8cd98f00b204,rostedt@goodmis.org,:::::::,RULES_HIT:41:69:355:379:541:599:800:960:966:968:973:988:989:1260:1277:1311:1313:1314:1345:1359:1431:1437:1515:1516:1518:1534:1542:1593:1594:1711:1730:1747:1777:1792:2196:2199:2393:2553:2559:2562:2692:2895:3138:3139:3140:3141:3142:3354:3622:3865:3866:3867:3868:3871:3872:3873:3874:4250:4321:4385:5007:6261:7875:7903:8957:9038:9040:10007:10400:10559:10848:10967:11026:11232:11473:11658:11914:12043:12438:12517:12519:12555:12663:12683:12740:14096:14097:21080,0,RBL:none,CacheIP:none,Bayesian:0.5,0.5,0.5,Netcheck:none,DomainCache:0,MSF:not bulk,SPF:fn,MSBL:0,DNSBL:none,Custom_rules:0:1:0 X-HE-Tag: bit80_9a4a7b562202 X-Filterd-Recvd-Size: 3597 Date: Tue, 16 Jun 2015 14:57:44 -0400 From: Steven Rostedt To: "Paul E. McKenney" Cc: Alexei Starovoitov , Daniel Wagner , LKML Subject: Re: call_rcu from trace_preempt Message-ID: <20150616145744.457ab89d@gandalf.local.home> In-Reply-To: <20150616173942.GP3913@linux.vnet.ibm.com> References: <557F509D.2000509@plumgrid.com> <20150615230702.GB3913@linux.vnet.ibm.com> <557F7764.5060707@plumgrid.com> <20150616021458.GE3913@linux.vnet.ibm.com> <557FB7E1.6080004@plumgrid.com> <20150616122733.GG3913@linux.vnet.ibm.com> <20150616113738.3ab2667b@gandalf.local.home> <20150616160546.GL3913@linux.vnet.ibm.com> <55805960.2030008@plumgrid.com> <20150616173942.GP3913@linux.vnet.ibm.com> X-Mailer: Claws Mail 3.11.1 (GTK+ 2.24.25; x86_64-pc-linux-gnu) MIME-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 2547 Lines: 76 On Tue, 16 Jun 2015 10:39:42 -0700 "Paul E. McKenney" wrote: > > >>If rcu_is_watching() and __rcu_is_watching() are both marked as > > >>notrace, it makes sense to use preempt_disable/enable_notrace() as it > > >>otherwise defeats the purpose of the notrace markers on rcu_is_watching. > > And __rcu_is_watching() is marked notrace as well. Isn't that what I said? > > > >>That is regardless of what the rest of this thread is about. > > > > > >Good enough! Alexei, are you OK with my adding your Signed-off-by > > >to the above patch? > > > > sure. > > Signed-off-by: Alexei Starovoitov > > > > >(Still not sold on reentrant call_rcu() and > > >kfree_rcu(), but getting notrace set up correctly is worthwhile.) > > > > I'm not sold on it either. So far trying to understand > > all consequences. > > Here is the updated patch. Steven, I added your "Acked-by" based > on your positive comments above, please let me know if you would > like me to remove it. I'm fine with it. But doesn't Acked-by go above Signed-off-by? -- Steve > > Thanx, Paul > > ------------------------------------------------------------------------ > > commit 9611f225d383a2edbdf74ca7f00c8d0b1e56dc45 > Author: Alexei Starovoitov > Date: Tue Jun 16 10:35:18 2015 -0700 > > rcu: Make rcu_is_watching() really notrace > > Although rcu_is_watching() is marked notrace, it invokes preempt_disable() > and preempt_enable(), both of which can be traced. This defeats the > purpose of the notrace on rcu_is_watching(), so this commit substitutes > preempt_disable_notrace() and preempt_enable_notrace(). > > Signed-off-by: Alexei Starovoitov > Signed-off-by: Paul E. McKenney > Acked-by: Steven Rostedt > > diff --git a/kernel/rcu/tree.c b/kernel/rcu/tree.c > index fc0385380e97..c844ef3c2fae 100644 > --- a/kernel/rcu/tree.c > +++ b/kernel/rcu/tree.c > @@ -973,9 +973,9 @@ bool notrace rcu_is_watching(void) > { > bool ret; > > - preempt_disable(); > + preempt_disable_notrace(); > ret = __rcu_is_watching(); > - preempt_enable(); > + preempt_enable_notrace(); > return ret; > } > EXPORT_SYMBOL_GPL(rcu_is_watching); -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/