mbox

[PULL,V2,00/10] Net patches

Message ID 20230216052424.50926-1-jasowang@redhat.com
State New
Headers show

Pull-request

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

Message

Jason Wang Feb. 16, 2023, 5:24 a.m. UTC
The following changes since commit 6a50f64ca01d0a7b97f14f069762bfd88160f31e:

  Merge tag 'pull-request-2023-02-14' of https://gitlab.com/thuth/qemu into staging (2023-02-14 14:46:10 +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 5e53a346d8bd2bd22522e1e7abd8f122673e4adf:

  vdpa: fix VHOST_BACKEND_F_IOTLB_ASID flag check (2023-02-16 13:17:57 +0800)

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

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 (2):
      hw/net/lan9118: log [read|write]b when mode_16bit is enabled rather than abort
      hw/net/can/xlnx-zynqmp-can: fix assertion failures in transfer_fifo()

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/can/xlnx-zynqmp-can.c |   9 +++-
 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 +++++++++++++++++++++++++++++++++++++++++++
 14 files changed, 280 insertions(+), 62 deletions(-)

Comments

Philippe Mathieu-Daudé Feb. 16, 2023, 7:59 a.m. UTC | #1
Hi Jason,

On 16/2/23 06:24, Jason Wang wrote:
> The following changes since commit 6a50f64ca01d0a7b97f14f069762bfd88160f31e:
> 
>    Merge tag 'pull-request-2023-02-14' of https://gitlab.com/thuth/qemu into staging (2023-02-14 14:46:10 +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 5e53a346d8bd2bd22522e1e7abd8f122673e4adf:
> 
>    vdpa: fix VHOST_BACKEND_F_IOTLB_ASID flag check (2023-02-16 13:17:57 +0800)
> 
> ----------------------------------------------------------------
> 
> 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 (2):
>        hw/net/lan9118: log [read|write]b when mode_16bit is enabled rather than abort
>        hw/net/can/xlnx-zynqmp-can: fix assertion failures in transfer_fifo()

Can you have a look at this comment from v1?
https://lore.kernel.org/qemu-devel/572fcb76-b2f7-20ca-0701-e22dd4e4cb59@linaro.org/
Jason Wang Feb. 17, 2023, 5:25 a.m. UTC | #2
On Thu, Feb 16, 2023 at 4:00 PM Philippe Mathieu-Daudé
<philmd@linaro.org> wrote:
>
> Hi Jason,
>
> On 16/2/23 06:24, Jason Wang wrote:
> > The following changes since commit 6a50f64ca01d0a7b97f14f069762bfd88160f31e:
> >
> >    Merge tag 'pull-request-2023-02-14' of https://gitlab.com/thuth/qemu into staging (2023-02-14 14:46:10 +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 5e53a346d8bd2bd22522e1e7abd8f122673e4adf:
> >
> >    vdpa: fix VHOST_BACKEND_F_IOTLB_ASID flag check (2023-02-16 13:17:57 +0800)
> >
> > ----------------------------------------------------------------
> >
> > 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 (2):
> >        hw/net/lan9118: log [read|write]b when mode_16bit is enabled rather than abort
> >        hw/net/can/xlnx-zynqmp-can: fix assertion failures in transfer_fifo()
>
> Can you have a look at this comment from v1?
> https://lore.kernel.org/qemu-devel/572fcb76-b2f7-20ca-0701-e22dd4e4cb59@linaro.org/

For some reason, I miss this.

I will drop this patch from the pull request now.

Thanks

>