Re: [PATCH] riscv: Add initial Xen guest support for RISC-V

2025-01-16 Thread Andrew Jones
On Wed, Jan 15, 2025 at 08:04:05PM +0100, Milan Đokić wrote: > Hello Andrew, > > On Tue, Jan 14, 2025 at 7:18 PM Andrew Jones wrote: > > > > On Tue, Jan 14, 2025 at 05:09:36PM +0100, Milan Djokic wrote: ... > > > +++ b/arch/riscv/xen/hypercall.S > > >

Re: [PATCH] riscv: Add initial Xen guest support for RISC-V

2025-01-14 Thread Andrew Jones
On Tue, Jan 14, 2025 at 05:09:36PM +0100, Milan Djokic wrote: > From: Slavisa Petrovic > > This patch introduces initial support for running RISC-V as a Xen guest. > It provides the necessary infrastructure and stubs for Xen-specific > operations. Key changes include: > > - Modifications to the

Re: [PATCH v4 10/30] riscv/paravirt: Mark pv_steal_clock static call as __ro_after_init

2025-01-14 Thread Andrew Jones
kernel/paravirt.c > @@ -30,7 +30,7 @@ static u64 native_steal_clock(int cpu) > return 0; > } > > -DEFINE_STATIC_CALL(pv_steal_clock, native_steal_clock); > +DEFINE_STATIC_CALL_RO(pv_steal_clock, native_steal_clock); > > static bool steal_acc = true; > static int __init parse_no_stealacc(char *arg) > -- > 2.43.0 > Reviewed-by: Andrew Jones