diff options
author | Tom Rini <trini@konsulko.com> | 2025-08-01 08:47:50 -0600 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2025-08-01 08:47:50 -0600 |
commit | 231b40724dee2915acfff5e0f5c50feff31cd637 (patch) | |
tree | 6626291977868f30252cc772aa9736fab80b6d8d /drivers/virtio/virtio_net.c | |
parent | f5e968a28e7cdc2c4365f5a382e02f074ee03fac (diff) | |
parent | 5a4bfe38775ad5febf9b9fc58f0432f786a3d5d5 (diff) |
Merge tag 'net-20250801' of https://source.denx.de/u-boot/custodians/u-boot-net
Pull request for net-20250801
net:
- Support overriding Auto Negotiation timeout with env variable
'phy_aneg_timeout'
- Add missing virtqueue_kick() in free_pkt()
- Remove bcm281xx ethernet driver
- Tighten some network driver dependencies in Kconfig
- Add <cpu_func.h> to some platforms
- Fix a debug print in ftgmac100.cA
- Add parentheses around PSEUDO_HDR_SIZE
net-lwip:
- Fix build error with CONFIG_LWIP_DEBUG=y
- Remove eth_init() from net_init() as it is called later
- Simplify net_lwip_eth_start()
net-legacy:
- wget: Fix comparison of unsigned variable
- Incorrect macro used (TCP_0_NOP instead of TCP_1_NOP)
Diffstat (limited to 'drivers/virtio/virtio_net.c')
-rw-r--r-- | drivers/virtio/virtio_net.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/virtio/virtio_net.c b/drivers/virtio/virtio_net.c index 0e5367a085e..71e4d251396 100644 --- a/drivers/virtio/virtio_net.c +++ b/drivers/virtio/virtio_net.c @@ -128,6 +128,7 @@ static int virtio_net_free_pkt(struct udevice *dev, uchar *packet, int length) /* Put the buffer back to the rx ring */ virtqueue_add(priv->rx_vq, sgs, 0, 1); + virtqueue_kick(priv->rx_vq); return 0; } |