projects
/
qemu.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
05db447
)
hw/net: pcnet: Remove the logic of padding short frames in the receive path
author
Bin Meng
<bmeng@tinylab.org>
Sun, 25 Jun 2023 01:53:17 +0000
(09:53 +0800)
committer
Jason Wang
<jasowang@redhat.com>
Fri, 7 Jul 2023 08:35:12 +0000
(16:35 +0800)
Now that we have implemented unified short frames padding in the
QEMU networking codes, remove the same logic in the NIC codes.
Signed-off-by: Bin Meng <bmeng@tinylab.org>
Signed-off-by: Jason Wang <jasowang@redhat.com>
hw/net/pcnet.c
patch
|
blob
|
history
diff --git
a/hw/net/pcnet.c
b/hw/net/pcnet.c
index d456094575438fc5658ddddb367218f7467514ad..02828ae71650cb049322e002ccc831c1814ba29e 100644
(file)
--- a/
hw/net/pcnet.c
+++ b/
hw/net/pcnet.c
@@
-987,7
+987,6
@@
ssize_t pcnet_receive(NetClientState *nc, const uint8_t *buf, size_t size_)
{
PCNetState *s = qemu_get_nic_opaque(nc);
int is_padr = 0, is_bcast = 0, is_ladr = 0;
- uint8_t buf1[60];
int remaining;
int crc_err = 0;
size_t size = size_;
@@
-1000,14
+999,6
@@
ssize_t pcnet_receive(NetClientState *nc, const uint8_t *buf, size_t size_)
printf("pcnet_receive size=%zu\n", size);
#endif
- /* if too small buffer, then expand it */
- if (size < MIN_BUF_SIZE) {
- memcpy(buf1, buf, size);
- memset(buf1 + size, 0, MIN_BUF_SIZE - size);
- buf = buf1;
- size = MIN_BUF_SIZE;
- }
-
if (CSR_PROM(s)
|| (is_padr=padr_match(s, buf, size))
|| (is_bcast=padr_bcast(s, buf, size))