qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
* [Qemu-devel] [PULL 00/19] Net patches
@ 2012-07-23 11:50 Stefan Hajnoczi
  2012-07-23 11:50 ` [Qemu-devel] [PATCH 01/19] MAINTAINERS: Replace net maintainer Mark McLoughlin with Stefan Hajnoczi Stefan Hajnoczi
                   ` (18 more replies)
  0 siblings, 19 replies; 20+ messages in thread
From: Stefan Hajnoczi @ 2012-07-23 11:50 UTC (permalink / raw)
  To: Anthony Liguori; +Cc: qemu-devel, Stefan Hajnoczi

The main piece is Laszlo's OptsVisitor and -net/-netdev parsing conversion.

The following changes since commit 61dc008f3529fa74a63aad1907438dad857e255a:

  Revert "audio: Make PC speaker audio card available by default" (2012-07-19 18:25:52 -0500)

are available in the git repository at:

  git://github.com/stefanha/qemu.git net

for you to fetch changes up to 1a0c09583df097d62b0580f9073ba45c9d18351a:

  remove unused QemuOpts parameter from net init functions (2012-07-23 11:55:18 +0100)

----------------------------------------------------------------
Laszlo Ersek (17):
      qapi: add test case for deallocating traversal of incomplete structure
      qapi: generate C types for fixed-width integers
      qapi: introduce "size" type
      expose QemuOpt and QemuOpts struct definitions to interested parties
      qapi: introduce OptsVisitor
      qapi schema: remove trailing whitespace
      qapi schema: add Netdev types
      hw, net: "net_client_type" -> "NetClientOptionsKind" (qapi-generated)
      convert net_client_init() to OptsVisitor
      convert net_init_nic() to NetClientOptions
      convert net_init_dump() to NetClientOptions
      convert net_init_slirp() to NetClientOptions
      convert net_init_socket() to NetClientOptions
      convert net_init_vde() to NetClientOptions
      convert net_init_tap() to NetClientOptions
      convert net_init_bridge() to NetClientOptions
      remove unused QemuOpts parameter from net init functions

Paolo Bonzini (1):
      qapi: fix error propagation

Stefan Hajnoczi (1):
      MAINTAINERS: Replace net maintainer Mark McLoughlin with Stefan Hajnoczi

 MAINTAINERS                    |    3 +-
 docs/qapi-code-gen.txt         |    2 +
 error.c                        |    3 +-
 error.h                        |    2 +-
 hw/cadence_gem.c               |    2 +-
 hw/dp8393x.c                   |    2 +-
 hw/e1000.c                     |    2 +-
 hw/eepro100.c                  |    2 +-
 hw/etraxfs_eth.c               |    2 +-
 hw/lan9118.c                   |    2 +-
 hw/lance.c                     |    2 +-
 hw/mcf_fec.c                   |    2 +-
 hw/milkymist-minimac2.c        |    2 +-
 hw/mipsnet.c                   |    2 +-
 hw/musicpal.c                  |    2 +-
 hw/ne2000-isa.c                |    2 +-
 hw/ne2000.c                    |    2 +-
 hw/opencores_eth.c             |    2 +-
 hw/pcnet-pci.c                 |    2 +-
 hw/rtl8139.c                   |    2 +-
 hw/smc91c111.c                 |    2 +-
 hw/spapr_llan.c                |    2 +-
 hw/stellaris_enet.c            |    2 +-
 hw/usb/dev-network.c           |    2 +-
 hw/vhost_net.c                 |    2 +-
 hw/virtio-net.c                |   10 +-
 hw/xen_nic.c                   |    2 +-
 hw/xgmac.c                     |    2 +-
 hw/xilinx_axienet.c            |    2 +-
 hw/xilinx_ethlite.c            |    2 +-
 net.c                          |  494 +++++++++++-----------------------------
 net.h                          |   16 +-
 net/dump.c                     |   24 +-
 net/dump.h                     |    5 +-
 net/slirp.c                    |   96 +++-----
 net/slirp.h                    |    4 +-
 net/socket.c                   |  124 ++++------
 net/socket.h                   |    5 +-
 net/tap-aix.c                  |    2 +-
 net/tap-bsd.c                  |    2 +-
 net/tap-haiku.c                |    2 +-
 net/tap-linux.c                |    9 +-
 net/tap-solaris.c              |    2 +-
 net/tap-win32.c                |   14 +-
 net/tap.c                      |  152 ++++++-------
 net/tap.h                      |   10 +-
 net/vde.c                      |   20 +-
 net/vde.h                      |    5 +-
 qapi-schema.json               |  288 ++++++++++++++++++++++-
 qapi/Makefile.objs             |    2 +-
 qapi/opts-visitor.c            |  427 ++++++++++++++++++++++++++++++++++
 qapi/opts-visitor.h            |   31 +++
 qapi/qapi-visit-core.c         |   17 +-
 qapi/qapi-visit-core.h         |    3 +
 qemu-option-internal.h         |   53 +++++
 qemu-option.c                  |   24 +-
 scripts/qapi-visit.py          |  150 +++++++-----
 scripts/qapi.py                |    6 +
 tests/test-qmp-commands.c      |   42 ++++
 tests/test-qmp-input-visitor.c |   24 +-
 60 files changed, 1352 insertions(+), 771 deletions(-)
 create mode 100644 qapi/opts-visitor.c
 create mode 100644 qapi/opts-visitor.h
 create mode 100644 qemu-option-internal.h

-- 
1.7.10.4

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

end of thread, other threads:[~2012-07-23 11:51 UTC | newest]

Thread overview: 20+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2012-07-23 11:50 [Qemu-devel] [PULL 00/19] Net patches Stefan Hajnoczi
2012-07-23 11:50 ` [Qemu-devel] [PATCH 01/19] MAINTAINERS: Replace net maintainer Mark McLoughlin with Stefan Hajnoczi Stefan Hajnoczi
2012-07-23 11:50 ` [Qemu-devel] [PATCH 02/19] qapi: fix error propagation Stefan Hajnoczi
2012-07-23 11:50 ` [Qemu-devel] [PATCH 03/19] qapi: add test case for deallocating traversal of incomplete structure Stefan Hajnoczi
2012-07-23 11:50 ` [Qemu-devel] [PATCH 04/19] qapi: generate C types for fixed-width integers Stefan Hajnoczi
2012-07-23 11:50 ` [Qemu-devel] [PATCH 05/19] qapi: introduce "size" type Stefan Hajnoczi
2012-07-23 11:50 ` [Qemu-devel] [PATCH 06/19] expose QemuOpt and QemuOpts struct definitions to interested parties Stefan Hajnoczi
2012-07-23 11:50 ` [Qemu-devel] [PATCH 07/19] qapi: introduce OptsVisitor Stefan Hajnoczi
2012-07-23 11:50 ` [Qemu-devel] [PATCH 08/19] qapi schema: remove trailing whitespace Stefan Hajnoczi
2012-07-23 11:50 ` [Qemu-devel] [PATCH 09/19] qapi schema: add Netdev types Stefan Hajnoczi
2012-07-23 11:50 ` [Qemu-devel] [PATCH 10/19] hw, net: "net_client_type" -> "NetClientOptionsKind" (qapi-generated) Stefan Hajnoczi
2012-07-23 11:50 ` [Qemu-devel] [PATCH 11/19] convert net_client_init() to OptsVisitor Stefan Hajnoczi
2012-07-23 11:50 ` [Qemu-devel] [PATCH 12/19] convert net_init_nic() to NetClientOptions Stefan Hajnoczi
2012-07-23 11:50 ` [Qemu-devel] [PATCH 13/19] convert net_init_dump() " Stefan Hajnoczi
2012-07-23 11:50 ` [Qemu-devel] [PATCH 14/19] convert net_init_slirp() " Stefan Hajnoczi
2012-07-23 11:50 ` [Qemu-devel] [PATCH 15/19] convert net_init_socket() " Stefan Hajnoczi
2012-07-23 11:50 ` [Qemu-devel] [PATCH 16/19] convert net_init_vde() " Stefan Hajnoczi
2012-07-23 11:50 ` [Qemu-devel] [PATCH 17/19] convert net_init_tap() " Stefan Hajnoczi
2012-07-23 11:50 ` [Qemu-devel] [PATCH 18/19] convert net_init_bridge() " Stefan Hajnoczi
2012-07-23 11:50 ` [Qemu-devel] [PATCH 19/19] remove unused QemuOpts parameter from net init functions Stefan Hajnoczi

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