From: Gonglei Date: Thu, 3 Apr 2014 05:18:23 +0000 (+0800) Subject: pci-assign: Fix a bug when map MSI-X table memory failed X-Git-Url: http://git.maquefel.me/?a=commitdiff_plain;h=ee11f7a8227bcd9cb8d8141fa8f6a0352f7c0c68;p=qemu.git pci-assign: Fix a bug when map MSI-X table memory failed When mmapping memory for the MSI-X table failsthe dev->msix_table is not set to NULL and assigned_dev_unregister_msix_mmio() will cause a segfault when trying to munmap it. Signed-off-by: Gonglei Arei Reviewed-by: Michael S. Tsirkin Signed-off-by: Paolo Bonzini Signed-off-by: Gonglei --- diff --git a/hw/i386/kvm/pci-assign.c b/hw/i386/kvm/pci-assign.c index e55421adcd..0572821f21 100644 --- a/hw/i386/kvm/pci-assign.c +++ b/hw/i386/kvm/pci-assign.c @@ -1664,6 +1664,7 @@ static void assigned_dev_register_msix_mmio(AssignedDevice *dev, Error **errp) MAP_ANONYMOUS|MAP_PRIVATE, 0, 0); if (dev->msix_table == MAP_FAILED) { error_setg_errno(errp, errno, "failed to allocate msix_table"); + dev->msix_table = NULL; return; }