Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

powerpc: Fixup oddity in entry_32.S

When I "fixed" the CONFIG_TRACE_IRQFLAGS case on interrupt entry,
I screwed up a little bit with the test for user space vs. kernel.

The code is fine, there's just some dead code around it. I basically
removed the test and always create the added stack frame whether
coming from user or kernel since in any case we do need to save
a bunch of volatile registers or bad things would happen (we can
take page faults in the kernel for example).

Signed-off-by: Benjamin Herrenschmidt <benh@kernel.crashing.org>

-6
-6
arch/powerpc/kernel/entry_32.S
··· 226 226 stw r3,16(r1) 227 227 stw r4,20(r1) 228 228 stw r5,24(r1) 229 - andi. r12,r12,MSR_PR 230 - b 11f 231 229 bl trace_hardirqs_off 232 - b 12f 233 - 11: 234 - bl trace_hardirqs_off 235 - 12: 236 230 lwz r5,24(r1) 237 231 lwz r4,20(r1) 238 232 lwz r3,16(r1)