[PATCH] ARM: Fix r7/r11 confusion when CONFIG_THUMB2_KERNEL=y
From: Will Deacon <hidden>
Date: 2013-07-21 21:39:01
Also in:
lkml
Hello Jed, Thanks for the reply. On Sat, Jul 20, 2013 at 05:46:55AM +0100, Jed Davis wrote:
On Mon, Jul 15, 2013 at 02:54:20PM +0100, Will Deacon wrote:quoted
On Sat, Jul 13, 2013 at 04:18:20AM +0100, Jed Davis wrote:[...]quoted
quoted
Effects of this are probably limited to failure of EHABI unwinding when starting from a function that uses r7 to restore its stack pointer, but the possibility for further breakage (which would be invisible on non-Thumb kernels) is worrying.[...]quoted
I'm struggling to understand exactly the problem that this patch is trying to address. If it's just a code consistency issue, I don't think it's worth it (I actually find it less confusing the way we currently have things) but if there is a real bug, perhaps you could provide a testcase?There is a real bug here, but my commit message wasn't very clear. This was breaking PERF_COUNT_SW_CONTEXT_SWITCHES with CONFIG_THUMB2_KERNEL=y (with my other recently posted patch applied), because kernel/sched.c is built with -fno-omit-frame-pointer (which is wrong, but that's a problem for another patch) and so __schedule's EHABI entry uses 0x97 (mov sp, r7), and somewhere along the line the unwinder gets the r11 value instead. This would also apply to any function with a variable-length array, but __schedule happens to have the perf hook I was trying to use.
Ok, I think I'm with you now. I also think that a better solution would be to try and limit the r7/fp confusion to one place, perhaps behind something like: void arm_get_current_stackframe(struct pt_regs *regs, struct stackframe *frame); then that function can act as the bridge between pt_regs (where we leave everything as it is) and stackframe (where we assign either r7 or fp into the fp member). Then we just fix up the call sites to pass the regs they're interested in to our new function. What do you think? Will