[PATCH] ARM: Stop irqsoff tracing if return to user with interrupts enabled
Todd Poynor
toddpoynor at google.com
Fri Nov 12 22:40:48 EST 2010
Signed-off-by: Todd Poynor <toddpoynor at google.com>
---
arch/arm/kernel/entry-common.S | 14 ++++++++++++++
1 files changed, 14 insertions(+), 0 deletions(-)
diff --git a/arch/arm/kernel/entry-common.S b/arch/arm/kernel/entry-common.S
index 8bfa987..b81d270 100644
--- a/arch/arm/kernel/entry-common.S
+++ b/arch/arm/kernel/entry-common.S
@@ -29,6 +29,13 @@ ret_fast_syscall:
ldr r1, [tsk, #TI_FLAGS]
tst r1, #_TIF_WORK_MASK
bne fast_work_pending
+#if defined(CONFIG_TRACE_IRQFLAGS)
+ ldr r1, [sp, #S_OFF + S_PSR] @ get calling cpsr
+ tst r1, #PSR_I_BIT
+ bne 1f
+ asm_trace_hardirqs_on
+1:
+#endif
/* perform architecture specific actions before user return */
arch_ret_to_user r1, lr
@@ -65,6 +72,13 @@ ret_slow_syscall:
tst r1, #_TIF_WORK_MASK
bne work_pending
no_work_pending:
+#if defined(CONFIG_TRACE_IRQFLAGS)
+ ldr r1, [sp, #S_PSR] @ get calling cpsr
+ tst r1, #PSR_I_BIT
+ bne 2f
+ asm_trace_hardirqs_on
+2:
+#endif
/* perform architecture specific actions before user return */
arch_ret_to_user r1, lr
--
1.7.3.1
More information about the linux-arm-kernel
mailing list