On 10.01.2025 14:28, Alejandro Vallejo wrote: > No functional change. > > Signed-off-by: Alejandro Vallejo <alejandro.vall...@cloud.com> > --- > v2->v3: > * const-ified v in fpu_fxsave() (missing in v2)
Sadly this has rendered ... > --- a/xen/arch/x86/i387.c > +++ b/xen/arch/x86/i387.c > @@ -129,7 +129,7 @@ static inline uint64_t vcpu_xsave_mask(const struct vcpu > *v) > } > > /* Save x87 extended state */ > -static inline void fpu_xsave(struct vcpu *v) > +static inline void fpu_xsave(const struct vcpu *v, struct xsave_struct > *xsave_area) ... this line too long now. With it suitably wrapped (possibly doable while committing, if no other reason for a v4 appears) Acked-by: Jan Beulich <jbeul...@suse.com> Jan