Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

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>

authored by

David Matlack and committed by
Alex Williamson
292e9ee2 767b1ed8

+17
+7
MAINTAINERS
··· 26440 26440 F: include/linux/vfio.h 26441 26441 F: include/linux/vfio_pci_core.h 26442 26442 F: include/uapi/linux/vfio.h 26443 + F: tools/testing/selftests/vfio/ 26443 26444 26444 26445 VFIO FSL-MC DRIVER 26445 26446 L: kvm@vger.kernel.org ··· 26504 26503 L: qat-linux@intel.com 26505 26504 S: Supported 26506 26505 F: drivers/vfio/pci/qat/ 26506 + 26507 + VFIO SELFTESTS 26508 + M: David Matlack <dmatlack@google.com> 26509 + L: kvm@vger.kernel.org 26510 + S: Maintained 26511 + F: tools/testing/selftests/vfio/ 26507 26512 26508 26513 VFIO VIRTIO PCI DRIVER 26509 26514 M: Yishai Hadas <yishaih@nvidia.com>
+1
tools/testing/selftests/Makefile
··· 124 124 TARGETS += user_events 125 125 TARGETS += vDSO 126 126 TARGETS += mm 127 + TARGETS += vfio 127 128 TARGETS += x86 128 129 TARGETS += x86/bugs 129 130 TARGETS += zram
+7
tools/testing/selftests/vfio/.gitignore
··· 1 + # SPDX-License-Identifier: GPL-2.0-only 2 + * 3 + !/**/ 4 + !*.c 5 + !*.h 6 + !*.S 7 + !*.sh
+2
tools/testing/selftests/vfio/Makefile
··· 1 + CFLAGS = $(KHDR_INCLUDES) 2 + include ../lib.mk