| From | Paolo Bonzini <> | | Date | Thu, 30 Apr 2026 12:28:34 +0200 | | Subject | Re: [PATCH v4 00/28] KVM: combined patchset for MBEC/GMET support |
| |
On Wed, Apr 29, 2026 at 3:05 PM David Riley <d.riley@proxmox.com> wrote: > I observed the following: > The guest now never actually boots into Windows. It gets stuck before > that and therefore does not even enter Windows Recovery.
Last minute rebase screwup. The old code had:
vmcb02->control.misc_ctl = vmcb01->control.misc_ctl & SVM_MISC_ENABLE_NP;
New code has:
vmcb02->control.misc_ctl = vmcb01->control.misc_ctl & SVM_MISC_ENABLE_NP;
And now needs to pass down GMET as well.
Paolo
|