[POWERPC] Fix handling of unrecoverable SLB miss interrupts
authorPaul Mackerras <paulus@samba.org>
Mon, 14 Apr 2008 03:59:02 +0000 (13:59 +1000)
committerPaul Mackerras <paulus@samba.org>
Mon, 14 Apr 2008 11:11:22 +0000 (21:11 +1000)
commit320787c75ccac3189a1b7aae81f0efc1055f6d3a
treee4e6f029fc4633ef184b9af94189236a6f5ea136
parentac7c5353b189e10cf5dd27399f64f7b013abffc6
[POWERPC] Fix handling of unrecoverable SLB miss interrupts

If an SLB miss interrupt happens while the RI bit of MSR is zero, we
can't just return, because RI being zero indicates that SRR0/SRR1
potentially had live values in them, and the process of taking an
interrupt overwrites them.

This should never happen, but if it does, we try to print a nice oops
message.  That doesn't work, however, because the code at unrecov_slb
assumes that the MMU has been turned on, but we call it with the MMU
off (and have done so since the SLB miss handler was rewritten to run
without turning the MMU on) -- except on iSeries, where everything runs
with the MMU on.

This fixes it by adding the necessary code to turn the MMU on if
necessary.

Signed-off-by: Paul Mackerras <paulus@samba.org>
arch/powerpc/kernel/head_64.S