diff options
author | Joerg Roedel <joerg.roedel@amd.com> | 2011-09-06 18:46:34 +0200 |
---|---|---|
committer | Joerg Roedel <joerg.roedel@amd.com> | 2011-10-21 14:37:20 +0200 |
commit | a1b60c1cd913c5ccfb38c717ba0bd22622425fa7 (patch) | |
tree | 74e5c1e847262ba3c42fb3b0396a3e781c168b6e /arch/ia64/kvm | |
parent | 905d66c1e5dc8149e111f04a32bb193f25da1d53 (diff) | |
download | linux-a1b60c1cd913c5ccfb38c717ba0bd22622425fa7.tar.bz2 |
iommu/core: Convert iommu_found to iommu_present
With per-bus iommu_ops the iommu_found function needs to
work on a bus_type too. This patch adds a bus_type parameter
to that function and converts all call-places.
The function is also renamed to iommu_present because the
function now checks if an iommu is present for a given bus
and does not check for a global iommu anymore.
Signed-off-by: Joerg Roedel <joerg.roedel@amd.com>
Diffstat (limited to 'arch/ia64/kvm')
-rw-r--r-- | arch/ia64/kvm/kvm-ia64.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/arch/ia64/kvm/kvm-ia64.c b/arch/ia64/kvm/kvm-ia64.c index 8213efe1998c..43f4c92816ef 100644 --- a/arch/ia64/kvm/kvm-ia64.c +++ b/arch/ia64/kvm/kvm-ia64.c @@ -33,6 +33,7 @@ #include <linux/uaccess.h> #include <linux/iommu.h> #include <linux/intel-iommu.h> +#include <linux/pci.h> #include <asm/pgtable.h> #include <asm/gcc_intrin.h> @@ -204,7 +205,7 @@ int kvm_dev_ioctl_check_extension(long ext) r = KVM_COALESCED_MMIO_PAGE_OFFSET; break; case KVM_CAP_IOMMU: - r = iommu_found(); + r = iommu_present(&pci_bus_type); break; default: r = 0; |