Commit c0a1666b authored by Paolo Bonzini's avatar Paolo Bonzini

KVM: VMX: use cmpxchg64

This fixes a compilation failure on 32-bit systems.
Signed-off-by: default avatarPaolo Bonzini <pbonzini@redhat.com>
parent 31afb2ea
...@@ -2238,8 +2238,8 @@ static void vmx_vcpu_pi_load(struct kvm_vcpu *vcpu, int cpu) ...@@ -2238,8 +2238,8 @@ static void vmx_vcpu_pi_load(struct kvm_vcpu *vcpu, int cpu)
new.ndst = (dest << 8) & 0xFF00; new.ndst = (dest << 8) & 0xFF00;
new.sn = 0; new.sn = 0;
} while (cmpxchg(&pi_desc->control, old.control, } while (cmpxchg64(&pi_desc->control, old.control,
new.control) != old.control); new.control) != old.control);
} }
static void decache_tsc_multiplier(struct vcpu_vmx *vmx) static void decache_tsc_multiplier(struct vcpu_vmx *vmx)
...@@ -11730,8 +11730,8 @@ static void __pi_post_block(struct kvm_vcpu *vcpu) ...@@ -11730,8 +11730,8 @@ static void __pi_post_block(struct kvm_vcpu *vcpu)
/* set 'NV' to 'notification vector' */ /* set 'NV' to 'notification vector' */
new.nv = POSTED_INTR_VECTOR; new.nv = POSTED_INTR_VECTOR;
} while (cmpxchg(&pi_desc->control, old.control, } while (cmpxchg64(&pi_desc->control, old.control,
new.control) != old.control); new.control) != old.control);
if (!WARN_ON_ONCE(vcpu->pre_pcpu == -1)) { if (!WARN_ON_ONCE(vcpu->pre_pcpu == -1)) {
spin_lock(&per_cpu(blocked_vcpu_on_cpu_lock, vcpu->pre_pcpu)); spin_lock(&per_cpu(blocked_vcpu_on_cpu_lock, vcpu->pre_pcpu));
...@@ -11800,8 +11800,8 @@ static int pi_pre_block(struct kvm_vcpu *vcpu) ...@@ -11800,8 +11800,8 @@ static int pi_pre_block(struct kvm_vcpu *vcpu)
/* set 'NV' to 'wakeup vector' */ /* set 'NV' to 'wakeup vector' */
new.nv = POSTED_INTR_WAKEUP_VECTOR; new.nv = POSTED_INTR_WAKEUP_VECTOR;
} while (cmpxchg(&pi_desc->control, old.control, } while (cmpxchg64(&pi_desc->control, old.control,
new.control) != old.control); new.control) != old.control);
/* We should not block the vCPU if an interrupt is posted for it. */ /* We should not block the vCPU if an interrupt is posted for it. */
if (pi_test_on(pi_desc) == 1) if (pi_test_on(pi_desc) == 1)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment