On 16/07/2025 2:28 pm, Andrew Cooper wrote: > diff --git a/xen/arch/x86/include/asm/cpufeature.h > b/xen/arch/x86/include/asm/cpufeature.h > index ba2c1c1c7416..f8b85c0f9520 100644 > --- a/xen/arch/x86/include/asm/cpufeature.h > +++ b/xen/arch/x86/include/asm/cpufeature.h > @@ -28,7 +28,7 @@ > > #define VFM_MAKE(v, f, m) (MASK_INSR(v, VFM_VENDOR_MASK) | \ > MASK_INSR(f, VFM_FAMILY_MASK) | \ > - MASK_INSR(f, VFM_MODEL_MASK)) > + MASK_INSR(m, VFM_MODEL_MASK)) >
This hunk should be in the prior patch. Fixed up locally. ~Andrew