dect
/
linux-2.6
Archived
13
0
Fork 0

KVM: use vcpu_id instead of bsp_vcpu pointer in kvm_vcpu_is_bsp

Change kvm_vcpu_is_bsp to use vcpu_id instead of bsp_vcpu pointer, which
is only initialized at the end of kvm_vm_ioctl_create_vcpu.

Signed-off-by: Marcelo Tosatti <mtosatti@redhat.com>
Signed-off-by: Avi Kivity <avi@redhat.com>
This commit is contained in:
Marcelo Tosatti 2009-06-17 10:07:59 -03:00 committed by Avi Kivity
parent 2023a29cbe
commit d3efc8efdb
1 changed files with 1 additions and 1 deletions

View File

@ -538,7 +538,7 @@ static inline void kvm_irqfd_release(struct kvm *kvm) {}
#ifdef CONFIG_KVM_APIC_ARCHITECTURE
static inline bool kvm_vcpu_is_bsp(struct kvm_vcpu *vcpu)
{
return vcpu->kvm->bsp_vcpu == vcpu;
return vcpu->kvm->bsp_vcpu_id == vcpu->vcpu_id;
}
#endif
#endif