This commit was manufactured by cvs2svn to create tag
[linux-2.6.git] / arch / i386 / kernel / setup.c
index 7ccdf02..6910009 100644 (file)
@@ -48,7 +48,6 @@
 #include <asm/io_apic.h>
 #include <asm/ist.h>
 #include <asm/io.h>
-#include <asm/crash_dump.h>
 #include "setup_arch_pre.h"
 #include <bios_ebda.h>
 
@@ -58,7 +57,6 @@
 unsigned long init_pg_tables_end __initdata = ~0UL;
 
 int disable_pse __initdata = 0;
-unsigned int dump_enabled;
 
 /*
  * Machine setup..
@@ -712,11 +710,6 @@ static void __init parse_cmdline_early (char ** cmdline_p)
                        if (to != command_line)
                                to--;
                        if (!memcmp(from+7, "exactmap", 8)) {
-                               /* If we are doing a crash dump, we
-                                * still need to know the real mem
-                                * size.
-                                */
-                               set_saved_max_pfn();
                                from += 8+7;
                                e820.nr_map = 0;
                                userdef = 1;
@@ -823,9 +816,6 @@ static void __init parse_cmdline_early (char ** cmdline_p)
                 */
                if (c == ' ' && !memcmp(from, "highmem=", 8))
                        highmem_pages = memparse(from+8, &from) >> PAGE_SHIFT;
-
-               if (!memcmp(from, "dump", 4))
-                       dump_enabled = 1;
        
                if (c == ' ' && !memcmp(from, "crashdump=", 10))
                        crashdump_addr = memparse(from+10, &from); 
@@ -1125,9 +1115,6 @@ static unsigned long __init setup_memory(void)
                }
        }
 #endif
-
-       crash_reserve_bootmem();
-
        return max_low_pfn;
 }
 #else