From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from e28smtp08.in.ibm.com (e28smtp08.in.ibm.com [122.248.162.8]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (Client CN "e28smtp08.in.ibm.com", Issuer "GeoTrust SSL CA" (not verified)) by ozlabs.org (Postfix) with ESMTPS id CAEE12C0786 for ; Wed, 26 Jun 2013 06:33:08 +1000 (EST) Received: from /spool/local by e28smtp08.in.ibm.com with IBM ESMTP SMTP Gateway: Authorized Use Only! Violators will be prosecuted for from ; Wed, 26 Jun 2013 01:54:26 +0530 Received: from d28relay01.in.ibm.com (d28relay01.in.ibm.com [9.184.220.58]) by d28dlp02.in.ibm.com (Postfix) with ESMTP id 337293940053 for ; Wed, 26 Jun 2013 02:03:03 +0530 (IST) Received: from d28av01.in.ibm.com (d28av01.in.ibm.com [9.184.220.63]) by d28relay01.in.ibm.com (8.13.8/8.13.8/NCO v10.0) with ESMTP id r5PKXHeY21364848 for ; Wed, 26 Jun 2013 02:03:18 +0530 Received: from d28av01.in.ibm.com (loopback [127.0.0.1]) by d28av01.in.ibm.com (8.14.4/8.13.1/NCO v10.0 AVout) with ESMTP id r5PKWvpL003517 for ; Tue, 25 Jun 2013 20:33:00 GMT From: "Srivatsa S. Bhat" Subject: [PATCH v2 22/45] percpu_counter: Use get/put_online_cpus_atomic() to prevent CPU offline To: tglx@linutronix.de, peterz@infradead.org, tj@kernel.org, oleg@redhat.com, paulmck@linux.vnet.ibm.com, rusty@rustcorp.com.au, mingo@kernel.org, akpm@linux-foundation.org, namhyung@kernel.org, walken@google.com, vincent.guittot@linaro.org, laijs@cn.fujitsu.com Date: Wed, 26 Jun 2013 01:59:43 +0530 Message-ID: <20130625202943.16593.52711.stgit@srivatsabhat.in.ibm.com> In-Reply-To: <20130625202452.16593.22810.stgit@srivatsabhat.in.ibm.com> References: <20130625202452.16593.22810.stgit@srivatsabhat.in.ibm.com> MIME-Version: 1.0 Content-Type: text/plain; charset="utf-8" Cc: linux-arch@vger.kernel.org, nikunj@linux.vnet.ibm.com, zhong@linux.vnet.ibm.com, linux-pm@vger.kernel.org, fweisbec@gmail.com, linux-kernel@vger.kernel.org, rostedt@goodmis.org, xiaoguangrong@linux.vnet.ibm.com, sbw@mit.edu, wangyun@linux.vnet.ibm.com, "Srivatsa S. Bhat" , netdev@vger.kernel.org, Tejun Heo , linuxppc-dev@lists.ozlabs.org, Al Viro List-Id: Linux on PowerPC Developers Mail List List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Once stop_machine() is gone from the CPU offline path, we won't be able to depend on disabling preemption to prevent CPUs from going offline from under us. Use the get/put_online_cpus_atomic() APIs to prevent CPUs from going offline, while invoking from atomic context. Cc: Al Viro Cc: Tejun Heo Signed-off-by: Srivatsa S. Bhat --- lib/percpu_counter.c | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/lib/percpu_counter.c b/lib/percpu_counter.c index ba6085d..f5e718d 100644 --- a/lib/percpu_counter.c +++ b/lib/percpu_counter.c @@ -98,6 +98,15 @@ s64 __percpu_counter_sum(struct percpu_counter *fbc) s64 ret; int cpu; + /* + * The calls to get/put_online_cpus_atomic() is strictly not + * necessary, since CPU hotplug is explicitly handled via the + * hotplug callback which synchronizes through fbc->lock. + * But we add them here anyway to make it easier for the debug + * code under CONFIG_DEBUG_HOTPLUG_CPU to validate the correctness + * of hotplug synchronization. + */ + get_online_cpus_atomic(); raw_spin_lock(&fbc->lock); ret = fbc->count; for_each_online_cpu(cpu) { @@ -105,6 +114,7 @@ s64 __percpu_counter_sum(struct percpu_counter *fbc) ret += *pcount; } raw_spin_unlock(&fbc->lock); + put_online_cpus_atomic(); return ret; } EXPORT_SYMBOL(__percpu_counter_sum);