x86-32, mm: Add an initial page table for core bootstrapping
[deliverable/linux.git] / arch / x86 / kernel / acpi / sleep.c
index 33cec152070df4f9c5dc30d47a6274524d097225..b35e1ab8ba03d2b75cfcf81ee63d8a9448e0b4a9 100644 (file)
 #include <asm/segment.h>
 #include <asm/desc.h>
 
+#ifdef CONFIG_X86_32
+#include <asm/pgtable.h>
+#include <asm/pgtable_32.h>
+#endif
+
 #include "realmode/wakeup.h"
 #include "sleep.h"
 
@@ -90,7 +95,7 @@ int acpi_save_state_mem(void)
 
 #ifndef CONFIG_64BIT
        header->pmode_entry = (u32)&wakeup_pmode_return;
-       header->pmode_cr3 = (u32)(swsusp_pg_dir - __PAGE_OFFSET);
+       header->pmode_cr3 = (u32)__pa(&initial_page_table);
        saved_magic = 0x12345678;
 #else /* CONFIG_64BIT */
        header->trampoline_segment = setup_trampoline() >> 4;
This page took 0.025798 seconds and 5 git commands to generate.