On Fri, 2023-01-06 at 15:15 +0100, Jan Beulich wrote: > On 06.01.2023 14:14, Oleksii Kurochko wrote: > > --- a/xen/arch/riscv/riscv64/head.S > > +++ b/xen/arch/riscv/riscv64/head.S > > @@ -1,4 +1,10 @@ > > .section .text.header, "ax", %progbits > > > > ENTRY(start) > > - j start > > + la sp, cpu0_boot_stack > > + li t0, PAGE_SIZE > > + add sp, sp, t0 > > + > > +_start_hang: > > + wfi > > + j _start_hang > > Nit: I think it would be nice if in a new port assembly code used > consistent padding between insn mnemonic and operand(s). > Missed it. Actually it will be "fixed" in the later patches of the patch series but i'll fix this while working on a new version of the patch series.
~Oleksii > Jan
