perf_events, x86: Implement intel core solo/duo support
[safe/jmp/linux-2.6] / arch / x86 / kernel / head64.c
index 462d0be..b5a9896 100644 (file)
 #include <asm/sections.h>
 #include <asm/kdebug.h>
 #include <asm/e820.h>
-#include <asm/bios_ebda.h>
 #include <asm/trampoline.h>
-
-/* boot cpu pda, referenced by head_64.S to initialize %gs for boot CPU */
-struct x8664_pda _boot_cpu_pda;
-
-void __init x86_64_init_pda(void)
-{
-       cpu_pda(0) = &_boot_cpu_pda;
-       cpu_pda(0)->data_offset =
-               (unsigned long)(__per_cpu_load - __per_cpu_start);
-       pda_init(0);
-}
+#include <asm/bios_ebda.h>
 
 static void __init zap_identity_mappings(void)
 {
@@ -102,8 +91,6 @@ void __init x86_64_start_kernel(char * real_mode_data)
        if (console_loglevel == 10)
                early_printk("Kernel alive\n");
 
-       x86_64_init_pda();
-
        x86_64_start_reservations(real_mode_data);
 }
 
@@ -111,9 +98,7 @@ void __init x86_64_start_reservations(char *real_mode_data)
 {
        copy_bootdata(__va(real_mode_data));
 
-       reserve_trampoline_memory();
-
-       reserve_early(__pa_symbol(&_text), __pa_symbol(&_end), "TEXT DATA BSS");
+       reserve_early(__pa_symbol(&_text), __pa_symbol(&__bss_stop), "TEXT DATA BSS");
 
 #ifdef CONFIG_BLK_DEV_INITRD
        /* Reserve INITRD */