From c8935705f1bf1ae9f8e4db3365f217d23e351237 Mon Sep 17 00:00:00 2001 From: Farhan Ali Date: Thu, 8 Mar 2018 11:07:04 -0500 Subject: [PATCH] qemu: Use correct bus type for input devices commit 7210cef452db 'qemu: build command line for virtio input devices' introduced an error, by checking if input bus type is VIR_DOMAIN_DISK_BUS_VIRTIO. Fix it by using the correct bus type for input devices. Signed-off-by: Farhan Ali Reviewed-by: Boris Fiuczynski Reviewed-by: John Ferlan --- src/qemu/qemu_domain_address.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/qemu/qemu_domain_address.c b/src/qemu/qemu_domain_address.c index c5785c5631..25517064d7 100644 --- a/src/qemu/qemu_domain_address.c +++ b/src/qemu/qemu_domain_address.c @@ -309,7 +309,7 @@ qemuDomainPrimeVirtioDeviceAddresses(virDomainDefPtr def, } for (i = 0; i < def->ninputs; i++) { - if (def->inputs[i]->bus == VIR_DOMAIN_DISK_BUS_VIRTIO && + if (def->inputs[i]->bus == VIR_DOMAIN_INPUT_BUS_VIRTIO && def->inputs[i]->info.type == VIR_DOMAIN_DEVICE_ADDRESS_TYPE_NONE) def->inputs[i]->info.type = type; } -- 2.47.2