]> git.kernelconcepts.de Git - karo-tx-linux.git/commitdiff
i386: fixup TRACE_IRQ breakage
authorPeter Zijlstra <a.p.zijlstra@chello.nl>
Tue, 13 Nov 2007 07:46:02 +0000 (08:46 +0100)
committerAdrian Bunk <bunk@kernel.org>
Tue, 13 Nov 2007 07:46:02 +0000 (08:46 +0100)
The TRACE_IRQS_ON function in iret_exc: calls a C function without
ensuring that the segments are set properly. Move the trace function and
the enabling of interrupt into the C stub.

Signed-off-by: Peter Zijlstra <a.p.zijlstra@chello.nl>
Signed-off-by: Adrian Bunk <bunk@kernel.org>
arch/i386/kernel/entry.S
arch/i386/kernel/traps.c

index a14218c9ec6cf208d78fb9e1f15c877c5a84d8df..cff11311e74cc8fe0240bfdc1e9fae922f802fa3 100644 (file)
@@ -261,7 +261,6 @@ restore_nocheck:
 1:     iret
 .section .fixup,"ax"
 iret_exc:
-       sti
        pushl $0                        # no error code
        pushl $do_iret_error
        jmp error_code
index b814dbdcc91e58b06c140ff1a099f223c2212768..183e4b323a57654ade645bd3a975b1585f9bea6d 100644 (file)
@@ -441,10 +441,12 @@ fastcall void do_##name(struct pt_regs * regs, long error_code) \
        do_trap(trapnr, signr, str, 0, regs, error_code, NULL); \
 }
 
-#define DO_ERROR_INFO(trapnr, signr, str, name, sicode, siaddr) \
+#define DO_ERROR_INFO(trapnr, signr, str, name, sicode, siaddr, irq) \
 fastcall void do_##name(struct pt_regs * regs, long error_code) \
 { \
        siginfo_t info; \
+       if (irq) \
+               local_irq_enable(); \
        info.si_signo = signr; \
        info.si_errno = 0; \
        info.si_code = sicode; \
@@ -484,13 +486,13 @@ DO_VM86_ERROR( 3, SIGTRAP, "int3", int3)
 #endif
 DO_VM86_ERROR( 4, SIGSEGV, "overflow", overflow)
 DO_VM86_ERROR( 5, SIGSEGV, "bounds", bounds)
-DO_ERROR_INFO( 6, SIGILL,  "invalid opcode", invalid_op, ILL_ILLOPN, regs->eip)
+DO_ERROR_INFO( 6, SIGILL,  "invalid opcode", invalid_op, ILL_ILLOPN, regs->eip, 0)
 DO_ERROR( 9, SIGFPE,  "coprocessor segment overrun", coprocessor_segment_overrun)
 DO_ERROR(10, SIGSEGV, "invalid TSS", invalid_TSS)
 DO_ERROR(11, SIGBUS,  "segment not present", segment_not_present)
 DO_ERROR(12, SIGBUS,  "stack segment", stack_segment)
-DO_ERROR_INFO(17, SIGBUS, "alignment check", alignment_check, BUS_ADRALN, 0)
-DO_ERROR_INFO(32, SIGSEGV, "iret exception", iret_error, ILL_BADSTK, 0)
+DO_ERROR_INFO(17, SIGBUS, "alignment check", alignment_check, BUS_ADRALN, 0, 0)
+DO_ERROR_INFO(32, SIGSEGV, "iret exception", iret_error, ILL_BADSTK, 0, 1)
 
 fastcall void __kprobes do_general_protection(struct pt_regs * regs,
                                              long error_code)