Re: [PATCH v4 00/28] KVM: combined patchset for MBEC/GMET support

From: Paolo Bonzini

Date: Thu Apr 30 2026 - 06:29:18 EST


On Wed, Apr 29, 2026 at 3:05 PM David Riley <d.riley@xxxxxxxxxxx> 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