diff options
author | Gleb Natapov <gleb@redhat.com> | 2011-12-15 05:38:40 -0500 |
---|---|---|
committer | Avi Kivity <avi@redhat.com> | 2011-12-27 04:22:32 -0500 |
commit | d546cb406ea0d83e2d39ec14221957a24f88a622 (patch) | |
tree | 32ed0f1cc2e56a8fcd2a24cf0db97d1326b4c9bd /virt | |
parent | a647795efbedeedf8a1dc6deded26defa23562bd (diff) |
KVM: drop bsp_vcpu pointer from kvm struct
Drop bsp_vcpu pointer from kvm struct since its only use is incorrect
anyway.
Signed-off-by: Gleb Natapov <gleb@redhat.com>
Signed-off-by: Marcelo Tosatti <mtosatti@redhat.com>
Diffstat (limited to 'virt')
-rw-r--r-- | virt/kvm/ioapic.c | 2 | ||||
-rw-r--r-- | virt/kvm/kvm_main.c | 4 |
2 files changed, 1 insertions, 5 deletions
diff --git a/virt/kvm/ioapic.c b/virt/kvm/ioapic.c index 71e2253edee7..dcaf272c26c0 100644 --- a/virt/kvm/ioapic.c +++ b/virt/kvm/ioapic.c | |||
@@ -185,7 +185,7 @@ static int ioapic_deliver(struct kvm_ioapic *ioapic, int irq) | |||
185 | irqe.dest_mode = 0; /* Physical mode. */ | 185 | irqe.dest_mode = 0; /* Physical mode. */ |
186 | /* need to read apic_id from apic regiest since | 186 | /* need to read apic_id from apic regiest since |
187 | * it can be rewritten */ | 187 | * it can be rewritten */ |
188 | irqe.dest_id = ioapic->kvm->bsp_vcpu->vcpu_id; | 188 | irqe.dest_id = ioapic->kvm->bsp_vcpu_id; |
189 | } | 189 | } |
190 | #endif | 190 | #endif |
191 | return kvm_irq_delivery_to_apic(ioapic->kvm, NULL, &irqe); | 191 | return kvm_irq_delivery_to_apic(ioapic->kvm, NULL, &irqe); |
diff --git a/virt/kvm/kvm_main.c b/virt/kvm/kvm_main.c index d8bac0751666..0835c4b90d2f 100644 --- a/virt/kvm/kvm_main.c +++ b/virt/kvm/kvm_main.c | |||
@@ -1743,10 +1743,6 @@ static int kvm_vm_ioctl_create_vcpu(struct kvm *kvm, u32 id) | |||
1743 | smp_wmb(); | 1743 | smp_wmb(); |
1744 | atomic_inc(&kvm->online_vcpus); | 1744 | atomic_inc(&kvm->online_vcpus); |
1745 | 1745 | ||
1746 | #ifdef CONFIG_KVM_APIC_ARCHITECTURE | ||
1747 | if (kvm->bsp_vcpu_id == id) | ||
1748 | kvm->bsp_vcpu = vcpu; | ||
1749 | #endif | ||
1750 | mutex_unlock(&kvm->lock); | 1746 | mutex_unlock(&kvm->lock); |
1751 | return r; | 1747 | return r; |
1752 | 1748 | ||