Nina Schoetterl-Glausch <[email protected]> writes:
> From: Pierre Morel <[email protected]>
>
> S390x provides two more topology attributes, entitlement and dedication.
>
> Let's add these CPU attributes to the QAPI command query-cpu-fast.
>
> Signed-off-by: Pierre Morel <[email protected]>
> Reviewed-by: Nina Schoetterl-Glausch <[email protected]>
> Co-developed-by: Nina Schoetterl-Glausch <[email protected]>
> Reviewed-by: Thomas Huth <[email protected]>
> Signed-off-by: Nina Schoetterl-Glausch <[email protected]>
> ---
> qapi/machine.json | 9 ++++++++-
> target/s390x/cpu.c | 9 +++++++++
> 2 files changed, 17 insertions(+), 1 deletion(-)
>
> diff --git a/qapi/machine.json b/qapi/machine.json
> index a63cb951d2..be1d70d8cd 100644
> --- a/qapi/machine.json
> +++ b/qapi/machine.json
> @@ -56,10 +56,17 @@
> # Additional information about a virtual S390 CPU
> #
> # @cpu-state: the virtual CPU's state
> +# @dedicated: the virtual CPU's dedication (since 8.2)
> +# @entitlement: the virtual CPU's entitlement (since 8.2)
Blank lines between members, please.
> #
> # Since: 2.12
> ##
> -{ 'struct': 'CpuInfoS390', 'data': { 'cpu-state': 'CpuS390State' } }
> +{ 'struct': 'CpuInfoS390',
> + 'data': { 'cpu-state': 'CpuS390State',
> + '*dedicated': 'bool',
> + '*entitlement': 'CpuS390Entitlement'
> + }
> +}
>
> ##
> # @CpuInfoFast:
[...]