diff options
Diffstat (limited to 'drivers/xen/xen-pciback/xenbus.c')
-rw-r--r-- | drivers/xen/xen-pciback/xenbus.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/drivers/xen/xen-pciback/xenbus.c b/drivers/xen/xen-pciback/xenbus.c index 474d52ec3374..075525945e36 100644 --- a/drivers/xen/xen-pciback/xenbus.c +++ b/drivers/xen/xen-pciback/xenbus.c | |||
@@ -241,6 +241,7 @@ static int xen_pcibk_export_device(struct xen_pcibk_device *pdev, | |||
241 | goto out; | 241 | goto out; |
242 | 242 | ||
243 | dev_dbg(&dev->dev, "registering for %d\n", pdev->xdev->otherend_id); | 243 | dev_dbg(&dev->dev, "registering for %d\n", pdev->xdev->otherend_id); |
244 | dev->dev_flags |= PCI_DEV_FLAGS_ASSIGNED; | ||
244 | if (xen_register_device_domain_owner(dev, | 245 | if (xen_register_device_domain_owner(dev, |
245 | pdev->xdev->otherend_id) != 0) { | 246 | pdev->xdev->otherend_id) != 0) { |
246 | dev_err(&dev->dev, "device has been assigned to another " \ | 247 | dev_err(&dev->dev, "device has been assigned to another " \ |
@@ -280,6 +281,7 @@ static int xen_pcibk_remove_device(struct xen_pcibk_device *pdev, | |||
280 | } | 281 | } |
281 | 282 | ||
282 | dev_dbg(&dev->dev, "unregistering for %d\n", pdev->xdev->otherend_id); | 283 | dev_dbg(&dev->dev, "unregistering for %d\n", pdev->xdev->otherend_id); |
284 | dev->dev_flags &= ~PCI_DEV_FLAGS_ASSIGNED; | ||
283 | xen_unregister_device_domain_owner(dev); | 285 | xen_unregister_device_domain_owner(dev); |
284 | 286 | ||
285 | xen_pcibk_release_pci_dev(pdev, dev); | 287 | xen_pcibk_release_pci_dev(pdev, dev); |