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.

vfio/qat: extend Kconfig dependencies for 420xx and 6xxx devices

Currently, the QAT VFIO PCI driver can only be configured when the 4xxx
QAT driver (CRYPTO_DEV_QAT_4XXX) is enabled. This is too restrictive as
the VFIO driver also supports VFs from the 420xx and 6xxx device
families, which share a compatible migration interface.

Extends the Kconfig dependencies to allow configuration when any of the
supported QAT device families (4xxx, 420xx, or 6xxx) are enabled.

Signed-off-by: Vijay Sundar Selvamani <vijay.sundar.selvamani@intel.com>
Signed-off-by: Suman Kumar Chakraborty <suman.kumar.chakraborty@intel.com>
Reviewed-by: Giovanni Cabiddu <giovanni.cabiddu@intel.com>
Link: https://lore.kernel.org/r/20260213091403.72338-1-suman.kumar.chakraborty@intel.com
Signed-off-by: Alex Williamson <alex@shazbot.org>

authored by

Vijay Sundar Selvamani and committed by
Alex Williamson
aef50ed5 6de23f81

+1 -1
+1 -1
drivers/vfio/pci/qat/Kconfig
··· 2 2 config QAT_VFIO_PCI 3 3 tristate "VFIO support for QAT VF PCI devices" 4 4 select VFIO_PCI_CORE 5 - depends on CRYPTO_DEV_QAT_4XXX 5 + depends on CRYPTO_DEV_QAT_4XXX || CRYPTO_DEV_QAT_420XX || CRYPTO_DEV_QAT_6XXX 6 6 help 7 7 This provides migration support for Intel(R) QAT Virtual Function 8 8 using the VFIO framework.