[libvirt] [PATCH v2 07/12] virsh: Create macros for VSH_OT_ARGV "domain" option

Michal Privoznik mprivozn at redhat.com
Thu May 10 09:17:30 UTC 2018


On 05/08/2018 04:20 PM, Lin Ma wrote:
> Signed-off-by: Lin Ma <lma at suse.com>
> ---
>  tools/virsh.h | 12 ++++++++++++
>  1 file changed, 12 insertions(+)
> 
> diff --git a/tools/virsh.h b/tools/virsh.h
> index b1b641bc41..4353ff46d4 100644
> --- a/tools/virsh.h
> +++ b/tools/virsh.h
> @@ -121,6 +121,18 @@
>  #define VIRSH_COMMON_OPT_DOMAIN_OT_STRING_FULL(cflags) \
>      VIRSH_COMMON_OPT_DOMAIN_OT_STRING(N_("domain name, id or uuid"), cflags)
>  
> +# define VIRSH_COMMON_OPT_DOMAIN_OT_ARGV(_helpstr, cflags) \
> +    {.name = "domain", \
> +     .type = VSH_OT_ARGV, \
> +     .flags = VSH_OFLAG_NONE, \
> +     .help = _helpstr, \
> +     .completer = virshDomainNameCompleter, \> +     .completer_flags = cflags, \
> +    }
> +
> +#define VIRSH_COMMON_OPT_DOMAIN_OT_ARGV_FULL(cflags) \

Again, missing space.

ACK with that fixed.

Michal




More information about the libvir-list mailing list