mirror of
https://github.com/torvalds/linux.git
synced 2025-01-01 07:42:07 +00:00
e6b817d4b8
Define a new configuration entry VFIO_PCI_ZDEV for VFIO/PCI. When this s390-only feature is configured we add capabilities to the VFIO_DEVICE_GET_INFO ioctl that describe features of the associated zPCI device and its underlying hardware. This patch is based on work previously done by Pierre Morel. Signed-off-by: Matthew Rosato <mjrosato@linux.ibm.com> Reviewed-by: Cornelia Huck <cohuck@redhat.com> Signed-off-by: Alex Williamson <alex.williamson@redhat.com>
9 lines
315 B
Makefile
9 lines
315 B
Makefile
# SPDX-License-Identifier: GPL-2.0-only
|
|
|
|
vfio-pci-y := vfio_pci.o vfio_pci_intrs.o vfio_pci_rdwr.o vfio_pci_config.o
|
|
vfio-pci-$(CONFIG_VFIO_PCI_IGD) += vfio_pci_igd.o
|
|
vfio-pci-$(CONFIG_VFIO_PCI_NVLINK2) += vfio_pci_nvlink2.o
|
|
vfio-pci-$(CONFIG_VFIO_PCI_ZDEV) += vfio_pci_zdev.o
|
|
|
|
obj-$(CONFIG_VFIO_PCI) += vfio-pci.o
|