From 8d8c36b3401d448d82320cfc8578405ba383c199 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 7c2d270c0..1afe0cac5 100644 --- a/hypervisor/arch/x86/Kconfig +++ b/hypervisor/arch/x86/Kconfig @@ -308,7 +308,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"