diff options
author | David S. Miller <davem@sunset.davemloft.net> | 2006-02-06 00:59:03 -0500 |
---|---|---|
committer | David S. Miller <davem@sunset.davemloft.net> | 2006-03-20 04:11:49 -0500 |
commit | 314981ac7177a933319e3c071a5cf0a579205e6e (patch) | |
tree | 11895da391ba91195d6d7a67debaa32a28c1215e /arch/sparc64/kernel/rtrap.S | |
parent | 936f482af1743141d637483ec10eb881537c26dc (diff) |
[SPARC64]: Kill all %pstate changes in context switch code.
They are totally unnecessary because:
1) Interrupts are already disabled when switch_to()
runs.
2) We don't use hard-coded alternate globals any longer.
This found a case in rtrap, which still assumed alternate
global %g6 was current_thread_info(), and that is fixed
by this changeset as well.
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'arch/sparc64/kernel/rtrap.S')
-rw-r--r-- | arch/sparc64/kernel/rtrap.S | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/arch/sparc64/kernel/rtrap.S b/arch/sparc64/kernel/rtrap.S index e6130956307f..a2fa277da62b 100644 --- a/arch/sparc64/kernel/rtrap.S +++ b/arch/sparc64/kernel/rtrap.S | |||
@@ -224,7 +224,8 @@ rt_continue: ldx [%sp + PTREGS_OFF + PT_V9_G1], %g1 | |||
224 | ldx [%sp + PTREGS_OFF + PT_V9_G4], %g4 | 224 | ldx [%sp + PTREGS_OFF + PT_V9_G4], %g4 |
225 | ldx [%sp + PTREGS_OFF + PT_V9_G5], %g5 | 225 | ldx [%sp + PTREGS_OFF + PT_V9_G5], %g5 |
226 | brz,pt %l3, 1f | 226 | brz,pt %l3, 1f |
227 | nop | 227 | mov %g6, %l2 |
228 | |||
228 | /* Must do this before thread reg is clobbered below. */ | 229 | /* Must do this before thread reg is clobbered below. */ |
229 | LOAD_PER_CPU_BASE(%g5, %g6, %i0, %i1, %i2) | 230 | LOAD_PER_CPU_BASE(%g5, %g6, %i0, %i1, %i2) |
230 | 1: | 231 | 1: |
@@ -238,6 +239,8 @@ rt_continue: ldx [%sp + PTREGS_OFF + PT_V9_G1], %g1 | |||
238 | SET_GL(1) | 239 | SET_GL(1) |
239 | .previous | 240 | .previous |
240 | 241 | ||
242 | mov %l2, %g6 | ||
243 | |||
241 | ldx [%sp + PTREGS_OFF + PT_V9_I0], %i0 | 244 | ldx [%sp + PTREGS_OFF + PT_V9_I0], %i0 |
242 | ldx [%sp + PTREGS_OFF + PT_V9_I1], %i1 | 245 | ldx [%sp + PTREGS_OFF + PT_V9_I1], %i1 |
243 | 246 | ||