x86/power/64: Do not refer to __PAGE_OFFSET from assembly code
authorRafael J. Wysocki <rafael.j.wysocki@intel.com>
Tue, 2 Aug 2016 23:19:26 +0000 (01:19 +0200)
committerRafael J. Wysocki <rafael.j.wysocki@intel.com>
Tue, 2 Aug 2016 23:35:38 +0000 (01:35 +0200)
commitc226fab474291e3c6ac5fa30a2b0778acc311e61
tree99ceb9f917865e4aa4559cb503bec8191cf43ac5
parent4ce827b4cc58bec7952591b96cce2b28553e4d5b
x86/power/64: Do not refer to __PAGE_OFFSET from assembly code

When CONFIG_RANDOMIZE_MEMORY is set on x86-64, __PAGE_OFFSET becomes
a variable and using it as a symbol in the image memory restoration
assembly code under core_restore_code is not correct any more.

To avoid that problem, modify set_up_temporary_mappings() to compute
the physical address of the temporary page tables and store it in
temp_level4_pgt, so that the value of that variable is ready to be
written into CR3.  Then, the assembly code doesn't have to worry
about converting that value into a physical address and things work
regardless of whether or not CONFIG_RANDOMIZE_MEMORY is set.

Reported-and-tested-by: Thomas Garnier <thgarnie@google.com>
Signed-off-by: Rafael J. Wysocki <rafael.j.wysocki@intel.com>
arch/x86/power/hibernate_64.c
arch/x86/power/hibernate_asm_64.S