Re: [Qemu-devel] [PATCH] KVM: Fix compiles when KVM_CAP_IRQ_ROUTING is not defined

2012-06-05 Thread Ben Collins
Please just adopt the remaining portion. Perhaps just merge it with your patch for one complete fix. Thanks On Jun 5, 2012, at 2:15 PM, Jan Kiszka wrote: > On 2012-06-05 20:08, Ben Collins wrote: >> Things like kroute and direct_msi were not protected by ifdef's for when >> this feature is not

Re: [Qemu-devel] [PATCH] KVM: Fix compiles when KVM_CAP_IRQ_ROUTING is not defined

2012-06-05 Thread Jan Kiszka
On 2012-06-05 20:08, Ben Collins wrote: > Things like kroute and direct_msi were not protected by ifdef's for when > this feature is not enabled. Also, virtio-pci was referencing > kvm_irqchip_release_virq() which was not defined without KVM_CAP_IRQ_ROUTING > but when KVM was enabled. There is [1]

[Qemu-devel] [PATCH] KVM: Fix compiles when KVM_CAP_IRQ_ROUTING is not defined

2012-06-05 Thread Ben Collins
Things like kroute and direct_msi were not protected by ifdef's for when this feature is not enabled. Also, virtio-pci was referencing kvm_irqchip_release_virq() which was not defined without KVM_CAP_IRQ_ROUTING but when KVM was enabled. Signed-off-by: Ben Collins Cc: Avi Kivity Cc: Marcelo Tosa