Commit d7cff1c3 authored by Sheng Yang's avatar Sheng Yang Committed by Avi Kivity

KVM: Fix INTx for device assignment

Missing buckets and wrong parameter for free_irq()
Signed-off-by: default avatarSheng Yang <sheng@linux.intel.com>
Signed-off-by: default avatarAvi Kivity <avi@redhat.com>
parent 2aaf69dc
...@@ -296,8 +296,8 @@ static int assigned_device_update_intx(struct kvm *kvm, ...@@ -296,8 +296,8 @@ static int assigned_device_update_intx(struct kvm *kvm,
if (irqchip_in_kernel(kvm)) { if (irqchip_in_kernel(kvm)) {
if (!msi2intx && if (!msi2intx &&
adev->irq_requested_type & KVM_ASSIGNED_DEV_HOST_MSI) { (adev->irq_requested_type & KVM_ASSIGNED_DEV_HOST_MSI)) {
free_irq(adev->host_irq, (void *)kvm); free_irq(adev->host_irq, (void *)adev);
pci_disable_msi(adev->dev); pci_disable_msi(adev->dev);
} }
......
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