mirror of
https://mirrors.bfsu.edu.cn/git/linux.git
synced 2024-12-04 09:34:12 +08:00
71be3423a6
An unintended consequence of commit 42ac9bd18d
("vfio: initialize
the virqfd workqueue in VFIO generic code") is that the vfio module
is renamed to vfio_core so that it can include both vfio and virqfd.
That's a user visible change that may break module loading scritps
and it imposes eventfd support as a dependency on the core vfio code,
which it's really not. virqfd is intended to be provided as a service
to vfio bus drivers, so instead of wrapping it into vfio.ko, we can
make it a stand-alone module toggled by vfio bus drivers. This has
the additional benefit of removing initialization and exit from the
core vfio code.
Signed-off-by: Alex Williamson <alex.williamson@redhat.com>
21 lines
616 B
Plaintext
21 lines
616 B
Plaintext
config VFIO_PLATFORM
|
|
tristate "VFIO support for platform devices"
|
|
depends on VFIO && EVENTFD && ARM
|
|
select VFIO_VIRQFD
|
|
help
|
|
Support for platform devices with VFIO. This is required to make
|
|
use of platform devices present on the system using the VFIO
|
|
framework.
|
|
|
|
If you don't know what to do here, say N.
|
|
|
|
config VFIO_AMBA
|
|
tristate "VFIO support for AMBA devices"
|
|
depends on VFIO_PLATFORM && ARM_AMBA
|
|
help
|
|
Support for ARM AMBA devices with VFIO. This is required to make
|
|
use of ARM AMBA devices present on the system using the VFIO
|
|
framework.
|
|
|
|
If you don't know what to do here, say N.
|