Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1751316AbdGQN7I (ORCPT ); Mon, 17 Jul 2017 09:59:08 -0400 Received: from merlin.infradead.org ([205.233.59.134]:33610 "EHLO merlin.infradead.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751278AbdGQN7H (ORCPT ); Mon, 17 Jul 2017 09:59:07 -0400 Date: Mon, 17 Jul 2017 15:58:51 +0200 From: Peter Zijlstra To: "Li, Aubrey" Cc: paulmck@linux.vnet.ibm.com, Andi Kleen , Frederic Weisbecker , Christoph Lameter , Aubrey Li , tglx@linutronix.de, len.brown@intel.com, rjw@rjwysocki.net, tim.c.chen@linux.intel.com, arjan@linux.intel.com, yang.zhang.wz@gmail.com, x86@kernel.org, linux-kernel@vger.kernel.org Subject: Re: [RFC PATCH v1 00/11] Create fast idle path for short idle periods Message-ID: <20170717135851.tpo6si6my6vcpwla@hirez.programming.kicks-ass.net> References: <496d4921-5768-cd1e-654b-38630b7d2e13@linux.intel.com> <20170712083410.ualmvnvzoohyami5@hirez.programming.kicks-ass.net> <20170712213240.GE3441@tassilo.jf.intel.com> <20170713083649.febfflfl5hafkko5@hirez.programming.kicks-ass.net> <16e12e23-6b28-f174-7c4b-4d719225cd3b@linux.intel.com> <20170713145311.z4zxlyd2dospeoqg@hirez.programming.kicks-ass.net> <20170713152032.GM2393@linux.vnet.ibm.com> <58a312d3-bd3d-9427-109b-5d81a5fd7c76@linux.intel.com> <20170714040553.GR2393@linux.vnet.ibm.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: User-Agent: NeoMutt/20170609 (1.8.3) Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 1077 Lines: 22 On Mon, Jul 17, 2017 at 09:24:51PM +0800, Li, Aubrey wrote: > On 2017/7/14 12:05, Paul E. McKenney wrote: > > > > More specifically: rcu_needs_cpu(), rcu_prepare_for_idle(), > > rcu_cleanup_after_idle(), rcu_eqs_enter(), rcu_eqs_enter_common(), > > rcu_dynticks_eqs_enter(), do_nocb_deferred_wakeup(), > > rcu_dynticks_task_enter(), rcu_eqs_exit(), rcu_eqs_exit_common(), > > rcu_dynticks_task_exit(), rcu_dynticks_eqs_exit(). > > > > The first three (rcu_needs_cpu(), rcu_prepare_for_idle(), and > > rcu_cleanup_after_idle()) should not be significant unless you have > > CONFIG_RCU_FAST_NO_HZ=y. If you do, it would be interesting to learn > > how often invoke_rcu_core() is invoked from rcu_prepare_for_idle() > > and rcu_cleanup_after_idle(), as this can raise softirq. Also > > rcu_accelerate_cbs() and rcu_try_advance_all_cbs(). > > > > Knowing which of these is causing the most trouble might help me > > reduce the overhead in the current idle path. > > I measured two cases, nothing notable found. So skipping rcu_idle_{enter,exit}() is not in fact needed at all?