[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] Re: [PATCH v2 10/14] kernel-doc: public/vcpu.h
On 21.10.2020 02:00, Stefano Stabellini wrote: > @@ -140,38 +173,74 @@ struct vcpu_register_runstate_memory_area { > typedef struct vcpu_register_runstate_memory_area > vcpu_register_runstate_memory_area_t; > DEFINE_XEN_GUEST_HANDLE(vcpu_register_runstate_memory_area_t); > > -/* > - * Set or stop a VCPU's periodic timer. Every VCPU has one periodic timer > - * which can be set via these commands. Periods smaller than one millisecond > - * may not be supported. > +/** > + * DOC: VCPUOP_set_periodic_timer > + * > + * Set a VCPU's periodic timer. Every VCPU has one periodic timer which > + * can be set via this command. Periods smaller than one millisecond may > + * not be supported. > + * > + * @arg == vcpu_set_periodic_timer_t > + */ > +#define VCPUOP_set_periodic_timer 6 > +/** > + * DOC: VCPUOP_stop_periodic_timer > + * > + * Stop a VCPU's periodic timer. > + * > + * @arg == NULL > + */ > +#define VCPUOP_stop_periodic_timer 7 > +/** > + * struct vcpu_set_periodic_timer > */ > -#define VCPUOP_set_periodic_timer 6 /* arg == vcpu_set_periodic_timer_t */ > -#define VCPUOP_stop_periodic_timer 7 /* arg == NULL */ > struct vcpu_set_periodic_timer { > uint64_t period_ns; > }; > typedef struct vcpu_set_periodic_timer vcpu_set_periodic_timer_t; > DEFINE_XEN_GUEST_HANDLE(vcpu_set_periodic_timer_t); > > -/* > - * Set or stop a VCPU's single-shot timer. Every VCPU has one single-shot > - * timer which can be set via these commands. > +/** > + * DOC: VCPUOP_set_singleshot_timer > + * > + * Set a VCPU's single-shot timer. Every VCPU has one single-shot timer > + * which can be set via this command. > + * > + * @arg == vcpu_set_singleshot_timer_t > + */ > +#define VCPUOP_set_singleshot_timer 8 > +/** > + * DOC: VCPUOP_stop_singleshot_timer > + * > + * Stop a VCPU's single-shot timer. > + * > + * arg == NULL Judging from earlier (and later instances) - @arg? Jan
|
Lists.xenproject.org is hosted with RackSpace, monitoring our |