[Qemu-devel] [PATCH 1/6] qapi: add support for command options

2012-05-08 Thread Luiz Capitulino
Options allow for changes in commands behavior. This commit introduces the QCO_NO_SUCCESS_RESP option, which causes a command to not emit a success response. This is needed by commands such as qemu-ga's guest-shutdown, which may not be able to complete before the VM vanishes. In this case, it's us

Re: [Qemu-devel] [PATCH 1/6] qapi: add support for command options

2012-05-08 Thread Luiz Capitulino
On Mon, 7 May 2012 11:05:36 -0500 Michael Roth wrote: > On Fri, May 04, 2012 at 05:20:17PM -0300, Luiz Capitulino wrote: > > Options allow for changes in commands behavior. This commit introduces > > the QCO_NO_SUCCESS_RESP option, which causes a command to not emit a > > success response. > > >

Re: [Qemu-devel] [PATCH 1/6] qapi: add support for command options

2012-05-07 Thread Michael Roth
On Fri, May 04, 2012 at 05:20:17PM -0300, Luiz Capitulino wrote: > Options allow for changes in commands behavior. This commit introduces > the QCO_NO_SUCCESS_RESP option, which causes a command to not emit a > success response. > > This is needed by commands such as qemu-ga's guest-shutdown, whic

[Qemu-devel] [PATCH 1/6] qapi: add support for command options

2012-05-04 Thread Luiz Capitulino
Options allow for changes in commands behavior. This commit introduces the QCO_NO_SUCCESS_RESP option, which causes a command to not emit a success response. This is needed by commands such as qemu-ga's guest-shutdown, which may not be able to complete before the VM vanishes. In this case, it's us