提交 5a585980 编写于 作者: A Anthony Liguori

qMerge remote-tracking branch 'awilliam/tags/vfio-pci-for-qemu-20121210.0' into staging

vfio-pci: fix kvm disabled path

* awilliam/tags/vfio-pci-for-qemu-20121210.0:
  vfio-pci: Don't use kvm_irqchip_in_kernel
Signed-off-by: NAnthony Liguori <aliguori@us.ibm.com>
...@@ -275,7 +275,7 @@ static void vfio_enable_intx_kvm(VFIODevice *vdev) ...@@ -275,7 +275,7 @@ static void vfio_enable_intx_kvm(VFIODevice *vdev)
int ret, argsz; int ret, argsz;
int32_t *pfd; int32_t *pfd;
if (!kvm_irqchip_in_kernel() || if (!kvm_irqfds_enabled() ||
vdev->intx.route.mode != PCI_INTX_ENABLED || vdev->intx.route.mode != PCI_INTX_ENABLED ||
!kvm_check_extension(kvm_state, KVM_CAP_IRQFD_RESAMPLE)) { !kvm_check_extension(kvm_state, KVM_CAP_IRQFD_RESAMPLE)) {
return; return;
...@@ -438,7 +438,8 @@ static int vfio_enable_intx(VFIODevice *vdev) ...@@ -438,7 +438,8 @@ static int vfio_enable_intx(VFIODevice *vdev)
* Only conditional to avoid generating error messages on platforms * Only conditional to avoid generating error messages on platforms
* where we won't actually use the result anyway. * where we won't actually use the result anyway.
*/ */
if (kvm_check_extension(kvm_state, KVM_CAP_IRQFD_RESAMPLE)) { if (kvm_irqfds_enabled() &&
kvm_check_extension(kvm_state, KVM_CAP_IRQFD_RESAMPLE)) {
vdev->intx.route = pci_device_route_intx_to_irq(&vdev->pdev, vdev->intx.route = pci_device_route_intx_to_irq(&vdev->pdev,
vdev->intx.pin); vdev->intx.pin);
} }
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册