All of lore.kernel.org
 help / color / mirror / Atom feed
From: Jan Beulich <jbeulich@suse.com>
To: Stefano Stabellini <sstabellini@kernel.org>
Cc: xen-devel@lists.xenproject.org, andrew.cooper3@citrix.com,
	george.dunlap@citrix.com, ian.jackson@eu.citrix.com,
	julien@xen.org, wl@xen.org, Bertrand.Marquis@arm.com,
	Stefano Stabellini <stefano.stabellini@xilinx.com>
Subject: Re: [PATCH v2 10/14] kernel-doc: public/vcpu.h
Date: Fri, 23 Oct 2020 11:59:28 +0200	[thread overview]
Message-ID: <06711c5b-1ddd-a2dc-ccbe-17098c63bba8@suse.com> (raw)
In-Reply-To: <20201021000011.15351-10-sstabellini@kernel.org>

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



  reply	other threads:[~2020-10-23  9:59 UTC|newest]

Thread overview: 23+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2020-10-21  0:00 [PATCH v2 00/14] kernel-doc: public/arch-arm.h Stefano Stabellini
2020-10-20 23:59 ` [PATCH v2 01/14] " Stefano Stabellini
2020-10-21 17:47   ` Andrew Cooper
2020-10-21 22:17     ` Stefano Stabellini
2020-10-20 23:59 ` [PATCH v2 02/14] kernel-doc: public/hvm/hvm_op.h Stefano Stabellini
2020-10-21  0:00 ` [PATCH v2 03/14] kernel-doc: public/device_tree_defs.h Stefano Stabellini
2020-10-21  0:00 ` [PATCH v2 04/14] kernel-doc: public/event_channel.h Stefano Stabellini
2020-10-21  0:00 ` [PATCH v2 05/14] kernel-doc: public/features.h Stefano Stabellini
2020-10-21  0:00 ` [PATCH v2 06/14] kernel-doc: public/grant_table.h Stefano Stabellini
2020-10-21  0:00 ` [PATCH v2 07/14] kernel-doc: public/hypfs.h Stefano Stabellini
2020-10-21  0:00 ` [PATCH v2 08/14] kernel-doc: public/memory.h Stefano Stabellini
2020-10-21  0:00 ` [PATCH v2 09/14] kernel-doc: public/sched.h Stefano Stabellini
2020-10-21  0:00 ` [PATCH v2 10/14] kernel-doc: public/vcpu.h Stefano Stabellini
2020-10-23  9:59   ` Jan Beulich [this message]
2020-10-21  0:00 ` [PATCH v2 11/14] kernel-doc: public/version.h Stefano Stabellini
2020-10-23 10:02   ` Jan Beulich
2020-10-21  0:00 ` [PATCH v2 12/14] kernel-doc: public/xen.h Stefano Stabellini
2020-10-23 10:08   ` Jan Beulich
2020-10-21  0:00 ` [PATCH v2 13/14] kernel-doc: public/elfnote.h Stefano Stabellini
2020-10-21  0:00 ` [PATCH v2 14/14] kernel-doc: public/hvm/params.h Stefano Stabellini
2020-10-21 17:41 ` [PATCH v2 00/14] kernel-doc: public/arch-arm.h Andrew Cooper
2020-10-21 22:08   ` Stefano Stabellini
2020-10-21 22:19     ` Andrew Cooper

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=06711c5b-1ddd-a2dc-ccbe-17098c63bba8@suse.com \
    --to=jbeulich@suse.com \
    --cc=Bertrand.Marquis@arm.com \
    --cc=andrew.cooper3@citrix.com \
    --cc=george.dunlap@citrix.com \
    --cc=ian.jackson@eu.citrix.com \
    --cc=julien@xen.org \
    --cc=sstabellini@kernel.org \
    --cc=stefano.stabellini@xilinx.com \
    --cc=wl@xen.org \
    --cc=xen-devel@lists.xenproject.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.