diff options
author | Gleb Natapov <gleb@redhat.com> | 2009-08-24 10:54:23 +0200 |
---|---|---|
committer | Avi Kivity <avi@redhat.com> | 2009-12-03 08:32:07 +0100 |
commit | 136bdfeee7b5bc986fc94af3a40d7d13ea37bb95 (patch) | |
tree | 8f054eab63663dd0a55084d1a397079c73774664 /virt/kvm/kvm_main.c | |
parent | KVM: Move irq routing data structure to rcu locking (diff) | |
download | linux-136bdfeee7b5bc986fc94af3a40d7d13ea37bb95.tar.xz linux-136bdfeee7b5bc986fc94af3a40d7d13ea37bb95.zip |
KVM: Move irq ack notifier list to arch independent code
Mask irq notifier list is already there.
Signed-off-by: Gleb Natapov <gleb@redhat.com>
Signed-off-by: Avi Kivity <avi@redhat.com>
Diffstat (limited to '')
-rw-r--r-- | virt/kvm/kvm_main.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/virt/kvm/kvm_main.c b/virt/kvm/kvm_main.c index 3bee94892774..6eca153e1a02 100644 --- a/virt/kvm/kvm_main.c +++ b/virt/kvm/kvm_main.c @@ -958,6 +958,7 @@ static struct kvm *kvm_create_vm(void) goto out; #ifdef CONFIG_HAVE_KVM_IRQCHIP INIT_HLIST_HEAD(&kvm->mask_notifier_list); + INIT_HLIST_HEAD(&kvm->irq_ack_notifier_list); #endif #ifdef KVM_COALESCED_MMIO_PAGE_OFFSET |