[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[PATCH v3 04/13] net: tap: Pad short frames to minimum size before send
From: |
Bin Meng |
Subject: |
[PATCH v3 04/13] net: tap: Pad short frames to minimum size before send |
Date: |
Tue, 16 Mar 2021 16:12:45 +0800 |
Do the same for tap backend as what we did for slirp.
Signed-off-by: Bin Meng <bmeng.cn@gmail.com>
---
Changes in v3:
- use the pad_short_frame() helper for tap
net/tap-win32.c | 9 +++++++++
net/tap.c | 9 +++++++++
2 files changed, 18 insertions(+)
diff --git a/net/tap-win32.c b/net/tap-win32.c
index 2b5dcda36e..e044a5ca35 100644
--- a/net/tap-win32.c
+++ b/net/tap-win32.c
@@ -31,6 +31,7 @@
#include "qemu-common.h"
#include "clients.h" /* net_init_tap */
+#include "net/eth.h"
#include "net/net.h"
#include "net/tap.h" /* tap_has_ufo, ... */
#include "qemu/error-report.h"
@@ -688,9 +689,17 @@ static void tap_win32_send(void *opaque)
uint8_t *buf;
int max_size = 4096;
int size;
+ uint8_t min_pkt[ETH_ZLEN];
size = tap_win32_read(s->handle, &buf, max_size);
if (size > 0) {
+ if (!s->nc.peer->do_not_pad) {
+ if (pad_short_frame(min_pkt, buf, size)) {
+ buf = min_pkt;
+ size = ETH_ZLEN;
+ }
+ }
+
qemu_send_packet(&s->nc, buf, size);
tap_win32_free_buffer(s->handle, buf);
}
diff --git a/net/tap.c b/net/tap.c
index b7512853f4..aa69cf1c73 100644
--- a/net/tap.c
+++ b/net/tap.c
@@ -32,6 +32,7 @@
#include <sys/socket.h>
#include <net/if.h>
+#include "net/eth.h"
#include "net/net.h"
#include "clients.h"
#include "monitor/monitor.h"
@@ -189,6 +190,7 @@ static void tap_send(void *opaque)
while (true) {
uint8_t *buf = s->buf;
+ uint8_t min_pkt[ETH_ZLEN];
size = tap_read_packet(s->fd, s->buf, sizeof(s->buf));
if (size <= 0) {
@@ -200,6 +202,13 @@ static void tap_send(void *opaque)
size -= s->host_vnet_hdr_len;
}
+ if (!s->nc.peer->do_not_pad) {
+ if (pad_short_frame(min_pkt, buf, size)) {
+ buf = min_pkt;
+ size = ETH_ZLEN;
+ }
+ }
+
size = qemu_send_packet_async(&s->nc, buf, size, tap_send_completed);
if (size == 0) {
tap_read_poll(s, false);
--
2.17.1
- [PATCH v3 00/13] net: Pad short frames for network backends, Bin Meng, 2021/03/16
- [PATCH v3 01/13] net: eth: Add a helper to pad a short ethernet frame, Bin Meng, 2021/03/16
- [PATCH v3 03/13] net: slirp: Pad short frames to minimum size before send, Bin Meng, 2021/03/16
- [PATCH v3 02/13] net: Add a 'do_not_pad" to NetClientState, Bin Meng, 2021/03/16
- [PATCH v3 04/13] net: tap: Pad short frames to minimum size before send,
Bin Meng <=
- [PATCH v3 05/13] hw/net: virtio-net: Initialize nc->do_not_pad to true, Bin Meng, 2021/03/16
- [PATCH v3 06/13] hw/net: e1000: Remove the logic of padding short frames in the receive path, Bin Meng, 2021/03/16
- [PATCH v3 07/13] hw/net: vmxnet3: Remove the logic of padding short frames in the receive path, Bin Meng, 2021/03/16
- [PATCH v3 08/13] hw/net: i82596: Remove the logic of padding short frames in the receive path, Bin Meng, 2021/03/16
- [PATCH v3 09/13] hw/net: ne2000: Remove the logic of padding short frames in the receive path, Bin Meng, 2021/03/16
- [PATCH v3 10/13] hw/net: pcnet: Remove the logic of padding short frames in the receive path, Bin Meng, 2021/03/16
- [PATCH v3 11/13] hw/net: rtl8139: Remove the logic of padding short frames in the receive path, Bin Meng, 2021/03/16
- [PATCH v3 12/13] hw/net: sungem: Remove the logic of padding short frames in the receive path, Bin Meng, 2021/03/16
- [PATCH v3 13/13] hw/net: sunhme: Remove the logic of padding short frames in the receive path, Bin Meng, 2021/03/16