diff options
author | Antonios Motakis <a.motakis@virtualopensystems.com> | 2015-03-16 16:08:54 -0400 |
---|---|---|
committer | Alex Williamson <alex.williamson@redhat.com> | 2015-03-16 16:08:54 -0400 |
commit | 42ac9bd18d4fc28c36c7927847f0f6e90ecd7710 (patch) | |
tree | 7250c8a8186ac25d171533c71037968077ef1cf1 /drivers/vfio/Makefile | |
parent | 7e992d692750b2938224eb43fee907181d92a602 (diff) |
vfio: initialize the virqfd workqueue in VFIO generic code
Now we have finally completely decoupled virqfd from VFIO_PCI. We can
initialize it from the VFIO generic code, in order to safely use it from
multiple independent VFIO bus drivers.
Signed-off-by: Antonios Motakis <a.motakis@virtualopensystems.com>
Signed-off-by: Baptiste Reynal <b.reynal@virtualopensystems.com>
Reviewed-by: Eric Auger <eric.auger@linaro.org>
Tested-by: Eric Auger <eric.auger@linaro.org>
Signed-off-by: Alex Williamson <alex.williamson@redhat.com>
Diffstat (limited to 'drivers/vfio/Makefile')
-rw-r--r-- | drivers/vfio/Makefile | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/drivers/vfio/Makefile b/drivers/vfio/Makefile index dadf0ca146ef..d798b0959603 100644 --- a/drivers/vfio/Makefile +++ b/drivers/vfio/Makefile | |||
@@ -1,4 +1,6 @@ | |||
1 | obj-$(CONFIG_VFIO) += vfio.o | 1 | vfio_core-y := vfio.o virqfd.o |
2 | |||
3 | obj-$(CONFIG_VFIO) += vfio_core.o | ||
2 | obj-$(CONFIG_VFIO_IOMMU_TYPE1) += vfio_iommu_type1.o | 4 | obj-$(CONFIG_VFIO_IOMMU_TYPE1) += vfio_iommu_type1.o |
3 | obj-$(CONFIG_VFIO_IOMMU_SPAPR_TCE) += vfio_iommu_spapr_tce.o | 5 | obj-$(CONFIG_VFIO_IOMMU_SPAPR_TCE) += vfio_iommu_spapr_tce.o |
4 | obj-$(CONFIG_VFIO_SPAPR_EEH) += vfio_spapr_eeh.o | 6 | obj-$(CONFIG_VFIO_SPAPR_EEH) += vfio_spapr_eeh.o |