[PULL V2 00/14] Net patches

Jason Wang posted 14 patches 4 years ago
Test docker-mingw@fedora passed
Test docker-quick@centos7 passed
Test checkpatch passed
Test FreeBSD passed
Test asan passed
Patches applied successfully (tree, apply log)
git fetch https://github.com/patchew-project/qemu tags/patchew/1585660899-11228-1-git-send-email-jasowang@redhat.com
Maintainers: Paolo Bonzini <pbonzini@redhat.com>, Alistair Francis <alistair@alistair23.me>, Joel Stanley <joel@jms.id.au>, Peter Maydell <peter.maydell@linaro.org>, Max Filippov <jcmvbkbc@gmail.com>, Richard Henderson <rth@twiddle.net>, "Cédric Le Goater" <clg@kaod.org>, Peter Chubb <peter.chubb@nicta.com.au>, Laurent Vivier <lvivier@redhat.com>, Andrew Jeffery <andrew@aj.id.au>, Zhang Chen <chen.zhang@intel.com>, Dmitry Fleytman <dmitry.fleytman@gmail.com>, "Edgar E. Iglesias" <edgar.iglesias@gmail.com>, Sven Schnelle <svens@stackframe.org>, Thomas Huth <thuth@redhat.com>, David Gibson <david@gibson.dropbear.id.au>, Jason Wang <jasowang@redhat.com>, Li Zhijian <lizhijian@cn.fujitsu.com>, "Michael S. Tsirkin" <mst@redhat.com>, Beniamino Galvani <b.galvani@gmail.com>
There is a newer version of this series
hw/net/allwinner-sun8i-emac.c | 14 +++----
hw/net/allwinner_emac.c       |  2 +-
hw/net/cadence_gem.c          |  8 ++--
hw/net/can/can_sja1000.c      |  8 ++--
hw/net/can/can_sja1000.h      |  2 +-
hw/net/dp8393x.c              |  8 ++--
hw/net/e1000.c                |  2 +-
hw/net/e1000e.c               |  4 +-
hw/net/e1000e_core.c          |  2 +-
hw/net/e1000e_core.h          |  2 +-
hw/net/ftgmac100.c            |  6 +--
hw/net/i82596.c               | 66 ++++++++++++++++++++----------
hw/net/i82596.h               |  2 +-
hw/net/imx_fec.c              |  2 +-
hw/net/opencores_eth.c        |  5 +--
hw/net/rtl8139.c              | 22 +++++-----
hw/net/smc91c111.c            | 10 ++---
hw/net/spapr_llan.c           |  4 +-
hw/net/sungem.c               |  6 +--
hw/net/sunhme.c               |  4 +-
hw/net/tulip.c                | 36 ++++++++++++----
hw/net/virtio-net.c           | 10 ++---
hw/net/xilinx_ethlite.c       |  2 +-
include/net/can_emu.h         |  2 +-
include/net/net.h             |  2 +-
net/can/can_socketcan.c       |  4 +-
net/colo-compare.c            | 95 ++++++++++++++++++++++++++++++++++++++++---
net/filter-buffer.c           |  2 +-
net/hub.c                     |  6 +--
qemu-options.hx               | 10 +++--
tests/qtest/Makefile.include  |  1 +
tests/qtest/tulip-test.c      | 91 +++++++++++++++++++++++++++++++++++++++++
32 files changed, 328 insertions(+), 112 deletions(-)
create mode 100644 tests/qtest/tulip-test.c
[PULL V2 00/14] Net patches
Posted by Jason Wang 4 years ago
The following changes since commit 2a95551e8b1456aa53ce54fac573df18809340a6:

  Merge remote-tracking branch 'remotes/rth/tags/pull-tcg-20200330' into staging (2020-03-31 11:20:21 +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 1153cf9f5b67fad41ca6f8571e9a26e2c7c70759:

  qtest: add tulip test case (2020-03-31 21:14:35 +0800)

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

Changes from V1:

- fix the compiling error
- include qtest for tulip OOB

----------------------------------------------------------------
Andrew Melnychenko (1):
      Fixed integer overflow in e1000e

Li Qiang (1):
      qtest: add tulip test case

Peter Maydell (2):
      hw/net/i82596.c: Avoid reading off end of buffer in i82596_receive()
      hw/net/allwinner-sun8i-emac.c: Fix REG_ADDR_HIGH/LOW reads

Philippe Mathieu-Daudé (7):
      hw/net/i82596: Correct command bitmask (CID 1419392)
      hw/net/e1000e_core: Let e1000e_can_receive() return a boolean
      hw/net/smc91c111: Let smc91c111_can_receive() return a boolean
      hw/net/rtl8139: Simplify if/else statement
      hw/net/rtl8139: Update coding style to make checkpatch.pl happy
      hw/net: Make NetCanReceive() return a boolean
      hw/net/can: Make CanBusClientInfo::can_receive() return a boolean

Prasad J Pandit (1):
      net: tulip: check frame size and r/w data length

Zhang Chen (2):
      net/colo-compare.c: Expose "compare_timeout" to users
      net/colo-compare.c: Expose "expired_scan_cycle" to users

 hw/net/allwinner-sun8i-emac.c | 14 +++----
 hw/net/allwinner_emac.c       |  2 +-
 hw/net/cadence_gem.c          |  8 ++--
 hw/net/can/can_sja1000.c      |  8 ++--
 hw/net/can/can_sja1000.h      |  2 +-
 hw/net/dp8393x.c              |  8 ++--
 hw/net/e1000.c                |  2 +-
 hw/net/e1000e.c               |  4 +-
 hw/net/e1000e_core.c          |  2 +-
 hw/net/e1000e_core.h          |  2 +-
 hw/net/ftgmac100.c            |  6 +--
 hw/net/i82596.c               | 66 ++++++++++++++++++++----------
 hw/net/i82596.h               |  2 +-
 hw/net/imx_fec.c              |  2 +-
 hw/net/opencores_eth.c        |  5 +--
 hw/net/rtl8139.c              | 22 +++++-----
 hw/net/smc91c111.c            | 10 ++---
 hw/net/spapr_llan.c           |  4 +-
 hw/net/sungem.c               |  6 +--
 hw/net/sunhme.c               |  4 +-
 hw/net/tulip.c                | 36 ++++++++++++----
 hw/net/virtio-net.c           | 10 ++---
 hw/net/xilinx_ethlite.c       |  2 +-
 include/net/can_emu.h         |  2 +-
 include/net/net.h             |  2 +-
 net/can/can_socketcan.c       |  4 +-
 net/colo-compare.c            | 95 ++++++++++++++++++++++++++++++++++++++++---
 net/filter-buffer.c           |  2 +-
 net/hub.c                     |  6 +--
 qemu-options.hx               | 10 +++--
 tests/qtest/Makefile.include  |  1 +
 tests/qtest/tulip-test.c      | 91 +++++++++++++++++++++++++++++++++++++++++
 32 files changed, 328 insertions(+), 112 deletions(-)
 create mode 100644 tests/qtest/tulip-test.c


Re: [PULL V2 00/14] Net patches
Posted by Peter Maydell 4 years ago
On Tue, 31 Mar 2020 at 14:21, Jason Wang <jasowang@redhat.com> wrote:
>
> The following changes since commit 2a95551e8b1456aa53ce54fac573df18809340a6:
>
>   Merge remote-tracking branch 'remotes/rth/tags/pull-tcg-20200330' into staging (2020-03-31 11:20:21 +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 1153cf9f5b67fad41ca6f8571e9a26e2c7c70759:
>
>   qtest: add tulip test case (2020-03-31 21:14:35 +0800)
>
> ----------------------------------------------------------------
>
> Changes from V1:
>
> - fix the compiling error
> - include qtest for tulip OOB


Applied, thanks.

Please update the changelog at https://wiki.qemu.org/ChangeLog/5.0
for any user-visible changes.

-- PMM