[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[PATCH v3 05/13] hw/net: virtio-net: Initialize nc->do_not_pad to true
From: |
Bin Meng |
Subject: |
[PATCH v3 05/13] hw/net: virtio-net: Initialize nc->do_not_pad to true |
Date: |
Tue, 16 Mar 2021 16:12:46 +0800 |
For virtio-net, there is no need to pad the Ethernet frame size to
60 bytes before sending to it.
Signed-off-by: Bin Meng <bmeng.cn@gmail.com>
---
(no changes since v1)
hw/net/virtio-net.c | 4 ++++
1 file changed, 4 insertions(+)
diff --git a/hw/net/virtio-net.c b/hw/net/virtio-net.c
index 96a3cc8357..66b9ff4511 100644
--- a/hw/net/virtio-net.c
+++ b/hw/net/virtio-net.c
@@ -3314,6 +3314,10 @@ static void virtio_net_device_realize(DeviceState *dev,
Error **errp)
object_get_typename(OBJECT(dev)), dev->id, n);
}
+ for (i = 0; i < n->max_queues; i++) {
+ n->nic->ncs[i].do_not_pad = true;
+ }
+
peer_test_vnet_hdr(n);
if (peer_has_vnet_hdr(n)) {
for (i = 0; i < n->max_queues; i++) {
--
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, 2021/03/16
- [PATCH v3 05/13] hw/net: virtio-net: Initialize nc->do_not_pad to true,
Bin Meng <=
- [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