All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH v3 0/7] Common macros for QAPI list growth
@ 2020-12-23 22:10 Eric Blake
  2020-12-23 22:10 ` [PATCH v3 1/7] net: Clarify early exit condition Eric Blake
                   ` (6 more replies)
  0 siblings, 7 replies; 21+ messages in thread
From: Eric Blake @ 2020-12-23 22:10 UTC (permalink / raw)
  To: qemu-devel; +Cc: armbru

I worked on rebasing this while not checking my emails, and now that
I'm writing it up, I see that Markus already has incorporated earlier
patches in the v2 series into his tree.  So I may have to rebase yet
again, but it's at least time for me to get this on list again.

v2 was here:
https://lists.gnu.org/archive/html/qemu-devel/2020-11/msg03457.html

Since then: address review comments, use the name 'tail' in more
places, rebase to master

Eric Blake (7):
  net: Clarify early exit condition
  rocker: Revamp fp_port_get_info
  migration: Refactor migrate_cap_add
  qapi: Use QAPI_LIST_PREPEND() where possible
  qapi: Introduce QAPI_LIST_APPEND
  qapi: Use QAPI_LIST_APPEND in trivial cases
  qapi: More complex uses of QAPI_LIST_APPEND

 docs/devel/writing-qmp-commands.txt |  12 +-
 hw/net/rocker/rocker_fp.h           |   2 +-
 include/qapi/util.h                 |  13 +++
 backends/hostmem.c                  |  10 +-
 block/dirty-bitmap.c                |   8 +-
 block/export/export.c               |   7 +-
 block/gluster.c                     |  17 +--
 block/qapi.c                        |  44 ++-----
 block/qcow2-bitmap.c                |  15 +--
 block/vmdk.c                        |   9 +-
 blockdev.c                          |  13 +--
 chardev/char.c                      |  20 ++--
 crypto/block-luks.c                 |   9 +-
 dump/dump.c                         |  22 +---
 hw/acpi/cpu.c                       |   8 +-
 hw/acpi/memory_hotplug.c            |   9 +-
 hw/core/machine-qmp-cmds.c          | 131 +++++++++------------
 hw/core/machine.c                   |  11 +-
 hw/mem/memory-device.c              |  12 +-
 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/pci/pci.c                        |  60 +++-------
 iothread.c                          |  12 +-
 job-qmp.c                           |  13 +--
 migration/migration.c               |  56 ++++-----
 migration/postcopy-ram.c            |   7 +-
 monitor/hmp-cmds.c                  |  48 ++++----
 monitor/misc.c                      |  25 ++--
 monitor/qmp-cmds-control.c          |  19 ++-
 net/net.c                           |  15 +--
 qemu-img.c                          |  13 +--
 qga/commands-posix-ssh.c            |   7 +-
 qga/commands-posix.c                | 172 +++++++++-------------------
 qga/commands-win32.c                | 131 +++++++--------------
 qga/commands.c                      |   6 +-
 qom/qom-qmp-cmds.c                  |  29 ++---
 scsi/pr-manager.c                   |  10 +-
 softmmu/tpm.c                       |  38 +-----
 target/arm/helper.c                 |   6 +-
 target/arm/monitor.c                |  13 +--
 target/i386/cpu.c                   |  29 ++---
 target/mips/cpu.c                   |   6 +-
 target/s390x/cpu_models.c           |  12 +-
 tests/test-clone-visitor.c          |   7 +-
 tests/test-qobject-output-visitor.c | 126 +++++++-------------
 tests/test-string-output-visitor.c  |   6 +-
 tests/test-visitor-serialization.c  | 113 +++---------------
 trace/qmp.c                         |  22 ++--
 ui/input.c                          |  16 ++-
 ui/spice-core.c                     |  27 ++---
 ui/vnc.c                            |  21 +---
 util/qemu-config.c                  |  14 +--
 target/ppc/translate_init.c.inc     |  12 +-
 55 files changed, 478 insertions(+), 1051 deletions(-)

-- 
2.29.2



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

end of thread, other threads:[~2021-01-13 14:28 UTC | newest]

Thread overview: 21+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2020-12-23 22:10 [PATCH v3 0/7] Common macros for QAPI list growth Eric Blake
2020-12-23 22:10 ` [PATCH v3 1/7] net: Clarify early exit condition Eric Blake
2021-01-13 12:57   ` Markus Armbruster
2020-12-23 22:10 ` [PATCH v3 2/7] rocker: Revamp fp_port_get_info Eric Blake
2021-01-13 12:57   ` Markus Armbruster
2020-12-23 22:10 ` [PATCH v3 3/7] migration: Refactor migrate_cap_add Eric Blake
2021-01-13 12:58   ` Markus Armbruster
2020-12-23 22:10 ` [PATCH v3 4/7] qapi: Use QAPI_LIST_PREPEND() where possible Eric Blake
2021-01-13 13:00   ` Markus Armbruster
2020-12-23 22:11 ` [PATCH v3 5/7] qapi: Introduce QAPI_LIST_APPEND Eric Blake
2020-12-24  6:14   ` Vladimir Sementsov-Ogievskiy
2021-01-13 13:04   ` Markus Armbruster
2021-01-13 14:08     ` Eric Blake
2020-12-23 22:11 ` [PATCH v3 6/7] qapi: Use QAPI_LIST_APPEND in trivial cases Eric Blake
2020-12-24  9:56   ` Vladimir Sementsov-Ogievskiy
2021-01-13 14:10     ` Eric Blake
2021-01-13 13:16   ` Markus Armbruster
2021-01-13 14:11     ` Eric Blake
2020-12-23 22:11 ` [PATCH v3 7/7] qapi: More complex uses of QAPI_LIST_APPEND Eric Blake
2020-12-24 11:35   ` Vladimir Sementsov-Ogievskiy
2021-01-13 13:31   ` Markus Armbruster

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.