[Qemu-devel] [PULL 00/11] Monitor patches for 2018-12-12

Markus Armbruster posted 11 patches 5 years, 3 months ago
Test asan passed
Test checkpatch passed
Test docker-mingw@fedora passed
Test docker-quick@centos7 passed
Test docker-clang@ubuntu passed
Patches applied successfully (tree, apply log)
git fetch https://github.com/patchew-project/qemu tags/patchew/20181212101145.3496-1-armbru@redhat.com
chardev/char.c            |  11 ++++
docs/interop/qmp-spec.txt |   5 +-
include/chardev/char.h    |   3 +
include/monitor/monitor.h |   3 +-
monitor.c                 | 139 +++++++++++++++++++++++-----------------------
net/colo-compare.c        |   6 ++
qapi/misc.json            |  40 -------------
tests/libqtest.c          |   9 ++-
tests/libqtest.h          |   4 +-
tests/qmp-test.c          |   6 +-
tests/test-qmp-cmds.c     |  16 ++++++
vl.c                      |   5 --
12 files changed, 118 insertions(+), 129 deletions(-)
[Qemu-devel] [PULL 00/11] Monitor patches for 2018-12-12
Posted by Markus Armbruster 5 years, 3 months ago
The following changes since commit bb9bf94b3e8926553290bc9a7cb84315af422086:

  Merge remote-tracking branch 'remotes/ehabkost/tags/machine-next-pull-request' into staging (2018-12-11 19:18:58 +0000)

are available in the Git repository at:

  git://repo.or.cz/qemu/armbru.git tags/pull-monitor-2018-12-12

for you to fetch changes up to c55f070b7195cee4e06998c10f57f13c7df98dbd:

  tests: add oob functional test for test-qmp-cmds (2018-12-12 10:28:27 +0100)

----------------------------------------------------------------
Monitor patches for 2018-12-12

* Fixes related to running the monitor in an I/O thread
* Change how OOB-enabled QMP monitors handle flow control: suspend
  monitor instead dropping commands
* Offer QMP capability "oob" unconditionally, remove "x-oob"

----------------------------------------------------------------
Marc-André Lureau (7):
      monitor: inline ambiguous helper functions
      monitor: accept chardev input from iothread
      char: add a QEMU_CHAR_FEATURE_GCONTEXT flag
      monitor: check if chardev can switch gcontext for OOB
      colo: check chardev can switch context
      monitor: prevent inserting new monitors after cleanup
      monitor: avoid potential dead-lock when cleaning up

Peter Xu (4):
      monitor: Suspend monitor instead dropping commands
      monitor: Remove "x-oob", offer capability "oob" unconditionally
      Revert "tests: Add parameter to qtest_init_without_qmp_handshake"
      tests: add oob functional test for test-qmp-cmds

 chardev/char.c            |  11 ++++
 docs/interop/qmp-spec.txt |   5 +-
 include/chardev/char.h    |   3 +
 include/monitor/monitor.h |   3 +-
 monitor.c                 | 139 +++++++++++++++++++++++-----------------------
 net/colo-compare.c        |   6 ++
 qapi/misc.json            |  40 -------------
 tests/libqtest.c          |   9 ++-
 tests/libqtest.h          |   4 +-
 tests/qmp-test.c          |   6 +-
 tests/test-qmp-cmds.c     |  16 ++++++
 vl.c                      |   5 --
 12 files changed, 118 insertions(+), 129 deletions(-)

-- 
2.17.2


Re: [Qemu-devel] [PULL 00/11] Monitor patches for 2018-12-12
Posted by Peter Maydell 5 years, 3 months ago
On Wed, 12 Dec 2018 at 10:13, Markus Armbruster <armbru@redhat.com> wrote:
>
> The following changes since commit bb9bf94b3e8926553290bc9a7cb84315af422086:
>
>   Merge remote-tracking branch 'remotes/ehabkost/tags/machine-next-pull-request' into staging (2018-12-11 19:18:58 +0000)
>
> are available in the Git repository at:
>
>   git://repo.or.cz/qemu/armbru.git tags/pull-monitor-2018-12-12
>
> for you to fetch changes up to c55f070b7195cee4e06998c10f57f13c7df98dbd:
>
>   tests: add oob functional test for test-qmp-cmds (2018-12-12 10:28:27 +0100)
>
> ----------------------------------------------------------------
> Monitor patches for 2018-12-12
>
> * Fixes related to running the monitor in an I/O thread
> * Change how OOB-enabled QMP monitors handle flow control: suspend
>   monitor instead dropping commands
> * Offer QMP capability "oob" unconditionally, remove "x-oob"
>

Applied, thanks.

Please update the changelog at https://wiki.qemu.org/ChangeLog/4.0
for any user-visible changes.

-- PMM

Re: [Qemu-devel] [PULL 00/11] Monitor patches for 2018-12-12
Posted by Markus Armbruster 5 years, 3 months ago
Peter Maydell <peter.maydell@linaro.org> writes:

> On Wed, 12 Dec 2018 at 10:13, Markus Armbruster <armbru@redhat.com> wrote:
>>
>> The following changes since commit bb9bf94b3e8926553290bc9a7cb84315af422086:
>>
>>   Merge remote-tracking branch 'remotes/ehabkost/tags/machine-next-pull-request' into staging (2018-12-11 19:18:58 +0000)
>>
>> are available in the Git repository at:
>>
>>   git://repo.or.cz/qemu/armbru.git tags/pull-monitor-2018-12-12
>>
>> for you to fetch changes up to c55f070b7195cee4e06998c10f57f13c7df98dbd:
>>
>>   tests: add oob functional test for test-qmp-cmds (2018-12-12 10:28:27 +0100)
>>
>> ----------------------------------------------------------------
>> Monitor patches for 2018-12-12
>>
>> * Fixes related to running the monitor in an I/O thread
>> * Change how OOB-enabled QMP monitors handle flow control: suspend
>>   monitor instead dropping commands
>> * Offer QMP capability "oob" unconditionally, remove "x-oob"
>>
>
> Applied, thanks.
>
> Please update the changelog at https://wiki.qemu.org/ChangeLog/4.0
> for any user-visible changes.

Done.  Thanks for the reminder!