[PULL v2 0/5] Monitor patches for 2020-02-15

Markus Armbruster posted 5 patches 5 years, 9 months ago
Test docker-quick@centos7 passed
Test FreeBSD passed
Test docker-mingw@fedora passed
Test checkpatch passed
Patches applied successfully (tree, apply log)
git fetch https://github.com/patchew-project/qemu tags/patchew/20200217132814.9018-1-armbru@redhat.com
Maintainers: "Dr. David Alan Gilbert" <dgilbert@redhat.com>, Eric Blake <eblake@redhat.com>, Gerd Hoffmann <kraxel@redhat.com>, Paolo Bonzini <pbonzini@redhat.com>, Michael Roth <mdroth@linux.vnet.ibm.com>, Markus Armbruster <armbru@redhat.com>, Laurent Vivier <lvivier@redhat.com>, Thomas Huth <thuth@redhat.com>
qemu-doc.texi              |   9 +-
qapi/control.json          | 218 +++++++++++++++++++++++++++++++++++++++++++++
qapi/misc.json             | 212 -------------------------------------------
qapi/qapi-schema.json      |   1 +
include/monitor/monitor.h  |   3 +
include/sysemu/sysemu.h    |   1 -
monitor/monitor-internal.h |   4 +
monitor/hmp-cmds.c         |   1 +
monitor/misc.c             | 127 +-------------------------
monitor/monitor.c          |  48 ++++++++++
monitor/qmp-cmds-control.c | 169 +++++++++++++++++++++++++++++++++++
monitor/qmp-cmds.c         |  15 +---
monitor/qmp.c              |   2 +-
tests/qtest/qmp-test.c     |   2 +-
ui/gtk.c                   |   1 +
vl.c                       |  45 +---------
monitor/Makefile.objs      |   3 +-
qapi/Makefile.objs         |   6 +-
18 files changed, 460 insertions(+), 407 deletions(-)
create mode 100644 qapi/control.json
create mode 100644 monitor/qmp-cmds-control.c
[PULL v2 0/5] Monitor patches for 2020-02-15
Posted by Markus Armbruster 5 years, 9 months ago
The following changes since commit 9ced5c7c20cb16dff0c2fa3242c3ee96b68cec2a:

  Merge remote-tracking branch 'remotes/armbru/tags/pull-qapi-2020-02-15' into staging (2020-02-16 21:15:26 +0000)

are available in the Git repository at:

  git://repo.or.cz/qemu/armbru.git tags/pull-monitor-2020-02-15-v2

for you to fetch changes up to ec95fcc8bae624e87c7601d2d4baf7c519c3814e:

  qemu-doc: Clarify extent of build platform support (2020-02-17 13:53:47 +0100)

----------------------------------------------------------------
Monitor patches for 2020-02-15

* Refactoring in preparation for qemu-storage-daemon

* A doc clarification that's admittedly not about the monitor
----------------------------------------------------------------
Kevin Wolf (4):
      monitor: Move monitor option parsing to monitor/monitor.c
      qapi: Split control.json off misc.json
      monitor: Collect "control" command handlers in qmp-cmds.control.c
      monitor: Move qmp_query_qmp_schema to qmp-cmds-control.c

Markus Armbruster (1):
      qemu-doc: Clarify extent of build platform support

 qemu-doc.texi              |   9 +-
 qapi/control.json          | 218 +++++++++++++++++++++++++++++++++++++++++++++
 qapi/misc.json             | 212 -------------------------------------------
 qapi/qapi-schema.json      |   1 +
 include/monitor/monitor.h  |   3 +
 include/sysemu/sysemu.h    |   1 -
 monitor/monitor-internal.h |   4 +
 monitor/hmp-cmds.c         |   1 +
 monitor/misc.c             | 127 +-------------------------
 monitor/monitor.c          |  48 ++++++++++
 monitor/qmp-cmds-control.c | 169 +++++++++++++++++++++++++++++++++++
 monitor/qmp-cmds.c         |  15 +---
 monitor/qmp.c              |   2 +-
 tests/qtest/qmp-test.c     |   2 +-
 ui/gtk.c                   |   1 +
 vl.c                       |  45 +---------
 monitor/Makefile.objs      |   3 +-
 qapi/Makefile.objs         |   6 +-
 18 files changed, 460 insertions(+), 407 deletions(-)
 create mode 100644 qapi/control.json
 create mode 100644 monitor/qmp-cmds-control.c

-- 
2.21.1


Re: [PULL v2 0/5] Monitor patches for 2020-02-15
Posted by Peter Maydell 5 years, 8 months ago
On Mon, 17 Feb 2020 at 13:31, Markus Armbruster <armbru@redhat.com> wrote:
>
> The following changes since commit 9ced5c7c20cb16dff0c2fa3242c3ee96b68cec2a:
>
>   Merge remote-tracking branch 'remotes/armbru/tags/pull-qapi-2020-02-15' into staging (2020-02-16 21:15:26 +0000)
>
> are available in the Git repository at:
>
>   git://repo.or.cz/qemu/armbru.git tags/pull-monitor-2020-02-15-v2
>
> for you to fetch changes up to ec95fcc8bae624e87c7601d2d4baf7c519c3814e:
>
>   qemu-doc: Clarify extent of build platform support (2020-02-17 13:53:47 +0100)
>
> ----------------------------------------------------------------
> Monitor patches for 2020-02-15
>
> * Refactoring in preparation for qemu-storage-daemon
>
> * A doc clarification that's admittedly not about the monitor
> ----------------------------------------------------------------
> Kevin Wolf (4):
>       monitor: Move monitor option parsing to monitor/monitor.c
>       qapi: Split control.json off misc.json
>       monitor: Collect "control" command handlers in qmp-cmds.control.c
>       monitor: Move qmp_query_qmp_schema to qmp-cmds-control.c
>
> Markus Armbruster (1):
>       qemu-doc: Clarify extent of build platform support


Applied, thanks.

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

-- PMM