提交 420aef8a 编写于 作者: J Joerg Roedel

x86/amd-iommu: Use check_device for amd_iommu_dma_supported

The check_device logic needs to include the dma_supported
checks to be really sure. Merge the dma_supported logic into
check_device and use it to implement dma_supported.
Signed-off-by: NJoerg Roedel <joerg.roedel@amd.com>
上级 318afd41
...@@ -1375,9 +1375,27 @@ static struct notifier_block device_nb = { ...@@ -1375,9 +1375,27 @@ static struct notifier_block device_nb = {
*/ */
static bool check_device(struct device *dev) static bool check_device(struct device *dev)
{ {
u16 bdf;
struct pci_dev *pcidev;
if (!dev || !dev->dma_mask) if (!dev || !dev->dma_mask)
return false; return false;
/* No device or no PCI device */
if (!dev || dev->bus != &pci_bus_type)
return false;
pcidev = to_pci_dev(dev);
bdf = calc_devid(pcidev->bus->number, pcidev->devfn);
/* Out of our scope? */
if (bdf > amd_iommu_last_bdf)
return false;
if (amd_iommu_rlookup_table[bdf] == NULL)
return false;
return true; return true;
} }
...@@ -2065,22 +2083,7 @@ static void free_coherent(struct device *dev, size_t size, ...@@ -2065,22 +2083,7 @@ static void free_coherent(struct device *dev, size_t size,
*/ */
static int amd_iommu_dma_supported(struct device *dev, u64 mask) static int amd_iommu_dma_supported(struct device *dev, u64 mask)
{ {
u16 bdf; return check_device(dev);
struct pci_dev *pcidev;
/* No device or no PCI device */
if (!dev || dev->bus != &pci_bus_type)
return 0;
pcidev = to_pci_dev(dev);
bdf = calc_devid(pcidev->bus->number, pcidev->devfn);
/* Out of our scope? */
if (bdf > amd_iommu_last_bdf)
return 0;
return 1;
} }
/* /*
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册