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
> > >
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
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