diff options
author | Michael S. Tsirkin <mst@redhat.com> | 2009-06-29 15:24:26 -0400 |
---|---|---|
committer | Avi Kivity <avi@redhat.com> | 2009-09-10 01:33:05 -0400 |
commit | 6c474694530f377507f9aca438c17206e051e6e7 (patch) | |
tree | 11590f6cca777716e7dfbc16c2d98fc7d64c11b0 /virt/kvm/ioapic.c | |
parent | 108b56690f35e083c5559116d6656f59a557a815 (diff) |
KVM: convert bus to slots_lock
Use slots_lock to protect device list on the bus. slots_lock is already
taken for read everywhere, so we only need to take it for write when
registering devices. This is in preparation to removing in_range and
kvm->lock around it.
Signed-off-by: Michael S. Tsirkin <mst@redhat.com>
Signed-off-by: Avi Kivity <avi@redhat.com>
Diffstat (limited to 'virt/kvm/ioapic.c')
-rw-r--r-- | virt/kvm/ioapic.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/virt/kvm/ioapic.c b/virt/kvm/ioapic.c index 0532fa68f5d1..0eca54e06326 100644 --- a/virt/kvm/ioapic.c +++ b/virt/kvm/ioapic.c | |||
@@ -343,7 +343,7 @@ int kvm_ioapic_init(struct kvm *kvm) | |||
343 | kvm_ioapic_reset(ioapic); | 343 | kvm_ioapic_reset(ioapic); |
344 | kvm_iodevice_init(&ioapic->dev, &ioapic_mmio_ops); | 344 | kvm_iodevice_init(&ioapic->dev, &ioapic_mmio_ops); |
345 | ioapic->kvm = kvm; | 345 | ioapic->kvm = kvm; |
346 | kvm_io_bus_register_dev(&kvm->mmio_bus, &ioapic->dev); | 346 | kvm_io_bus_register_dev(kvm, &kvm->mmio_bus, &ioapic->dev); |
347 | return 0; | 347 | return 0; |
348 | } | 348 | } |
349 | 349 | ||