From: George Dunlap Date: Thu, 8 Aug 2024 11:57:10 +0000 (+0200) Subject: xen/hvm: Don't skip MSR_READ trace record X-Git-Tag: RELEASE-4.17.5~5 X-Git-Url: http://xenbits.xensource.com/gitweb?a=commitdiff_plain;h=e336a160eb1df488bca2044a0d2aea70abeb70d8;p=xen.git xen/hvm: Don't skip MSR_READ trace record Commit 37f074a3383 ("x86/msr: introduce guest_rdmsr()") introduced a function to combine the MSR_READ handling between PV and HVM. Unfortunately, by returning directly, it skipped the trace generation, leading to gaps in the trace record, as well as xenalyze errors like this: hvm_generic_postprocess: d2v0 Strange, exit 7c(VMEXIT_MSR) missing a handler Replace the `return` with `goto out`. Fixes: 37f074a3383 ("x86/msr: introduce guest_rdmsr()") Signed-off-by: George Dunlap Reviewed-by: Jan Beulich master commit: bc8a43fff61ae4162a95d84f4e148d6773667cd2 master date: 2024-08-02 08:42:09 +0200 --- diff --git a/xen/arch/x86/hvm/hvm.c b/xen/arch/x86/hvm/hvm.c index 558dc3eddc..6ae15e04f3 100644 --- a/xen/arch/x86/hvm/hvm.c +++ b/xen/arch/x86/hvm/hvm.c @@ -3524,7 +3524,7 @@ int hvm_msr_read_intercept(unsigned int msr, uint64_t *msr_content) fixed_range_base = (uint64_t *)v->arch.hvm.mtrr.fixed_ranges; if ( (ret = guest_rdmsr(v, msr, msr_content)) != X86EMUL_UNHANDLEABLE ) - return ret; + goto out; ret = X86EMUL_OKAY;