Re: [Qemu-devel] [PATCH v2 05/12] monitor: register the qapi generated commands

2016-08-08 Thread Paolo Bonzini
On 05/08/2016 14:42, Markus Armbruster wrote: > marcandre.lur...@redhat.com writes: > >> From: Marc-André Lureau >> >> Stop using the so-called 'middle' mode. Instead, use qmp_find_command() >> from generated qapi commands registry. >> >> Note: this commit requires a 'make clean' prior to make,

Re: [Qemu-devel] [PATCH v2 05/12] monitor: register the qapi generated commands

2016-08-05 Thread Markus Armbruster
marcandre.lur...@redhat.com writes: > From: Marc-André Lureau > > Stop using the so-called 'middle' mode. Instead, use qmp_find_command() > from generated qapi commands registry. > > Note: this commit requires a 'make clean' prior to make, since the > generated files do not depend on Makefile (du

Re: [Qemu-devel] [PATCH v2 05/12] monitor: register the qapi generated commands

2016-07-21 Thread Eric Blake
On 07/21/2016 08:00 AM, marcandre.lur...@redhat.com wrote: > From: Marc-André Lureau > > Stop using the so-called 'middle' mode. Instead, use qmp_find_command() > from generated qapi commands registry. > > Note: this commit requires a 'make clean' prior to make, since the > generated files do no

[Qemu-devel] [PATCH v2 05/12] monitor: register the qapi generated commands

2016-07-21 Thread marcandre . lureau
From: Marc-André Lureau Stop using the so-called 'middle' mode. Instead, use qmp_find_command() from generated qapi commands registry. Note: this commit requires a 'make clean' prior to make, since the generated files do not depend on Makefile (due to a cyclic rule introduced in 4115852bb0). Si