qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
From: Markus Armbruster <armbru@redhat.com>
To: qemu-devel@nongnu.org
Subject: [Qemu-devel] [PULL 00/18] Monitor patches for 2019-07-02
Date: Tue,  2 Jul 2019 12:46:58 +0200	[thread overview]
Message-ID: <20190702104716.9140-1-armbru@redhat.com> (raw)

The following changes since commit 7d0e02405fc02a181319b1ab8681d2f72246b7c6:

  Merge remote-tracking branch 'remotes/vivier2/tags/trivial-patches-pull-request' into staging (2019-07-01 17:40:32 +0100)

are available in the Git repository at:

  git://repo.or.cz/qemu/armbru.git tags/pull-monitor-2019-07-02

for you to fetch changes up to f9c54cb9bdb382663c50d264ed992bf6d592e6b0:

  dump: Move HMP command handlers to dump/ (2019-07-02 07:27:22 +0200)

----------------------------------------------------------------
Monitor patches for 2019-07-02

----------------------------------------------------------------
Markus Armbruster (17):
      MAINTAINERS: Make section "QOM" cover qdev as well
      Makefile: Don't add monitor/ twice to common-obj-y
      hmp: Move hmp.h to include/monitor/
      qapi: Split qom.json and qdev.json off misc.json
      qom: Move QMP command handlers to qom/
      qom: Move HMP command handlers to qom/
      MAINTAINERS: Merge sections CPU, NUMA into Machine core
      qapi: Split machine.json off misc.json
      hw/core: Move numa.c to hw/core/
      hw/core: Collect QMP command handlers in hw/core/
      hw/core: Collect HMP command handlers in hw/core/
      qapi: Split machine-target.json off target.json and misc.json
      qapi: Rename target.json to misc-target.json
      qapi: Split dump.json off misc.json
      dump: Move the code to dump/
      MAINTAINERS: Add Windows dump to section "Dump"
      dump: Move HMP command handlers to dump/

Paolo Bonzini (1):
      MAINTAINERS: new maintainers for QOM

 MAINTAINERS                               |   36 +-
 Makefile.objs                             |    2 +-
 Makefile.target                           |    5 +-
 cpus.c                                    |  187 -----
 dump/Makefile.objs                        |    3 +
 dump/dump-hmp-cmds.c                      |   88 ++
 dump.c => dump/dump.c                     |    4 +-
 win_dump.c => dump/win_dump.c             |    0
 win_dump.h => dump/win_dump.h             |    0
 hw/block/xen-block.c                      |    2 +-
 hw/core/Makefile.objs                     |    4 +
 hw/core/machine-hmp-cmds.c                |  164 ++++
 hw/core/machine-qmp-cmds.c                |  328 ++++++++
 numa.c => hw/core/numa.c                  |   64 +-
 hw/core/qdev.c                            |    2 +-
 hw/ppc/spapr_rtc.c                        |    2 +-
 hw/s390x/s390-skeys.c                     |    2 +-
 hw/timer/mc146818rtc.c                    |    4 +-
 include/hw/boards.h                       |    1 +
 hmp.h => include/monitor/hmp.h            |    3 +
 include/sysemu/dump.h                     |    2 +-
 include/sysemu/hostmem.h                  |    2 +-
 include/sysemu/numa.h                     |    2 +
 monitor/hmp-cmds.c                        |  238 +-----
 monitor/misc.c                            |   47 +-
 monitor/qmp-cmds.c                        |  315 +------
 qapi/Makefile.objs                        |    7 +-
 qapi/dump.json                            |  200 +++++
 qapi/{target.json => machine-target.json} |  304 ++-----
 qapi/machine.json                         |  697 +++++++++++++++
 qapi/misc-target.json                     |  268 ++++++
 qapi/misc.json                            | 1304 -----------------------------
 qapi/qapi-schema.json                     |    7 +-
 qapi/qdev.json                            |  125 +++
 qapi/qom.json                             |  244 ++++++
 qdev-monitor.c                            |    2 +-
 qom/Makefile.objs                         |    1 +
 qom/qom-hmp-cmds.c                        |   62 ++
 qom/qom-qmp-cmds.c                        |  323 +++++++
 target/arm/helper.c                       |    2 +-
 target/arm/monitor.c                      |    2 +-
 target/i386/cpu.c                         |    4 +-
 target/i386/monitor.c                     |    2 +-
 target/i386/sev_i386.h                    |    2 +-
 target/mips/helper.c                      |    2 +-
 target/nios2/monitor.c                    |    2 +-
 target/ppc/monitor.c                      |    2 +-
 target/ppc/translate_init.inc.c           |    2 +-
 target/s390x/cpu.c                        |    2 +-
 target/s390x/cpu_models.c                 |    2 +-
 target/s390x/sigp.c                       |    2 +-
 target/sh4/monitor.c                      |    2 +-
 target/sparc/monitor.c                    |    2 +-
 target/xtensa/monitor.c                   |    2 +-
 vl.c                                      |   45 -
 55 files changed, 2636 insertions(+), 2492 deletions(-)
 create mode 100644 dump/Makefile.objs
 create mode 100644 dump/dump-hmp-cmds.c
 rename dump.c => dump/dump.c (99%)
 rename win_dump.c => dump/win_dump.c (100%)
 rename win_dump.h => dump/win_dump.h (100%)
 create mode 100644 hw/core/machine-hmp-cmds.c
 create mode 100644 hw/core/machine-qmp-cmds.c
 rename numa.c => hw/core/numa.c (90%)
 rename hmp.h => include/monitor/hmp.h (98%)
 create mode 100644 qapi/dump.json
 rename qapi/{target.json => machine-target.json} (61%)
 create mode 100644 qapi/machine.json
 create mode 100644 qapi/misc-target.json
 create mode 100644 qapi/qdev.json
 create mode 100644 qapi/qom.json
 create mode 100644 qom/qom-hmp-cmds.c
 create mode 100644 qom/qom-qmp-cmds.c

-- 
2.21.0



             reply	other threads:[~2019-07-02 10:54 UTC|newest]

Thread overview: 21+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2019-07-02 10:46 Markus Armbruster [this message]
2019-07-02 10:46 ` [Qemu-devel] [PULL 01/18] MAINTAINERS: new maintainers for QOM Markus Armbruster
2019-07-02 10:47 ` [Qemu-devel] [PULL 02/18] MAINTAINERS: Make section "QOM" cover qdev as well Markus Armbruster
2019-07-02 10:47 ` [Qemu-devel] [PULL 03/18] Makefile: Don't add monitor/ twice to common-obj-y Markus Armbruster
2019-07-02 10:47 ` [Qemu-devel] [PULL 04/18] hmp: Move hmp.h to include/monitor/ Markus Armbruster
2019-07-02 10:47 ` [Qemu-devel] [PULL 05/18] qapi: Split qom.json and qdev.json off misc.json Markus Armbruster
2019-07-02 10:47 ` [Qemu-devel] [PULL 06/18] qom: Move QMP command handlers to qom/ Markus Armbruster
2019-07-02 10:47 ` [Qemu-devel] [PULL 07/18] qom: Move HMP " Markus Armbruster
2019-07-02 10:47 ` [Qemu-devel] [PULL 08/18] MAINTAINERS: Merge sections CPU, NUMA into Machine core Markus Armbruster
2019-07-02 10:47 ` [Qemu-devel] [PULL 09/18] qapi: Split machine.json off misc.json Markus Armbruster
2019-07-02 10:47 ` [Qemu-devel] [PULL 10/18] hw/core: Move numa.c to hw/core/ Markus Armbruster
2019-07-02 10:47 ` [Qemu-devel] [PULL 11/18] hw/core: Collect QMP command handlers in hw/core/ Markus Armbruster
2019-07-02 10:47 ` [Qemu-devel] [PULL 12/18] hw/core: Collect HMP " Markus Armbruster
2019-07-02 10:47 ` [Qemu-devel] [PULL 13/18] qapi: Split machine-target.json off target.json and misc.json Markus Armbruster
2019-07-02 10:47 ` [Qemu-devel] [PULL 14/18] qapi: Rename target.json to misc-target.json Markus Armbruster
2019-07-02 10:47 ` [Qemu-devel] [PULL 15/18] qapi: Split dump.json off misc.json Markus Armbruster
2019-07-02 10:47 ` [Qemu-devel] [PULL 16/18] dump: Move the code to dump/ Markus Armbruster
2019-07-02 10:47 ` [Qemu-devel] [PULL 17/18] MAINTAINERS: Add Windows dump to section "Dump" Markus Armbruster
2019-07-02 10:47 ` [Qemu-devel] [PULL 18/18] dump: Move HMP command handlers to dump/ Markus Armbruster
2019-07-02 12:24 ` [Qemu-devel] [PULL 00/18] Monitor patches for 2019-07-02 no-reply
2019-07-02 16:03 ` no-reply

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20190702104716.9140-1-armbru@redhat.com \
    --to=armbru@redhat.com \
    --cc=qemu-devel@nongnu.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).