Skip to content

Commit 78d7bc5

Browse files
bibo-maochenhuacai
authored andcommitted
LoongArch: KVM: Reload guest CSR registers after sleep
On host, the HW guest CSR registers are lost after suspend and resume operation. Since last_vcpu of boot CPU still records latest vCPU pointer so that the guest CSR register skips to reload when boot CPU resumes and vCPU is scheduled. Here last_vcpu is cleared so that guest CSR registers will reload from scheduled vCPU context after suspend and resume. Cc: stable@vger.kernel.org Signed-off-by: Bibo Mao <maobibo@loongson.cn> Signed-off-by: Huacai Chen <chenhuacai@loongson.cn>
1 parent 6fb1867 commit 78d7bc5

File tree

1 file changed

+7
-0
lines changed

1 file changed

+7
-0
lines changed

arch/loongarch/kvm/main.c

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -317,6 +317,13 @@ int kvm_arch_enable_virtualization_cpu(void)
317317
kvm_debug("GCFG:%lx GSTAT:%lx GINTC:%lx GTLBC:%lx",
318318
read_csr_gcfg(), read_csr_gstat(), read_csr_gintc(), read_csr_gtlbc());
319319

320+
/*
321+
* HW Guest CSR registers are lost after CPU suspend and resume.
322+
* Clear last_vcpu so that Guest CSR registers forced to reload
323+
* from vCPU SW state.
324+
*/
325+
this_cpu_ptr(vmcs)->last_vcpu = NULL;
326+
320327
return 0;
321328
}
322329

0 commit comments

Comments
 (0)