qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
From: "Kővágó, Zoltán" <dirty.ice.hu@gmail.com>
To: qemu-devel@nongnu.org
Cc: Markus Armbruster <armbru@redhat.com>,
	Stefan Hajnoczi <stefanha@redhat.com>,
	Eduardo Habkost <ehabkost@redhat.com>
Subject: [Qemu-devel] [PATCH 0/5] qapi flattening + some miscellaneous patches
Date: Tue, 23 Jun 2015 15:32:56 +0200	[thread overview]
Message-ID: <cover.1435064848.git.DirtY.iCE.hu@gmail.com> (raw)

I've cherry-picked the qapi related parts from my previous -audiodev
patch series, we can hopefully concentrate on one thing at a time.  The
most important changes in this patch series are the flattening of the
Netdev structures.  This way we can add proper nested structure support
into OptsVisitor, without requiring backward-compatibility hacks.

These patches are essentially same as the patches in v3 -audiodev
option, except that I updated it to master (and fixed the conflicts due
to error handling related changes).

Please review.

Kővágó, Zoltán (5):
  qapi: support implicit structs in OptsVisitor
  qapi: convert NumaOptions into a flat union
  qapi: change Netdev and NetLegacy into a flat union
  qapi: support nested structs in OptsVisitor
  opts: produce valid command line in qemu_opts_print

 block.c                                 |   2 +-
 hw/arm/musicpal.c                       |   2 +-
 hw/core/qdev-properties-system.c        |   2 +-
 hw/net/allwinner_emac.c                 |   2 +-
 hw/net/cadence_gem.c                    |   2 +-
 hw/net/dp8393x.c                        |   2 +-
 hw/net/e1000.c                          |   2 +-
 hw/net/eepro100.c                       |   2 +-
 hw/net/etraxfs_eth.c                    |   2 +-
 hw/net/fsl_etsec/etsec.c                |   2 +-
 hw/net/lan9118.c                        |   2 +-
 hw/net/lance.c                          |   2 +-
 hw/net/mcf_fec.c                        |   2 +-
 hw/net/milkymist-minimac2.c             |   2 +-
 hw/net/mipsnet.c                        |   2 +-
 hw/net/ne2000-isa.c                     |   2 +-
 hw/net/ne2000.c                         |   2 +-
 hw/net/opencores_eth.c                  |   2 +-
 hw/net/pcnet-pci.c                      |   2 +-
 hw/net/rocker/rocker_fp.c               |   2 +-
 hw/net/rtl8139.c                        |   2 +-
 hw/net/smc91c111.c                      |   2 +-
 hw/net/spapr_llan.c                     |   2 +-
 hw/net/stellaris_enet.c                 |   2 +-
 hw/net/vhost_net.c                      |  18 ++--
 hw/net/virtio-net.c                     |   6 +-
 hw/net/vmxnet3.c                        |   2 +-
 hw/net/xen_nic.c                        |   2 +-
 hw/net/xgmac.c                          |   2 +-
 hw/net/xilinx_axienet.c                 |   2 +-
 hw/net/xilinx_ethlite.c                 |   2 +-
 hw/usb/dev-network.c                    |   2 +-
 include/net/net.h                       |   4 +-
 monitor.c                               |  14 +--
 net/clients.h                           |  20 ++---
 net/dump.c                              |   9 +-
 net/hub.c                               |  24 +++--
 net/l2tpv3.c                            |   9 +-
 net/net.c                               | 110 +++++++++++------------
 net/netmap.c                            |   6 +-
 net/slirp.c                             |   9 +-
 net/socket.c                            |  11 +--
 net/tap-win32.c                         |   9 +-
 net/tap.c                               |  29 +++---
 net/vde.c                               |   9 +-
 net/vhost-user.c                        |  15 ++--
 numa.c                                  |   2 +-
 qapi-schema.json                        | 150 +++++++++++++++++++++++---------
 qapi/opts-visitor.c                     | 129 ++++++++++++++++++++++-----
 tests/qapi-schema/qapi-schema-test.json |   9 +-
 tests/test-opts-visitor.c               |  34 ++++++++
 util/qemu-option.c                      |  47 +++++++++-
 52 files changed, 471 insertions(+), 262 deletions(-)

-- 
2.4.3

             reply	other threads:[~2015-06-23 13:33 UTC|newest]

Thread overview: 19+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2015-06-23 13:32 Kővágó, Zoltán [this message]
2015-06-23 13:32 ` [Qemu-devel] [PATCH 1/5] qapi: support implicit structs in OptsVisitor Kővágó, Zoltán
2015-06-23 13:32 ` [Qemu-devel] [PATCH 2/5] qapi: convert NumaOptions into a flat union Kővágó, Zoltán
2015-07-02 17:25   ` Markus Armbruster
2015-06-23 13:32 ` [Qemu-devel] [PATCH 3/5] qapi: change Netdev and NetLegacy " Kővágó, Zoltán
2015-07-02 17:17   ` Markus Armbruster
2015-06-23 13:33 ` [Qemu-devel] [PATCH 4/5] qapi: support nested structs in OptsVisitor Kővágó, Zoltán
2015-07-02 17:34   ` Markus Armbruster
2015-07-03 11:10     ` Kővágó Zoltán
2015-06-23 13:33 ` [Qemu-devel] [PATCH 5/5] opts: produce valid command line in qemu_opts_print Kővágó, Zoltán
2015-07-02 17:58   ` Markus Armbruster
2015-06-25  6:16 ` [Qemu-devel] [PATCH 0/5] qapi flattening + some miscellaneous patches Gerd Hoffmann
2015-06-25  7:57   ` Markus Armbruster
2015-06-25  8:53     ` Thomas Huth
2015-06-25 14:01     ` Gerd Hoffmann
2015-07-02 18:00   ` Markus Armbruster
2015-07-03  7:00     ` Gerd Hoffmann
2015-07-03  9:09       ` Markus Armbruster
2015-07-03 10:04         ` Markus Armbruster

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=cover.1435064848.git.DirtY.iCE.hu@gmail.com \
    --to=dirty.ice.hu@gmail.com \
    --cc=armbru@redhat.com \
    --cc=ehabkost@redhat.com \
    --cc=qemu-devel@nongnu.org \
    --cc=stefanha@redhat.com \
    /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).