]> git.ipfire.org Git - thirdparty/kernel/stable.git/commit
sparc32: destroy_context() and switch_mm() needs to disable interrupts.
authorAndreas Larsson <andreas@gaisler.com>
Thu, 18 Dec 2014 12:23:23 +0000 (13:23 +0100)
committerJiri Slaby <jslaby@suse.cz>
Thu, 9 Apr 2015 11:13:48 +0000 (13:13 +0200)
commit7cd15d5ef55f544343c61de3e5e929fde88c637d
tree75b1386fb301e75af0a0deb1857e9ea51a985ff1
parentd06381e8aac5271952076d66b001a01f5613599a
sparc32: destroy_context() and switch_mm() needs to disable interrupts.

[ Upstream commit 66d0f7ec9f1038452178b1993fc07fd96d30fd38 ]

Load balancing can be triggered in the critical sections protected by
srmmu_context_spinlock in destroy_context() and switch_mm() and can hang
the cpu waiting for the rq lock of another cpu that in turn has called
switch_mm hangning on srmmu_context_spinlock leading to deadlock.

So, disable interrupt while taking srmmu_context_spinlock in
destroy_context() and switch_mm() so we don't deadlock.

See also commit 77b838fa1ef0 ("[SPARC64]: destroy_context() needs to disable
interrupts.")

Signed-off-by: Andreas Larsson <andreas@gaisler.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Signed-off-by: Jiri Slaby <jslaby@suse.cz>
arch/sparc/mm/srmmu.c