diff options
author | Christoph Hellwig <hch@lst.de> | 2021-09-24 17:56:59 +0200 |
---|---|---|
committer | Alex Williamson <alex.williamson@redhat.com> | 2021-09-30 20:46:44 +0200 |
commit | 8cc02d22d7e1596ed687c4ff967c32056c2bef3e (patch) | |
tree | fda8354e88df5ef4d98dc7092d074838e1b5de25 /drivers/vfio/vfio.c | |
parent | vfio: remove unused method from vfio_iommu_driver_ops (diff) | |
download | linux-8cc02d22d7e1596ed687c4ff967c32056c2bef3e.tar.xz linux-8cc02d22d7e1596ed687c4ff967c32056c2bef3e.zip |
vfio: move the vfio_iommu_driver_ops interface out of <linux/vfio.h>
Create a new private drivers/vfio/vfio.h header for the interface between
the VFIO core and the iommu drivers.
Signed-off-by: Christoph Hellwig <hch@lst.de>
Reviewed-by: Jason Gunthorpe <jgg@nvidia.com>
Reviewed-by: Kevin Tian <kevin.tian@intel.com>
Link: https://lore.kernel.org/r/20210924155705.4258-10-hch@lst.de
Signed-off-by: Alex Williamson <alex.williamson@redhat.com>
Diffstat (limited to 'drivers/vfio/vfio.c')
-rw-r--r-- | drivers/vfio/vfio.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/vfio/vfio.c b/drivers/vfio/vfio.c index 2c1c7316aa19..6589e296ef34 100644 --- a/drivers/vfio/vfio.c +++ b/drivers/vfio/vfio.c @@ -32,6 +32,7 @@ #include <linux/vfio.h> #include <linux/wait.h> #include <linux/sched/signal.h> +#include "vfio.h" #define DRIVER_VERSION "0.3" #define DRIVER_AUTHOR "Alex Williamson <alex.williamson@redhat.com>" |