From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S934209AbdDGO6h (ORCPT ); Fri, 7 Apr 2017 10:58:37 -0400 Received: from mail.kernel.org ([198.145.29.136]:45842 "EHLO mail.kernel.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S933809AbdDGO6b (ORCPT ); Fri, 7 Apr 2017 10:58:31 -0400 Date: Fri, 7 Apr 2017 10:58:26 -0400 From: Steven Rostedt To: "Paul E. McKenney" Cc: linux-kernel@vger.kernel.org, Ingo Molnar , Andrew Morton Subject: Re: [PATCH 0/5 v2] tracing: Add usecase of synchronize_rcu_tasks() and stack_tracer_disable() Message-ID: <20170407105826.562b2e24@gandalf.local.home> In-Reply-To: <20170407144334.GT1600@linux.vnet.ibm.com> References: <20170407140106.051135969@goodmis.org> <20170407144334.GT1600@linux.vnet.ibm.com> X-Mailer: Claws Mail 3.14.0 (GTK+ 2.24.31; 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 On Fri, 7 Apr 2017 07:43:35 -0700 "Paul E. McKenney" wrote: > On Fri, Apr 07, 2017 at 10:01:06AM -0400, Steven Rostedt wrote: > > Paul, > > > > Here's my latest. You OK with it? > > Given your update to 3/5, I suspect that we could live with it. I am > expecting some complaints about increases in idle-entry latency, but might > be best to wait for complaints rather than complexifying too proactively. We only added a this_cpu_inc() and this_cpu_dec() which are very fast operations. I highly doubt it will be measurable. Although, I'm talking about x86, IIRC, the this_cpu_inc/dec were be poorly written for other archs in the past. I'm not sure if that was fixed though. > > That said, there isn't supposed to be any tracing during the now very > small interval where RCU's idle-entry is incomplete. Mightn't it be > better to (under CONFIG_PROVE_RCU or some such) give splats if tracing > showed up in that interval? > Again, tracing is not the issue. I do function tracing in that location without any problems. The issue here was the stack tracer. Maybe we can create a new variable that is more cache local to the RCU code. What about calling it "rcu_disabled"? Then tracing that depends on RCU can simply check that. s/stack_trace_disable/disable_rcu/ s/stack_trace_enable/enable_rcu/ export a per cpu variable rcu_disabled Then I can have the stack tracer check that variable as well. And we could even put in a WARN_ON(this_cpu_read(rcu_disabled) in the TRACE_EVENT() macros. Thoughts? -- Steve