]> git.karo-electronics.de Git - karo-tx-linux.git/commitdiff
KVM guest: fix bogus wallclock physical address calculation
authorGlauber Costa <glommer@redhat.com>
Mon, 31 Aug 2009 07:04:31 +0000 (03:04 -0400)
committerAvi Kivity <avi@redhat.com>
Thu, 10 Sep 2009 07:46:58 +0000 (10:46 +0300)
The use of __pa() to calculate the address of a C-visible symbol
is wrong, and can lead to unpredictable results. See arch/x86/include/asm/page.h
for details.

It should be replaced with __pa_symbol(), that does the correct math here,
by taking relocations into account.  This ensures the correct wallclock data
structure physical address is passed to the hypervisor.

Cc: stable@kernel.org
Signed-off-by: Glauber Costa <glommer@redhat.com>
Signed-off-by: Avi Kivity <avi@redhat.com>
arch/x86/kernel/kvmclock.c

index 223af43f15260a33b0b479ad1d47df8bf74e8500..e5efcdcca31b65d90fab3aaf7c16ac46287ceb3f 100644 (file)
@@ -50,8 +50,8 @@ static unsigned long kvm_get_wallclock(void)
        struct timespec ts;
        int low, high;
 
-       low = (int)__pa(&wall_clock);
-       high = ((u64)__pa(&wall_clock) >> 32);
+       low = (int)__pa_symbol(&wall_clock);
+       high = ((u64)__pa_symbol(&wall_clock) >> 32);
        native_write_msr(MSR_KVM_WALL_CLOCK, low, high);
 
        vcpu_time = &get_cpu_var(hv_clock);