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 extern struct gate_struct idt_table[256];
52 asmlinkage void divide_error(void);
53 asmlinkage void debug(void);
54 asmlinkage void nmi(void);
55 asmlinkage void int3(void);
56 asmlinkage void overflow(void);
57 asmlinkage void bounds(void);
58 asmlinkage void invalid_op(void);
59 asmlinkage void device_not_available(void);
60 asmlinkage void double_fault(void);
61 asmlinkage void coprocessor_segment_overrun(void);
62 asmlinkage void invalid_TSS(void);
63 asmlinkage void segment_not_present(void);
64 asmlinkage void stack_segment(void);
65 asmlinkage void general_protection(void);
66 asmlinkage void page_fault(void);
67 asmlinkage void coprocessor_error(void);
68 asmlinkage void simd_coprocessor_error(void);
69 asmlinkage void reserved(void);
70 asmlinkage void alignment_check(void);
71 asmlinkage void machine_check(void);
72 asmlinkage void spurious_interrupt_bug(void);
74 struct notifier_block *die_chain;
75 static DEFINE_SPINLOCK(die_notifier_lock);
77 int register_die_notifier(struct notifier_block *nb)
81 spin_lock_irqsave(&die_notifier_lock, flags);
82 err = notifier_chain_register(&die_chain, nb);
83 spin_unlock_irqrestore(&die_notifier_lock, flags);
87 static inline void conditional_sti(struct pt_regs *regs)
89 if (regs->eflags & X86_EFLAGS_IF)
93 static int kstack_depth_to_print = 10;
95 #ifdef CONFIG_KALLSYMS
96 #include <linux/kallsyms.h>
97 int printk_address(unsigned long address)
99 unsigned long offset = 0, symsize;
105 symname = kallsyms_lookup(address, &symsize, &offset, &modname, namebuf);
107 return printk("[<%016lx>]", address);
109 modname = delim = "";
110 return printk("<%016lx>{%s%s%s%s%+ld}",
111 address,delim,modname,delim,symname,offset);
114 int printk_address(unsigned long address)
116 return printk("[<%016lx>]", address);
120 static unsigned long *in_exception_stack(unsigned cpu, unsigned long stack,
121 unsigned *usedp, const char **idp)
123 static char ids[][8] = {
124 [DEBUG_STACK - 1] = "#DB",
125 [NMI_STACK - 1] = "NMI",
126 [DOUBLEFAULT_STACK - 1] = "#DF",
127 [STACKFAULT_STACK - 1] = "#SS",
128 [MCE_STACK - 1] = "#MC",
129 #if DEBUG_STKSZ > EXCEPTION_STKSZ
130 [N_EXCEPTION_STACKS ... N_EXCEPTION_STACKS + DEBUG_STKSZ / EXCEPTION_STKSZ - 2] = "#DB[?]"
135 for (k = 0; k < N_EXCEPTION_STACKS; k++) {
139 #if DEBUG_STKSZ > EXCEPTION_STKSZ
141 end = cpu_pda(cpu)->debugstack + DEBUG_STKSZ;
145 end = per_cpu(init_tss, cpu).ist[k];
150 if (stack >= end - EXCEPTION_STKSZ) {
151 if (*usedp & (1U << k))
155 return (unsigned long *)end;
157 #if DEBUG_STKSZ > EXCEPTION_STKSZ
158 if (k == DEBUG_STACK - 1 && stack >= end - DEBUG_STKSZ) {
159 unsigned j = N_EXCEPTION_STACKS - 1;
163 end -= EXCEPTION_STKSZ;
164 ids[j][4] = '1' + (j - N_EXCEPTION_STACKS);
165 } while (stack < end - EXCEPTION_STKSZ);
166 if (*usedp & (1U << j))
170 return (unsigned long *)end;
178 * x86-64 can have upto three kernel stacks:
181 * severe exception (double fault, nmi, stack fault, debug, mce) hardware stack
184 void show_trace(unsigned long *stack)
186 const unsigned cpu = safe_smp_processor_id();
187 unsigned long *irqstack_end = (unsigned long *)cpu_pda(cpu)->irqstackptr;
191 printk("\nCall Trace:");
193 #define HANDLE_STACK(cond) \
195 unsigned long addr = *stack++; \
196 if (kernel_text_address(addr)) { \
204 * If the address is either in the text segment of the \
205 * kernel, or in the region which contains vmalloc'ed \
206 * memory, it *may* be the address of a calling \
207 * routine; if so, print it so that someone tracing \
208 * down the cause of the crash will be able to figure \
209 * out the call path that was taken. \
211 i += printk_address(addr); \
217 unsigned long *estack_end;
218 estack_end = in_exception_stack(cpu, (unsigned long)stack,
222 i += printk(" <%s>", id);
223 HANDLE_STACK (stack < estack_end);
224 i += printk(" <EOE>");
225 stack = (unsigned long *) estack_end[-2];
229 unsigned long *irqstack;
230 irqstack = irqstack_end -
231 (IRQSTACKSIZE - 64) / sizeof(*irqstack);
233 if (stack >= irqstack && stack < irqstack_end) {
234 i += printk(" <IRQ>");
235 HANDLE_STACK (stack < irqstack_end);
236 stack = (unsigned long *) (irqstack_end[-1]);
238 i += printk(" <EOI>");
245 HANDLE_STACK (((long) stack & (THREAD_SIZE-1)) != 0);
250 void show_stack(struct task_struct *tsk, unsigned long * rsp)
252 unsigned long *stack;
254 const int cpu = safe_smp_processor_id();
255 unsigned long *irqstack_end = (unsigned long *) (cpu_pda(cpu)->irqstackptr);
256 unsigned long *irqstack = (unsigned long *) (cpu_pda(cpu)->irqstackptr - IRQSTACKSIZE);
258 // debugging aid: "show_stack(NULL, NULL);" prints the
259 // back trace for this cpu.
263 rsp = (unsigned long *)tsk->thread.rsp;
265 rsp = (unsigned long *)&rsp;
269 for(i=0; i < kstack_depth_to_print; i++) {
270 if (stack >= irqstack && stack <= irqstack_end) {
271 if (stack == irqstack_end) {
272 stack = (unsigned long *) (irqstack_end[-1]);
276 if (((long) stack & (THREAD_SIZE-1)) == 0)
279 if (i && ((i % 4) == 0))
281 printk("%016lx ", *stack++);
282 touch_nmi_watchdog();
284 show_trace((unsigned long *)rsp);
288 * The architecture-independent dump_stack generator
290 void dump_stack(void)
296 EXPORT_SYMBOL(dump_stack);
298 void show_registers(struct pt_regs *regs)
301 int in_kernel = !user_mode(regs);
303 const int cpu = safe_smp_processor_id();
304 struct task_struct *cur = cpu_pda(cpu)->pcurrent;
308 printk("CPU %d ", cpu);
310 printk("Process %s (pid: %d, threadinfo %p, task %p)\n",
311 cur->comm, cur->pid, task_thread_info(cur), cur);
314 * When in-kernel, we also print out the stack and code at the
315 * time of the fault..
320 show_stack(NULL, (unsigned long*)rsp);
323 if(regs->rip < PAGE_OFFSET)
329 if(__get_user(c, &((unsigned char*)regs->rip)[i])) {
331 printk(" Bad RIP value.");
340 void handle_BUG(struct pt_regs *regs)
344 const char *prefix = "";
348 if (__copy_from_user(&f, (const void __user *) regs->rip,
349 sizeof(struct bug_frame)))
351 if (f.filename >= 0 ||
352 f.ud2[0] != 0x0f || f.ud2[1] != 0x0b)
354 len = __strnlen_user((char *)(long)f.filename, PATH_MAX) - 1;
355 if (len < 0 || len >= PATH_MAX)
356 f.filename = (int)(long)"unmapped filename";
358 f.filename += len - 50;
361 printk("----------- [cut here ] --------- [please bite here ] ---------\n");
362 printk(KERN_ALERT "Kernel BUG at %s%.50s:%d\n", prefix, (char *)(long)f.filename, f.line);
366 void out_of_line_bug(void)
372 static DEFINE_SPINLOCK(die_lock);
373 static int die_owner = -1;
375 unsigned long oops_begin(void)
377 int cpu = safe_smp_processor_id();
380 /* racy, but better than risking deadlock. */
381 local_irq_save(flags);
382 if (!spin_trylock(&die_lock)) {
383 if (cpu == die_owner)
384 /* nested oops. should stop eventually */;
386 spin_lock(&die_lock);
394 void oops_end(unsigned long flags)
398 spin_unlock_irqrestore(&die_lock, flags);
403 void __die(const char * str, struct pt_regs * regs, long err)
405 static int die_counter;
406 printk(KERN_EMERG "%s: %04lx [%u] ", str, err & 0xffff,++die_counter);
407 #ifdef CONFIG_PREEMPT
413 #ifdef CONFIG_DEBUG_PAGEALLOC
414 printk("DEBUG_PAGEALLOC");
417 notify_die(DIE_OOPS, str, regs, err, current->thread.trap_no, SIGSEGV);
418 show_registers(regs);
419 /* Executive summary in case the oops scrolled away */
420 printk(KERN_ALERT "RIP ");
421 printk_address(regs->rip);
422 printk(" RSP <%016lx>\n", regs->rsp);
425 void die(const char * str, struct pt_regs * regs, long err)
427 unsigned long flags = oops_begin();
430 __die(str, regs, err);
435 void die_nmi(char *str, struct pt_regs *regs)
437 unsigned long flags = oops_begin();
440 * We are in trouble anyway, lets at least try
441 * to get a message out.
443 printk(str, safe_smp_processor_id());
444 show_registers(regs);
445 if (panic_on_timeout || panic_on_oops)
446 panic("nmi watchdog");
447 printk("console shuts up ...\n");
452 static void __kprobes do_trap(int trapnr, int signr, char *str,
453 struct pt_regs * regs, long error_code,
456 struct task_struct *tsk = current;
458 conditional_sti(regs);
460 tsk->thread.error_code = error_code;
461 tsk->thread.trap_no = trapnr;
463 if (user_mode(regs)) {
464 if (exception_trace && unhandled_signal(tsk, signr))
466 "%s[%d] trap %s rip:%lx rsp:%lx error:%lx\n",
467 tsk->comm, tsk->pid, str,
468 regs->rip,regs->rsp,error_code);
471 force_sig_info(signr, info, tsk);
473 force_sig(signr, tsk);
480 const struct exception_table_entry *fixup;
481 fixup = search_exception_tables(regs->rip);
483 regs->rip = fixup->fixup;
485 die(str, regs, error_code);
490 #define DO_ERROR(trapnr, signr, str, name) \
491 asmlinkage void do_##name(struct pt_regs * regs, long error_code) \
493 if (notify_die(DIE_TRAP, str, regs, error_code, trapnr, signr) \
496 do_trap(trapnr, signr, str, regs, error_code, NULL); \
499 #define DO_ERROR_INFO(trapnr, signr, str, name, sicode, siaddr) \
500 asmlinkage void do_##name(struct pt_regs * regs, long error_code) \
503 info.si_signo = signr; \
505 info.si_code = sicode; \
506 info.si_addr = (void __user *)siaddr; \
507 if (notify_die(DIE_TRAP, str, regs, error_code, trapnr, signr) \
510 do_trap(trapnr, signr, str, regs, error_code, &info); \
513 DO_ERROR_INFO( 0, SIGFPE, "divide error", divide_error, FPE_INTDIV, regs->rip)
514 DO_ERROR( 4, SIGSEGV, "overflow", overflow)
515 DO_ERROR( 5, SIGSEGV, "bounds", bounds)
516 DO_ERROR_INFO( 6, SIGILL, "invalid opcode", invalid_op, ILL_ILLOPN, regs->rip)
517 DO_ERROR( 7, SIGSEGV, "device not available", device_not_available)
518 DO_ERROR( 9, SIGFPE, "coprocessor segment overrun", coprocessor_segment_overrun)
519 DO_ERROR(10, SIGSEGV, "invalid TSS", invalid_TSS)
520 DO_ERROR(11, SIGBUS, "segment not present", segment_not_present)
521 DO_ERROR_INFO(17, SIGBUS, "alignment check", alignment_check, BUS_ADRALN, 0)
522 DO_ERROR(18, SIGSEGV, "reserved", reserved)
523 DO_ERROR(12, SIGBUS, "stack segment", stack_segment)
525 asmlinkage void do_double_fault(struct pt_regs * regs, long error_code)
527 static const char str[] = "double fault";
528 struct task_struct *tsk = current;
530 /* Return not checked because double check cannot be ignored */
531 notify_die(DIE_TRAP, str, regs, error_code, 8, SIGSEGV);
533 tsk->thread.error_code = error_code;
534 tsk->thread.trap_no = 8;
536 /* This is always a kernel trap and never fixable (and thus must
539 die(str, regs, error_code);
542 asmlinkage void __kprobes do_general_protection(struct pt_regs * regs,
545 struct task_struct *tsk = current;
547 conditional_sti(regs);
549 tsk->thread.error_code = error_code;
550 tsk->thread.trap_no = 13;
552 if (user_mode(regs)) {
553 if (exception_trace && unhandled_signal(tsk, SIGSEGV))
555 "%s[%d] general protection rip:%lx rsp:%lx error:%lx\n",
557 regs->rip,regs->rsp,error_code);
559 force_sig(SIGSEGV, tsk);
565 const struct exception_table_entry *fixup;
566 fixup = search_exception_tables(regs->rip);
568 regs->rip = fixup->fixup;
571 if (notify_die(DIE_GPF, "general protection fault", regs,
572 error_code, 13, SIGSEGV) == NOTIFY_STOP)
574 die("general protection fault", regs, error_code);
578 static void mem_parity_error(unsigned char reason, struct pt_regs * regs)
580 printk("Uhhuh. NMI received. Dazed and confused, but trying to continue\n");
581 printk("You probably have a hardware problem with your RAM chips\n");
583 /* Clear and disable the memory parity error line. */
584 reason = (reason & 0xf) | 4;
588 static void io_check_error(unsigned char reason, struct pt_regs * regs)
590 printk("NMI: IOCK error (debug interrupt?)\n");
591 show_registers(regs);
593 /* Re-enable the IOCK line, wait for a few seconds */
594 reason = (reason & 0xf) | 8;
601 static void unknown_nmi_error(unsigned char reason, struct pt_regs * regs)
602 { printk("Uhhuh. NMI received for unknown reason %02x.\n", reason);
603 printk("Dazed and confused, but trying to continue\n");
604 printk("Do you have a strange power saving mode enabled?\n");
607 /* Runs on IST stack. This code must keep interrupts off all the time.
608 Nested NMIs are prevented by the CPU. */
609 asmlinkage void default_do_nmi(struct pt_regs *regs)
611 unsigned char reason = 0;
614 cpu = smp_processor_id();
616 /* Only the BSP gets external NMIs from the system. */
618 reason = get_nmi_reason();
620 if (!(reason & 0xc0)) {
621 if (notify_die(DIE_NMI_IPI, "nmi_ipi", regs, reason, 2, SIGINT)
624 #ifdef CONFIG_X86_LOCAL_APIC
626 * Ok, so this is none of the documented NMI sources,
627 * so it must be the NMI watchdog.
629 if (nmi_watchdog > 0) {
630 nmi_watchdog_tick(regs,reason);
634 unknown_nmi_error(reason, regs);
637 if (notify_die(DIE_NMI, "nmi", regs, reason, 2, SIGINT) == NOTIFY_STOP)
640 /* AK: following checks seem to be broken on modern chipsets. FIXME */
643 mem_parity_error(reason, regs);
645 io_check_error(reason, regs);
648 /* runs on IST stack. */
649 asmlinkage void __kprobes do_int3(struct pt_regs * regs, long error_code)
651 if (notify_die(DIE_INT3, "int3", regs, error_code, 3, SIGTRAP) == NOTIFY_STOP) {
654 do_trap(3, SIGTRAP, "int3", regs, error_code, NULL);
658 /* Help handler running on IST stack to switch back to user stack
659 for scheduling or signal handling. The actual stack switch is done in
661 asmlinkage struct pt_regs *sync_regs(struct pt_regs *eregs)
663 struct pt_regs *regs = eregs;
664 /* Did already sync */
665 if (eregs == (struct pt_regs *)eregs->rsp)
667 /* Exception from user space */
668 else if (user_mode(eregs))
669 regs = task_pt_regs(current);
670 /* Exception from kernel and interrupts are enabled. Move to
671 kernel process stack. */
672 else if (eregs->eflags & X86_EFLAGS_IF)
673 regs = (struct pt_regs *)(eregs->rsp -= sizeof(struct pt_regs));
679 /* runs on IST stack. */
680 asmlinkage void __kprobes do_debug(struct pt_regs * regs,
681 unsigned long error_code)
683 unsigned long condition;
684 struct task_struct *tsk = current;
687 get_debugreg(condition, 6);
689 if (notify_die(DIE_DEBUG, "debug", regs, condition, error_code,
690 SIGTRAP) == NOTIFY_STOP)
693 conditional_sti(regs);
695 /* Mask out spurious debug traps due to lazy DR7 setting */
696 if (condition & (DR_TRAP0|DR_TRAP1|DR_TRAP2|DR_TRAP3)) {
697 if (!tsk->thread.debugreg7) {
702 tsk->thread.debugreg6 = condition;
704 /* Mask out spurious TF errors due to lazy TF clearing */
705 if (condition & DR_STEP) {
707 * The TF error should be masked out only if the current
708 * process is not traced and if the TRAP flag has been set
709 * previously by a tracing process (condition detected by
710 * the PT_DTRACE flag); remember that the i386 TRAP flag
711 * can be modified by the process itself in user mode,
712 * allowing programs to debug themselves without the ptrace()
715 if (!user_mode(regs))
716 goto clear_TF_reenable;
718 * Was the TF flag set by a debugger? If so, clear it now,
719 * so that register information is correct.
721 if (tsk->ptrace & PT_DTRACE) {
722 regs->eflags &= ~TF_MASK;
723 tsk->ptrace &= ~PT_DTRACE;
727 /* Ok, finally something we can handle */
728 tsk->thread.trap_no = 1;
729 tsk->thread.error_code = error_code;
730 info.si_signo = SIGTRAP;
732 info.si_code = TRAP_BRKPT;
733 info.si_addr = user_mode(regs) ? (void __user *)regs->rip : NULL;
734 force_sig_info(SIGTRAP, &info, tsk);
737 set_debugreg(0UL, 7);
741 set_tsk_thread_flag(tsk, TIF_SINGLESTEP);
742 regs->eflags &= ~TF_MASK;
745 static int kernel_math_error(struct pt_regs *regs, const char *str, int trapnr)
747 const struct exception_table_entry *fixup;
748 fixup = search_exception_tables(regs->rip);
750 regs->rip = fixup->fixup;
753 notify_die(DIE_GPF, str, regs, 0, trapnr, SIGFPE);
754 /* Illegal floating point operation in the kernel */
755 current->thread.trap_no = trapnr;
761 * Note that we play around with the 'TS' bit in an attempt to get
762 * the correct behaviour even in the presence of the asynchronous
765 asmlinkage void do_coprocessor_error(struct pt_regs *regs)
767 void __user *rip = (void __user *)(regs->rip);
768 struct task_struct * task;
770 unsigned short cwd, swd;
772 conditional_sti(regs);
773 if (!user_mode(regs) &&
774 kernel_math_error(regs, "kernel x87 math error", 16))
778 * Save the info for the exception handler and clear the error.
782 task->thread.trap_no = 16;
783 task->thread.error_code = 0;
784 info.si_signo = SIGFPE;
786 info.si_code = __SI_FAULT;
789 * (~cwd & swd) will mask out exceptions that are not set to unmasked
790 * status. 0x3f is the exception bits in these regs, 0x200 is the
791 * C1 reg you need in case of a stack fault, 0x040 is the stack
792 * fault bit. We should only be taking one exception at a time,
793 * so if this combination doesn't produce any single exception,
794 * then we have a bad program that isn't synchronizing its FPU usage
795 * and it will suffer the consequences since we won't be able to
796 * fully reproduce the context of the exception
798 cwd = get_fpu_cwd(task);
799 swd = get_fpu_swd(task);
800 switch (swd & ~cwd & 0x3f) {
804 case 0x001: /* Invalid Op */
806 * swd & 0x240 == 0x040: Stack Underflow
807 * swd & 0x240 == 0x240: Stack Overflow
808 * User must clear the SF bit (0x40) if set
810 info.si_code = FPE_FLTINV;
812 case 0x002: /* Denormalize */
813 case 0x010: /* Underflow */
814 info.si_code = FPE_FLTUND;
816 case 0x004: /* Zero Divide */
817 info.si_code = FPE_FLTDIV;
819 case 0x008: /* Overflow */
820 info.si_code = FPE_FLTOVF;
822 case 0x020: /* Precision */
823 info.si_code = FPE_FLTRES;
826 force_sig_info(SIGFPE, &info, task);
829 asmlinkage void bad_intr(void)
831 printk("bad interrupt");
834 asmlinkage void do_simd_coprocessor_error(struct pt_regs *regs)
836 void __user *rip = (void __user *)(regs->rip);
837 struct task_struct * task;
839 unsigned short mxcsr;
841 conditional_sti(regs);
842 if (!user_mode(regs) &&
843 kernel_math_error(regs, "kernel simd math error", 19))
847 * Save the info for the exception handler and clear the error.
851 task->thread.trap_no = 19;
852 task->thread.error_code = 0;
853 info.si_signo = SIGFPE;
855 info.si_code = __SI_FAULT;
858 * The SIMD FPU exceptions are handled a little differently, as there
859 * is only a single status/control register. Thus, to determine which
860 * unmasked exception was caught we must mask the exception mask bits
861 * at 0x1f80, and then use these to mask the exception bits at 0x3f.
863 mxcsr = get_fpu_mxcsr(task);
864 switch (~((mxcsr & 0x1f80) >> 7) & (mxcsr & 0x3f)) {
868 case 0x001: /* Invalid Op */
869 info.si_code = FPE_FLTINV;
871 case 0x002: /* Denormalize */
872 case 0x010: /* Underflow */
873 info.si_code = FPE_FLTUND;
875 case 0x004: /* Zero Divide */
876 info.si_code = FPE_FLTDIV;
878 case 0x008: /* Overflow */
879 info.si_code = FPE_FLTOVF;
881 case 0x020: /* Precision */
882 info.si_code = FPE_FLTRES;
885 force_sig_info(SIGFPE, &info, task);
888 asmlinkage void do_spurious_interrupt_bug(struct pt_regs * regs)
892 asmlinkage void __attribute__((weak)) smp_thermal_interrupt(void)
896 asmlinkage void __attribute__((weak)) mce_threshold_interrupt(void)
901 * 'math_state_restore()' saves the current math information in the
902 * old math state array, and gets the new ones from the current task
904 * Careful.. There are problems with IBM-designed IRQ13 behaviour.
905 * Don't touch unless you *really* know how it works.
907 asmlinkage void math_state_restore(void)
909 struct task_struct *me = current;
910 clts(); /* Allow maths ops (or we recurse) */
914 restore_fpu_checking(&me->thread.i387.fxsave);
915 task_thread_info(me)->status |= TS_USEDFPU;
918 void __init trap_init(void)
920 set_intr_gate(0,÷_error);
921 set_intr_gate_ist(1,&debug,DEBUG_STACK);
922 set_intr_gate_ist(2,&nmi,NMI_STACK);
923 set_system_gate_ist(3,&int3,DEBUG_STACK); /* int3 can be called from all */
924 set_system_gate(4,&overflow); /* int4 can be called from all */
925 set_intr_gate(5,&bounds);
926 set_intr_gate(6,&invalid_op);
927 set_intr_gate(7,&device_not_available);
928 set_intr_gate_ist(8,&double_fault, DOUBLEFAULT_STACK);
929 set_intr_gate(9,&coprocessor_segment_overrun);
930 set_intr_gate(10,&invalid_TSS);
931 set_intr_gate(11,&segment_not_present);
932 set_intr_gate_ist(12,&stack_segment,STACKFAULT_STACK);
933 set_intr_gate(13,&general_protection);
934 set_intr_gate(14,&page_fault);
935 set_intr_gate(15,&spurious_interrupt_bug);
936 set_intr_gate(16,&coprocessor_error);
937 set_intr_gate(17,&alignment_check);
938 #ifdef CONFIG_X86_MCE
939 set_intr_gate_ist(18,&machine_check, MCE_STACK);
941 set_intr_gate(19,&simd_coprocessor_error);
943 #ifdef CONFIG_IA32_EMULATION
944 set_system_gate(IA32_SYSCALL_VECTOR, ia32_syscall);
948 * Should be a barrier for any external CPU state.
954 /* Actual parsing is done early in setup.c. */
955 static int __init oops_dummy(char *s)
960 __setup("oops=", oops_dummy);
962 static int __init kstack_setup(char *s)
964 kstack_depth_to_print = simple_strtoul(s,NULL,0);
967 __setup("kstack=", kstack_setup);