mirror of
https://github.com/torvalds/linux.git
synced 2026-05-26 08:02:27 +02:00
selftests: Create tools/testing/selftests/vfio
Create the directory tools/testing/selftests/vfio with a stub Makefile and hook it up to the top-level selftests Makefile. This directory will be used in subsequent commits to host selftests for the VFIO subsystem. Acked-by: Shuah Khan <skhan@linuxfoundation.org> Signed-off-by: David Matlack <dmatlack@google.com> Link: https://lore.kernel.org/r/20250822212518.4156428-2-dmatlack@google.com Signed-off-by: Alex Williamson <alex.williamson@redhat.com>
This commit is contained in:
parent
767b1ed8b9
commit
292e9ee22b
|
|
@ -26440,6 +26440,7 @@ F: drivers/vfio/
|
||||||
F: include/linux/vfio.h
|
F: include/linux/vfio.h
|
||||||
F: include/linux/vfio_pci_core.h
|
F: include/linux/vfio_pci_core.h
|
||||||
F: include/uapi/linux/vfio.h
|
F: include/uapi/linux/vfio.h
|
||||||
|
F: tools/testing/selftests/vfio/
|
||||||
|
|
||||||
VFIO FSL-MC DRIVER
|
VFIO FSL-MC DRIVER
|
||||||
L: kvm@vger.kernel.org
|
L: kvm@vger.kernel.org
|
||||||
|
|
@ -26504,6 +26505,12 @@ L: qat-linux@intel.com
|
||||||
S: Supported
|
S: Supported
|
||||||
F: drivers/vfio/pci/qat/
|
F: drivers/vfio/pci/qat/
|
||||||
|
|
||||||
|
VFIO SELFTESTS
|
||||||
|
M: David Matlack <dmatlack@google.com>
|
||||||
|
L: kvm@vger.kernel.org
|
||||||
|
S: Maintained
|
||||||
|
F: tools/testing/selftests/vfio/
|
||||||
|
|
||||||
VFIO VIRTIO PCI DRIVER
|
VFIO VIRTIO PCI DRIVER
|
||||||
M: Yishai Hadas <yishaih@nvidia.com>
|
M: Yishai Hadas <yishaih@nvidia.com>
|
||||||
L: kvm@vger.kernel.org
|
L: kvm@vger.kernel.org
|
||||||
|
|
|
||||||
|
|
@ -124,6 +124,7 @@ TARGETS += uevent
|
||||||
TARGETS += user_events
|
TARGETS += user_events
|
||||||
TARGETS += vDSO
|
TARGETS += vDSO
|
||||||
TARGETS += mm
|
TARGETS += mm
|
||||||
|
TARGETS += vfio
|
||||||
TARGETS += x86
|
TARGETS += x86
|
||||||
TARGETS += x86/bugs
|
TARGETS += x86/bugs
|
||||||
TARGETS += zram
|
TARGETS += zram
|
||||||
|
|
|
||||||
7
tools/testing/selftests/vfio/.gitignore
vendored
Normal file
7
tools/testing/selftests/vfio/.gitignore
vendored
Normal file
|
|
@ -0,0 +1,7 @@
|
||||||
|
# SPDX-License-Identifier: GPL-2.0-only
|
||||||
|
*
|
||||||
|
!/**/
|
||||||
|
!*.c
|
||||||
|
!*.h
|
||||||
|
!*.S
|
||||||
|
!*.sh
|
||||||
2
tools/testing/selftests/vfio/Makefile
Normal file
2
tools/testing/selftests/vfio/Makefile
Normal file
|
|
@ -0,0 +1,2 @@
|
||||||
|
CFLAGS = $(KHDR_INCLUDES)
|
||||||
|
include ../lib.mk
|
||||||
Loading…
Reference in New Issue
Block a user