Re: [Qemu-devel] [PATCH v14 02/19] qapi-visit: Add visitor.type classification

2016-04-15 Thread Markus Armbruster
Eric Blake writes: > On 04/13/2016 07:49 AM, Markus Armbruster wrote: >> Eric Blake writes: >> >>> We have three classes of QAPI visitors: input, output, and dealloc. >>> Currently, all implementations of these visitors have one thing in >>> common based

Re: [Qemu-devel] [PATCH v14 02/19] qapi-visit: Add visitor.type classification

2016-04-13 Thread Eric Blake
On 04/13/2016 07:49 AM, Markus Armbruster wrote: > Eric Blake writes: > >> We have three classes of QAPI visitors: input, output, and dealloc. >> Currently, all implementations of these visitors have one thing in >> common based on their visitor type: the implementation used

Re: [Qemu-devel] [PATCH v14 02/19] qapi-visit: Add visitor.type classification

2016-04-13 Thread Markus Armbruster
Eric Blake writes: > We have three classes of QAPI visitors: input, output, and dealloc. > Currently, all implementations of these visitors have one thing in > common based on their visitor type: the implementation used for the > visit_type_enum() callback. But since we plan

[Qemu-devel] [PATCH v14 02/19] qapi-visit: Add visitor.type classification

2016-04-08 Thread Eric Blake
We have three classes of QAPI visitors: input, output, and dealloc. Currently, all implementations of these visitors have one thing in common based on their visitor type: the implementation used for the visit_type_enum() callback. But since we plan to add more such common behavior, in relation to