[PATCH] [ARM] Unconditional call to smp_cross_call on UP crashes (take #2)

Will Deacon will.deacon at arm.com
Mon Jul 16 07:22:22 EDT 2012


On Fri, Jul 13, 2012 at 08:59:39AM +0100, Shawn Guo wrote:
> > diff --git a/arch/arm/kernel/smp.c b/arch/arm/kernel/smp.c
> > index 8f46446..7babc3f 100644
> > --- a/arch/arm/kernel/smp.c
> > +++ b/arch/arm/kernel/smp.c
> > @@ -590,7 +590,8 @@ void smp_send_stop(void)
> >  
> >  	cpumask_copy(&mask, cpu_online_mask);
> >  	cpumask_clear_cpu(smp_processor_id(), &mask);
> > -	smp_cross_call(&mask, IPI_CPU_STOP);
> > +	if (!cpumask_empty(&mask))
> > +		smp_cross_call(&mask, IPI_CPU_STOP);

I wonder whether we shouldn't have a default smp_cross_call implementation
with BUG_ON(!cpumask_empty(&mask)). It's marginally nicer than an explicit NULL
deference and it would also fix your problem.

Will



More information about the linux-arm-kernel mailing list