"Michael S. Tsirkin" <m...@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.