[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: [PATCH] pcie: Support PCIe Gen5/Gen6 link speeds
From: |
Markus Armbruster |
Subject: |
Re: [PATCH] pcie: Support PCIe Gen5/Gen6 link speeds |
Date: |
Wed, 13 Mar 2024 07:41:00 +0100 |
User-agent: |
Gnus/5.13 (Gnus v5.13) |
"Michael S. Tsirkin" <mst@redhat.com> writes:
> On Thu, Feb 15, 2024 at 02:23:26AM +0100, Lukas Stockner wrote:
>> diff --git a/qapi/common.json b/qapi/common.json
>> index f1bb841951..867a9ad9b0 100644
>> --- a/qapi/common.json
>> +++ b/qapi/common.json
>> @@ -107,10 +107,14 @@
>> #
>> # @16: 16.0GT/s
>> #
>> +# @32: 32.0GT/s
>> +#
>> +# @64: 64.0GT/s
>> +#
>> # Since: 4.0
>> ##
>> { 'enum': 'PCIELinkSpeed',
>> - 'data': [ '2_5', '5', '8', '16' ] }
>> + 'data': [ '2_5', '5', '8', '16', '32', '64' ] }
>>
>> ##
>> # @PCIELinkWidth:
>> --
>
>
> I'll merge this but I really don't know how one documents
> that some enum options have been added since some version
> of qemu.
Common style:
#
# @16: 16.0GT/s
#
# @32: 32.0GT/s (since 9.0)
#
# @64: 64.0GT/s (since 9.0)
#
# Since: 4.0
##
Please add that for the merge.