S390: cpu topology: fix locking
authorHeiko Carstens <heiko.carstens@de.ibm.com>
Fri, 14 Nov 2008 17:18:07 +0000 (18:18 +0100)
committerGreg Kroah-Hartman <gregkh@suse.de>
Thu, 20 Nov 2008 22:54:49 +0000 (14:54 -0800)
commit65347ce15fb47f3aa58107be55ec00fa6f1eda22
tree19360e971f482bc48f57ea95ec5d519a66ad3503
parentd12a87b8e4b2b1a830f248d2b76a2943effbea92
S390: cpu topology: fix locking

commit 74af283102b358b0da545460d0d176f473e110f6 upstream.

cpu_coregroup_map used to grab a mutex on s390 since it was only
called from process context.
Since c7c22e4d5c1fdebfac4dba76de7d0338c2b0d832 "block: add support
for IO CPU affinity" this is not true anymore.
It now also gets called from softirq context.

To prevent possible deadlocks change this in architecture code and
use a spinlock instead of a mutex.

Cc: Jens Axboe <jens.axboe@oracle.com>
Signed-off-by: Heiko Carstens <heiko.carstens@de.ibm.com>
Signed-off-by: Martin Schwidefsky <schwidefsky@de.ibm.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
arch/s390/kernel/topology.c