]> git.proxmox.com Git - mirror_ubuntu-bionic-kernel.git/commit
powerpc/vfio_spapr_tce: Add reference counting to iommu_table
authorAlexey Kardashevskiy <aik@ozlabs.ru>
Wed, 22 Mar 2017 04:21:50 +0000 (15:21 +1100)
committerMichael Ellerman <mpe@ellerman.id.au>
Thu, 30 Mar 2017 10:42:11 +0000 (21:42 +1100)
commite5afdf9dd515a9446c009f44f99f9bc2f91b89a7
tree21683e5afe296b2a6cf32e22f5471b1da1a7a18e
parent11edf116e3a6352cfee6b1437d41603c9aff79c9
powerpc/vfio_spapr_tce: Add reference counting to iommu_table

So far iommu_table obejcts were only used in virtual mode and had
a single owner. We are going to change this by implementing in-kernel
acceleration of DMA mapping requests. The proposed acceleration
will handle requests in real mode and KVM will keep references to tables.

This adds a kref to iommu_table and defines new helpers to update it.
This replaces iommu_free_table() with iommu_tce_table_put() and makes
iommu_free_table() static. iommu_tce_table_get() is not used in this patch
but it will be in the following patch.

Since this touches prototypes, this also removes @node_name parameter as
it has never been really useful on powernv and carrying it for
the pseries platform code to iommu_free_table() seems to be quite
useless as well.

This should cause no behavioral change.

Signed-off-by: Alexey Kardashevskiy <aik@ozlabs.ru>
Reviewed-by: David Gibson <david@gibson.dropbear.id.au>
Acked-by: Alex Williamson <alex.williamson@redhat.com>
Signed-off-by: Michael Ellerman <mpe@ellerman.id.au>
arch/powerpc/include/asm/iommu.h
arch/powerpc/kernel/iommu.c
arch/powerpc/platforms/powernv/pci-ioda.c
arch/powerpc/platforms/powernv/pci.c
arch/powerpc/platforms/pseries/iommu.c
arch/powerpc/platforms/pseries/vio.c
drivers/vfio/vfio_iommu_spapr_tce.c