On 05/02/2019 07:57 AM, nadav.amit@xxxxxxxxx wrote:
From: Nadav Amit <nadav.amit@xxxxxxxxx>
The VMCS fields of APIC_VIRT_ADDR and TPR_THRESHOLD are modified by
test_vmcs_addr() but are not restored to their original value. Save and
restore them.
Signed-off-by: Nadav Amit <nadav.amit@xxxxxxxxx>
---
x86/vmx_tests.c | 12 +++++++-----
1 file changed, 7 insertions(+), 5 deletions(-)
diff --git a/x86/vmx_tests.c b/x86/vmx_tests.c
index e9010af..2d6b12d 100644
--- a/x86/vmx_tests.c
+++ b/x86/vmx_tests.c
@@ -4432,6 +4432,8 @@ static void test_tpr_threshold_values(void)
static void test_tpr_threshold(void)
{
u32 primary = vmcs_read(CPU_EXEC_CTRL0);
+ u64 apic_virt_addr = vmcs_read(APIC_VIRT_ADDR);
+ u64 threshold = vmcs_read(TPR_THRESHOLD);
void *virtual_apic_page;
if (!(ctrl_cpu_rev[0].clr & CPU_TPR_SHADOW))
@@ -4451,11 +4453,8 @@ static void test_tpr_threshold(void)
report_prefix_pop();
if (!((ctrl_cpu_rev[0].clr & CPU_SECONDARY) &&
- (ctrl_cpu_rev[1].clr & (CPU_VINTD | CPU_VIRT_APIC_ACCESSES)))) {
- vmcs_write(CPU_EXEC_CTRL0, primary);
- return;
- }
-
+ (ctrl_cpu_rev[1].clr & (CPU_VINTD | CPU_VIRT_APIC_ACCESSES))))
+ goto out;
u32 secondary = vmcs_read(CPU_EXEC_CTRL1);
if (ctrl_cpu_rev[1].clr & CPU_VINTD) {
@@ -4505,6 +4504,9 @@ static void test_tpr_threshold(void)
}
vmcs_write(CPU_EXEC_CTRL1, secondary);
+out:
+ vmcs_write(TPR_THRESHOLD, threshold);
+ vmcs_write(APIC_VIRT_ADDR, apic_virt_addr);
vmcs_write(CPU_EXEC_CTRL0, primary);
}
The function name in the commit message (both header and body) is
incorrect. It should be "test_tpr_threshold".