Re: [PATCH v4 21/26] KVM: SVM: Rename vmcb->virt_ext to vmcb->misc_ctl2
From: Sean Christopherson
Date: Fri Feb 06 2026 - 12:59:11 EST
On Fri, Feb 06, 2026, Yosry Ahmed wrote:
> On Thu, Feb 05, 2026 at 05:31:01PM -0800, Sean Christopherson wrote:
> > On Thu, Jan 15, 2026, Yosry Ahmed wrote:
> > > @@ -244,6 +241,8 @@ struct __attribute__ ((__packed__)) vmcb_control_area {
> > > #define SVM_MISC_CTL_SEV_ENABLE BIT(1)
> > > #define SVM_MISC_CTL_SEV_ES_ENABLE BIT(2)
> > >
> > > +#define SVM_MISC_CTL2_LBR_CTL_ENABLE BIT_ULL(0)
> > > +#define SVM_MISC_CTL2_V_VMLOAD_VMSAVE_ENABLE BIT_ULL(1)
> >
> > Since you're changing names anyways, What do you think about shortening things
> > a bit, and using the more standard syle of <scope>_<action>_<flag>? E.g.
> >
> > #define SVM_MISC2_ENABLE_LBR_VIRTUALIZATION BIT_ULL(0)
> > #define SVM_MISC2_ENABLE_V_VMLOAD_VMSAVE BIT_ULL(1)
>
> SVM_MISC2_ENABLE_LBR_VIRTUALIZATION is actually longer,
Heh, yeah, I knew that when I hit "send", I just wasn't sure if V_LBR was a good
name.
> how about SVM_MISC2_ENABLE_V_LBR? Shorter and more consistent with
> SVM_MISC2_ENABLE_V_VMLOAD_VMSAVE.
Works for me. I was mildly concerned that V_LBR wouldn't be intuitive, but since
you independently came up with the name too, apparently not :-)