qemu-devel
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[PULL 00/33] QAPI patches patches for 2020-12-19


From: Markus Armbruster
Subject: [PULL 00/33] QAPI patches patches for 2020-12-19
Date: Sat, 19 Dec 2020 11:54:59 +0100

The following changes since commit a05f8ecd88f15273d033b6f044b850a8af84a5b8:

  Merge remote-tracking branch 
'remotes/alistair/tags/pull-riscv-to-apply-20201217-1' into staging (2020-12-18 
11:12:35 +0000)

are available in the Git repository at:

  git://repo.or.cz/qemu/armbru.git tags/pull-qapi-2020-12-19

for you to fetch changes up to 4ac76ba414ecb94f086d73621775d8b38b6f0a43:

  qobject: Make QString immutable (2020-12-19 10:39:41 +0100)

----------------------------------------------------------------
QAPI patches patches for 2020-12-19

----------------------------------------------------------------
Eric Blake (3):
      rocker: Revamp fp_port_get_info
      migration: Refactor migrate_cap_add
      qapi: Use QAPI_LIST_PREPEND() where possible

Markus Armbruster (30):
      tests/check-qjson: Don't skip funny QNumber to JSON conversions
      tests/check-qjson: Examine QNum more thoroughly
      tests/check-qjson: Cover number 2^63
      tests/check-qjson: Replace redundant large_number()
      tests/check-qnum: Cover qnum_to_string() for "unround" argument
      qobject: Fix qnum_to_string() to use sufficient precision
      test-string-output-visitor: Cover "unround" number
      string-output-visitor: Fix to use sufficient precision
      test-visitor-serialization: Drop insufficient precision workaround
      test-visitor-serialization: Clean up test_primitives()
      hmp: Simplify how qmp_human_monitor_command() gets output
      monitor: Use GString instead of QString for output buffer
      qobject: Make qobject_to_json_pretty() take a pretty argument
      qobject: Use GString instead of QString to accumulate JSON
      qobject: Change qobject_to_json()'s value to GString
      Revert "qstring: add qstring_free()"
      hw/rdma: Replace QList by GQueue
      qobject: Move internals to qobject-internal.h
      qmp: Fix tracing of non-string command IDs
      block: Avoid qobject_get_try_str()
      Revert "qobject: let object_property_get_str() use new API"
      qobject: Drop qobject_get_try_str()
      qobject: Drop qstring_get_try_str()
      qobject: Factor quoted_str() out of to_json()
      qobject: Factor JSON writer out of qobject_to_json()
      migration: Replace migration's JSON writer by the general one
      json: Use GString instead of QString to accumulate strings
      keyval: Use GString to accumulate value strings
      block: Use GString instead of QString to build filenames
      qobject: Make QString immutable

 docs/devel/writing-qmp-commands.txt |  12 +-
 hw/net/rocker/rocker_fp.h           |   2 +-
 hw/rdma/rdma_backend_defs.h         |   2 +-
 hw/rdma/rdma_utils.h                |  15 ++-
 include/migration/vmstate.h         |   7 +-
 include/qapi/qmp/json-writer.h      |  35 +++++
 include/qapi/qmp/qbool.h            |   2 -
 include/qapi/qmp/qdict.h            |   2 -
 include/qapi/qmp/qjson.h            |   4 +-
 include/qapi/qmp/qlist.h            |   2 -
 include/qapi/qmp/qnull.h            |   2 -
 include/qapi/qmp/qnum.h             |   3 -
 include/qapi/qmp/qobject.h          |   9 +-
 include/qapi/qmp/qstring.h          |  14 +-
 include/qemu/typedefs.h             |   4 +-
 migration/qjson.h                   |  29 -----
 monitor/monitor-internal.h          |   2 +-
 qobject/qobject-internal.h          |  39 ++++++
 block.c                             |  23 ++--
 block/gluster.c                     |   4 +-
 block/qapi.c                        |   7 +-
 block/rbd.c                         |   2 +-
 chardev/char.c                      |  20 ++-
 hw/core/machine-qmp-cmds.c          |   6 +-
 hw/core/machine.c                   |  11 +-
 hw/display/virtio-gpu.c             |   2 +-
 hw/intc/s390_flic_kvm.c             |   2 +-
 hw/net/rocker/rocker.c              |   8 +-
 hw/net/rocker/rocker_fp.c           |  17 ++-
 hw/net/rocker/rocker_of_dpa.c       |  20 +--
 hw/net/virtio-net.c                 |  21 +--
 hw/nvram/eeprom93xx.c               |   2 +-
 hw/nvram/fw_cfg.c                   |   2 +-
 hw/pci/msix.c                       |   2 +-
 hw/pci/pci.c                        |   4 +-
 hw/pci/shpc.c                       |   2 +-
 hw/rdma/rdma_backend.c              |  10 +-
 hw/rdma/rdma_utils.c                |  29 +++--
 hw/rtc/twl92230.c                   |   2 +-
 hw/scsi/scsi-bus.c                  |   2 +-
 hw/usb/redirect.c                   |   7 +-
 hw/virtio/virtio.c                  |   4 +-
 migration/migration.c               |  29 ++---
 migration/postcopy-ram.c            |   7 +-
 migration/qjson.c                   | 114 -----------------
 migration/savevm.c                  |  53 ++++----
 migration/vmstate-types.c           |  38 +++---
 migration/vmstate.c                 |  52 ++++----
 monitor/hmp-cmds.c                  |  13 +-
 monitor/misc.c                      |  31 ++---
 monitor/monitor.c                   |  20 ++-
 monitor/qmp-cmds-control.c          |  10 +-
 monitor/qmp.c                       |  46 ++++---
 qapi/string-output-visitor.c        |   2 +-
 qemu-img.c                          |  38 +++---
 qga/commands-posix-ssh.c            |   7 +-
 qga/commands-posix.c                |  47 ++-----
 qga/commands-win32.c                |  32 ++---
 qga/commands.c                      |   6 +-
 qga/main.c                          |  22 +---
 qobject/json-parser.c               |  30 ++---
 qobject/json-writer.c               | 247 ++++++++++++++++++++++++++++++++++++
 qobject/qbool.c                     |   1 +
 qobject/qdict.c                     |   1 +
 qobject/qjson.c                     | 144 +++++----------------
 qobject/qlist.c                     |   1 +
 qobject/qnull.c                     |   1 +
 qobject/qnum.c                      |  28 +---
 qobject/qobject.c                   |   1 +
 qobject/qstring.c                   | 117 +++--------------
 qom/object.c                        |   9 +-
 qom/object_interfaces.c             |   4 +-
 qom/qom-hmp-cmds.c                  |   7 +-
 qom/qom-qmp-cmds.c                  |  29 ++---
 target/alpha/machine.c              |   2 +-
 target/arm/helper.c                 |   6 +-
 target/arm/machine.c                |   6 +-
 target/arm/monitor.c                |  13 +-
 target/avr/machine.c                |   4 +-
 target/hppa/machine.c               |   4 +-
 target/i386/cpu.c                   |   6 +-
 target/microblaze/machine.c         |   2 +-
 target/mips/cpu.c                   |   6 +-
 target/mips/machine.c               |   4 +-
 target/openrisc/machine.c           |   2 +-
 target/ppc/machine.c                |  10 +-
 target/s390x/cpu_models.c           |  12 +-
 target/sparc/machine.c              |   2 +-
 tests/check-qjson.c                 | 195 ++++++++++++++--------------
 tests/check-qnum.c                  |   8 +-
 tests/check-qobject.c               |   3 +-
 tests/check-qstring.c               |  16 ---
 tests/qtest/libqtest.c              |  20 ++-
 tests/test-clone-visitor.c          |   7 +-
 tests/test-qobject-output-visitor.c |  42 +++---
 tests/test-string-output-visitor.c  |   4 +-
 tests/test-visitor-serialization.c  | 181 ++++++++------------------
 trace/qmp.c                         |  22 ++--
 ui/input.c                          |  16 +--
 ui/vnc.c                            |  21 +--
 util/keyval.c                       |  11 +-
 util/qemu-config.c                  |  14 +-
 target/ppc/translate_init.c.inc     |  12 +-
 migration/meson.build               |   1 -
 qobject/meson.build                 |   5 +-
 105 files changed, 975 insertions(+), 1263 deletions(-)
 create mode 100644 include/qapi/qmp/json-writer.h
 delete mode 100644 migration/qjson.h
 create mode 100644 qobject/qobject-internal.h
 delete mode 100644 migration/qjson.c
 create mode 100644 qobject/json-writer.c

-- 
2.26.2




reply via email to

[Prev in Thread] Current Thread [Next in Thread]