Re: [Qemu-devel] [PATCH 4/5] qapi: support nested structs in OptsVisitor

2015-07-03 Thread Kővágó Zoltán
2015-07-02 19:34 keltezéssel, Markus Armbruster írta: "Kővágó, Zoltán" writes: The current OptsVisitor flattens the whole structure, if there are same named fields under different paths the current visitor can't cope with them (it'll just set the first field, leaving the others unspecified (if

Re: [Qemu-devel] [PATCH 4/5] qapi: support nested structs in OptsVisitor

2015-07-02 Thread Markus Armbruster
"Kővágó, Zoltán" writes: > The current OptsVisitor flattens the whole structure, if there are same > named fields under different paths the current visitor can't cope with > them (it'll just set the first field, leaving the others unspecified (if > they're optional) or erroring out (if they're re

[Qemu-devel] [PATCH 4/5] qapi: support nested structs in OptsVisitor

2015-06-23 Thread Kővágó, Zoltán
The current OptsVisitor flattens the whole structure, if there are same named fields under different paths the current visitor can't cope with them (it'll just set the first field, leaving the others unspecified (if they're optional) or erroring out (if they're required). This patch add support fo