mirror of
https://mirrors.bfsu.edu.cn/git/linux.git
synced 2024-11-17 01:04:19 +08:00
2a55ca3735
zap_vma_ptes() is only available when CONFIG_MMU is set/enabled.
Without CONFIG_MMU, vfio_pci.o has build errors, so make
VFIO_PCI depend on MMU.
riscv64-linux-ld: drivers/vfio/pci/vfio_pci.o: in function `vfio_pci_mmap_open':
vfio_pci.c:(.text+0x1ec): undefined reference to `zap_vma_ptes'
riscv64-linux-ld: drivers/vfio/pci/vfio_pci.o: in function `.L0 ':
vfio_pci.c:(.text+0x165c): undefined reference to `zap_vma_ptes'
Fixes: 11c4cd07ba
("vfio-pci: Fault mmaps to enable vma tracking")
Signed-off-by: Randy Dunlap <rdunlap@infradead.org>
Reported-by: kernel test robot <lkp@intel.com>
Cc: Alex Williamson <alex.williamson@redhat.com>
Cc: Cornelia Huck <cohuck@redhat.com>
Cc: kvm@vger.kernel.org
Cc: Jason Gunthorpe <jgg@nvidia.com>
Cc: Eric Auger <eric.auger@redhat.com>
Message-Id: <20210515190856.2130-1-rdunlap@infradead.org>
Signed-off-by: Alex Williamson <alex.williamson@redhat.com>
43 lines
1.2 KiB
Plaintext
43 lines
1.2 KiB
Plaintext
# SPDX-License-Identifier: GPL-2.0-only
|
|
config VFIO_PCI
|
|
tristate "VFIO support for PCI devices"
|
|
depends on VFIO && PCI && EVENTFD
|
|
depends on MMU
|
|
select VFIO_VIRQFD
|
|
select IRQ_BYPASS_MANAGER
|
|
help
|
|
Support for the PCI VFIO bus driver. This is required to make
|
|
use of PCI drivers using the VFIO framework.
|
|
|
|
If you don't know what to do here, say N.
|
|
|
|
config VFIO_PCI_VGA
|
|
bool "VFIO PCI support for VGA devices"
|
|
depends on VFIO_PCI && X86 && VGA_ARB
|
|
help
|
|
Support for VGA extension to VFIO PCI. This exposes an additional
|
|
region on VGA devices for accessing legacy VGA addresses used by
|
|
BIOS and generic video drivers.
|
|
|
|
If you don't know what to do here, say N.
|
|
|
|
config VFIO_PCI_MMAP
|
|
depends on VFIO_PCI
|
|
def_bool y if !S390
|
|
|
|
config VFIO_PCI_INTX
|
|
depends on VFIO_PCI
|
|
def_bool y if !S390
|
|
|
|
config VFIO_PCI_IGD
|
|
bool "VFIO PCI extensions for Intel graphics (GVT-d)"
|
|
depends on VFIO_PCI && X86
|
|
default y
|
|
help
|
|
Support for Intel IGD specific extensions to enable direct
|
|
assignment to virtual machines. This includes exposing an IGD
|
|
specific firmware table and read-only copies of the host bridge
|
|
and LPC bridge config space.
|
|
|
|
To enable Intel IGD assignment through vfio-pci, say Y.
|