No users remaining. Signed-off-by: Jan Kiszka <jan.kiszka@xxxxxxxxxxx> --- qemu-kvm.c | 16 ---------------- qemu-kvm.h | 8 -------- 2 files changed, 0 insertions(+), 24 deletions(-) diff --git a/qemu-kvm.c b/qemu-kvm.c index 3d2734c..733cd04 100644 --- a/qemu-kvm.c +++ b/qemu-kvm.c @@ -202,22 +202,6 @@ int kvm_update_routing_entry(struct kvm_irq_routing_entry *entry, #endif } -int kvm_del_irq_route(int gsi, int irqchip, int pin) -{ -#ifdef KVM_CAP_IRQ_ROUTING - struct kvm_irq_routing_entry e; - - e.gsi = gsi; - e.type = KVM_IRQ_ROUTING_IRQCHIP; - e.flags = 0; - e.u.irqchip.irqchip = irqchip; - e.u.irqchip.pin = pin; - return kvm_del_routing_entry(&e); -#else - return -ENOSYS; -#endif -} - int kvm_get_irq_route_gsi(void) { #ifdef KVM_CAP_IRQ_ROUTING diff --git a/qemu-kvm.h b/qemu-kvm.h index 1f2380b..ddf87a0 100644 --- a/qemu-kvm.h +++ b/qemu-kvm.h @@ -80,14 +80,6 @@ int kvm_device_intx_set_mask(KVMState *s, uint32_t dev_id, bool masked); int kvm_deassign_pci_device(KVMState *s, struct kvm_assigned_pci_dev *assigned_dev); -/*! - * \brief Removes an irq route from the temporary irq routing table - * - * Adds an irq route to the temporary irq routing table. Nothing is - * committed to the running VM. - */ -int kvm_del_irq_route(int gsi, int irqchip, int pin); - struct kvm_irq_routing_entry; void kvm_add_routing_entry(KVMState *s, struct kvm_irq_routing_entry *entry); -- 1.7.3.4 -- To unsubscribe from this list: send the line "unsubscribe kvm" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html