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>
33 #include <asm/system.h>
34 #include <asm/uaccess.h>
36 #include <asm/atomic.h>
37 #include <asm/debugreg.h>
40 #include <asm/kdebug.h>
41 #include <asm/processor.h>
44 #include <asm/pgalloc.h>
46 #include <asm/proto.h>
49 #include <linux/irq.h>
52 extern struct gate_struct idt_table[256];
54 asmlinkage void divide_error(void);
55 asmlinkage void debug(void);
56 asmlinkage void nmi(void);
57 asmlinkage void int3(void);
58 asmlinkage void overflow(void);
59 asmlinkage void bounds(void);
60 asmlinkage void invalid_op(void);
61 asmlinkage void device_not_available(void);
62 asmlinkage void double_fault(void);
63 asmlinkage void coprocessor_segment_overrun(void);
64 asmlinkage void invalid_TSS(void);
65 asmlinkage void segment_not_present(void);
66 asmlinkage void stack_segment(void);
67 asmlinkage void general_protection(void);
68 asmlinkage void page_fault(void);
69 asmlinkage void coprocessor_error(void);
70 asmlinkage void simd_coprocessor_error(void);
71 asmlinkage void reserved(void);
72 asmlinkage void alignment_check(void);
73 asmlinkage void machine_check(void);
74 asmlinkage void spurious_interrupt_bug(void);
75 asmlinkage void call_debug(void);
77 struct notifier_block *die_chain;
78 static DEFINE_SPINLOCK(die_notifier_lock);
80 int register_die_notifier(struct notifier_block *nb)
84 spin_lock_irqsave(&die_notifier_lock, flags);
85 err = notifier_chain_register(&die_chain, nb);
86 spin_unlock_irqrestore(&die_notifier_lock, flags);
90 static inline void conditional_sti(struct pt_regs *regs)
92 if (regs->eflags & X86_EFLAGS_IF)
96 static int kstack_depth_to_print = 10;
98 #ifdef CONFIG_KALLSYMS
99 #include <linux/kallsyms.h>
100 int printk_address(unsigned long address)
102 unsigned long offset = 0, symsize;
108 symname = kallsyms_lookup(address, &symsize, &offset, &modname, namebuf);
110 return printk("[<%016lx>]", address);
112 modname = delim = "";
113 return printk("<%016lx>{%s%s%s%s%+ld}",
114 address,delim,modname,delim,symname,offset);
117 int printk_address(unsigned long address)
119 return printk("[<%016lx>]", address);
123 static unsigned long *in_exception_stack(unsigned cpu, unsigned long stack,
124 unsigned *usedp, const char **idp)
126 static const char ids[N_EXCEPTION_STACKS][8] = {
127 [DEBUG_STACK - 1] = "#DB",
128 [NMI_STACK - 1] = "NMI",
129 [DOUBLEFAULT_STACK - 1] = "#DF",
130 [STACKFAULT_STACK - 1] = "#SS",
131 [MCE_STACK - 1] = "#MC",
135 for (k = 0; k < N_EXCEPTION_STACKS; k++) {
138 end = per_cpu(init_tss, cpu).ist[k];
141 if (stack >= end - EXCEPTION_STKSZ) {
142 if (*usedp & (1U << k))
146 return (unsigned long *)end;
153 * x86-64 can have upto three kernel stacks:
156 * severe exception (double fault, nmi, stack fault, debug, mce) hardware stack
159 void show_trace(unsigned long *stack)
162 const unsigned cpu = safe_smp_processor_id();
163 unsigned long *irqstack_end = (unsigned long *)cpu_pda[cpu].irqstackptr;
167 printk("\nCall Trace:");
169 #define HANDLE_STACK(cond) \
172 if (kernel_text_address(addr)) { \
174 * If the address is either in the text segment of the \
175 * kernel, or in the region which contains vmalloc'ed \
176 * memory, it *may* be the address of a calling \
177 * routine; if so, print it so that someone tracing \
178 * down the cause of the crash will be able to figure \
179 * out the call path that was taken. \
181 i += printk_address(addr); \
193 unsigned long *estack_end;
194 estack_end = in_exception_stack(cpu, (unsigned long)stack,
198 i += printk(" <%s> ", id);
199 HANDLE_STACK (stack < estack_end);
200 i += printk(" <EOE> ");
201 stack = (unsigned long *) estack_end[-2];
205 unsigned long *irqstack;
206 irqstack = irqstack_end -
207 (IRQSTACKSIZE - 64) / sizeof(*irqstack);
209 if (stack >= irqstack && stack < irqstack_end) {
210 i += printk(" <IRQ> ");
211 HANDLE_STACK (stack < irqstack_end);
212 stack = (unsigned long *) (irqstack_end[-1]);
214 i += printk(" <EOI> ");
221 HANDLE_STACK (((long) stack & (THREAD_SIZE-1)) != 0);
226 void show_stack(struct task_struct *tsk, unsigned long * rsp)
228 unsigned long *stack;
230 const int cpu = safe_smp_processor_id();
231 unsigned long *irqstack_end = (unsigned long *) (cpu_pda[cpu].irqstackptr);
232 unsigned long *irqstack = (unsigned long *) (cpu_pda[cpu].irqstackptr - IRQSTACKSIZE);
234 // debugging aid: "show_stack(NULL, NULL);" prints the
235 // back trace for this cpu.
239 rsp = (unsigned long *)tsk->thread.rsp;
241 rsp = (unsigned long *)&rsp;
245 for(i=0; i < kstack_depth_to_print; i++) {
246 if (stack >= irqstack && stack <= irqstack_end) {
247 if (stack == irqstack_end) {
248 stack = (unsigned long *) (irqstack_end[-1]);
252 if (((long) stack & (THREAD_SIZE-1)) == 0)
255 if (i && ((i % 4) == 0))
257 printk("%016lx ", *stack++);
258 touch_nmi_watchdog();
260 show_trace((unsigned long *)rsp);
264 * The architecture-independent dump_stack generator
266 void dump_stack(void)
272 EXPORT_SYMBOL(dump_stack);
274 void show_registers(struct pt_regs *regs)
277 int in_kernel = (regs->cs & 3) == 0;
279 const int cpu = safe_smp_processor_id();
280 struct task_struct *cur = cpu_pda[cpu].pcurrent;
284 printk("CPU %d ", cpu);
286 printk("Process %s (pid: %d, threadinfo %p, task %p)\n",
287 cur->comm, cur->pid, cur->thread_info, cur);
290 * When in-kernel, we also print out the stack and code at the
291 * time of the fault..
296 show_stack(NULL, (unsigned long*)rsp);
299 if(regs->rip < PAGE_OFFSET)
305 if(__get_user(c, &((unsigned char*)regs->rip)[i])) {
307 printk(" Bad RIP value.");
316 void handle_BUG(struct pt_regs *regs)
323 if (__copy_from_user(&f, (struct bug_frame *) regs->rip,
324 sizeof(struct bug_frame)))
326 if ((unsigned long)f.filename < __PAGE_OFFSET ||
327 f.ud2[0] != 0x0f || f.ud2[1] != 0x0b)
329 if (__get_user(tmp, f.filename))
330 f.filename = "unmapped filename";
331 printk("----------- [cut here ] --------- [please bite here ] ---------\n");
332 printk(KERN_ALERT "Kernel BUG at %.50s:%d\n", f.filename, f.line);
335 void out_of_line_bug(void)
340 static DEFINE_SPINLOCK(die_lock);
341 static int die_owner = -1;
343 void oops_begin(void)
345 int cpu = safe_smp_processor_id();
346 /* racy, but better than risking deadlock. */
348 if (!spin_trylock(&die_lock)) {
349 if (cpu == die_owner)
350 /* nested oops. should stop eventually */;
352 spin_lock(&die_lock);
363 spin_unlock(&die_lock);
368 void __die(const char * str, struct pt_regs * regs, long err)
370 static int die_counter;
371 printk(KERN_EMERG "%s: %04lx [%u] ", str, err & 0xffff,++die_counter);
372 #ifdef CONFIG_PREEMPT
378 #ifdef CONFIG_DEBUG_PAGEALLOC
379 printk("DEBUG_PAGEALLOC");
382 notify_die(DIE_OOPS, (char *)str, regs, err, 255, SIGSEGV);
383 show_registers(regs);
384 /* Executive summary in case the oops scrolled away */
385 printk(KERN_ALERT "RIP ");
386 printk_address(regs->rip);
387 printk(" RSP <%016lx>\n", regs->rsp);
390 void die(const char * str, struct pt_regs * regs, long err)
394 __die(str, regs, err);
398 static inline void die_if_kernel(const char * str, struct pt_regs * regs, long err)
400 if (!(regs->eflags & VM_MASK) && (regs->cs == __KERNEL_CS))
404 void die_nmi(char *str, struct pt_regs *regs)
408 * We are in trouble anyway, lets at least try
409 * to get a message out.
411 printk(str, safe_smp_processor_id());
412 show_registers(regs);
413 if (panic_on_timeout || panic_on_oops)
414 panic("nmi watchdog");
415 printk("console shuts up ...\n");
420 static void do_trap(int trapnr, int signr, char *str,
421 struct pt_regs * regs, long error_code, siginfo_t *info)
423 conditional_sti(regs);
425 #ifdef CONFIG_CHECKING
428 struct x8664_pda *pda = cpu_pda + safe_smp_processor_id();
429 rdmsrl(MSR_GS_BASE, gs);
430 if (gs != (unsigned long)pda) {
431 wrmsrl(MSR_GS_BASE, pda);
432 printk("%s: wrong gs %lx expected %p rip %lx\n", str, gs, pda,
438 if ((regs->cs & 3) != 0) {
439 struct task_struct *tsk = current;
441 if (exception_trace && unhandled_signal(tsk, signr))
443 "%s[%d] trap %s rip:%lx rsp:%lx error:%lx\n",
444 tsk->comm, tsk->pid, str,
445 regs->rip,regs->rsp,error_code);
447 tsk->thread.error_code = error_code;
448 tsk->thread.trap_no = trapnr;
450 force_sig_info(signr, info, tsk);
452 force_sig(signr, tsk);
459 const struct exception_table_entry *fixup;
460 fixup = search_exception_tables(regs->rip);
462 regs->rip = fixup->fixup;
464 die(str, regs, error_code);
469 #define DO_ERROR(trapnr, signr, str, name) \
470 asmlinkage void do_##name(struct pt_regs * regs, long error_code) \
472 if (notify_die(DIE_TRAP, str, regs, error_code, trapnr, signr) \
475 do_trap(trapnr, signr, str, regs, error_code, NULL); \
478 #define DO_ERROR_INFO(trapnr, signr, str, name, sicode, siaddr) \
479 asmlinkage void do_##name(struct pt_regs * regs, long error_code) \
482 info.si_signo = signr; \
484 info.si_code = sicode; \
485 info.si_addr = (void __user *)siaddr; \
486 if (notify_die(DIE_TRAP, str, regs, error_code, trapnr, signr) \
489 do_trap(trapnr, signr, str, regs, error_code, &info); \
492 DO_ERROR_INFO( 0, SIGFPE, "divide error", divide_error, FPE_INTDIV, regs->rip)
493 DO_ERROR( 4, SIGSEGV, "overflow", overflow)
494 DO_ERROR( 5, SIGSEGV, "bounds", bounds)
495 DO_ERROR_INFO( 6, SIGILL, "invalid operand", invalid_op, ILL_ILLOPN, regs->rip)
496 DO_ERROR( 7, SIGSEGV, "device not available", device_not_available)
497 DO_ERROR( 9, SIGFPE, "coprocessor segment overrun", coprocessor_segment_overrun)
498 DO_ERROR(10, SIGSEGV, "invalid TSS", invalid_TSS)
499 DO_ERROR(11, SIGBUS, "segment not present", segment_not_present)
500 DO_ERROR_INFO(17, SIGBUS, "alignment check", alignment_check, BUS_ADRALN, 0)
501 DO_ERROR(18, SIGSEGV, "reserved", reserved)
502 DO_ERROR(12, SIGBUS, "stack segment", stack_segment)
503 DO_ERROR( 8, SIGSEGV, "double fault", double_fault)
505 asmlinkage void do_general_protection(struct pt_regs * regs, long error_code)
507 conditional_sti(regs);
509 #ifdef CONFIG_CHECKING
512 struct x8664_pda *pda = cpu_pda + safe_smp_processor_id();
513 rdmsrl(MSR_GS_BASE, gs);
514 if (gs != (unsigned long)pda) {
515 wrmsrl(MSR_GS_BASE, pda);
517 printk("general protection handler: wrong gs %lx expected %p\n", gs, pda);
523 if ((regs->cs & 3)!=0) {
524 struct task_struct *tsk = current;
526 if (exception_trace && unhandled_signal(tsk, SIGSEGV))
528 "%s[%d] general protection rip:%lx rsp:%lx error:%lx\n",
530 regs->rip,regs->rsp,error_code);
532 tsk->thread.error_code = error_code;
533 tsk->thread.trap_no = 13;
534 force_sig(SIGSEGV, tsk);
540 const struct exception_table_entry *fixup;
541 fixup = search_exception_tables(regs->rip);
543 regs->rip = fixup->fixup;
546 if (notify_die(DIE_GPF, "general protection fault", regs,
547 error_code, 13, SIGSEGV) == NOTIFY_STOP)
549 die("general protection fault", regs, error_code);
553 static void mem_parity_error(unsigned char reason, struct pt_regs * regs)
555 printk("Uhhuh. NMI received. Dazed and confused, but trying to continue\n");
556 printk("You probably have a hardware problem with your RAM chips\n");
558 /* Clear and disable the memory parity error line. */
559 reason = (reason & 0xf) | 4;
563 static void io_check_error(unsigned char reason, struct pt_regs * regs)
565 printk("NMI: IOCK error (debug interrupt?)\n");
566 show_registers(regs);
568 /* Re-enable the IOCK line, wait for a few seconds */
569 reason = (reason & 0xf) | 8;
576 static void unknown_nmi_error(unsigned char reason, struct pt_regs * regs)
577 { printk("Uhhuh. NMI received for unknown reason %02x.\n", reason);
578 printk("Dazed and confused, but trying to continue\n");
579 printk("Do you have a strange power saving mode enabled?\n");
582 /* Runs on IST stack. This code must keep interrupts off all the time.
583 Nested NMIs are prevented by the CPU. */
584 asmlinkage void default_do_nmi(struct pt_regs *regs)
586 unsigned char reason = 0;
588 /* Only the BSP gets external NMIs from the system. */
589 if (!smp_processor_id())
590 reason = get_nmi_reason();
592 if (!(reason & 0xc0)) {
593 if (notify_die(DIE_NMI_IPI, "nmi_ipi", regs, reason, 0, SIGINT)
596 #ifdef CONFIG_X86_LOCAL_APIC
598 * Ok, so this is none of the documented NMI sources,
599 * so it must be the NMI watchdog.
601 if (nmi_watchdog > 0) {
602 nmi_watchdog_tick(regs,reason);
606 unknown_nmi_error(reason, regs);
609 if (notify_die(DIE_NMI, "nmi", regs, reason, 0, SIGINT) == NOTIFY_STOP)
612 /* AK: following checks seem to be broken on modern chipsets. FIXME */
615 mem_parity_error(reason, regs);
617 io_check_error(reason, regs);
620 asmlinkage void do_int3(struct pt_regs * regs, long error_code)
622 if (notify_die(DIE_INT3, "int3", regs, error_code, 3, SIGTRAP) == NOTIFY_STOP) {
625 do_trap(3, SIGTRAP, "int3", regs, error_code, NULL);
629 /* Help handler running on IST stack to switch back to user stack
630 for scheduling or signal handling. The actual stack switch is done in
632 asmlinkage struct pt_regs *sync_regs(struct pt_regs *eregs)
634 struct pt_regs *regs = eregs;
635 /* Did already sync */
636 if (eregs == (struct pt_regs *)eregs->rsp)
638 /* Exception from user space */
639 else if (eregs->cs & 3)
640 regs = ((struct pt_regs *)current->thread.rsp0) - 1;
641 /* Exception from kernel and interrupts are enabled. Move to
642 kernel process stack. */
643 else if (eregs->eflags & X86_EFLAGS_IF)
644 regs = (struct pt_regs *)(eregs->rsp -= sizeof(struct pt_regs));
650 /* runs on IST stack. */
651 asmlinkage void do_debug(struct pt_regs * regs, unsigned long error_code)
653 unsigned long condition;
654 struct task_struct *tsk = current;
657 #ifdef CONFIG_CHECKING
659 /* RED-PEN interaction with debugger - could destroy gs */
661 struct x8664_pda *pda = cpu_pda + safe_smp_processor_id();
662 rdmsrl(MSR_GS_BASE, gs);
663 if (gs != (unsigned long)pda) {
664 wrmsrl(MSR_GS_BASE, pda);
665 printk("debug handler: wrong gs %lx expected %p\n", gs, pda);
670 asm("movq %%db6,%0" : "=r" (condition));
672 if (notify_die(DIE_DEBUG, "debug", regs, condition, error_code,
673 SIGTRAP) == NOTIFY_STOP)
676 conditional_sti(regs);
678 /* Mask out spurious debug traps due to lazy DR7 setting */
679 if (condition & (DR_TRAP0|DR_TRAP1|DR_TRAP2|DR_TRAP3)) {
680 if (!tsk->thread.debugreg7) {
685 tsk->thread.debugreg6 = condition;
687 /* Mask out spurious TF errors due to lazy TF clearing */
688 if (condition & DR_STEP) {
690 * The TF error should be masked out only if the current
691 * process is not traced and if the TRAP flag has been set
692 * previously by a tracing process (condition detected by
693 * the PT_DTRACE flag); remember that the i386 TRAP flag
694 * can be modified by the process itself in user mode,
695 * allowing programs to debug themselves without the ptrace()
698 if ((regs->cs & 3) == 0)
699 goto clear_TF_reenable;
701 * Was the TF flag set by a debugger? If so, clear it now,
702 * so that register information is correct.
704 if (tsk->ptrace & PT_DTRACE) {
705 regs->eflags &= ~TF_MASK;
706 tsk->ptrace &= ~PT_DTRACE;
710 /* Ok, finally something we can handle */
711 tsk->thread.trap_no = 1;
712 tsk->thread.error_code = error_code;
713 info.si_signo = SIGTRAP;
715 info.si_code = TRAP_BRKPT;
716 if ((regs->cs & 3) == 0)
719 info.si_addr = (void __user *)regs->rip;
720 force_sig_info(SIGTRAP, &info, tsk);
722 asm volatile("movq %0,%%db7"::"r"(0UL));
726 set_tsk_thread_flag(tsk, TIF_SINGLESTEP);
727 regs->eflags &= ~TF_MASK;
730 static int kernel_math_error(struct pt_regs *regs, char *str)
732 const struct exception_table_entry *fixup;
733 fixup = search_exception_tables(regs->rip);
735 regs->rip = fixup->fixup;
738 notify_die(DIE_GPF, str, regs, 0, 16, SIGFPE);
739 /* Illegal floating point operation in the kernel */
745 * Note that we play around with the 'TS' bit in an attempt to get
746 * the correct behaviour even in the presence of the asynchronous
749 asmlinkage void do_coprocessor_error(struct pt_regs *regs)
751 void __user *rip = (void __user *)(regs->rip);
752 struct task_struct * task;
754 unsigned short cwd, swd;
756 conditional_sti(regs);
757 if ((regs->cs & 3) == 0 &&
758 kernel_math_error(regs, "kernel x87 math error"))
762 * Save the info for the exception handler and clear the error.
766 task->thread.trap_no = 16;
767 task->thread.error_code = 0;
768 info.si_signo = SIGFPE;
770 info.si_code = __SI_FAULT;
773 * (~cwd & swd) will mask out exceptions that are not set to unmasked
774 * status. 0x3f is the exception bits in these regs, 0x200 is the
775 * C1 reg you need in case of a stack fault, 0x040 is the stack
776 * fault bit. We should only be taking one exception at a time,
777 * so if this combination doesn't produce any single exception,
778 * then we have a bad program that isn't synchronizing its FPU usage
779 * and it will suffer the consequences since we won't be able to
780 * fully reproduce the context of the exception
782 cwd = get_fpu_cwd(task);
783 swd = get_fpu_swd(task);
784 switch (((~cwd) & swd & 0x3f) | (swd & 0x240)) {
788 case 0x001: /* Invalid Op */
789 case 0x041: /* Stack Fault */
790 case 0x241: /* Stack Fault | Direction */
791 info.si_code = FPE_FLTINV;
793 case 0x002: /* Denormalize */
794 case 0x010: /* Underflow */
795 info.si_code = FPE_FLTUND;
797 case 0x004: /* Zero Divide */
798 info.si_code = FPE_FLTDIV;
800 case 0x008: /* Overflow */
801 info.si_code = FPE_FLTOVF;
803 case 0x020: /* Precision */
804 info.si_code = FPE_FLTRES;
807 force_sig_info(SIGFPE, &info, task);
810 asmlinkage void bad_intr(void)
812 printk("bad interrupt");
815 asmlinkage void do_simd_coprocessor_error(struct pt_regs *regs)
817 void __user *rip = (void __user *)(regs->rip);
818 struct task_struct * task;
820 unsigned short mxcsr;
822 conditional_sti(regs);
823 if ((regs->cs & 3) == 0 &&
824 kernel_math_error(regs, "kernel simd math error"))
828 * Save the info for the exception handler and clear the error.
832 task->thread.trap_no = 19;
833 task->thread.error_code = 0;
834 info.si_signo = SIGFPE;
836 info.si_code = __SI_FAULT;
839 * The SIMD FPU exceptions are handled a little differently, as there
840 * is only a single status/control register. Thus, to determine which
841 * unmasked exception was caught we must mask the exception mask bits
842 * at 0x1f80, and then use these to mask the exception bits at 0x3f.
844 mxcsr = get_fpu_mxcsr(task);
845 switch (~((mxcsr & 0x1f80) >> 7) & (mxcsr & 0x3f)) {
849 case 0x001: /* Invalid Op */
850 info.si_code = FPE_FLTINV;
852 case 0x002: /* Denormalize */
853 case 0x010: /* Underflow */
854 info.si_code = FPE_FLTUND;
856 case 0x004: /* Zero Divide */
857 info.si_code = FPE_FLTDIV;
859 case 0x008: /* Overflow */
860 info.si_code = FPE_FLTOVF;
862 case 0x020: /* Precision */
863 info.si_code = FPE_FLTRES;
866 force_sig_info(SIGFPE, &info, task);
869 asmlinkage void do_spurious_interrupt_bug(struct pt_regs * regs)
873 asmlinkage void __attribute__((weak)) smp_thermal_interrupt(void)
878 * 'math_state_restore()' saves the current math information in the
879 * old math state array, and gets the new ones from the current task
881 * Careful.. There are problems with IBM-designed IRQ13 behaviour.
882 * Don't touch unless you *really* know how it works.
884 asmlinkage void math_state_restore(void)
886 struct task_struct *me = current;
887 clts(); /* Allow maths ops (or we recurse) */
891 restore_fpu_checking(&me->thread.i387.fxsave);
892 me->thread_info->status |= TS_USEDFPU;
895 void do_call_debug(struct pt_regs *regs)
897 notify_die(DIE_CALL, "debug call", regs, 0, 255, SIGINT);
900 void __init trap_init(void)
902 set_intr_gate(0,÷_error);
903 set_intr_gate_ist(1,&debug,DEBUG_STACK);
904 set_intr_gate_ist(2,&nmi,NMI_STACK);
905 set_system_gate(3,&int3);
906 set_system_gate(4,&overflow); /* int4-5 can be called from all */
907 set_system_gate(5,&bounds);
908 set_intr_gate(6,&invalid_op);
909 set_intr_gate(7,&device_not_available);
910 set_intr_gate_ist(8,&double_fault, DOUBLEFAULT_STACK);
911 set_intr_gate(9,&coprocessor_segment_overrun);
912 set_intr_gate(10,&invalid_TSS);
913 set_intr_gate(11,&segment_not_present);
914 set_intr_gate_ist(12,&stack_segment,STACKFAULT_STACK);
915 set_intr_gate(13,&general_protection);
916 set_intr_gate(14,&page_fault);
917 set_intr_gate(15,&spurious_interrupt_bug);
918 set_intr_gate(16,&coprocessor_error);
919 set_intr_gate(17,&alignment_check);
920 #ifdef CONFIG_X86_MCE
921 set_intr_gate_ist(18,&machine_check, MCE_STACK);
923 set_intr_gate(19,&simd_coprocessor_error);
925 #ifdef CONFIG_IA32_EMULATION
926 set_system_gate(IA32_SYSCALL_VECTOR, ia32_syscall);
929 set_intr_gate(KDB_VECTOR, call_debug);
932 * Should be a barrier for any external CPU state.
938 /* Actual parsing is done early in setup.c. */
939 static int __init oops_dummy(char *s)
944 __setup("oops=", oops_dummy);
946 static int __init kstack_setup(char *s)
948 kstack_depth_to_print = simple_strtoul(s,NULL,0);
951 __setup("kstack=", kstack_setup);