Re: [Qemu-devel] [PATCH v5 05/18] qapi: add QMP input visitor

2011-07-12 Thread Michael Roth
On 07/12/2011 08:53 AM, Luiz Capitulino wrote: On Tue, 12 Jul 2011 08:46:13 -0500 Michael Roth wrote: On 07/12/2011 08:16 AM, Luiz Capitulino wrote: On Mon, 11 Jul 2011 19:05:58 -0500 Michael Roth wrote: On 07/07/2011 09:32 AM, Luiz Capitulino wrote: On Tue, 5 Jul 2011 08:02:32 -0500 Mi

Re: [Qemu-devel] [PATCH v5 05/18] qapi: add QMP input visitor

2011-07-12 Thread Luiz Capitulino
On Tue, 12 Jul 2011 08:46:13 -0500 Michael Roth wrote: > On 07/12/2011 08:16 AM, Luiz Capitulino wrote: > > On Mon, 11 Jul 2011 19:05:58 -0500 > > Michael Roth wrote: > > > >> On 07/07/2011 09:32 AM, Luiz Capitulino wrote: > >>> On Tue, 5 Jul 2011 08:02:32 -0500 > >>> Michael Roth wrote: > >>

Re: [Qemu-devel] [PATCH v5 05/18] qapi: add QMP input visitor

2011-07-12 Thread Michael Roth
On 07/12/2011 08:16 AM, Luiz Capitulino wrote: On Mon, 11 Jul 2011 19:05:58 -0500 Michael Roth wrote: On 07/07/2011 09:32 AM, Luiz Capitulino wrote: On Tue, 5 Jul 2011 08:02:32 -0500 Michael Roth wrote: A type of Visiter class that is used to walk a qobject's structure and assign each en

Re: [Qemu-devel] [PATCH v5 05/18] qapi: add QMP input visitor

2011-07-12 Thread Luiz Capitulino
On Mon, 11 Jul 2011 19:05:58 -0500 Michael Roth wrote: > On 07/07/2011 09:32 AM, Luiz Capitulino wrote: > > On Tue, 5 Jul 2011 08:02:32 -0500 > > Michael Roth wrote: > > > >> A type of Visiter class that is used to walk a qobject's > >> structure and assign each entry to the corresponding nativ

Re: [Qemu-devel] [PATCH v5 05/18] qapi: add QMP input visitor

2011-07-11 Thread Michael Roth
On 07/07/2011 09:32 AM, Luiz Capitulino wrote: On Tue, 5 Jul 2011 08:02:32 -0500 Michael Roth wrote: A type of Visiter class that is used to walk a qobject's structure and assign each entry to the corresponding native C type. Command marshaling function will use this to pull out QMP command p

Re: [Qemu-devel] [PATCH v5 05/18] qapi: add QMP input visitor

2011-07-07 Thread Luiz Capitulino
On Tue, 5 Jul 2011 08:02:32 -0500 Michael Roth wrote: > A type of Visiter class that is used to walk a qobject's > structure and assign each entry to the corresponding native C type. > Command marshaling function will use this to pull out QMP command > parameters recieved over the wire and pass

Re: [Qemu-devel] [PATCH v5 05/18] qapi: add QMP input visitor

2011-07-07 Thread Michael Roth
On 07/07/2011 09:32 AM, Luiz Capitulino wrote: On Tue, 5 Jul 2011 08:02:32 -0500 Michael Roth wrote: A type of Visiter class that is used to walk a qobject's structure and assign each entry to the corresponding native C type. Command marshaling function will use this to pull out QMP command p

[Qemu-devel] [PATCH v5 05/18] qapi: add QMP input visitor

2011-07-05 Thread Michael Roth
A type of Visiter class that is used to walk a qobject's structure and assign each entry to the corresponding native C type. Command marshaling function will use this to pull out QMP command parameters recieved over the wire and pass them as native arguments to the corresponding C functions. Signe