]> git.kernelconcepts.de Git - karo-tx-linux.git/commit
call_function_many: fix list delete vs add race
authorMilton Miller <miltonm@bga.com>
Tue, 15 Mar 2011 19:27:16 +0000 (13:27 -0600)
committerGreg Kroah-Hartman <gregkh@suse.de>
Wed, 23 Mar 2011 19:50:39 +0000 (12:50 -0700)
commit9bc79b33d6e75d2b2760efb39a40e36de0587cdd
tree2c7ef642714bd4446069543ab7faf8807c037136
parent2b9c40b666aa9d9279c22a1d648b0d9bad276909
call_function_many: fix list delete vs add race

commit e6cd1e07a185d5f9b0aa75e020df02d3c1c44940 upstream.

Peter pointed out there was nothing preventing the list_del_rcu in
smp_call_function_interrupt from running before the list_add_rcu in
smp_call_function_many.

Fix this by not setting refs until we have gotten the lock for the list.
Take advantage of the wmb in list_add_rcu to save an explicit additional
one.

I tried to force this race with a udelay before the lock & list_add and
by mixing all 64 online cpus with just 3 random cpus in the mask, but
was unsuccessful.  Still, inspection shows a valid race, and the fix is
a extension of the existing protection window in the current code.

Reported-by: Peter Zijlstra <peterz@infradead.org>
Signed-off-by: Milton Miller <miltonm@bga.com>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
kernel/smp.c