On 21.04.2025 09:37, Penny Zheng wrote: > --- a/xen/arch/riscv/stubs.c > +++ b/xen/arch/riscv/stubs.c > @@ -315,13 +315,13 @@ unsigned long raw_copy_from_guest(void *to, const void > __user *from, > > /* sysctl.c */ > > +#ifdef CONFIG_SYSCTL > long arch_do_sysctl(struct xen_sysctl *sysctl, > XEN_GUEST_HANDLE_PARAM(xen_sysctl_t) u_sysctl) > { > BUG_ON("unimplemented"); > } > > -#ifdef CONFIG_SYSCTL > void arch_do_physinfo(struct xen_sysctl_physinfo *pi) > { > BUG_ON("unimplemented");
Looks like the #ifdef would better move ahead of the comment, too. Preferably with that (and notwithstanding any changes resulting from the comment on patch 02): Acked-by: Jan Beulich <jbeul...@suse.com> Jan