qemu-devel
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: [Qemu-devel] [PATCH 2/7] qapi: convert NumaOptions into a flat union


From: Eduardo Habkost
Subject: Re: [Qemu-devel] [PATCH 2/7] qapi: convert NumaOptions into a flat union
Date: Wed, 9 Sep 2015 12:42:07 -0300
User-agent: Mutt/1.5.23 (2014-03-12)

On Mon, Sep 07, 2015 at 02:08:07PM +0200, Kővágó, Zoltán wrote:
[...]
> diff --git a/qapi-schema.json b/qapi-schema.json
> index 67fef37..9e4fe5d 100644
> --- a/qapi-schema.json
> +++ b/qapi-schema.json
> @@ -3550,17 +3550,6 @@
>    'data': { '*console':'int', 'events': [ 'InputEvent' ] } }
>  
>  ##
> -# @NumaOptions
> -#
> -# A discriminated record of NUMA options. (for OptsVisitor)
> -#
> -# Since 2.1
> -##
> -{ 'union': 'NumaOptions',
> -  'data': {
> -    'node': 'NumaNodeOptions' }}
> -
> -##
>  # @NumaNodeOptions
>  #
>  # Create a guest NUMA node. (for OptsVisitor)
> @@ -3587,6 +3576,42 @@
>     '*memdev': 'str' }}
>  
>  ##
> +# @NumaOptionType
> +#
> +# List of possible numa drivers.

There's no such thing as a "numa driver". The type name was fixed but
the documentation still doesn't make sense.

I suggest:

# NUMA command-line option type.
#
# @node: Create a guest NUMA node. See @NumaNodeOptions.

> +#
> +# Since: 2.5
> +##
> +{ 'enum': 'NumaOptionType',
> +  'data': [ 'node' ] }
> +
> +##
> +# @NumaCommonOptions
> +#
> +# Common set of numa options.
> +#
> +# @type: the numa driver to use

Suggestion:

# @type: NUMA command-line option type.

-- 
Eduardo



reply via email to

[Prev in Thread] Current Thread [Next in Thread]