* [Qemu-devel] [PULL 0/1] vfio-pci: fix kvm disabled path
@ 2012-12-10 19:26 Alex Williamson
2012-12-10 19:26 ` [Qemu-devel] [PATCH 1/1] vfio-pci: Don't use kvm_irqchip_in_kernel Alex Williamson
0 siblings, 1 reply; 2+ messages in thread
From: Alex Williamson @ 2012-12-10 19:26 UTC (permalink / raw)
To: aliguori; +Cc: qemu-devel, qemu-stable
The following changes since commit 1c97e303d4ea80a2691334b0febe87a50660f99d:
Merge remote-tracking branch 'afaerber/qom-cpu' into staging (2012-12-10 08:35:15 -0600)
are available in the git repository at:
git://github.com/awilliam/qemu-vfio.git tags/vfio-pci-for-qemu-20121210.0
for you to fetch changes up to d281084d3e51f03999d12a506491a0c6f31b40e8:
vfio-pci: Don't use kvm_irqchip_in_kernel (2012-12-10 11:30:03 -0700)
----------------------------------------------------------------
vfio-pci: fix kvm disabled path
----------------------------------------------------------------
Alex Williamson (1):
vfio-pci: Don't use kvm_irqchip_in_kernel
hw/vfio_pci.c | 5 +++--
1 file changed, 3 insertions(+), 2 deletions(-)
^ permalink raw reply [flat|nested] 2+ messages in thread
* [Qemu-devel] [PATCH 1/1] vfio-pci: Don't use kvm_irqchip_in_kernel
2012-12-10 19:26 [Qemu-devel] [PULL 0/1] vfio-pci: fix kvm disabled path Alex Williamson
@ 2012-12-10 19:26 ` Alex Williamson
0 siblings, 0 replies; 2+ messages in thread
From: Alex Williamson @ 2012-12-10 19:26 UTC (permalink / raw)
To: aliguori; +Cc: qemu-devel, qemu-stable
kvm_irqchip_in_kernel() has an architecture specific meaning, so
we shouldn't be using it to determine whether to enabled KVM INTx
bypass. kvm_irqfds_enabled() seems most appropriate. Also use this
to protect our other call to kvm_check_extension() as that explodes
when KVM isn't enabled.
Signed-off-by: Alex Williamson <alex.williamson@redhat.com>
Cc: qemu-stable@nongnu.org
---
hw/vfio_pci.c | 5 +++--
1 file changed, 3 insertions(+), 2 deletions(-)
diff --git a/hw/vfio_pci.c b/hw/vfio_pci.c
index 7c27834..fbfe670 100644
--- a/hw/vfio_pci.c
+++ b/hw/vfio_pci.c
@@ -275,7 +275,7 @@ static void vfio_enable_intx_kvm(VFIODevice *vdev)
int ret, argsz;
int32_t *pfd;
- if (!kvm_irqchip_in_kernel() ||
+ if (!kvm_irqfds_enabled() ||
vdev->intx.route.mode != PCI_INTX_ENABLED ||
!kvm_check_extension(kvm_state, KVM_CAP_IRQFD_RESAMPLE)) {
return;
@@ -438,7 +438,8 @@ static int vfio_enable_intx(VFIODevice *vdev)
* Only conditional to avoid generating error messages on platforms
* 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.pin);
}
^ permalink raw reply related [flat|nested] 2+ messages in thread
end of thread, other threads:[~2012-12-10 19:26 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2012-12-10 19:26 [Qemu-devel] [PULL 0/1] vfio-pci: fix kvm disabled path Alex Williamson
2012-12-10 19:26 ` [Qemu-devel] [PATCH 1/1] vfio-pci: Don't use kvm_irqchip_in_kernel Alex Williamson
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).