Commit 3176bc3e authored by Avi Kivity's avatar Avi Kivity

KVM: Rename KVM_TLB_FLUSH to KVM_REQ_TLB_FLUSH

We now have a new namespace, KVM_REQ_*, for bits in vcpu->requests.
Signed-off-by: default avatarAvi Kivity <avi@qumranet.com>
parent ab6ef34b
...@@ -67,7 +67,7 @@ ...@@ -67,7 +67,7 @@
/* /*
* vcpu->requests bit members * vcpu->requests bit members
*/ */
#define KVM_TLB_FLUSH 0 #define KVM_REQ_TLB_FLUSH 0
/* /*
* Address types: * Address types:
......
...@@ -212,7 +212,7 @@ void kvm_flush_remote_tlbs(struct kvm *kvm) ...@@ -212,7 +212,7 @@ void kvm_flush_remote_tlbs(struct kvm *kvm)
vcpu = kvm->vcpus[i]; vcpu = kvm->vcpus[i];
if (!vcpu) if (!vcpu)
continue; continue;
if (test_and_set_bit(KVM_TLB_FLUSH, &vcpu->requests)) if (test_and_set_bit(KVM_REQ_TLB_FLUSH, &vcpu->requests))
continue; continue;
cpu = vcpu->cpu; cpu = vcpu->cpu;
if (cpu != -1 && cpu != raw_smp_processor_id()) if (cpu != -1 && cpu != raw_smp_processor_id())
...@@ -2171,7 +2171,7 @@ static int __vcpu_run(struct kvm_vcpu *vcpu, struct kvm_run *kvm_run) ...@@ -2171,7 +2171,7 @@ static int __vcpu_run(struct kvm_vcpu *vcpu, struct kvm_run *kvm_run)
kvm_guest_enter(); kvm_guest_enter();
if (vcpu->requests) if (vcpu->requests)
if (test_and_clear_bit(KVM_TLB_FLUSH, &vcpu->requests)) if (test_and_clear_bit(KVM_REQ_TLB_FLUSH, &vcpu->requests))
kvm_x86_ops->tlb_flush(vcpu); kvm_x86_ops->tlb_flush(vcpu);
kvm_x86_ops->run(vcpu, kvm_run); kvm_x86_ops->run(vcpu, kvm_run);
......
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