diff options
author | Roland McGrath <roland@redhat.com> | 2008-01-30 07:33:06 -0500 |
---|---|---|
committer | Ingo Molnar <mingo@elte.hu> | 2008-01-30 07:33:06 -0500 |
commit | 8866cd9dc9d0bbadcf361a14e0cdfecb66473087 (patch) | |
tree | d6780e43633c56a017618e615c92bb7854876686 /arch/x86/kernel/head64.c | |
parent | d504e39efd4e64a1a6e01dc85fd8a33fdb196dce (diff) |
x86: early_idt_handler improvements, 64-bit
It's not too pretty, but I found this made the "PANIC: early exception"
messages become much more reliably useful: 1. print the vector number,
2. print the %cs value, 3. handle error-code-pushing vs non-pushing vectors.
Signed-off-by: Roland McGrath <roland@redhat.com>
Signed-off-by: Ingo Molnar <mingo@elte.hu>
Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
Diffstat (limited to 'arch/x86/kernel/head64.c')
-rw-r--r-- | arch/x86/kernel/head64.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/x86/kernel/head64.c b/arch/x86/kernel/head64.c index 4a1c1356c41a..85c1e6bf8022 100644 --- a/arch/x86/kernel/head64.c +++ b/arch/x86/kernel/head64.c | |||
@@ -59,7 +59,7 @@ void __init x86_64_start_kernel(char * real_mode_data) | |||
59 | zap_identity_mappings(); | 59 | zap_identity_mappings(); |
60 | 60 | ||
61 | for (i = 0; i < IDT_ENTRIES; i++) | 61 | for (i = 0; i < IDT_ENTRIES; i++) |
62 | set_intr_gate(i, early_idt_handler); | 62 | set_intr_gate(i, &early_idt_handlers[i]); |
63 | load_idt((const struct desc_ptr *)&idt_descr); | 63 | load_idt((const struct desc_ptr *)&idt_descr); |
64 | 64 | ||
65 | early_printk("Kernel alive\n"); | 65 | early_printk("Kernel alive\n"); |