2 * Copyright (C) 1991, 1992 Linus Torvalds
3 * Copyright (C) 2000, 2001, 2002 Andi Kleen, SuSE Labs
5 * Pentium III FXSR, SSE support
6 * Gareth Hughes <gareth@valinux.com>, May 2000
10 * Handle hardware traps and faults.
12 #include <linux/interrupt.h>
13 #include <linux/kallsyms.h>
14 #include <linux/spinlock.h>
15 #include <linux/kprobes.h>
16 #include <linux/uaccess.h>
17 #include <linux/utsname.h>
18 #include <linux/kdebug.h>
19 #include <linux/kernel.h>
20 #include <linux/module.h>
21 #include <linux/ptrace.h>
22 #include <linux/string.h>
23 #include <linux/delay.h>
24 #include <linux/errno.h>
25 #include <linux/kexec.h>
26 #include <linux/sched.h>
27 #include <linux/timer.h>
28 #include <linux/init.h>
29 #include <linux/bug.h>
30 #include <linux/nmi.h>
32 #include <linux/smp.h>
36 #include <linux/ioport.h>
37 #include <linux/eisa.h>
41 #include <linux/mca.h>
44 #if defined(CONFIG_EDAC)
45 #include <linux/edac.h>
48 #include <asm/stacktrace.h>
49 #include <asm/processor.h>
50 #include <asm/debugreg.h>
51 #include <asm/atomic.h>
52 #include <asm/system.h>
53 #include <asm/traps.h>
57 #include <mach_traps.h>
60 #include <asm/pgalloc.h>
61 #include <asm/proto.h>
64 #include <asm/processor-flags.h>
65 #include <asm/arch_hooks.h>
66 #include <asm/traps.h>
68 #include "cpu/mcheck/mce.h"
70 asmlinkage int system_call(void);
72 /* Do we ignore FPU interrupts ? */
76 * The IDT has to be page-aligned to simplify the Pentium
77 * F0 0F bug workaround.. We have a special link segment
80 gate_desc idt_table[256]
81 __attribute__((__section__(".data.idt"))) = { { { { 0, 0 } } }, };
84 DECLARE_BITMAP(used_vectors, NR_VECTORS);
85 EXPORT_SYMBOL_GPL(used_vectors);
87 static int ignore_nmis;
89 static inline void conditional_sti(struct pt_regs *regs)
91 if (regs->flags & X86_EFLAGS_IF)
95 static inline void preempt_conditional_sti(struct pt_regs *regs)
98 if (regs->flags & X86_EFLAGS_IF)
102 static inline void conditional_cli(struct pt_regs *regs)
104 if (regs->flags & X86_EFLAGS_IF)
108 static inline void preempt_conditional_cli(struct pt_regs *regs)
110 if (regs->flags & X86_EFLAGS_IF)
117 die_if_kernel(const char *str, struct pt_regs *regs, long err)
119 if (!user_mode_vm(regs))
124 * Perform the lazy TSS's I/O bitmap copy. If the TSS has an
125 * invalid offset set (the LAZY one) and the faulting thread has
126 * a valid I/O bitmap pointer, we copy the I/O bitmap in the TSS,
127 * we set the offset field correctly and return 1.
129 static int lazy_iobitmap_copy(void)
131 struct thread_struct *thread;
132 struct tss_struct *tss;
136 tss = &per_cpu(init_tss, cpu);
137 thread = ¤t->thread;
139 if (tss->x86_tss.io_bitmap_base == INVALID_IO_BITMAP_OFFSET_LAZY &&
140 thread->io_bitmap_ptr) {
141 memcpy(tss->io_bitmap, thread->io_bitmap_ptr,
142 thread->io_bitmap_max);
144 * If the previously set map was extending to higher ports
145 * than the current one, pad extra space with 0xff (no access).
147 if (thread->io_bitmap_max < tss->io_bitmap_max) {
148 memset((char *) tss->io_bitmap +
149 thread->io_bitmap_max, 0xff,
150 tss->io_bitmap_max - thread->io_bitmap_max);
152 tss->io_bitmap_max = thread->io_bitmap_max;
153 tss->x86_tss.io_bitmap_base = IO_BITMAP_OFFSET;
154 tss->io_bitmap_owner = thread;
165 static void __kprobes
166 do_trap(int trapnr, int signr, char *str, struct pt_regs *regs,
167 long error_code, siginfo_t *info)
169 struct task_struct *tsk = current;
172 if (regs->flags & X86_VM_MASK) {
174 * traps 0, 1, 3, 4, and 5 should be forwarded to vm86.
175 * On nmi (interrupt 2), do_trap should not be called.
183 if (!user_mode(regs))
190 * We want error_code and trap_no set for userspace faults and
191 * kernelspace faults which result in die(), but not
192 * kernelspace faults which are fixed up. die() gives the
193 * process no chance to handle the signal and notice the
194 * kernel fault information, so that won't result in polluting
195 * the information about previously queued, but not yet
196 * delivered, faults. See also do_general_protection below.
198 tsk->thread.error_code = error_code;
199 tsk->thread.trap_no = trapnr;
202 if (show_unhandled_signals && unhandled_signal(tsk, signr) &&
203 printk_ratelimit()) {
205 "%s[%d] trap %s ip:%lx sp:%lx error:%lx",
206 tsk->comm, tsk->pid, str,
207 regs->ip, regs->sp, error_code);
208 print_vma_addr(" in ", regs->ip);
214 force_sig_info(signr, info, tsk);
216 force_sig(signr, tsk);
220 if (!fixup_exception(regs)) {
221 tsk->thread.error_code = error_code;
222 tsk->thread.trap_no = trapnr;
223 die(str, regs, error_code);
229 if (handle_vm86_trap((struct kernel_vm86_regs *) regs,
236 #define DO_ERROR(trapnr, signr, str, name) \
237 dotraplinkage void do_##name(struct pt_regs *regs, long error_code) \
239 if (notify_die(DIE_TRAP, str, regs, error_code, trapnr, signr) \
242 conditional_sti(regs); \
243 do_trap(trapnr, signr, str, regs, error_code, NULL); \
246 #define DO_ERROR_INFO(trapnr, signr, str, name, sicode, siaddr) \
247 dotraplinkage void do_##name(struct pt_regs *regs, long error_code) \
250 info.si_signo = signr; \
252 info.si_code = sicode; \
253 info.si_addr = (void __user *)siaddr; \
254 if (notify_die(DIE_TRAP, str, regs, error_code, trapnr, signr) \
257 conditional_sti(regs); \
258 do_trap(trapnr, signr, str, regs, error_code, &info); \
261 DO_ERROR_INFO(0, SIGFPE, "divide error", divide_error, FPE_INTDIV, regs->ip)
262 DO_ERROR(4, SIGSEGV, "overflow", overflow)
263 DO_ERROR(5, SIGSEGV, "bounds", bounds)
264 DO_ERROR_INFO(6, SIGILL, "invalid opcode", invalid_op, ILL_ILLOPN, regs->ip)
265 DO_ERROR(9, SIGFPE, "coprocessor segment overrun", coprocessor_segment_overrun)
266 DO_ERROR(10, SIGSEGV, "invalid TSS", invalid_TSS)
267 DO_ERROR(11, SIGBUS, "segment not present", segment_not_present)
269 DO_ERROR(12, SIGBUS, "stack segment", stack_segment)
271 DO_ERROR_INFO(17, SIGBUS, "alignment check", alignment_check, BUS_ADRALN, 0)
274 /* Runs on IST stack */
275 dotraplinkage void do_stack_segment(struct pt_regs *regs, long error_code)
277 if (notify_die(DIE_TRAP, "stack segment", regs, error_code,
278 12, SIGBUS) == NOTIFY_STOP)
280 preempt_conditional_sti(regs);
281 do_trap(12, SIGBUS, "stack segment", regs, error_code, NULL);
282 preempt_conditional_cli(regs);
285 dotraplinkage void do_double_fault(struct pt_regs *regs, long error_code)
287 static const char str[] = "double fault";
288 struct task_struct *tsk = current;
290 /* Return not checked because double check cannot be ignored */
291 notify_die(DIE_TRAP, str, regs, error_code, 8, SIGSEGV);
293 tsk->thread.error_code = error_code;
294 tsk->thread.trap_no = 8;
297 * This is always a kernel trap and never fixable (and thus must
301 die(str, regs, error_code);
305 dotraplinkage void __kprobes
306 do_general_protection(struct pt_regs *regs, long error_code)
308 struct task_struct *tsk;
310 conditional_sti(regs);
313 if (lazy_iobitmap_copy()) {
314 /* restart the faulting instruction */
318 if (regs->flags & X86_VM_MASK)
323 if (!user_mode(regs))
326 tsk->thread.error_code = error_code;
327 tsk->thread.trap_no = 13;
329 if (show_unhandled_signals && unhandled_signal(tsk, SIGSEGV) &&
330 printk_ratelimit()) {
332 "%s[%d] general protection ip:%lx sp:%lx error:%lx",
333 tsk->comm, task_pid_nr(tsk),
334 regs->ip, regs->sp, error_code);
335 print_vma_addr(" in ", regs->ip);
339 force_sig(SIGSEGV, tsk);
345 handle_vm86_fault((struct kernel_vm86_regs *) regs, error_code);
350 if (fixup_exception(regs))
353 tsk->thread.error_code = error_code;
354 tsk->thread.trap_no = 13;
355 if (notify_die(DIE_GPF, "general protection fault", regs,
356 error_code, 13, SIGSEGV) == NOTIFY_STOP)
358 die("general protection fault", regs, error_code);
361 static notrace __kprobes void
362 mem_parity_error(unsigned char reason, struct pt_regs *regs)
365 "Uhhuh. NMI received for unknown reason %02x on CPU %d.\n",
366 reason, smp_processor_id());
369 "You have some hardware problem, likely on the PCI bus.\n");
371 #if defined(CONFIG_EDAC)
372 if (edac_handler_set()) {
373 edac_atomic_assert_error();
378 if (panic_on_unrecovered_nmi)
379 panic("NMI: Not continuing");
381 printk(KERN_EMERG "Dazed and confused, but trying to continue\n");
383 /* Clear and disable the memory parity error line. */
384 reason = (reason & 0xf) | 4;
388 static notrace __kprobes void
389 io_check_error(unsigned char reason, struct pt_regs *regs)
393 printk(KERN_EMERG "NMI: IOCK error (debug interrupt?)\n");
394 show_registers(regs);
396 /* Re-enable the IOCK line, wait for a few seconds */
397 reason = (reason & 0xf) | 8;
408 static notrace __kprobes void
409 unknown_nmi_error(unsigned char reason, struct pt_regs *regs)
411 if (notify_die(DIE_NMIUNKNOWN, "nmi", regs, reason, 2, SIGINT) ==
416 * Might actually be able to figure out what the guilty party
425 "Uhhuh. NMI received for unknown reason %02x on CPU %d.\n",
426 reason, smp_processor_id());
428 printk(KERN_EMERG "Do you have a strange power saving mode enabled?\n");
429 if (panic_on_unrecovered_nmi)
430 panic("NMI: Not continuing");
432 printk(KERN_EMERG "Dazed and confused, but trying to continue\n");
435 static notrace __kprobes void default_do_nmi(struct pt_regs *regs)
437 unsigned char reason = 0;
440 cpu = smp_processor_id();
442 /* Only the BSP gets external NMIs from the system. */
444 reason = get_nmi_reason();
446 if (!(reason & 0xc0)) {
447 if (notify_die(DIE_NMI_IPI, "nmi_ipi", regs, reason, 2, SIGINT)
450 #ifdef CONFIG_X86_LOCAL_APIC
452 * Ok, so this is none of the documented NMI sources,
453 * so it must be the NMI watchdog.
455 if (nmi_watchdog_tick(regs, reason))
457 if (!do_nmi_callback(regs, cpu))
458 unknown_nmi_error(reason, regs);
460 unknown_nmi_error(reason, regs);
465 if (notify_die(DIE_NMI, "nmi", regs, reason, 2, SIGINT) == NOTIFY_STOP)
468 /* AK: following checks seem to be broken on modern chipsets. FIXME */
470 mem_parity_error(reason, regs);
472 io_check_error(reason, regs);
475 * Reassert NMI in case it became active meanwhile
476 * as it's edge-triggered:
482 dotraplinkage notrace __kprobes void
483 do_nmi(struct pt_regs *regs, long error_code)
487 inc_irq_stat(__nmi_count);
490 default_do_nmi(regs);
501 void restart_nmi(void)
507 /* May run on IST stack. */
508 dotraplinkage void __kprobes do_int3(struct pt_regs *regs, long error_code)
510 #ifdef CONFIG_KPROBES
511 if (notify_die(DIE_INT3, "int3", regs, error_code, 3, SIGTRAP)
515 if (notify_die(DIE_TRAP, "int3", regs, error_code, 3, SIGTRAP)
520 preempt_conditional_sti(regs);
521 do_trap(3, SIGTRAP, "int3", regs, error_code, NULL);
522 preempt_conditional_cli(regs);
527 * Help handler running on IST stack to switch back to user stack
528 * for scheduling or signal handling. The actual stack switch is done in
531 asmlinkage __kprobes struct pt_regs *sync_regs(struct pt_regs *eregs)
533 struct pt_regs *regs = eregs;
534 /* Did already sync */
535 if (eregs == (struct pt_regs *)eregs->sp)
537 /* Exception from user space */
538 else if (user_mode(eregs))
539 regs = task_pt_regs(current);
541 * Exception from kernel and interrupts are enabled. Move to
542 * kernel process stack.
544 else if (eregs->flags & X86_EFLAGS_IF)
545 regs = (struct pt_regs *)(eregs->sp -= sizeof(struct pt_regs));
553 * Our handling of the processor debug registers is non-trivial.
554 * We do not clear them on entry and exit from the kernel. Therefore
555 * it is possible to get a watchpoint trap here from inside the kernel.
556 * However, the code in ./ptrace.c has ensured that the user can
557 * only set watchpoints on userspace addresses. Therefore the in-kernel
558 * watchpoint trap can only occur in code which is reading/writing
559 * from user space. Such code must not hold kernel locks (since it
560 * can equally take a page fault), therefore it is safe to call
561 * force_sig_info even though that claims and releases locks.
563 * Code in ./signal.c ensures that the debug control register
564 * is restored before we deliver any signal, and therefore that
565 * user code runs with the correct debug control register even though
568 * Being careful here means that we don't have to be as careful in a
569 * lot of more complicated places (task switching can be a bit lazy
570 * about restoring all the debug state, and ptrace doesn't have to
571 * find every occurrence of the TF bit that could be saved away even
574 * May run on IST stack.
576 dotraplinkage void __kprobes do_debug(struct pt_regs *regs, long error_code)
578 struct task_struct *tsk = current;
579 unsigned long condition;
582 get_debugreg(condition, 6);
585 * The processor cleared BTF, so don't mark that we need it set.
587 clear_tsk_thread_flag(tsk, TIF_DEBUGCTLMSR);
588 tsk->thread.debugctlmsr = 0;
590 if (notify_die(DIE_DEBUG, "debug", regs, condition, error_code,
591 SIGTRAP) == NOTIFY_STOP)
594 /* It's safe to allow irq's after DR6 has been saved */
595 preempt_conditional_sti(regs);
597 /* Mask out spurious debug traps due to lazy DR7 setting */
598 if (condition & (DR_TRAP0|DR_TRAP1|DR_TRAP2|DR_TRAP3)) {
599 if (!tsk->thread.debugreg7)
604 if (regs->flags & X86_VM_MASK)
608 /* Save debug status register where ptrace can see it */
609 tsk->thread.debugreg6 = condition;
612 * Single-stepping through TF: make sure we ignore any events in
613 * kernel space (but re-enable TF when returning to user mode).
615 if (condition & DR_STEP) {
616 if (!user_mode(regs))
617 goto clear_TF_reenable;
620 si_code = get_si_code(condition);
621 /* Ok, finally something we can handle */
622 send_sigtrap(tsk, regs, error_code, si_code);
625 * Disable additional traps. They'll be re-enabled when
626 * the signal is delivered.
630 preempt_conditional_cli(regs);
635 /* reenable preemption: handle_vm86_trap() might sleep */
637 handle_vm86_trap((struct kernel_vm86_regs *) regs, error_code, 1);
638 conditional_cli(regs);
643 set_tsk_thread_flag(tsk, TIF_SINGLESTEP);
644 regs->flags &= ~X86_EFLAGS_TF;
645 preempt_conditional_cli(regs);
650 static int kernel_math_error(struct pt_regs *regs, const char *str, int trapnr)
652 if (fixup_exception(regs))
655 notify_die(DIE_GPF, str, regs, 0, trapnr, SIGFPE);
656 /* Illegal floating point operation in the kernel */
657 current->thread.trap_no = trapnr;
664 * Note that we play around with the 'TS' bit in an attempt to get
665 * the correct behaviour even in the presence of the asynchronous
668 void math_error(void __user *ip)
670 struct task_struct *task;
672 unsigned short cwd, swd, err;
675 * Save the info for the exception handler and clear the error.
679 task->thread.trap_no = 16;
680 task->thread.error_code = 0;
681 info.si_signo = SIGFPE;
685 * (~cwd & swd) will mask out exceptions that are not set to unmasked
686 * status. 0x3f is the exception bits in these regs, 0x200 is the
687 * C1 reg you need in case of a stack fault, 0x040 is the stack
688 * fault bit. We should only be taking one exception at a time,
689 * so if this combination doesn't produce any single exception,
690 * then we have a bad program that isn't synchronizing its FPU usage
691 * and it will suffer the consequences since we won't be able to
692 * fully reproduce the context of the exception
694 cwd = get_fpu_cwd(task);
695 swd = get_fpu_swd(task);
699 if (err & 0x001) { /* Invalid op */
701 * swd & 0x240 == 0x040: Stack Underflow
702 * swd & 0x240 == 0x240: Stack Overflow
703 * User must clear the SF bit (0x40) if set
705 info.si_code = FPE_FLTINV;
706 } else if (err & 0x004) { /* Divide by Zero */
707 info.si_code = FPE_FLTDIV;
708 } else if (err & 0x008) { /* Overflow */
709 info.si_code = FPE_FLTOVF;
710 } else if (err & 0x012) { /* Denormal, Underflow */
711 info.si_code = FPE_FLTUND;
712 } else if (err & 0x020) { /* Precision */
713 info.si_code = FPE_FLTRES;
716 * If we're using IRQ 13, or supposedly even some trap 16
717 * implementations, it's possible we get a spurious trap...
719 return; /* Spurious trap, no error */
721 force_sig_info(SIGFPE, &info, task);
724 dotraplinkage void do_coprocessor_error(struct pt_regs *regs, long error_code)
726 conditional_sti(regs);
731 if (!user_mode(regs) &&
732 kernel_math_error(regs, "kernel x87 math error", 16))
736 math_error((void __user *)regs->ip);
739 static void simd_math_error(void __user *ip)
741 struct task_struct *task;
743 unsigned short mxcsr;
746 * Save the info for the exception handler and clear the error.
750 task->thread.trap_no = 19;
751 task->thread.error_code = 0;
752 info.si_signo = SIGFPE;
754 info.si_code = __SI_FAULT;
757 * The SIMD FPU exceptions are handled a little differently, as there
758 * is only a single status/control register. Thus, to determine which
759 * unmasked exception was caught we must mask the exception mask bits
760 * at 0x1f80, and then use these to mask the exception bits at 0x3f.
762 mxcsr = get_fpu_mxcsr(task);
763 switch (~((mxcsr & 0x1f80) >> 7) & (mxcsr & 0x3f)) {
767 case 0x001: /* Invalid Op */
768 info.si_code = FPE_FLTINV;
770 case 0x002: /* Denormalize */
771 case 0x010: /* Underflow */
772 info.si_code = FPE_FLTUND;
774 case 0x004: /* Zero Divide */
775 info.si_code = FPE_FLTDIV;
777 case 0x008: /* Overflow */
778 info.si_code = FPE_FLTOVF;
780 case 0x020: /* Precision */
781 info.si_code = FPE_FLTRES;
784 force_sig_info(SIGFPE, &info, task);
788 do_simd_coprocessor_error(struct pt_regs *regs, long error_code)
790 conditional_sti(regs);
794 /* Handle SIMD FPU exceptions on PIII+ processors. */
796 simd_math_error((void __user *)regs->ip);
800 * Handle strange cache flush from user space exception
801 * in all other cases. This is undocumented behaviour.
803 if (regs->flags & X86_VM_MASK) {
804 handle_vm86_fault((struct kernel_vm86_regs *)regs, error_code);
807 current->thread.trap_no = 19;
808 current->thread.error_code = error_code;
809 die_if_kernel("cache flush denied", regs, error_code);
810 force_sig(SIGSEGV, current);
812 if (!user_mode(regs) &&
813 kernel_math_error(regs, "kernel simd math error", 19))
815 simd_math_error((void __user *)regs->ip);
820 do_spurious_interrupt_bug(struct pt_regs *regs, long error_code)
822 conditional_sti(regs);
824 /* No need to warn about this any longer. */
825 printk(KERN_INFO "Ignoring P6 Local APIC Spurious Interrupt Bug...\n");
830 unsigned long patch_espfix_desc(unsigned long uesp, unsigned long kesp)
832 struct desc_struct *gdt = get_cpu_gdt_table(smp_processor_id());
833 unsigned long base = (kesp - uesp) & -THREAD_SIZE;
834 unsigned long new_kesp = kesp - base;
835 unsigned long lim_pages = (new_kesp | (THREAD_SIZE - 1)) >> PAGE_SHIFT;
836 __u64 desc = *(__u64 *)&gdt[GDT_ENTRY_ESPFIX_SS];
838 /* Set up base for espfix segment */
839 desc &= 0x00f0ff0000000000ULL;
840 desc |= ((((__u64)base) << 16) & 0x000000ffffff0000ULL) |
841 ((((__u64)base) << 32) & 0xff00000000000000ULL) |
842 ((((__u64)lim_pages) << 32) & 0x000f000000000000ULL) |
843 (lim_pages & 0xffff);
844 *(__u64 *)&gdt[GDT_ENTRY_ESPFIX_SS] = desc;
849 asmlinkage void __attribute__((weak)) smp_thermal_interrupt(void)
853 asmlinkage void __attribute__((weak)) mce_threshold_interrupt(void)
859 * 'math_state_restore()' saves the current math information in the
860 * old math state array, and gets the new ones from the current task
862 * Careful.. There are problems with IBM-designed IRQ13 behaviour.
863 * Don't touch unless you *really* know how it works.
865 * Must be called with kernel preemption disabled (in this case,
866 * local interrupts are disabled at the call-site in entry.S).
868 asmlinkage void math_state_restore(void)
870 struct thread_info *thread = current_thread_info();
871 struct task_struct *tsk = thread->task;
873 if (!tsk_used_math(tsk)) {
876 * does a slab alloc which can sleep
882 do_group_exit(SIGKILL);
888 clts(); /* Allow maths ops (or we recurse) */
893 * Paranoid restore. send a SIGSEGV if we fail to restore the state.
895 if (unlikely(restore_fpu_checking(tsk))) {
897 force_sig(SIGSEGV, tsk);
901 thread->status |= TS_USEDFPU; /* So we fnsave on switch_to() */
904 EXPORT_SYMBOL_GPL(math_state_restore);
906 #ifndef CONFIG_MATH_EMULATION
907 void math_emulate(struct math_emu_info *info)
910 "math-emulation not enabled and no coprocessor found.\n");
911 printk(KERN_EMERG "killing %s.\n", current->comm);
912 force_sig(SIGFPE, current);
915 #endif /* CONFIG_MATH_EMULATION */
917 dotraplinkage void __kprobes do_device_not_available(struct pt_regs regs)
920 if (read_cr0() & X86_CR0_EM) {
921 struct math_emu_info info = { };
923 conditional_sti(®s);
928 math_state_restore(); /* interrupts still off */
929 conditional_sti(®s);
932 math_state_restore();
937 dotraplinkage void do_iret_error(struct pt_regs *regs, long error_code)
942 info.si_signo = SIGILL;
944 info.si_code = ILL_BADSTK;
946 if (notify_die(DIE_TRAP, "iret exception",
947 regs, error_code, 32, SIGILL) == NOTIFY_STOP)
949 do_trap(32, SIGILL, "iret exception", regs, error_code, &info);
953 void __init trap_init(void)
958 void __iomem *p = early_ioremap(0x0FFFD9, 4);
960 if (readl(p) == 'E' + ('I'<<8) + ('S'<<16) + ('A'<<24))
965 set_intr_gate(0, ÷_error);
966 set_intr_gate_ist(1, &debug, DEBUG_STACK);
967 set_intr_gate_ist(2, &nmi, NMI_STACK);
968 /* int3 can be called from all */
969 set_system_intr_gate_ist(3, &int3, DEBUG_STACK);
970 /* int4 can be called from all */
971 set_system_intr_gate(4, &overflow);
972 set_intr_gate(5, &bounds);
973 set_intr_gate(6, &invalid_op);
974 set_intr_gate(7, &device_not_available);
976 set_task_gate(8, GDT_ENTRY_DOUBLEFAULT_TSS);
978 set_intr_gate_ist(8, &double_fault, DOUBLEFAULT_STACK);
980 set_intr_gate(9, &coprocessor_segment_overrun);
981 set_intr_gate(10, &invalid_TSS);
982 set_intr_gate(11, &segment_not_present);
983 set_intr_gate_ist(12, &stack_segment, STACKFAULT_STACK);
984 set_intr_gate(13, &general_protection);
985 set_intr_gate(14, &page_fault);
986 set_intr_gate(15, &spurious_interrupt_bug);
987 set_intr_gate(16, &coprocessor_error);
988 set_intr_gate(17, &alignment_check);
989 #ifdef CONFIG_X86_MCE
990 set_intr_gate_ist(18, &machine_check, MCE_STACK);
992 set_intr_gate(19, &simd_coprocessor_error);
994 #ifdef CONFIG_IA32_EMULATION
995 set_system_intr_gate(IA32_SYSCALL_VECTOR, ia32_syscall);
1000 printk(KERN_INFO "Enabling fast FPU save and restore... ");
1001 set_in_cr4(X86_CR4_OSFXSR);
1006 "Enabling unmasked SIMD FPU exception support... ");
1007 set_in_cr4(X86_CR4_OSXMMEXCPT);
1011 set_system_trap_gate(SYSCALL_VECTOR, &system_call);
1014 /* Reserve all the builtin and the syscall vector: */
1015 for (i = 0; i < FIRST_EXTERNAL_VECTOR; i++)
1016 set_bit(i, used_vectors);
1018 #ifdef CONFIG_X86_64
1019 set_bit(IA32_SYSCALL_VECTOR, used_vectors);
1021 set_bit(SYSCALL_VECTOR, used_vectors);
1024 * Should be a barrier for any external CPU state:
1028 #ifdef CONFIG_X86_32