Re: [PATCH v7 1/4] monitor/hmp: add support for flag argument with value

2021-10-29 Thread Eric Blake
On Thu, Oct 21, 2021 at 12:01:32PM +0200, Stefan Reiter wrote: > Adds support for the "-xV" parameter type, where "-x" denotes a flag > name and the "V" suffix indicates that this flag is supposed to take an > arbitrary string parameter. > > These parameters are always optional, the entry in the q

Re: [PATCH v7 1/4] monitor/hmp: add support for flag argument with value

2021-10-26 Thread Dr. David Alan Gilbert
* Stefan Reiter (s.rei...@proxmox.com) wrote: > Adds support for the "-xV" parameter type, where "-x" denotes a flag > name and the "V" suffix indicates that this flag is supposed to take an > arbitrary string parameter. > > These parameters are always optional, the entry in the qdict will be > om

[PATCH v7 1/4] monitor/hmp: add support for flag argument with value

2021-10-21 Thread Stefan Reiter
Adds support for the "-xV" parameter type, where "-x" denotes a flag name and the "V" suffix indicates that this flag is supposed to take an arbitrary string parameter. These parameters are always optional, the entry in the qdict will be omitted if the flag is not given. Signed-off-by: Stefan Rei