2 * linux/arch/x86-64/traps.c
4 * Copyright (C) 1991, 1992 Linus Torvalds
5 * Copyright (C) 2000, 2001, 2002 Andi Kleen, SuSE Labs
7 * Pentium III FXSR, SSE support
8 * Gareth Hughes <gareth@valinux.com>, May 2000
10 * $Id: traps.c,v 1.36 2002/03/24 11:09:10 ak Exp $
14 * 'Traps.c' handles hardware traps and faults after we have saved some
17 #include <linux/config.h>
18 #include <linux/sched.h>
19 #include <linux/kernel.h>
20 #include <linux/string.h>
21 #include <linux/errno.h>
22 #include <linux/ptrace.h>
23 #include <linux/timer.h>
25 #include <linux/init.h>
26 #include <linux/delay.h>
27 #include <linux/spinlock.h>
28 #include <linux/interrupt.h>
29 #include <linux/module.h>
30 #include <linux/moduleparam.h>
31 #include <linux/nmi.h>
32 #include <linux/kprobes.h>
34 #include <asm/system.h>
35 #include <asm/uaccess.h>
37 #include <asm/atomic.h>
38 #include <asm/debugreg.h>
41 #include <asm/kdebug.h>
42 #include <asm/processor.h>
45 #include <asm/pgalloc.h>
47 #include <asm/proto.h>
50 #include <linux/irq.h>
53 extern struct gate_struct idt_table
[256];
55 asmlinkage
void divide_error(void);
56 asmlinkage
void debug(void);
57 asmlinkage
void nmi(void);
58 asmlinkage
void int3(void);
59 asmlinkage
void overflow(void);
60 asmlinkage
void bounds(void);
61 asmlinkage
void invalid_op(void);
62 asmlinkage
void device_not_available(void);
63 asmlinkage
void double_fault(void);
64 asmlinkage
void coprocessor_segment_overrun(void);
65 asmlinkage
void invalid_TSS(void);
66 asmlinkage
void segment_not_present(void);
67 asmlinkage
void stack_segment(void);
68 asmlinkage
void general_protection(void);
69 asmlinkage
void page_fault(void);
70 asmlinkage
void coprocessor_error(void);
71 asmlinkage
void simd_coprocessor_error(void);
72 asmlinkage
void reserved(void);
73 asmlinkage
void alignment_check(void);
74 asmlinkage
void machine_check(void);
75 asmlinkage
void spurious_interrupt_bug(void);
76 asmlinkage
void call_debug(void);
78 struct notifier_block
*die_chain
;
79 static DEFINE_SPINLOCK(die_notifier_lock
);
81 int register_die_notifier(struct notifier_block
*nb
)
85 spin_lock_irqsave(&die_notifier_lock
, flags
);
86 err
= notifier_chain_register(&die_chain
, nb
);
87 spin_unlock_irqrestore(&die_notifier_lock
, flags
);
91 static inline void conditional_sti(struct pt_regs
*regs
)
93 if (regs
->eflags
& X86_EFLAGS_IF
)
97 static int kstack_depth_to_print
= 10;
99 #ifdef CONFIG_KALLSYMS
100 #include <linux/kallsyms.h>
101 int printk_address(unsigned long address
)
103 unsigned long offset
= 0, symsize
;
109 symname
= kallsyms_lookup(address
, &symsize
, &offset
, &modname
, namebuf
);
111 return printk("[<%016lx>]", address
);
113 modname
= delim
= "";
114 return printk("<%016lx>{%s%s%s%s%+ld}",
115 address
,delim
,modname
,delim
,symname
,offset
);
118 int printk_address(unsigned long address
)
120 return printk("[<%016lx>]", address
);
124 static unsigned long *in_exception_stack(unsigned cpu
, unsigned long stack
,
125 unsigned *usedp
, const char **idp
)
127 static const char ids
[N_EXCEPTION_STACKS
][8] = {
128 [DEBUG_STACK
- 1] = "#DB",
129 [NMI_STACK
- 1] = "NMI",
130 [DOUBLEFAULT_STACK
- 1] = "#DF",
131 [STACKFAULT_STACK
- 1] = "#SS",
132 [MCE_STACK
- 1] = "#MC",
136 for (k
= 0; k
< N_EXCEPTION_STACKS
; k
++) {
139 end
= per_cpu(init_tss
, cpu
).ist
[k
];
142 if (stack
>= end
- EXCEPTION_STKSZ
) {
143 if (*usedp
& (1U << k
))
147 return (unsigned long *)end
;
154 * x86-64 can have upto three kernel stacks:
157 * severe exception (double fault, nmi, stack fault, debug, mce) hardware stack
160 void show_trace(unsigned long *stack
)
163 const unsigned cpu
= safe_smp_processor_id();
164 unsigned long *irqstack_end
= (unsigned long *)cpu_pda
[cpu
].irqstackptr
;
168 printk("\nCall Trace:");
170 #define HANDLE_STACK(cond) \
173 if (kernel_text_address(addr)) { \
175 * If the address is either in the text segment of the \
176 * kernel, or in the region which contains vmalloc'ed \
177 * memory, it *may* be the address of a calling \
178 * routine; if so, print it so that someone tracing \
179 * down the cause of the crash will be able to figure \
180 * out the call path that was taken. \
182 i += printk_address(addr); \
194 unsigned long *estack_end
;
195 estack_end
= in_exception_stack(cpu
, (unsigned long)stack
,
199 i
+= printk(" <%s> ", id
);
200 HANDLE_STACK (stack
< estack_end
);
201 i
+= printk(" <EOE> ");
202 stack
= (unsigned long *) estack_end
[-2];
206 unsigned long *irqstack
;
207 irqstack
= irqstack_end
-
208 (IRQSTACKSIZE
- 64) / sizeof(*irqstack
);
210 if (stack
>= irqstack
&& stack
< irqstack_end
) {
211 i
+= printk(" <IRQ> ");
212 HANDLE_STACK (stack
< irqstack_end
);
213 stack
= (unsigned long *) (irqstack_end
[-1]);
215 i
+= printk(" <EOI> ");
222 HANDLE_STACK (((long) stack
& (THREAD_SIZE
-1)) != 0);
227 void show_stack(struct task_struct
*tsk
, unsigned long * rsp
)
229 unsigned long *stack
;
231 const int cpu
= safe_smp_processor_id();
232 unsigned long *irqstack_end
= (unsigned long *) (cpu_pda
[cpu
].irqstackptr
);
233 unsigned long *irqstack
= (unsigned long *) (cpu_pda
[cpu
].irqstackptr
- IRQSTACKSIZE
);
235 // debugging aid: "show_stack(NULL, NULL);" prints the
236 // back trace for this cpu.
240 rsp
= (unsigned long *)tsk
->thread
.rsp
;
242 rsp
= (unsigned long *)&rsp
;
246 for(i
=0; i
< kstack_depth_to_print
; i
++) {
247 if (stack
>= irqstack
&& stack
<= irqstack_end
) {
248 if (stack
== irqstack_end
) {
249 stack
= (unsigned long *) (irqstack_end
[-1]);
253 if (((long) stack
& (THREAD_SIZE
-1)) == 0)
256 if (i
&& ((i
% 4) == 0))
258 printk("%016lx ", *stack
++);
259 touch_nmi_watchdog();
261 show_trace((unsigned long *)rsp
);
265 * The architecture-independent dump_stack generator
267 void dump_stack(void)
273 EXPORT_SYMBOL(dump_stack
);
275 void show_registers(struct pt_regs
*regs
)
278 int in_kernel
= !user_mode(regs
);
280 const int cpu
= safe_smp_processor_id();
281 struct task_struct
*cur
= cpu_pda
[cpu
].pcurrent
;
285 printk("CPU %d ", cpu
);
287 printk("Process %s (pid: %d, threadinfo %p, task %p)\n",
288 cur
->comm
, cur
->pid
, cur
->thread_info
, cur
);
291 * When in-kernel, we also print out the stack and code at the
292 * time of the fault..
297 show_stack(NULL
, (unsigned long*)rsp
);
300 if(regs
->rip
< PAGE_OFFSET
)
306 if(__get_user(c
, &((unsigned char*)regs
->rip
)[i
])) {
308 printk(" Bad RIP value.");
317 void handle_BUG(struct pt_regs
*regs
)
324 if (__copy_from_user(&f
, (struct bug_frame
*) regs
->rip
,
325 sizeof(struct bug_frame
)))
327 if ((unsigned long)f
.filename
< __PAGE_OFFSET
||
328 f
.ud2
[0] != 0x0f || f
.ud2
[1] != 0x0b)
330 if (__get_user(tmp
, f
.filename
))
331 f
.filename
= "unmapped filename";
332 printk("----------- [cut here ] --------- [please bite here ] ---------\n");
333 printk(KERN_ALERT
"Kernel BUG at %.50s:%d\n", f
.filename
, f
.line
);
337 void out_of_line_bug(void)
343 static DEFINE_SPINLOCK(die_lock
);
344 static int die_owner
= -1;
346 void oops_begin(void)
348 int cpu
= safe_smp_processor_id();
349 /* racy, but better than risking deadlock. */
351 if (!spin_trylock(&die_lock
)) {
352 if (cpu
== die_owner
)
353 /* nested oops. should stop eventually */;
355 spin_lock(&die_lock
);
366 spin_unlock(&die_lock
);
371 void __die(const char * str
, struct pt_regs
* regs
, long err
)
373 static int die_counter
;
374 printk(KERN_EMERG
"%s: %04lx [%u] ", str
, err
& 0xffff,++die_counter
);
375 #ifdef CONFIG_PREEMPT
381 #ifdef CONFIG_DEBUG_PAGEALLOC
382 printk("DEBUG_PAGEALLOC");
385 notify_die(DIE_OOPS
, (char *)str
, regs
, err
, 255, SIGSEGV
);
386 show_registers(regs
);
387 /* Executive summary in case the oops scrolled away */
388 printk(KERN_ALERT
"RIP ");
389 printk_address(regs
->rip
);
390 printk(" RSP <%016lx>\n", regs
->rsp
);
393 void die(const char * str
, struct pt_regs
* regs
, long err
)
397 __die(str
, regs
, err
);
401 static inline void die_if_kernel(const char * str
, struct pt_regs
* regs
, long err
)
403 if (!(regs
->eflags
& VM_MASK
) && (regs
->cs
== __KERNEL_CS
))
407 void die_nmi(char *str
, struct pt_regs
*regs
)
411 * We are in trouble anyway, lets at least try
412 * to get a message out.
414 printk(str
, safe_smp_processor_id());
415 show_registers(regs
);
416 if (panic_on_timeout
|| panic_on_oops
)
417 panic("nmi watchdog");
418 printk("console shuts up ...\n");
423 static void __kprobes
do_trap(int trapnr
, int signr
, char *str
,
424 struct pt_regs
* regs
, long error_code
,
427 conditional_sti(regs
);
429 #ifdef CONFIG_CHECKING
432 struct x8664_pda
*pda
= cpu_pda
+ safe_smp_processor_id();
433 rdmsrl(MSR_GS_BASE
, gs
);
434 if (gs
!= (unsigned long)pda
) {
435 wrmsrl(MSR_GS_BASE
, pda
);
436 printk("%s: wrong gs %lx expected %p rip %lx\n", str
, gs
, pda
,
442 if (user_mode(regs
)) {
443 struct task_struct
*tsk
= current
;
445 if (exception_trace
&& unhandled_signal(tsk
, signr
))
447 "%s[%d] trap %s rip:%lx rsp:%lx error:%lx\n",
448 tsk
->comm
, tsk
->pid
, str
,
449 regs
->rip
,regs
->rsp
,error_code
);
451 tsk
->thread
.error_code
= error_code
;
452 tsk
->thread
.trap_no
= trapnr
;
454 force_sig_info(signr
, info
, tsk
);
456 force_sig(signr
, tsk
);
463 const struct exception_table_entry
*fixup
;
464 fixup
= search_exception_tables(regs
->rip
);
466 regs
->rip
= fixup
->fixup
;
468 die(str
, regs
, error_code
);
473 #define DO_ERROR(trapnr, signr, str, name) \
474 asmlinkage void do_##name(struct pt_regs * regs, long error_code) \
476 if (notify_die(DIE_TRAP, str, regs, error_code, trapnr, signr) \
479 do_trap(trapnr, signr, str, regs, error_code, NULL); \
482 #define DO_ERROR_INFO(trapnr, signr, str, name, sicode, siaddr) \
483 asmlinkage void do_##name(struct pt_regs * regs, long error_code) \
486 info.si_signo = signr; \
488 info.si_code = sicode; \
489 info.si_addr = (void __user *)siaddr; \
490 if (notify_die(DIE_TRAP, str, regs, error_code, trapnr, signr) \
493 do_trap(trapnr, signr, str, regs, error_code, &info); \
496 DO_ERROR_INFO( 0, SIGFPE
, "divide error", divide_error
, FPE_INTDIV
, regs
->rip
)
497 DO_ERROR( 4, SIGSEGV
, "overflow", overflow
)
498 DO_ERROR( 5, SIGSEGV
, "bounds", bounds
)
499 DO_ERROR_INFO( 6, SIGILL
, "invalid operand", invalid_op
, ILL_ILLOPN
, regs
->rip
)
500 DO_ERROR( 7, SIGSEGV
, "device not available", device_not_available
)
501 DO_ERROR( 9, SIGFPE
, "coprocessor segment overrun", coprocessor_segment_overrun
)
502 DO_ERROR(10, SIGSEGV
, "invalid TSS", invalid_TSS
)
503 DO_ERROR(11, SIGBUS
, "segment not present", segment_not_present
)
504 DO_ERROR_INFO(17, SIGBUS
, "alignment check", alignment_check
, BUS_ADRALN
, 0)
505 DO_ERROR(18, SIGSEGV
, "reserved", reserved
)
506 DO_ERROR(12, SIGBUS
, "stack segment", stack_segment
)
507 DO_ERROR( 8, SIGSEGV
, "double fault", double_fault
)
509 asmlinkage
void __kprobes
do_general_protection(struct pt_regs
* regs
,
512 conditional_sti(regs
);
514 #ifdef CONFIG_CHECKING
517 struct x8664_pda
*pda
= cpu_pda
+ safe_smp_processor_id();
518 rdmsrl(MSR_GS_BASE
, gs
);
519 if (gs
!= (unsigned long)pda
) {
520 wrmsrl(MSR_GS_BASE
, pda
);
522 printk("general protection handler: wrong gs %lx expected %p\n", gs
, pda
);
528 if (user_mode(regs
)) {
529 struct task_struct
*tsk
= current
;
531 if (exception_trace
&& unhandled_signal(tsk
, SIGSEGV
))
533 "%s[%d] general protection rip:%lx rsp:%lx error:%lx\n",
535 regs
->rip
,regs
->rsp
,error_code
);
537 tsk
->thread
.error_code
= error_code
;
538 tsk
->thread
.trap_no
= 13;
539 force_sig(SIGSEGV
, tsk
);
545 const struct exception_table_entry
*fixup
;
546 fixup
= search_exception_tables(regs
->rip
);
548 regs
->rip
= fixup
->fixup
;
551 if (notify_die(DIE_GPF
, "general protection fault", regs
,
552 error_code
, 13, SIGSEGV
) == NOTIFY_STOP
)
554 die("general protection fault", regs
, error_code
);
558 static void mem_parity_error(unsigned char reason
, struct pt_regs
* regs
)
560 printk("Uhhuh. NMI received. Dazed and confused, but trying to continue\n");
561 printk("You probably have a hardware problem with your RAM chips\n");
563 /* Clear and disable the memory parity error line. */
564 reason
= (reason
& 0xf) | 4;
568 static void io_check_error(unsigned char reason
, struct pt_regs
* regs
)
570 printk("NMI: IOCK error (debug interrupt?)\n");
571 show_registers(regs
);
573 /* Re-enable the IOCK line, wait for a few seconds */
574 reason
= (reason
& 0xf) | 8;
581 static void unknown_nmi_error(unsigned char reason
, struct pt_regs
* regs
)
582 { printk("Uhhuh. NMI received for unknown reason %02x.\n", reason
);
583 printk("Dazed and confused, but trying to continue\n");
584 printk("Do you have a strange power saving mode enabled?\n");
587 /* Runs on IST stack. This code must keep interrupts off all the time.
588 Nested NMIs are prevented by the CPU. */
589 asmlinkage
void default_do_nmi(struct pt_regs
*regs
)
591 unsigned char reason
= 0;
594 cpu
= smp_processor_id();
596 /* Only the BSP gets external NMIs from the system. */
598 reason
= get_nmi_reason();
600 if (!(reason
& 0xc0)) {
601 if (notify_die(DIE_NMI_IPI
, "nmi_ipi", regs
, reason
, 0, SIGINT
)
604 #ifdef CONFIG_X86_LOCAL_APIC
606 * Ok, so this is none of the documented NMI sources,
607 * so it must be the NMI watchdog.
609 if (nmi_watchdog
> 0) {
610 nmi_watchdog_tick(regs
,reason
);
614 unknown_nmi_error(reason
, regs
);
617 if (notify_die(DIE_NMI
, "nmi", regs
, reason
, 0, SIGINT
) == NOTIFY_STOP
)
620 /* AK: following checks seem to be broken on modern chipsets. FIXME */
623 mem_parity_error(reason
, regs
);
625 io_check_error(reason
, regs
);
628 asmlinkage
void __kprobes
do_int3(struct pt_regs
* regs
, long error_code
)
630 if (notify_die(DIE_INT3
, "int3", regs
, error_code
, 3, SIGTRAP
) == NOTIFY_STOP
) {
633 do_trap(3, SIGTRAP
, "int3", regs
, error_code
, NULL
);
637 /* Help handler running on IST stack to switch back to user stack
638 for scheduling or signal handling. The actual stack switch is done in
640 asmlinkage
struct pt_regs
*sync_regs(struct pt_regs
*eregs
)
642 struct pt_regs
*regs
= eregs
;
643 /* Did already sync */
644 if (eregs
== (struct pt_regs
*)eregs
->rsp
)
646 /* Exception from user space */
647 else if (user_mode(eregs
))
648 regs
= ((struct pt_regs
*)current
->thread
.rsp0
) - 1;
649 /* Exception from kernel and interrupts are enabled. Move to
650 kernel process stack. */
651 else if (eregs
->eflags
& X86_EFLAGS_IF
)
652 regs
= (struct pt_regs
*)(eregs
->rsp
-= sizeof(struct pt_regs
));
658 /* runs on IST stack. */
659 asmlinkage
void __kprobes
do_debug(struct pt_regs
* regs
,
660 unsigned long error_code
)
662 unsigned long condition
;
663 struct task_struct
*tsk
= current
;
666 #ifdef CONFIG_CHECKING
668 /* RED-PEN interaction with debugger - could destroy gs */
670 struct x8664_pda
*pda
= cpu_pda
+ safe_smp_processor_id();
671 rdmsrl(MSR_GS_BASE
, gs
);
672 if (gs
!= (unsigned long)pda
) {
673 wrmsrl(MSR_GS_BASE
, pda
);
674 printk("debug handler: wrong gs %lx expected %p\n", gs
, pda
);
679 get_debugreg(condition
, 6);
681 if (notify_die(DIE_DEBUG
, "debug", regs
, condition
, error_code
,
682 SIGTRAP
) == NOTIFY_STOP
)
685 conditional_sti(regs
);
687 /* Mask out spurious debug traps due to lazy DR7 setting */
688 if (condition
& (DR_TRAP0
|DR_TRAP1
|DR_TRAP2
|DR_TRAP3
)) {
689 if (!tsk
->thread
.debugreg7
) {
694 tsk
->thread
.debugreg6
= condition
;
696 /* Mask out spurious TF errors due to lazy TF clearing */
697 if (condition
& DR_STEP
) {
699 * The TF error should be masked out only if the current
700 * process is not traced and if the TRAP flag has been set
701 * previously by a tracing process (condition detected by
702 * the PT_DTRACE flag); remember that the i386 TRAP flag
703 * can be modified by the process itself in user mode,
704 * allowing programs to debug themselves without the ptrace()
707 if (!user_mode(regs
))
708 goto clear_TF_reenable
;
710 * Was the TF flag set by a debugger? If so, clear it now,
711 * so that register information is correct.
713 if (tsk
->ptrace
& PT_DTRACE
) {
714 regs
->eflags
&= ~TF_MASK
;
715 tsk
->ptrace
&= ~PT_DTRACE
;
719 /* Ok, finally something we can handle */
720 tsk
->thread
.trap_no
= 1;
721 tsk
->thread
.error_code
= error_code
;
722 info
.si_signo
= SIGTRAP
;
724 info
.si_code
= TRAP_BRKPT
;
725 if (!user_mode(regs
))
728 info
.si_addr
= (void __user
*)regs
->rip
;
729 force_sig_info(SIGTRAP
, &info
, tsk
);
731 set_debugreg(0UL, 7);
735 set_tsk_thread_flag(tsk
, TIF_SINGLESTEP
);
736 regs
->eflags
&= ~TF_MASK
;
739 static int kernel_math_error(struct pt_regs
*regs
, char *str
)
741 const struct exception_table_entry
*fixup
;
742 fixup
= search_exception_tables(regs
->rip
);
744 regs
->rip
= fixup
->fixup
;
747 notify_die(DIE_GPF
, str
, regs
, 0, 16, SIGFPE
);
748 /* Illegal floating point operation in the kernel */
754 * Note that we play around with the 'TS' bit in an attempt to get
755 * the correct behaviour even in the presence of the asynchronous
758 asmlinkage
void do_coprocessor_error(struct pt_regs
*regs
)
760 void __user
*rip
= (void __user
*)(regs
->rip
);
761 struct task_struct
* task
;
763 unsigned short cwd
, swd
;
765 conditional_sti(regs
);
766 if (!user_mode(regs
) &&
767 kernel_math_error(regs
, "kernel x87 math error"))
771 * Save the info for the exception handler and clear the error.
775 task
->thread
.trap_no
= 16;
776 task
->thread
.error_code
= 0;
777 info
.si_signo
= SIGFPE
;
779 info
.si_code
= __SI_FAULT
;
782 * (~cwd & swd) will mask out exceptions that are not set to unmasked
783 * status. 0x3f is the exception bits in these regs, 0x200 is the
784 * C1 reg you need in case of a stack fault, 0x040 is the stack
785 * fault bit. We should only be taking one exception at a time,
786 * so if this combination doesn't produce any single exception,
787 * then we have a bad program that isn't synchronizing its FPU usage
788 * and it will suffer the consequences since we won't be able to
789 * fully reproduce the context of the exception
791 cwd
= get_fpu_cwd(task
);
792 swd
= get_fpu_swd(task
);
793 switch (((~cwd
) & swd
& 0x3f) | (swd
& 0x240)) {
797 case 0x001: /* Invalid Op */
798 case 0x041: /* Stack Fault */
799 case 0x241: /* Stack Fault | Direction */
800 info
.si_code
= FPE_FLTINV
;
802 case 0x002: /* Denormalize */
803 case 0x010: /* Underflow */
804 info
.si_code
= FPE_FLTUND
;
806 case 0x004: /* Zero Divide */
807 info
.si_code
= FPE_FLTDIV
;
809 case 0x008: /* Overflow */
810 info
.si_code
= FPE_FLTOVF
;
812 case 0x020: /* Precision */
813 info
.si_code
= FPE_FLTRES
;
816 force_sig_info(SIGFPE
, &info
, task
);
819 asmlinkage
void bad_intr(void)
821 printk("bad interrupt");
824 asmlinkage
void do_simd_coprocessor_error(struct pt_regs
*regs
)
826 void __user
*rip
= (void __user
*)(regs
->rip
);
827 struct task_struct
* task
;
829 unsigned short mxcsr
;
831 conditional_sti(regs
);
832 if (!user_mode(regs
) &&
833 kernel_math_error(regs
, "kernel simd math error"))
837 * Save the info for the exception handler and clear the error.
841 task
->thread
.trap_no
= 19;
842 task
->thread
.error_code
= 0;
843 info
.si_signo
= SIGFPE
;
845 info
.si_code
= __SI_FAULT
;
848 * The SIMD FPU exceptions are handled a little differently, as there
849 * is only a single status/control register. Thus, to determine which
850 * unmasked exception was caught we must mask the exception mask bits
851 * at 0x1f80, and then use these to mask the exception bits at 0x3f.
853 mxcsr
= get_fpu_mxcsr(task
);
854 switch (~((mxcsr
& 0x1f80) >> 7) & (mxcsr
& 0x3f)) {
858 case 0x001: /* Invalid Op */
859 info
.si_code
= FPE_FLTINV
;
861 case 0x002: /* Denormalize */
862 case 0x010: /* Underflow */
863 info
.si_code
= FPE_FLTUND
;
865 case 0x004: /* Zero Divide */
866 info
.si_code
= FPE_FLTDIV
;
868 case 0x008: /* Overflow */
869 info
.si_code
= FPE_FLTOVF
;
871 case 0x020: /* Precision */
872 info
.si_code
= FPE_FLTRES
;
875 force_sig_info(SIGFPE
, &info
, task
);
878 asmlinkage
void do_spurious_interrupt_bug(struct pt_regs
* regs
)
882 asmlinkage
void __attribute__((weak
)) smp_thermal_interrupt(void)
887 * 'math_state_restore()' saves the current math information in the
888 * old math state array, and gets the new ones from the current task
890 * Careful.. There are problems with IBM-designed IRQ13 behaviour.
891 * Don't touch unless you *really* know how it works.
893 asmlinkage
void math_state_restore(void)
895 struct task_struct
*me
= current
;
896 clts(); /* Allow maths ops (or we recurse) */
900 restore_fpu_checking(&me
->thread
.i387
.fxsave
);
901 me
->thread_info
->status
|= TS_USEDFPU
;
904 void do_call_debug(struct pt_regs
*regs
)
906 notify_die(DIE_CALL
, "debug call", regs
, 0, 255, SIGINT
);
909 void __init
trap_init(void)
911 set_intr_gate(0,÷_error
);
912 set_intr_gate_ist(1,&debug
,DEBUG_STACK
);
913 set_intr_gate_ist(2,&nmi
,NMI_STACK
);
914 set_system_gate(3,&int3
);
915 set_system_gate(4,&overflow
); /* int4-5 can be called from all */
916 set_system_gate(5,&bounds
);
917 set_intr_gate(6,&invalid_op
);
918 set_intr_gate(7,&device_not_available
);
919 set_intr_gate_ist(8,&double_fault
, DOUBLEFAULT_STACK
);
920 set_intr_gate(9,&coprocessor_segment_overrun
);
921 set_intr_gate(10,&invalid_TSS
);
922 set_intr_gate(11,&segment_not_present
);
923 set_intr_gate_ist(12,&stack_segment
,STACKFAULT_STACK
);
924 set_intr_gate(13,&general_protection
);
925 set_intr_gate(14,&page_fault
);
926 set_intr_gate(15,&spurious_interrupt_bug
);
927 set_intr_gate(16,&coprocessor_error
);
928 set_intr_gate(17,&alignment_check
);
929 #ifdef CONFIG_X86_MCE
930 set_intr_gate_ist(18,&machine_check
, MCE_STACK
);
932 set_intr_gate(19,&simd_coprocessor_error
);
934 #ifdef CONFIG_IA32_EMULATION
935 set_system_gate(IA32_SYSCALL_VECTOR
, ia32_syscall
);
938 set_intr_gate(KDB_VECTOR
, call_debug
);
941 * Should be a barrier for any external CPU state.
947 /* Actual parsing is done early in setup.c. */
948 static int __init
oops_dummy(char *s
)
953 __setup("oops=", oops_dummy
);
955 static int __init
kstack_setup(char *s
)
957 kstack_depth_to_print
= simple_strtoul(s
,NULL
,0);
960 __setup("kstack=", kstack_setup
);