From fcec5a94bed6cba746e13790fbf25bfd07eb9c67 Mon Sep 17 00:00:00 2001 From: Yin Fengwei Date: Tue, 30 Jun 2020 11:51:00 +0800 Subject: [PATCH] kconfig: extend the max msix table number to 64 There are some devices (like Samsung NVMe SSD SM981/PM981 which has 33 MSIX tables) which have more than 16 MSIX tables. Extend the default value to 64 to handle them. Tracked-On: #4994 Signed-off-by: Yin Fengwei --- hypervisor/arch/x86/Kconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hypervisor/arch/x86/Kconfig b/hypervisor/arch/x86/Kconfig index 31fe43955..7f1d202b1 100644 --- a/hypervisor/arch/x86/Kconfig +++ b/hypervisor/arch/x86/Kconfig @@ -309,7 +309,7 @@ config MAX_PCI_DEV_NUM config MAX_MSIX_TABLE_NUM int "Maximum number of MSI-X tables per device" range 1 2048 - default 16 + default 64 config ENFORCE_VALIDATED_ACPI_INFO bool "Enforce the use of validated ACPI info table"