qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
* [PULL 0/6] Net patches
@ 2021-04-08  9:42 Jason Wang
  2021-04-08  9:42 ` [PULL 1/6] Revert "net: Do not fill legacy info_str for backends" Jason Wang
                   ` (6 more replies)
  0 siblings, 7 replies; 12+ messages in thread
From: Jason Wang @ 2021-04-08  9:42 UTC (permalink / raw)
  To: qemu-devel, peter.maydell; +Cc: Jason Wang

The following changes since commit d0d3dd401b70168a353450e031727affee828527:

  Update version for v6.0.0-rc2 release (2021-04-06 18:34:34 +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 21df394d9e2ffce9fa308f496d1ae228cf6cdb57:

  tap-win32: correctly recycle buffers (2021-04-08 17:33:59 +0800)

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

Fixes for rc3:

- query-netdev is reverted (that's why the changeset is huge)
- fix a regression caused by padding for in TAP for win32


----------------------------------------------------------------
Jason Wang (6):
      Revert "net: Do not fill legacy info_str for backends"
      Revert "hmp: Use QAPI NetdevInfo in hmp_info_network"
      Revert "net: Move NetClientState.info_str to dynamic allocations"
      Revert "tests: Add tests for query-netdev command"
      Revert "qapi: net: Add query-netdev command"
      tap-win32: correctly recycle buffers

 hw/net/xen_nic.c                  |   5 +-
 include/net/net.h                 |   5 +-
 include/qapi/hmp-output-visitor.h |  30 ------
 net/l2tpv3.c                      |   8 +-
 net/net.c                         |  73 ++------------
 net/netmap.c                      |   7 --
 net/slirp.c                       | 124 +-----------------------
 net/socket.c                      |  92 +++++-------------
 net/tap-win32.c                   |  16 ++--
 net/tap.c                         | 107 +++------------------
 net/vde.c                         |  25 +----
 net/vhost-user.c                  |  20 +---
 net/vhost-vdpa.c                  |  15 +--
 qapi/hmp-output-visitor.c         | 193 --------------------------------------
 qapi/meson.build                  |   1 -
 qapi/net.json                     |  80 ----------------
 tests/qtest/meson.build           |   3 -
 tests/qtest/test-query-netdev.c   | 120 ------------------------
 18 files changed, 66 insertions(+), 858 deletions(-)
 delete mode 100644 include/qapi/hmp-output-visitor.h
 delete mode 100644 qapi/hmp-output-visitor.c
 delete mode 100644 tests/qtest/test-query-netdev.c




^ permalink raw reply	[flat|nested] 12+ messages in thread
* [PULL 0/6] Net patches
@ 2024-11-25  6:08 Jason Wang
  2024-11-25 11:05 ` Laurent Vivier
  2024-11-25 16:27 ` Peter Maydell
  0 siblings, 2 replies; 12+ messages in thread
From: Jason Wang @ 2024-11-25  6:08 UTC (permalink / raw)
  To: qemu-devel; +Cc: Jason Wang

The following changes since commit 6b99bb046dd36a6dd5525b8f88c2dcddae49222a:

  Merge tag 'pull-lu-20241122' of https://gitlab.com/rth7680/qemu into staging (2024-11-24 13:39:06 +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 7987d2be5a8bc3a502f89ba8cf3ac3e09f64d1ce:

  virtio-net: Copy received header to buffer (2024-11-25 14:00:51 +0800)

----------------------------------------------------------------
-----BEGIN PGP SIGNATURE-----

iQEzBAABCAAdFiEEIV1G9IJGaJ7HfzVi7wSWWzmNYhEFAmdEEtgACgkQ7wSWWzmN
YhH5qAgAlKdcx/gFt4EBXtjVq/qbPluEGOQxvcRYLlN90rPLHPgCjAoT5ly3fIv1
4kCgcVZyG8SdGu1n0TzTTS9kg5tL7weQ9xEWwF0oyyuZABgAB7w/wpC8MHSkJFOn
2Tv+2Iab0dJ+e1pw71OMpE/YR5X2xq5vopsSHRtnyGWfRPGswJFwka+f8FS5DSiq
2CeNxADgTkPxJgDmOrNSsAPz8Rns77FAZdvDMqFjx1Lrqm8kPv9jzwOMO+a/2LpC
t6OkpFzGjiiskPjSnSn/tzo4TfWYoABjJaI7b3vEqmNEJSTAaxltZNtSXZucctEt
1ihnFdjr/wPwGK/5Wu+qGnfDbFNxBw==
=W4y1
-----END PGP SIGNATURE-----

----------------------------------------------------------------
Akihiko Odaki (6):
      net: checksum: Convert data to void *
      virtio-net: Fix size check in dhclient workaround
      virtio-net: Do not check for the queue before RSS
      virtio-net: Fix hash reporting when the queue changes
      virtio-net: Initialize hash reporting values
      virtio-net: Copy received header to buffer

 hw/net/virtio-net.c    | 108 +++++++++++++++++++++++++++----------------------
 include/net/checksum.h |   2 +-
 net/checksum.c         |   4 +-
 3 files changed, 63 insertions(+), 51 deletions(-)



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

end of thread, other threads:[~2024-11-26  2:56 UTC | newest]

Thread overview: 12+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2021-04-08  9:42 [PULL 0/6] Net patches Jason Wang
2021-04-08  9:42 ` [PULL 1/6] Revert "net: Do not fill legacy info_str for backends" Jason Wang
2021-04-08  9:42 ` [PULL 2/6] Revert "hmp: Use QAPI NetdevInfo in hmp_info_network" Jason Wang
2021-04-08  9:42 ` [PULL 3/6] Revert "net: Move NetClientState.info_str to dynamic allocations" Jason Wang
2021-04-08  9:42 ` [PULL 4/6] Revert "tests: Add tests for query-netdev command" Jason Wang
2021-04-08  9:42 ` [PULL 5/6] Revert "qapi: net: Add " Jason Wang
2021-04-08  9:42 ` [PULL 6/6] tap-win32: correctly recycle buffers Jason Wang
2021-04-09 13:21 ` [PULL 0/6] Net patches Peter Maydell
  -- strict thread matches above, loose matches on Subject: below --
2024-11-25  6:08 Jason Wang
2024-11-25 11:05 ` Laurent Vivier
2024-11-26  2:55   ` Jason Wang
2024-11-25 16:27 ` 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).