提交 9b226624 编写于 作者: D David Woodhouse

iommu/vt-d: Make identity_mapping() take struct device not struct pci_dev

Signed-off-by: NDavid Woodhouse <David.Woodhouse@intel.com>
上级 41e80dca
......@@ -2439,14 +2439,14 @@ static int __init si_domain_init(int hw)
return 0;
}
static int identity_mapping(struct pci_dev *pdev)
static int identity_mapping(struct device *dev)
{
struct device_domain_info *info;
if (likely(!iommu_identity_mapping))
return 0;
info = pdev->dev.archdata.iommu;
info = dev->archdata.iommu;
if (info && info != DUMMY_DEVICE_DOMAIN_INFO)
return (info->domain == si_domain);
......@@ -2903,7 +2903,7 @@ static int iommu_no_mapping(struct device *dev)
return 0;
pdev = to_pci_dev(dev);
found = identity_mapping(pdev);
found = identity_mapping(dev);
if (found) {
if (iommu_should_identity_map(pdev, 0))
return 1;
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册