On 05.02.2024 16:32, Oleksii Kurochko wrote: > Signed-off-by: Oleksii Kurochko <oleksii.kuroc...@gmail.com> > Acked-by: Jan Beulich <jbeul...@suse.com>
Nevertheless ... > --- /dev/null > +++ b/xen/arch/riscv/include/asm/time.h > @@ -0,0 +1,29 @@ > +/* SPDX-License-Identifier: GPL-2.0-only */ > +#ifndef __ASM_RISCV_TIME_H__ > +#define __ASM_RISCV_TIME_H__ > + > +#include <xen/bug.h> > +#include <asm/csr.h> > + > +struct vcpu; > + > +/* TODO: implement */ > +static inline void force_update_vcpu_system_time(struct vcpu *v) { > BUG_ON("unimplemented"); } ... nit: Too long line. The comment also doesn't look to serve any purpose anymore, with the BUG_ON() now taking uniform shape. Jan