qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
* [PULL 00/13] Miscellaneous patches for 2020-12-10
@ 2020-12-10 16:31 Markus Armbruster
  2020-12-10 16:31 ` [PULL 01/13] Clean up includes Markus Armbruster
                   ` (13 more replies)
  0 siblings, 14 replies; 16+ messages in thread
From: Markus Armbruster @ 2020-12-10 16:31 UTC (permalink / raw)
  To: qemu-devel; +Cc: peter.maydell

The following changes since commit 00ef48ff0de9c3e5834e7e3f6691bbc80d08c114:

  Merge remote-tracking branch 'remotes/kraxel/tags/microvm-20201210-pull-request' into staging (2020-12-10 12:53:01 +0000)

are available in the Git repository at:

  git://repo.or.cz/qemu/armbru.git tags/pull-misc-2020-12-10

for you to fetch changes up to 4eb79bdf87206a223a7ad7a698af519d2ec75c14:

  docs/devel/writing-qmp-commands.txt: Fix docs (2020-12-10 17:16:44 +0100)

----------------------------------------------------------------
Miscellaneous patches for 2020-12-10

----------------------------------------------------------------
Markus Armbruster (12):
      Clean up includes
      qerror: Drop unused QERR_ macros
      qerror: Eliminate QERR_ macros used in just one place
      block: Improve some block-commit, block-stream error messages
      ui: Improve some set_passwd, expire_password error messages
      ui: Improve a client_migrate_info error message
      ui: Tweak a client_migrate_info error message
      qga: Replace an unreachable error by abort()
      qga: Tweak a guest-shutdown error message
      qom: Improve {qom,device}-list-properties error messages
      Tweak a few "Parameter 'NAME' expects THING" error message
      qapi: Normalize version references x.y.0 to just x.y

Zihao Chang (1):
      docs/devel/writing-qmp-commands.txt: Fix docs

 docs/devel/writing-qmp-commands.txt     |  2 +-
 qapi/block-core.json                    | 28 ++++++++++----------
 qapi/block-export.json                  |  6 ++---
 qapi/block.json                         |  2 +-
 qapi/char.json                          |  4 +--
 qapi/control.json                       | 14 +++++-----
 qapi/machine-target.json                | 22 ++++++++--------
 qapi/machine.json                       | 46 ++++++++++++++++-----------------
 qapi/migration.json                     | 16 ++++++------
 qapi/misc-target.json                   |  2 +-
 qapi/misc.json                          | 30 ++++++++++-----------
 qapi/net.json                           |  6 ++---
 qapi/pci.json                           | 12 ++++-----
 qapi/qdev.json                          |  2 +-
 qapi/run-state.json                     | 16 ++++++------
 qapi/ui.json                            | 40 ++++++++++++++--------------
 contrib/vhost-user-gpu/vugbm.h          |  2 --
 contrib/vhost-user-gpu/vugpu.h          |  1 -
 include/hw/block/swim.h                 |  1 -
 include/hw/display/macfb.h              |  1 -
 include/qapi/qmp/qerror.h               | 23 -----------------
 include/qemu/nvdimm-utils.h             |  1 -
 tests/qtest/fuzz/fuzz.h                 |  1 -
 tests/qtest/fuzz/generic_fuzz_configs.h |  1 -
 tools/virtiofsd/fuse_common.h           |  2 --
 tools/virtiofsd/fuse_log.h              |  1 -
 tools/virtiofsd/fuse_lowlevel.h         |  3 ---
 tools/virtiofsd/fuse_misc.h             |  1 -
 tools/virtiofsd/passthrough_seccomp.h   |  1 -
 block/quorum.c                          |  2 +-
 blockdev.c                              | 17 +++++++-----
 chardev/char.c                          |  2 +-
 contrib/vhost-user-gpu/virgl.c          |  1 +
 contrib/vhost-user-gpu/vugbm.c          |  1 +
 contrib/vhost-user-input/main.c         |  1 -
 hw/core/qdev-properties-system.c        |  2 +-
 hw/display/artist.c                     |  1 -
 hw/s390x/s390-pci-vfio.c                |  3 ++-
 monitor/misc.c                          | 12 ++++-----
 monitor/qmp-cmds.c                      | 38 +++++++++++----------------
 net/net.c                               |  2 +-
 qga/commands-win32.c                    |  5 ++--
 qom/qom-qmp-cmds.c                      | 17 +++++-------
 softmmu/qdev-monitor.c                  |  4 +--
 tools/virtiofsd/buffer.c                |  5 ----
 tools/virtiofsd/fuse_log.c              |  2 --
 tools/virtiofsd/fuse_lowlevel.c         | 10 -------
 tools/virtiofsd/fuse_opt.c              |  4 ---
 tools/virtiofsd/fuse_signals.c          |  5 ----
 tools/virtiofsd/fuse_virtio.c           | 10 -------
 tools/virtiofsd/helper.c                |  8 ------
 tools/virtiofsd/passthrough_ll.c        | 12 ---------
 tools/virtiofsd/passthrough_seccomp.c   |  3 ---
 util/nvdimm-utils.c                     |  1 +
 tests/qemu-iotests/040                  | 12 ++++-----
 55 files changed, 180 insertions(+), 287 deletions(-)

-- 
2.26.2



^ permalink raw reply	[flat|nested] 16+ messages in thread

end of thread, other threads:[~2020-12-11  2:13 UTC | newest]

Thread overview: 16+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2020-12-10 16:31 [PULL 00/13] Miscellaneous patches for 2020-12-10 Markus Armbruster
2020-12-10 16:31 ` [PULL 01/13] Clean up includes Markus Armbruster
2020-12-10 16:31 ` [PULL 02/13] qerror: Drop unused QERR_ macros Markus Armbruster
2020-12-10 16:31 ` [PULL 03/13] qerror: Eliminate QERR_ macros used in just one place Markus Armbruster
2020-12-10 16:31 ` [PULL 04/13] block: Improve some block-commit, block-stream error messages Markus Armbruster
2020-12-10 16:31 ` [PULL 05/13] ui: Improve some set_passwd, expire_password " Markus Armbruster
2020-12-10 16:31 ` [PULL 06/13] ui: Improve a client_migrate_info error message Markus Armbruster
2020-12-10 16:31 ` [PULL 07/13] ui: Tweak " Markus Armbruster
2020-12-10 16:31 ` [PULL 08/13] qga: Replace an unreachable error by abort() Markus Armbruster
2020-12-10 16:31 ` [PULL 09/13] qga: Tweak a guest-shutdown error message Markus Armbruster
2020-12-10 16:31 ` [PULL 10/13] qom: Improve {qom, device}-list-properties error messages Markus Armbruster
2020-12-10 16:31 ` [PULL 11/13] Tweak a few "Parameter 'NAME' expects THING" error message Markus Armbruster
2020-12-10 16:31 ` [PULL 12/13] qapi: Normalize version references x.y.0 to just x.y Markus Armbruster
2020-12-10 16:31 ` [PULL 13/13] docs/devel/writing-qmp-commands.txt: Fix docs Markus Armbruster
2020-12-11  2:11   ` Zihao Chang
2020-12-10 19:30 ` [PULL 00/13] Miscellaneous patches for 2020-12-10 Peter Maydell

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).