Luwei Kang <luwei.kang@xxxxxxxxx> writes: > +static void pt_guest_enter(struct vcpu_vmx *vmx) > +{ > + if (pt_mode == PT_MODE_SYSTEM) > + return; > + > + /* Save host state before VM entry */ > + rdmsrl(MSR_IA32_RTIT_CTL, vmx->pt_desc.host.ctl); > + > + /* > + * Set guest state of MSR_IA32_RTIT_CTL MSR (PT will be disabled > + * on VM entry when it has been disabled in guest before). > + */ > + vmcs_write64(GUEST_IA32_RTIT_CTL, vmx->pt_desc.guest.ctl); > + > + if (vmx->pt_desc.guest.ctl & RTIT_CTL_TRACEEN) { > + wrmsrl(MSR_IA32_RTIT_CTL, 0); > + pt_save_msr(&vmx->pt_desc.host, vmx->pt_desc.addr_range); > + pt_load_msr(&vmx->pt_desc.guest, vmx->pt_desc.addr_range); Ok, so this is where the host PT is disabled. So, my recommendation for this patchset is: we need to address the fact that we are disabling host PT without telling the host. We need to either stop doing it or inform the host. I don't think there need to be any more versions of this patchset until this issue is addressed. Thanks, -- Alex