qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
* [Qemu-devel] [PULL 0/8] Net patches
@ 2017-04-24  5:15 Jason Wang
  2017-04-24  5:15 ` [Qemu-devel] [PULL 1/8] colo-compare: Fix old packet check bug Jason Wang
                   ` (8 more replies)
  0 siblings, 9 replies; 15+ messages in thread
From: Jason Wang @ 2017-04-24  5:15 UTC (permalink / raw)
  To: peter.maydell, qemu-devel; +Cc: Jason Wang

The following changes since commit 32c7e0ab755745e961f1772e95cac381cc68769d:

  Merge remote-tracking branch 'remotes/juanquintela/tags/migration/20170421' into staging (2017-04-21 15:59:27 +0100)

are available in the git repository at:

  https://github.com/jasowang/qemu.git tags/net-pull-request

for you to fetch changes up to 049f6d8237dd0b14dee02e4c22b20114c43cecff:

  COLO-compare: Optimize tcp compare trace event (2017-04-24 11:30:36 +0800)

----------------------------------------------------------------

----------------------------------------------------------------
Cédric Le Goater (5):
      hw/net: add MII definitions
      net: add FTGMAC100 support
      net/ftgmac100: add a 'aspeed' property
      aspeed: add a FTGMAC100 nic
      slirp: add a fake NC-SI backend

Zhang Chen (3):
      colo-compare: Fix old packet check bug.
      COLO-compare: Optimize tcp compare for option field
      COLO-compare: Optimize tcp compare trace event

 default-configs/arm-softmmu.mak |    1 +
 hw/arm/aspeed_soc.c             |   21 +
 hw/net/Makefile.objs            |    1 +
 hw/net/ftgmac100.c              | 1016 +++++++++++++++++++++++++++++++++++++++
 include/hw/arm/aspeed_soc.h     |    2 +
 include/hw/net/ftgmac100.h      |   64 +++
 include/hw/net/mii.h            |   71 ++-
 include/net/eth.h               |    1 +
 net/colo-compare.c              |   69 ++-
 net/trace-events                |    3 +-
 slirp/Makefile.objs             |    2 +-
 slirp/ncsi-pkt.h                |  419 ++++++++++++++++
 slirp/ncsi.c                    |  130 +++++
 slirp/slirp.c                   |    4 +
 slirp/slirp.h                   |    3 +
 15 files changed, 1770 insertions(+), 37 deletions(-)
 create mode 100644 hw/net/ftgmac100.c
 create mode 100644 include/hw/net/ftgmac100.h
 create mode 100644 slirp/ncsi-pkt.h
 create mode 100644 slirp/ncsi.c

^ permalink raw reply	[flat|nested] 15+ messages in thread
* [Qemu-devel] [PULL 0/8] Net patches
@ 2017-11-14  2:11 Jason Wang
  2017-11-14 15:23 ` Peter Maydell
  0 siblings, 1 reply; 15+ messages in thread
From: Jason Wang @ 2017-11-14  2:11 UTC (permalink / raw)
  To: qemu-devel, peter.maydell; +Cc: Jason Wang

The following changes since commit 4ffa88c99c54d2a30f79e3dbecec50b023eff1c8:

  Merge remote-tracking branch 'remotes/berrange/tags/pull-qcrypto-2017-11-08-1' into staging (2017-11-10 16:01:35 +0000)

are available in the git repository at:

  https://github.com/jasowang/qemu.git tags/net-pull-request

for you to fetch changes up to bb160b571fe469b03228d4502c75a18045978a74:

  net/socket: fix coverity issue (2017-11-13 18:05:12 +0800)

----------------------------------------------------------------

----------------------------------------------------------------
Jens Freimann (2):
      net: fix check for number of parameters to -netdev socket
      net/socket: fix coverity issue

Mao Zhongyi (4):
      colo-compare: Insert packet into the suitable position of packet queue directly
      colo-compare: compare the packet in a specified Connection
      colo-compare: Fix comments
      colo: Consolidate the duplicate code chunk into a routine

Mike Nawrocki (2):
      Fix eepro100 simple transmission mode
      Add new PCI ID for i82559a

 hw/net/eepro100.c    | 31 +++++++++++++-------------
 include/hw/compat.h  |  4 ++++
 include/hw/pci/pci.h |  1 +
 net/colo-compare.c   | 61 ++++++++++++++++++++++++++++++----------------------
 net/colo.c           | 18 +++++++++-------
 net/colo.h           |  1 +
 net/socket.c         |  6 +++---
 qemu-options.hx      |  2 +-
 8 files changed, 71 insertions(+), 53 deletions(-)

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

end of thread, other threads:[~2017-11-14 15:23 UTC | newest]

Thread overview: 15+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2017-04-24  5:15 [Qemu-devel] [PULL 0/8] Net patches Jason Wang
2017-04-24  5:15 ` [Qemu-devel] [PULL 1/8] colo-compare: Fix old packet check bug Jason Wang
2017-04-24  5:16 ` [Qemu-devel] [PULL 2/8] hw/net: add MII definitions Jason Wang
2017-04-24  5:16 ` [Qemu-devel] [PULL 3/8] net: add FTGMAC100 support Jason Wang
2017-04-24  5:16 ` [Qemu-devel] [PULL 4/8] net/ftgmac100: add a 'aspeed' property Jason Wang
2017-04-24  5:16 ` [Qemu-devel] [PULL 5/8] aspeed: add a FTGMAC100 nic Jason Wang
2017-04-24  5:16 ` [Qemu-devel] [PULL 6/8] slirp: add a fake NC-SI backend Jason Wang
2017-04-24  5:16 ` [Qemu-devel] [PULL 7/8] COLO-compare: Optimize tcp compare for option field Jason Wang
2017-04-24  5:16 ` [Qemu-devel] [PULL 8/8] COLO-compare: Optimize tcp compare trace event Jason Wang
2017-04-24 13:49 ` [Qemu-devel] [PULL 0/8] Net patches Peter Maydell
2017-04-24 16:02   ` Cédric Le Goater
2017-04-25  3:57     ` Jason Wang
2017-04-25  6:18       ` Cédric Le Goater
  -- strict thread matches above, loose matches on Subject: below --
2017-11-14  2:11 Jason Wang
2017-11-14 15:23 ` 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).