[POWERPC] Fix deadlock with mmu_hash_lock in hash_page_sync
authorBenjamin Herrenschmidt <benh@kernel.crashing.org>
Sun, 30 Mar 2008 20:49:27 +0000 (07:49 +1100)
committerPaul Mackerras <paulus@samba.org>
Thu, 3 Apr 2008 11:11:11 +0000 (22:11 +1100)
commitb991f05f1326fd9e6212851d0f2099875906dd16
tree3ed9768f865989ab221bcbfbfb8df930997cb3b6
parentff3da2e0938bae36d10d69c22bce0177b067a9e2
[POWERPC] Fix deadlock with mmu_hash_lock in hash_page_sync

hash_page_sync() takes and releases the low level mmu hash
lock in order to sync with other processors disposing of page
tables.  Because that lock can be needed to service hash misses
triggered by interrupt handlers, taking it must be done with
interrupts off.  However, hash_page_sync() appears to be called
with interrupts enabled, thus causing occasional deadlocks.

We fix it by making sure hash_page_sync() masks interrupts while
holding the lock.

Signed-off-by: Benjamin Herrenschmidt <benh@kernel.crashing.org>
Signed-off-by: Paul Mackerras <paulus@samba.org>
arch/powerpc/mm/hash_low_32.S