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>
33 #include <linux/kexec.h>
35 #include <asm/system.h>
36 #include <asm/uaccess.h>
38 #include <asm/atomic.h>
39 #include <asm/debugreg.h>
42 #include <asm/kdebug.h>
43 #include <asm/processor.h>
46 #include <asm/pgalloc.h>
48 #include <asm/proto.h>
51 asmlinkage void divide_error(void);
52 asmlinkage void debug(void);
53 asmlinkage void nmi(void);
54 asmlinkage void int3(void);
55 asmlinkage void overflow(void);
56 asmlinkage void bounds(void);
57 asmlinkage void invalid_op(void);
58 asmlinkage void device_not_available(void);
59 asmlinkage void double_fault(void);
60 asmlinkage void coprocessor_segment_overrun(void);
61 asmlinkage void invalid_TSS(void);
62 asmlinkage void segment_not_present(void);
63 asmlinkage void stack_segment(void);
64 asmlinkage void general_protection(void);
65 asmlinkage void page_fault(void);
66 asmlinkage void coprocessor_error(void);
67 asmlinkage void simd_coprocessor_error(void);
68 asmlinkage void reserved(void);
69 asmlinkage void alignment_check(void);
70 asmlinkage void machine_check(void);
71 asmlinkage void spurious_interrupt_bug(void);
73 ATOMIC_NOTIFIER_HEAD(die_chain);
75 int register_die_notifier(struct notifier_block *nb)
78 return atomic_notifier_chain_register(&die_chain, nb);
80 EXPORT_SYMBOL(register_die_notifier);
82 int unregister_die_notifier(struct notifier_block *nb)
84 return atomic_notifier_chain_unregister(&die_chain, nb);
86 EXPORT_SYMBOL(unregister_die_notifier);
88 static inline void conditional_sti(struct pt_regs *regs)
90 if (regs->eflags & X86_EFLAGS_IF)
94 static inline void preempt_conditional_sti(struct pt_regs *regs)
97 if (regs->eflags & X86_EFLAGS_IF)
101 static inline void preempt_conditional_cli(struct pt_regs *regs)
103 if (regs->eflags & X86_EFLAGS_IF)
105 preempt_enable_no_resched();
108 static int kstack_depth_to_print = 10;
110 #ifdef CONFIG_KALLSYMS
111 #include <linux/kallsyms.h>
112 int printk_address(unsigned long address)
114 unsigned long offset = 0, symsize;
120 symname = kallsyms_lookup(address, &symsize, &offset, &modname, namebuf);
122 return printk("[<%016lx>]", address);
124 modname = delim = "";
125 return printk("<%016lx>{%s%s%s%s%+ld}",
126 address, delim, modname, delim, symname, offset);
129 int printk_address(unsigned long address)
131 return printk("[<%016lx>]", address);
135 static unsigned long *in_exception_stack(unsigned cpu, unsigned long stack,
136 unsigned *usedp, const char **idp)
138 static char ids[][8] = {
139 [DEBUG_STACK - 1] = "#DB",
140 [NMI_STACK - 1] = "NMI",
141 [DOUBLEFAULT_STACK - 1] = "#DF",
142 [STACKFAULT_STACK - 1] = "#SS",
143 [MCE_STACK - 1] = "#MC",
144 #if DEBUG_STKSZ > EXCEPTION_STKSZ
145 [N_EXCEPTION_STACKS ... N_EXCEPTION_STACKS + DEBUG_STKSZ / EXCEPTION_STKSZ - 2] = "#DB[?]"
150 for (k = 0; k < N_EXCEPTION_STACKS; k++) {
154 #if DEBUG_STKSZ > EXCEPTION_STKSZ
156 end = cpu_pda(cpu)->debugstack + DEBUG_STKSZ;
160 end = per_cpu(init_tss, cpu).ist[k];
165 if (stack >= end - EXCEPTION_STKSZ) {
166 if (*usedp & (1U << k))
170 return (unsigned long *)end;
172 #if DEBUG_STKSZ > EXCEPTION_STKSZ
173 if (k == DEBUG_STACK - 1 && stack >= end - DEBUG_STKSZ) {
174 unsigned j = N_EXCEPTION_STACKS - 1;
178 end -= EXCEPTION_STKSZ;
179 ids[j][4] = '1' + (j - N_EXCEPTION_STACKS);
180 } while (stack < end - EXCEPTION_STKSZ);
181 if (*usedp & (1U << j))
185 return (unsigned long *)end;
193 * x86-64 can have upto three kernel stacks:
196 * severe exception (double fault, nmi, stack fault, debug, mce) hardware stack
199 void show_trace(unsigned long *stack)
201 const unsigned cpu = safe_smp_processor_id();
202 unsigned long *irqstack_end = (unsigned long *)cpu_pda(cpu)->irqstackptr;
206 printk("\nCall Trace:");
208 #define HANDLE_STACK(cond) \
210 unsigned long addr = *stack++; \
211 if (kernel_text_address(addr)) { \
219 * If the address is either in the text segment of the \
220 * kernel, or in the region which contains vmalloc'ed \
221 * memory, it *may* be the address of a calling \
222 * routine; if so, print it so that someone tracing \
223 * down the cause of the crash will be able to figure \
224 * out the call path that was taken. \
226 i += printk_address(addr); \
232 unsigned long *estack_end;
233 estack_end = in_exception_stack(cpu, (unsigned long)stack,
237 i += printk(" <%s>", id);
238 HANDLE_STACK (stack < estack_end);
239 i += printk(" <EOE>");
240 stack = (unsigned long *) estack_end[-2];
244 unsigned long *irqstack;
245 irqstack = irqstack_end -
246 (IRQSTACKSIZE - 64) / sizeof(*irqstack);
248 if (stack >= irqstack && stack < irqstack_end) {
249 i += printk(" <IRQ>");
250 HANDLE_STACK (stack < irqstack_end);
251 stack = (unsigned long *) (irqstack_end[-1]);
253 i += printk(" <EOI>");
260 HANDLE_STACK (((long) stack & (THREAD_SIZE-1)) != 0);
265 void show_stack(struct task_struct *tsk, unsigned long * rsp)
267 unsigned long *stack;
269 const int cpu = safe_smp_processor_id();
270 unsigned long *irqstack_end = (unsigned long *) (cpu_pda(cpu)->irqstackptr);
271 unsigned long *irqstack = (unsigned long *) (cpu_pda(cpu)->irqstackptr - IRQSTACKSIZE);
273 // debugging aid: "show_stack(NULL, NULL);" prints the
274 // back trace for this cpu.
278 rsp = (unsigned long *)tsk->thread.rsp;
280 rsp = (unsigned long *)&rsp;
284 for(i=0; i < kstack_depth_to_print; i++) {
285 if (stack >= irqstack && stack <= irqstack_end) {
286 if (stack == irqstack_end) {
287 stack = (unsigned long *) (irqstack_end[-1]);
291 if (((long) stack & (THREAD_SIZE-1)) == 0)
294 if (i && ((i % 4) == 0))
296 printk("%016lx ", *stack++);
297 touch_nmi_watchdog();
299 show_trace((unsigned long *)rsp);
303 * The architecture-independent dump_stack generator
305 void dump_stack(void)
311 EXPORT_SYMBOL(dump_stack);
313 void show_registers(struct pt_regs *regs)
316 int in_kernel = !user_mode(regs);
318 const int cpu = safe_smp_processor_id();
319 struct task_struct *cur = cpu_pda(cpu)->pcurrent;
323 printk("CPU %d ", cpu);
325 printk("Process %s (pid: %d, threadinfo %p, task %p)\n",
326 cur->comm, cur->pid, task_thread_info(cur), cur);
329 * When in-kernel, we also print out the stack and code at the
330 * time of the fault..
335 show_stack(NULL, (unsigned long*)rsp);
338 if (regs->rip < PAGE_OFFSET)
341 for (i=0; i<20; i++) {
343 if (__get_user(c, &((unsigned char*)regs->rip)[i])) {
345 printk(" Bad RIP value.");
354 void handle_BUG(struct pt_regs *regs)
358 const char *prefix = "";
362 if (__copy_from_user(&f, (const void __user *) regs->rip,
363 sizeof(struct bug_frame)))
365 if (f.filename >= 0 ||
366 f.ud2[0] != 0x0f || f.ud2[1] != 0x0b)
368 len = __strnlen_user((char *)(long)f.filename, PATH_MAX) - 1;
369 if (len < 0 || len >= PATH_MAX)
370 f.filename = (int)(long)"unmapped filename";
372 f.filename += len - 50;
375 printk("----------- [cut here ] --------- [please bite here ] ---------\n");
376 printk(KERN_ALERT "Kernel BUG at %s%.50s:%d\n", prefix, (char *)(long)f.filename, f.line);
380 void out_of_line_bug(void)
386 static DEFINE_SPINLOCK(die_lock);
387 static int die_owner = -1;
389 unsigned __kprobes long oops_begin(void)
391 int cpu = safe_smp_processor_id();
394 /* racy, but better than risking deadlock. */
395 local_irq_save(flags);
396 if (!spin_trylock(&die_lock)) {
397 if (cpu == die_owner)
398 /* nested oops. should stop eventually */;
400 spin_lock(&die_lock);
408 void __kprobes oops_end(unsigned long flags)
412 spin_unlock_irqrestore(&die_lock, flags);
417 void __kprobes __die(const char * str, struct pt_regs * regs, long err)
419 static int die_counter;
420 printk(KERN_EMERG "%s: %04lx [%u] ", str, err & 0xffff,++die_counter);
421 #ifdef CONFIG_PREEMPT
427 #ifdef CONFIG_DEBUG_PAGEALLOC
428 printk("DEBUG_PAGEALLOC");
431 notify_die(DIE_OOPS, str, regs, err, current->thread.trap_no, SIGSEGV);
432 show_registers(regs);
433 /* Executive summary in case the oops scrolled away */
434 printk(KERN_ALERT "RIP ");
435 printk_address(regs->rip);
436 printk(" RSP <%016lx>\n", regs->rsp);
437 if (kexec_should_crash(current))
441 void die(const char * str, struct pt_regs * regs, long err)
443 unsigned long flags = oops_begin();
446 __die(str, regs, err);
451 void __kprobes die_nmi(char *str, struct pt_regs *regs)
453 unsigned long flags = oops_begin();
456 * We are in trouble anyway, lets at least try
457 * to get a message out.
459 printk(str, safe_smp_processor_id());
460 show_registers(regs);
461 if (kexec_should_crash(current))
463 if (panic_on_timeout || panic_on_oops)
464 panic("nmi watchdog");
465 printk("console shuts up ...\n");
470 static void __kprobes do_trap(int trapnr, int signr, char *str,
471 struct pt_regs * regs, long error_code,
474 struct task_struct *tsk = current;
476 conditional_sti(regs);
478 tsk->thread.error_code = error_code;
479 tsk->thread.trap_no = trapnr;
481 if (user_mode(regs)) {
482 if (exception_trace && unhandled_signal(tsk, signr))
484 "%s[%d] trap %s rip:%lx rsp:%lx error:%lx\n",
485 tsk->comm, tsk->pid, str,
486 regs->rip, regs->rsp, error_code);
489 force_sig_info(signr, info, tsk);
491 force_sig(signr, tsk);
498 const struct exception_table_entry *fixup;
499 fixup = search_exception_tables(regs->rip);
501 regs->rip = fixup->fixup;
503 die(str, regs, error_code);
508 #define DO_ERROR(trapnr, signr, str, name) \
509 asmlinkage void do_##name(struct pt_regs * regs, long error_code) \
511 if (notify_die(DIE_TRAP, str, regs, error_code, trapnr, signr) \
514 do_trap(trapnr, signr, str, regs, error_code, NULL); \
517 #define DO_ERROR_INFO(trapnr, signr, str, name, sicode, siaddr) \
518 asmlinkage void do_##name(struct pt_regs * regs, long error_code) \
521 info.si_signo = signr; \
523 info.si_code = sicode; \
524 info.si_addr = (void __user *)siaddr; \
525 if (notify_die(DIE_TRAP, str, regs, error_code, trapnr, signr) \
528 do_trap(trapnr, signr, str, regs, error_code, &info); \
531 DO_ERROR_INFO( 0, SIGFPE, "divide error", divide_error, FPE_INTDIV, regs->rip)
532 DO_ERROR( 4, SIGSEGV, "overflow", overflow)
533 DO_ERROR( 5, SIGSEGV, "bounds", bounds)
534 DO_ERROR_INFO( 6, SIGILL, "invalid opcode", invalid_op, ILL_ILLOPN, regs->rip)
535 DO_ERROR( 7, SIGSEGV, "device not available", device_not_available)
536 DO_ERROR( 9, SIGFPE, "coprocessor segment overrun", coprocessor_segment_overrun)
537 DO_ERROR(10, SIGSEGV, "invalid TSS", invalid_TSS)
538 DO_ERROR(11, SIGBUS, "segment not present", segment_not_present)
539 DO_ERROR_INFO(17, SIGBUS, "alignment check", alignment_check, BUS_ADRALN, 0)
540 DO_ERROR(18, SIGSEGV, "reserved", reserved)
541 DO_ERROR(12, SIGBUS, "stack segment", stack_segment)
543 asmlinkage void do_double_fault(struct pt_regs * regs, long error_code)
545 static const char str[] = "double fault";
546 struct task_struct *tsk = current;
548 /* Return not checked because double check cannot be ignored */
549 notify_die(DIE_TRAP, str, regs, error_code, 8, SIGSEGV);
551 tsk->thread.error_code = error_code;
552 tsk->thread.trap_no = 8;
554 /* This is always a kernel trap and never fixable (and thus must
557 die(str, regs, error_code);
560 asmlinkage void __kprobes do_general_protection(struct pt_regs * regs,
563 struct task_struct *tsk = current;
565 conditional_sti(regs);
567 tsk->thread.error_code = error_code;
568 tsk->thread.trap_no = 13;
570 if (user_mode(regs)) {
571 if (exception_trace && unhandled_signal(tsk, SIGSEGV))
573 "%s[%d] general protection rip:%lx rsp:%lx error:%lx\n",
575 regs->rip, regs->rsp, error_code);
577 force_sig(SIGSEGV, tsk);
583 const struct exception_table_entry *fixup;
584 fixup = search_exception_tables(regs->rip);
586 regs->rip = fixup->fixup;
589 if (notify_die(DIE_GPF, "general protection fault", regs,
590 error_code, 13, SIGSEGV) == NOTIFY_STOP)
592 die("general protection fault", regs, error_code);
596 static __kprobes void
597 mem_parity_error(unsigned char reason, struct pt_regs * regs)
599 printk("Uhhuh. NMI received. Dazed and confused, but trying to continue\n");
600 printk("You probably have a hardware problem with your RAM chips\n");
602 /* Clear and disable the memory parity error line. */
603 reason = (reason & 0xf) | 4;
607 static __kprobes void
608 io_check_error(unsigned char reason, struct pt_regs * regs)
610 printk("NMI: IOCK error (debug interrupt?)\n");
611 show_registers(regs);
613 /* Re-enable the IOCK line, wait for a few seconds */
614 reason = (reason & 0xf) | 8;
621 static __kprobes void
622 unknown_nmi_error(unsigned char reason, struct pt_regs * regs)
623 { printk("Uhhuh. NMI received for unknown reason %02x.\n", reason);
624 printk("Dazed and confused, but trying to continue\n");
625 printk("Do you have a strange power saving mode enabled?\n");
628 /* Runs on IST stack. This code must keep interrupts off all the time.
629 Nested NMIs are prevented by the CPU. */
630 asmlinkage __kprobes void default_do_nmi(struct pt_regs *regs)
632 unsigned char reason = 0;
635 cpu = smp_processor_id();
637 /* Only the BSP gets external NMIs from the system. */
639 reason = get_nmi_reason();
641 if (!(reason & 0xc0)) {
642 if (notify_die(DIE_NMI_IPI, "nmi_ipi", regs, reason, 2, SIGINT)
645 #ifdef CONFIG_X86_LOCAL_APIC
647 * Ok, so this is none of the documented NMI sources,
648 * so it must be the NMI watchdog.
650 if (nmi_watchdog > 0) {
651 nmi_watchdog_tick(regs,reason);
655 unknown_nmi_error(reason, regs);
658 if (notify_die(DIE_NMI, "nmi", regs, reason, 2, SIGINT) == NOTIFY_STOP)
661 /* AK: following checks seem to be broken on modern chipsets. FIXME */
664 mem_parity_error(reason, regs);
666 io_check_error(reason, regs);
669 /* runs on IST stack. */
670 asmlinkage void __kprobes do_int3(struct pt_regs * regs, long error_code)
672 if (notify_die(DIE_INT3, "int3", regs, error_code, 3, SIGTRAP) == NOTIFY_STOP) {
675 do_trap(3, SIGTRAP, "int3", regs, error_code, NULL);
679 /* Help handler running on IST stack to switch back to user stack
680 for scheduling or signal handling. The actual stack switch is done in
682 asmlinkage __kprobes struct pt_regs *sync_regs(struct pt_regs *eregs)
684 struct pt_regs *regs = eregs;
685 /* Did already sync */
686 if (eregs == (struct pt_regs *)eregs->rsp)
688 /* Exception from user space */
689 else if (user_mode(eregs))
690 regs = task_pt_regs(current);
691 /* Exception from kernel and interrupts are enabled. Move to
692 kernel process stack. */
693 else if (eregs->eflags & X86_EFLAGS_IF)
694 regs = (struct pt_regs *)(eregs->rsp -= sizeof(struct pt_regs));
700 /* runs on IST stack. */
701 asmlinkage void __kprobes do_debug(struct pt_regs * regs,
702 unsigned long error_code)
704 unsigned long condition;
705 struct task_struct *tsk = current;
708 get_debugreg(condition, 6);
710 if (notify_die(DIE_DEBUG, "debug", regs, condition, error_code,
711 SIGTRAP) == NOTIFY_STOP)
714 preempt_conditional_sti(regs);
716 /* Mask out spurious debug traps due to lazy DR7 setting */
717 if (condition & (DR_TRAP0|DR_TRAP1|DR_TRAP2|DR_TRAP3)) {
718 if (!tsk->thread.debugreg7) {
723 tsk->thread.debugreg6 = condition;
725 /* Mask out spurious TF errors due to lazy TF clearing */
726 if (condition & DR_STEP) {
728 * The TF error should be masked out only if the current
729 * process is not traced and if the TRAP flag has been set
730 * previously by a tracing process (condition detected by
731 * the PT_DTRACE flag); remember that the i386 TRAP flag
732 * can be modified by the process itself in user mode,
733 * allowing programs to debug themselves without the ptrace()
736 if (!user_mode(regs))
737 goto clear_TF_reenable;
739 * Was the TF flag set by a debugger? If so, clear it now,
740 * so that register information is correct.
742 if (tsk->ptrace & PT_DTRACE) {
743 regs->eflags &= ~TF_MASK;
744 tsk->ptrace &= ~PT_DTRACE;
748 /* Ok, finally something we can handle */
749 tsk->thread.trap_no = 1;
750 tsk->thread.error_code = error_code;
751 info.si_signo = SIGTRAP;
753 info.si_code = TRAP_BRKPT;
754 info.si_addr = user_mode(regs) ? (void __user *)regs->rip : NULL;
755 force_sig_info(SIGTRAP, &info, tsk);
758 set_debugreg(0UL, 7);
759 preempt_conditional_cli(regs);
763 set_tsk_thread_flag(tsk, TIF_SINGLESTEP);
764 regs->eflags &= ~TF_MASK;
765 preempt_conditional_cli(regs);
768 static int kernel_math_error(struct pt_regs *regs, const char *str, int trapnr)
770 const struct exception_table_entry *fixup;
771 fixup = search_exception_tables(regs->rip);
773 regs->rip = fixup->fixup;
776 notify_die(DIE_GPF, str, regs, 0, trapnr, SIGFPE);
777 /* Illegal floating point operation in the kernel */
778 current->thread.trap_no = trapnr;
784 * Note that we play around with the 'TS' bit in an attempt to get
785 * the correct behaviour even in the presence of the asynchronous
788 asmlinkage void do_coprocessor_error(struct pt_regs *regs)
790 void __user *rip = (void __user *)(regs->rip);
791 struct task_struct * task;
793 unsigned short cwd, swd;
795 conditional_sti(regs);
796 if (!user_mode(regs) &&
797 kernel_math_error(regs, "kernel x87 math error", 16))
801 * Save the info for the exception handler and clear the error.
805 task->thread.trap_no = 16;
806 task->thread.error_code = 0;
807 info.si_signo = SIGFPE;
809 info.si_code = __SI_FAULT;
812 * (~cwd & swd) will mask out exceptions that are not set to unmasked
813 * status. 0x3f is the exception bits in these regs, 0x200 is the
814 * C1 reg you need in case of a stack fault, 0x040 is the stack
815 * fault bit. We should only be taking one exception at a time,
816 * so if this combination doesn't produce any single exception,
817 * then we have a bad program that isn't synchronizing its FPU usage
818 * and it will suffer the consequences since we won't be able to
819 * fully reproduce the context of the exception
821 cwd = get_fpu_cwd(task);
822 swd = get_fpu_swd(task);
823 switch (swd & ~cwd & 0x3f) {
827 case 0x001: /* Invalid Op */
829 * swd & 0x240 == 0x040: Stack Underflow
830 * swd & 0x240 == 0x240: Stack Overflow
831 * User must clear the SF bit (0x40) if set
833 info.si_code = FPE_FLTINV;
835 case 0x002: /* Denormalize */
836 case 0x010: /* Underflow */
837 info.si_code = FPE_FLTUND;
839 case 0x004: /* Zero Divide */
840 info.si_code = FPE_FLTDIV;
842 case 0x008: /* Overflow */
843 info.si_code = FPE_FLTOVF;
845 case 0x020: /* Precision */
846 info.si_code = FPE_FLTRES;
849 force_sig_info(SIGFPE, &info, task);
852 asmlinkage void bad_intr(void)
854 printk("bad interrupt");
857 asmlinkage void do_simd_coprocessor_error(struct pt_regs *regs)
859 void __user *rip = (void __user *)(regs->rip);
860 struct task_struct * task;
862 unsigned short mxcsr;
864 conditional_sti(regs);
865 if (!user_mode(regs) &&
866 kernel_math_error(regs, "kernel simd math error", 19))
870 * Save the info for the exception handler and clear the error.
874 task->thread.trap_no = 19;
875 task->thread.error_code = 0;
876 info.si_signo = SIGFPE;
878 info.si_code = __SI_FAULT;
881 * The SIMD FPU exceptions are handled a little differently, as there
882 * is only a single status/control register. Thus, to determine which
883 * unmasked exception was caught we must mask the exception mask bits
884 * at 0x1f80, and then use these to mask the exception bits at 0x3f.
886 mxcsr = get_fpu_mxcsr(task);
887 switch (~((mxcsr & 0x1f80) >> 7) & (mxcsr & 0x3f)) {
891 case 0x001: /* Invalid Op */
892 info.si_code = FPE_FLTINV;
894 case 0x002: /* Denormalize */
895 case 0x010: /* Underflow */
896 info.si_code = FPE_FLTUND;
898 case 0x004: /* Zero Divide */
899 info.si_code = FPE_FLTDIV;
901 case 0x008: /* Overflow */
902 info.si_code = FPE_FLTOVF;
904 case 0x020: /* Precision */
905 info.si_code = FPE_FLTRES;
908 force_sig_info(SIGFPE, &info, task);
911 asmlinkage void do_spurious_interrupt_bug(struct pt_regs * regs)
915 asmlinkage void __attribute__((weak)) smp_thermal_interrupt(void)
919 asmlinkage void __attribute__((weak)) mce_threshold_interrupt(void)
924 * 'math_state_restore()' saves the current math information in the
925 * old math state array, and gets the new ones from the current task
927 * Careful.. There are problems with IBM-designed IRQ13 behaviour.
928 * Don't touch unless you *really* know how it works.
930 asmlinkage void math_state_restore(void)
932 struct task_struct *me = current;
933 clts(); /* Allow maths ops (or we recurse) */
937 restore_fpu_checking(&me->thread.i387.fxsave);
938 task_thread_info(me)->status |= TS_USEDFPU;
941 void __init trap_init(void)
943 set_intr_gate(0,÷_error);
944 set_intr_gate_ist(1,&debug,DEBUG_STACK);
945 set_intr_gate_ist(2,&nmi,NMI_STACK);
946 set_system_gate_ist(3,&int3,DEBUG_STACK); /* int3 can be called from all */
947 set_system_gate(4,&overflow); /* int4 can be called from all */
948 set_intr_gate(5,&bounds);
949 set_intr_gate(6,&invalid_op);
950 set_intr_gate(7,&device_not_available);
951 set_intr_gate_ist(8,&double_fault, DOUBLEFAULT_STACK);
952 set_intr_gate(9,&coprocessor_segment_overrun);
953 set_intr_gate(10,&invalid_TSS);
954 set_intr_gate(11,&segment_not_present);
955 set_intr_gate_ist(12,&stack_segment,STACKFAULT_STACK);
956 set_intr_gate(13,&general_protection);
957 set_intr_gate(14,&page_fault);
958 set_intr_gate(15,&spurious_interrupt_bug);
959 set_intr_gate(16,&coprocessor_error);
960 set_intr_gate(17,&alignment_check);
961 #ifdef CONFIG_X86_MCE
962 set_intr_gate_ist(18,&machine_check, MCE_STACK);
964 set_intr_gate(19,&simd_coprocessor_error);
966 #ifdef CONFIG_IA32_EMULATION
967 set_system_gate(IA32_SYSCALL_VECTOR, ia32_syscall);
971 * Should be a barrier for any external CPU state.
977 /* Actual parsing is done early in setup.c. */
978 static int __init oops_dummy(char *s)
983 __setup("oops=", oops_dummy);
985 static int __init kstack_setup(char *s)
987 kstack_depth_to_print = simple_strtoul(s,NULL,0);
990 __setup("kstack=", kstack_setup);