diff options
author | Christoph Hellwig <hch@lst.de> | 2018-07-30 10:36:26 +0300 |
---|---|---|
committer | Joerg Roedel <jroedel@suse.de> | 2018-08-08 12:06:20 +0300 |
commit | d88e61faad526a5850e9330c846641b91cf971e7 (patch) | |
tree | 936bfd3d693f904d1a3de9f9e51034ba0dd6329c /drivers/iommu/tegra-smmu.c | |
parent | 58d1131777a4b7c228267b809bd88f7be66edcfb (diff) | |
download | linux-d88e61faad526a5850e9330c846641b91cf971e7.tar.xz |
iommu: Remove the ->map_sg indirection
All iommu drivers use the default_iommu_map_sg implementation, and there
is no good reason to ever override it. Just expose it as iommu_map_sg
directly and remove the indirection, specially in our post-spectre world
where indirect calls are horribly expensive.
Signed-off-by: Christoph Hellwig <hch@lst.de>
Signed-off-by: Joerg Roedel <jroedel@suse.de>
Diffstat (limited to 'drivers/iommu/tegra-smmu.c')
-rw-r--r-- | drivers/iommu/tegra-smmu.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/drivers/iommu/tegra-smmu.c b/drivers/iommu/tegra-smmu.c index 44d40bc771b5..0d03341317c4 100644 --- a/drivers/iommu/tegra-smmu.c +++ b/drivers/iommu/tegra-smmu.c @@ -876,7 +876,6 @@ static const struct iommu_ops tegra_smmu_ops = { .device_group = tegra_smmu_device_group, .map = tegra_smmu_map, .unmap = tegra_smmu_unmap, - .map_sg = default_iommu_map_sg, .iova_to_phys = tegra_smmu_iova_to_phys, .of_xlate = tegra_smmu_of_xlate, .pgsize_bitmap = SZ_4K, |