From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1755257Ab2JPQor (ORCPT ); Tue, 16 Oct 2012 12:44:47 -0400 Received: from e31.co.us.ibm.com ([32.97.110.149]:35130 "EHLO e31.co.us.ibm.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1755016Ab2JPQop (ORCPT ); Tue, 16 Oct 2012 12:44:45 -0400 Date: Tue, 16 Oct 2012 09:31:41 -0700 From: "Paul E. McKenney" To: "Srivatsa S. Bhat" Cc: peterz@infradead.org, acme@ghostprotocols.net, mingo@kernel.org, tglx@linutronix.de, akpm@linux-foundation.org, linux-kernel@vger.kernel.org Subject: Re: [RESEND PATCH 1/2] perf, cpu hotplug: Run CPU_STARTING notifiers with irqs disabled Message-ID: <20121016163140.GA2385@linux.vnet.ibm.com> Reply-To: paulmck@linux.vnet.ibm.com References: <20121016075809.3572.47848.stgit@srivatsabhat.in.ibm.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20121016075809.3572.47848.stgit@srivatsabhat.in.ibm.com> User-Agent: Mutt/1.5.21 (2010-09-15) X-Content-Scanned: Fidelis XPS MAILER x-cbid: 12101616-7282-0000-0000-00000DFAAF70 Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On Tue, Oct 16, 2012 at 01:28:10PM +0530, Srivatsa S. Bhat wrote: > The CPU_STARTING notifiers are supposed to be run with irqs disabled. But the > perf_cpu_notifier() macro invokes them without doing that. Fix it. Color me confused... Isn't perf_event_task_tick() invoked only from scheduler_tick(), which always has interrupts disabled? Or are you needing to invoke it from somewhere else? Thanx, Paul > Signed-off-by: Srivatsa S. Bhat > --- > > include/linux/perf_event.h | 3 +++ > 1 file changed, 3 insertions(+) > > diff --git a/include/linux/perf_event.h b/include/linux/perf_event.h > index 2e90235..0647805 100644 > --- a/include/linux/perf_event.h > +++ b/include/linux/perf_event.h > @@ -803,10 +803,13 @@ static inline void perf_event_task_tick(void) { } > do { \ > static struct notifier_block fn##_nb __cpuinitdata = \ > { .notifier_call = fn, .priority = CPU_PRI_PERF }; \ > + unsigned long flags; \ > fn(&fn##_nb, (unsigned long)CPU_UP_PREPARE, \ > (void *)(unsigned long)smp_processor_id()); \ > + local_irq_save(flags); \ > fn(&fn##_nb, (unsigned long)CPU_STARTING, \ > (void *)(unsigned long)smp_processor_id()); \ > + local_irq_restore(flags); \ > fn(&fn##_nb, (unsigned long)CPU_ONLINE, \ > (void *)(unsigned long)smp_processor_id()); \ > register_cpu_notifier(&fn##_nb); \ >