generic-ipi: fix stack and rcu interaction bug in smp_call_function_mask(), fix
authorNick Piggin <nickpiggin@yahoo.com.au>
Tue, 12 Aug 2008 08:05:13 +0000 (18:05 +1000)
committerIngo Molnar <mingo@elte.hu>
Tue, 12 Aug 2008 09:21:27 +0000 (11:21 +0200)
commitc2fc11985db304572322f1dcdcb0f71337315006
tree330196cefd4eb0ad3b4999fb14518a62f0294d93
parent23a0ee908cbfba3264d19729c67c22b20fa73886
generic-ipi: fix stack and rcu interaction bug in smp_call_function_mask(), fix

> > Nick Piggin (1):
> >       generic-ipi: fix stack and rcu interaction bug in
> > smp_call_function_mask()
>
> I'm still not 100% sure that I have this patch right... I might have seen
> a lockup trace implicating the smp call function path... which may have
> been due to some other problem or a different bug in the new call function
> code, but if some more people can take a look at it before merging?

OK indeed it did have a couple of bugs. Firstly, I wasn't freeing the
data properly in the alloc && wait case. Secondly, I wasn't resetting
CSD_FLAG_WAIT in the for each cpu loop (so only the first CPU would
wait).

After those fixes, the patch boots and runs with the kmalloc commented
out (so it always executes the slowpath).

Signed-off-by: Ingo Molnar <mingo@elte.hu>
kernel/smp.c