]> git.kernelconcepts.de Git - karo-tx-linux.git/commitdiff
iommu/vt-d: use dmar_insert_dev_info() from dma_add_dev_info()
authorDavid Woodhouse <David.Woodhouse@intel.com>
Sun, 9 Mar 2014 20:19:22 +0000 (13:19 -0700)
committerDavid Woodhouse <David.Woodhouse@intel.com>
Mon, 24 Mar 2014 14:06:41 +0000 (14:06 +0000)
Signed-off-by: David Woodhouse <David.Woodhouse@intel.com>
drivers/iommu/intel-iommu.c

index c1c564233768204e8f5982dd1675fde96d396b9b..7d3d33f5c8dcc485d652c8d1a416f2f1be599880 100644 (file)
@@ -2452,29 +2452,21 @@ static int domain_add_dev_info(struct dmar_domain *domain,
                               struct pci_dev *pdev,
                               int translation)
 {
+       struct dmar_domain *ndomain;
        struct device_domain_info *info;
        unsigned long flags;
        int ret;
 
-       info = alloc_devinfo_mem();
-       if (!info)
-               return -ENOMEM;
-
-       info->segment = pci_domain_nr(pdev->bus);
-       info->bus = pdev->bus->number;
-       info->devfn = pdev->devfn;
-       info->dev = &pdev->dev;
-       info->domain = domain;
-
-       spin_lock_irqsave(&device_domain_lock, flags);
-       list_add(&info->link, &domain->devices);
-       list_add(&info->global, &device_domain_list);
-       pdev->dev.archdata.iommu = info;
-       spin_unlock_irqrestore(&device_domain_lock, flags);
+       ndomain = dmar_insert_dev_info(pci_domain_nr(pdev->bus),
+                                      pdev->bus->number, pdev->devfn,
+                                      &pdev->dev, domain);
+       if (ndomain != domain)
+               return -EBUSY;
 
        ret = domain_context_mapping(domain, pdev, translation);
        if (ret) {
                spin_lock_irqsave(&device_domain_lock, flags);
+               info = pdev->dev.archdata.iommu;
                unlink_domain_info(info);
                spin_unlock_irqrestore(&device_domain_lock, flags);
                free_devinfo_mem(info);