# HG changeset patch # User Tim Deegan # Date 1306154800 -3600 # Node ID d585903eb8bce83d7d365a4c94bbf0176283c3e9 # Parent 0f670f5146c858ffdc743176d4e22aef4bfe12da drivers/passthrough: fix error paths in pci_add_device*() When a device can't be allocated to dom0 by the IOMMU, don't leave dom0 in the "domain" field. It causes pci_remove_device() to crash trying to remove the dev from the domain's list of devices (and was probably the wrong thing to do anyway). Signed-off-by: Tim Deegan diff -r 0f670f5146c8 -r d585903eb8bc xen/drivers/passthrough/pci.c --- a/xen/drivers/passthrough/pci.c Sat May 21 07:55:46 2011 +0100 +++ b/xen/drivers/passthrough/pci.c Mon May 23 13:46:40 2011 +0100 @@ -158,7 +158,10 @@ int pci_add_device(u8 bus, u8 devfn) pdev->domain = dom0; ret = iommu_add_device(pdev); if ( ret ) + { + pdev->domain = NULL; goto out; + } list_add(&pdev->domain_list, &dom0->arch.pdev_list); pci_enable_acs(pdev); @@ -222,7 +225,10 @@ int pci_add_device_ext(u8 bus, u8 devfn, pdev->domain = dom0; ret = iommu_add_device(pdev); if ( ret ) + { + pdev->domain = NULL; goto out; + } list_add(&pdev->domain_list, &dom0->arch.pdev_list); pci_enable_acs(pdev);