mirror of
https://github.com/torvalds/linux
synced 2026-07-22 10:10:47 +09:00
The nointxmask and disable_idle_d3 module parameters remain writable, but vfio-pci now latches their values into each device at init. Once a device is registered, changing the module parameter only affects future devices, leaving no direct way to confirm the effective policy for an existing device. Add a pci debugfs directory under the VFIO device debugfs root and report the per-device nointxmask and disable_idle_d3 values. These are read-only debugfs views and use the same Y/N bool output convention as the module parameters. Read-only vfio-pci parameters, such as disable_vga, are not exposed here because they cannot drift from the latched device value, therefore the existing module parameter exposure via sysfs is sufficient. Note that while only vfio-pci currently provides these options, the implementation is in vfio-pci-core and therefore properly reflects the device policy in the core, regardless of driver. Assisted-by: OpenAI Codex:gpt-5 Cc: Guixin Liu <kanie@linux.alibaba.com> Signed-off-by: Alex Williamson <alex.williamson@nvidia.com> Reviewed-by: Kevin Tian <kevin.tian@intel.com> Link: https://lore.kernel.org/r/20260615191241.688297-7-alex.williamson@nvidia.com Signed-off-by: Alex Williamson <alex@shazbot.org>
58 lines
2.2 KiB
Plaintext
58 lines
2.2 KiB
Plaintext
What: /sys/kernel/debug/vfio
|
|
Date: December 2023
|
|
KernelVersion: 6.8
|
|
Contact: Longfang Liu <liulongfang@huawei.com>
|
|
Description: This debugfs file directory is used for debugging
|
|
of vfio devices, it's a common directory for all vfio devices.
|
|
Vfio core will create a device subdirectory under this
|
|
directory.
|
|
|
|
What: /sys/kernel/debug/vfio/<device>/migration
|
|
Date: December 2023
|
|
KernelVersion: 6.8
|
|
Contact: Longfang Liu <liulongfang@huawei.com>
|
|
Description: This debugfs file directory is used for debugging
|
|
of vfio devices that support live migration.
|
|
The debugfs of each vfio device that supports live migration
|
|
could be created under this directory.
|
|
|
|
What: /sys/kernel/debug/vfio/<device>/migration/state
|
|
Date: December 2023
|
|
KernelVersion: 6.8
|
|
Contact: Longfang Liu <liulongfang@huawei.com>
|
|
Description: Read the live migration status of the vfio device.
|
|
The contents of the state file reflects the migration state
|
|
relative to those defined in the vfio_device_mig_state enum
|
|
|
|
What: /sys/kernel/debug/vfio/<device>/migration/features
|
|
Date: Oct 2025
|
|
KernelVersion: 6.18
|
|
Contact: Cédric Le Goater <clg@redhat.com>
|
|
Description: Read the migration features of the vfio device.
|
|
|
|
What: /sys/kernel/debug/vfio/<device>/pci
|
|
Date: June 2026
|
|
KernelVersion: 7.2
|
|
Contact: Alex Williamson <alex.williamson@nvidia.com>
|
|
Description: This debugfs file directory is used for debugging
|
|
VFIO PCI devices.
|
|
|
|
What: /sys/kernel/debug/vfio/<device>/pci/nointxmask
|
|
Date: June 2026
|
|
KernelVersion: 7.2
|
|
Contact: Alex Williamson <alex.williamson@nvidia.com>
|
|
Description: Read the nointxmask policy latched for this device. This
|
|
policy governs whether the device may use PCI 2.3 style
|
|
INTx masking when supported, reporting a value of "N", or
|
|
requires APIC level INTx masking, reporting a value of "Y".
|
|
|
|
What: /sys/kernel/debug/vfio/<device>/pci/disable_idle_d3
|
|
Date: June 2026
|
|
KernelVersion: 7.2
|
|
Contact: Alex Williamson <alex.williamson@nvidia.com>
|
|
Description: Read the disable_idle_d3 policy latched for this device. This
|
|
policy governs whether the device PM runtime usage count is
|
|
kept elevated while the device is bound to the driver and
|
|
unused, reporting a value of "Y", or decremented to allow the
|
|
device to enter a low power state, reporting a value of "N".
|