From e131d7059a8242529bd4a75b436ee1ec81725ab5 Mon Sep 17 00:00:00 2001 From: "Li, Fei1" Date: Tue, 19 Mar 2019 22:58:33 +0800 Subject: [PATCH] hv: vmconfig: minor fix about regression of commit 79cfb1 commit 79cfb1 forgot to add GUEST_FLAG_ prefix for LAPIC_PASSTHROUGH in file arch/x86/configs/dnv-cb2/partition_config.h Tracked-On: #1842 Signed-off-by: Li, Fei1 --- hypervisor/arch/x86/configs/dnv-cb2/partition_config.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/hypervisor/arch/x86/configs/dnv-cb2/partition_config.h b/hypervisor/arch/x86/configs/dnv-cb2/partition_config.h index 13a5275ad..f91d0ffc6 100644 --- a/hypervisor/arch/x86/configs/dnv-cb2/partition_config.h +++ b/hypervisor/arch/x86/configs/dnv-cb2/partition_config.h @@ -12,7 +12,7 @@ #define VM0_CONFIG_NAME "PRE-LAUNCHED VM1 for DNV-CB2" #define VM0_CONFIG_TYPE PRE_LAUNCHED_VM #define VM0_CONFIG_PCPU_BITMAP (PLUG_CPU(0) | PLUG_CPU(2) | PLUG_CPU(4) | PLUG_CPU(6)) -#define VM0_CONFIG_FLAGS LAPIC_PASSTHROUGH | GUEST_FLAG_IO_COMPLETION_POLLING +#define VM0_CONFIG_FLAGS GUEST_FLAG_LAPIC_PASSTHROUGH | GUEST_FLAG_IO_COMPLETION_POLLING #define VM0_CONFIG_MEM_START_HPA 0x100000000UL #define VM0_CONFIG_MEM_SIZE 0x80000000UL @@ -26,7 +26,7 @@ #define VM1_CONFIG_NAME "PRE-LAUNCHED VM2 for DNV-CB2" #define VM1_CONFIG_TYPE PRE_LAUNCHED_VM #define VM1_CONFIG_PCPU_BITMAP (PLUG_CPU(1) | PLUG_CPU(3) | PLUG_CPU(5) | PLUG_CPU(7)) -#define VM1_CONFIG_FLAGS LAPIC_PASSTHROUGH | GUEST_FLAG_IO_COMPLETION_POLLING +#define VM1_CONFIG_FLAGS GUEST_FLAG_LAPIC_PASSTHROUGH | GUEST_FLAG_IO_COMPLETION_POLLING #define VM1_CONFIG_MEM_START_HPA 0x180000000UL #define VM1_CONFIG_MEM_SIZE 0x80000000UL