[PULL V3 0/9] Net patches

Jason Wang posted 9 patches 1 year, 1 month ago
hw/net/lan9118.c            |  17 ++++----
hw/net/vmxnet3.c            |   2 +-
hw/pci/pci.c                |  29 +------------
include/net/net.h           |  14 ++++++
net/l2tpv3.c                |   2 +-
net/net.c                   |  50 ++++++++++++++++++++--
net/stream.c                |  53 ++++++++++++++++++++++-
net/vhost-vdpa.c            |   2 +-
net/vmnet-common.m          |  48 +++++++++++++++------
net/vmnet_int.h             |   2 +
qapi/net.json               |   7 ++-
qemu-options.hx             |   6 +--
tests/qtest/netdev-socket.c | 101 ++++++++++++++++++++++++++++++++++++++++++++
13 files changed, 272 insertions(+), 61 deletions(-)
[PULL V3 0/9] Net patches
Posted by Jason Wang 1 year, 1 month ago
The following changes since commit 6dffbe36af79e26a4d23f94a9a1c1201de99c261:

  Merge tag 'migration-20230215-pull-request' of https://gitlab.com/juan.quintela/qemu into staging (2023-02-16 13:09:51 +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 525ae115222f0b0b6de7f9665976f640d18c200a:

  vdpa: fix VHOST_BACKEND_F_IOTLB_ASID flag check (2023-02-17 13:31:33 +0800)

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

Changes since V2:
- drop patch hw/net/can/xlnx-zynqmp-can: fix assertion failures in transfer_fifo()

Changes since V1:
- Fix the wrong guest error detection in xlnx-zynqmp-can

----------------------------------------------------------------
Christian Svensson (1):
      net: Increase L2TPv3 buffer to fit jumboframes

Eugenio Pérez (1):
      vdpa: fix VHOST_BACKEND_F_IOTLB_ASID flag check

Fiona Ebner (1):
      hw/net/vmxnet3: allow VMXNET3_MAX_MTU itself as a value

Joelle van Dyne (1):
      vmnet: stop recieving events when VM is stopped

Laurent Vivier (1):
      net: stream: add a new option to automatically reconnect

Qiang Liu (1):
      hw/net/lan9118: log [read|write]b when mode_16bit is enabled rather than abort

Thomas Huth (3):
      net: Move the code to collect available NIC models to a separate function
      net: Restore printing of the help text with "-nic help"
      net: Replace "Supported NIC models" with "Available NIC models"

 hw/net/lan9118.c            |  17 ++++----
 hw/net/vmxnet3.c            |   2 +-
 hw/pci/pci.c                |  29 +------------
 include/net/net.h           |  14 ++++++
 net/l2tpv3.c                |   2 +-
 net/net.c                   |  50 ++++++++++++++++++++--
 net/stream.c                |  53 ++++++++++++++++++++++-
 net/vhost-vdpa.c            |   2 +-
 net/vmnet-common.m          |  48 +++++++++++++++------
 net/vmnet_int.h             |   2 +
 qapi/net.json               |   7 ++-
 qemu-options.hx             |   6 +--
 tests/qtest/netdev-socket.c | 101 ++++++++++++++++++++++++++++++++++++++++++++
 13 files changed, 272 insertions(+), 61 deletions(-)


Re: [PULL V3 0/9] Net patches
Posted by Peter Maydell 1 year, 1 month ago
On Fri, 17 Feb 2023 at 05:43, Jason Wang <jasowang@redhat.com> wrote:
>
> The following changes since commit 6dffbe36af79e26a4d23f94a9a1c1201de99c261:
>
>   Merge tag 'migration-20230215-pull-request' of https://gitlab.com/juan.quintela/qemu into staging (2023-02-16 13:09:51 +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 525ae115222f0b0b6de7f9665976f640d18c200a:
>
>   vdpa: fix VHOST_BACKEND_F_IOTLB_ASID flag check (2023-02-17 13:31:33 +0800)
>
> ----------------------------------------------------------------
>
> Changes since V2:
> - drop patch hw/net/can/xlnx-zynqmp-can: fix assertion failures in transfer_fifo()
>
> Changes since V1:
> - Fix the wrong guest error detection in xlnx-zynqmp-can
>
> ----------------------------------------------------------------


Applied, thanks.

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

-- PMM