On 08/03/2022 13:49, Roger Pau Monne wrote: > diff --git a/xen/arch/arm/xen.lds.S b/xen/arch/arm/xen.lds.S > index 08016948ab..47d09d6cf1 100644 > --- a/xen/arch/arm/xen.lds.S > +++ b/xen/arch/arm/xen.lds.S > @@ -30,9 +30,13 @@ SECTIONS > _start = .; > .text : { > _stext = .; /* Text section */ > + *(.text.header) > + > + *(.text.cold .text.cold.*) > + *(.text.unlikely .text.*_unlikely .text.unlikely.*) > + > *(.text) > - *(.text.cold) > - *(.text.unlikely) > +
Most of this hunk wants to move into patch 2. Patch 1 should only introduce .text.header. Same for x86. Can fix on commit. ~Andrew