From mboxrd@z Thu Jan 1 00:00:00 1970 From: Russell King - ARM Linux Subject: Re: [PATCH] sched: provide scheduler_ipi() callback in response to smp_send_reschedule() Date: Mon, 17 Jan 2011 11:26:37 +0000 Message-ID: <20110117112637.GA18599@n2100.arm.linux.org.uk> References: <1295262433.30950.53.camel@laptop> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Return-path: Content-Disposition: inline In-Reply-To: <1295262433.30950.53.camel@laptop> Sender: linux-mips-bounce@linux-mips.org Errors-to: linux-mips-bounce@linux-mips.org To: Peter Zijlstra Cc: Richard Henderson , Ivan Kokshaysky , Matt Turner , Mike Frysinger , Mikael Starvik , Jesper Nilsson , Tony Luck , Fenghua Yu , Hirokazu Takata , Ralf Baechle , David Howells , Koichi Yasutake , Kyle McMartin , Helge Deller , "James E.J. Bottomley" , Benjamin Herrenschmidt , Paul Mackerras , Martin Schwidefsky , Heiko Carstens lin List-Id: virtualization@lists.linuxfoundation.org On Mon, Jan 17, 2011 at 12:07:13PM +0100, Peter Zijlstra wrote: > diff --git a/arch/alpha/kernel/smp.c b/arch/alpha/kernel/smp.c > index 42aa078..c4a570b 100644 > --- a/arch/alpha/kernel/smp.c > +++ b/arch/alpha/kernel/smp.c > @@ -587,6 +587,7 @@ handle_ipi(struct pt_regs *regs) > case IPI_RESCHEDULE: > /* Reschedule callback. Everything to be done > is done by the interrupt return path. */ > + scheduler_ipi(); > break; > > case IPI_CALL_FUNC: > diff --git a/arch/arm/kernel/smp.c b/arch/arm/kernel/smp.c > index 9066473..ffde790 100644 > --- a/arch/arm/kernel/smp.c > +++ b/arch/arm/kernel/smp.c > @@ -579,6 +579,7 @@ asmlinkage void __exception do_IPI(struct pt_regs *regs) > * nothing more to do - eveything is > * done on the interrupt return path > */ > + scheduler_ipi(); Maybe remove the comment "everything is done on the interrupt return path" as with this function call, that is no longer the case. Looks like the same is true for Alpha as well?