|
|
34b321 |
From 9318bd2b84409c6f3810d410c6918fefec072408 Mon Sep 17 00:00:00 2001
|
|
|
34b321 |
From: Vlad Yasevich <vyasevic@redhat.com>
|
|
|
34b321 |
Date: Wed, 16 Dec 2015 02:58:23 +0100
|
|
|
34b321 |
Subject: [PATCH 6/6] rtl8139: Do not consume the packet during overflow in
|
|
|
34b321 |
standard mode.
|
|
|
34b321 |
|
|
|
34b321 |
Message-id: <1450234703-7606-3-git-send-email-vyasevic@redhat.com>
|
|
|
34b321 |
Patchwork-id: 68618
|
|
|
34b321 |
O-Subject: [RHEL7.3 qemu-kvm PATCH 2/2] rtl8139: Do not consume the packet during overflow in standard mode.
|
|
|
34b321 |
Bugzilla: 1252757
|
|
|
34b321 |
RH-Acked-by: Thomas Huth <thuth@redhat.com>
|
|
|
34b321 |
RH-Acked-by: Michael S. Tsirkin <mst@redhat.com>
|
|
|
34b321 |
RH-Acked-by: Xiao Wang <jasowang@redhat.com>
|
|
|
34b321 |
|
|
|
34b321 |
When operation in standard mode, we currently return the size
|
|
|
34b321 |
of packet during buffer overflow. This consumes the overflow
|
|
|
34b321 |
packet. Return 0 instead so we can re-process the overflow packet
|
|
|
34b321 |
when we have room.
|
|
|
34b321 |
|
|
|
34b321 |
This fixes issues with lost/dropped fragments of large messages.
|
|
|
34b321 |
|
|
|
34b321 |
Signed-off-by: Vladislav Yasevich <vyasevic@redhat.com>
|
|
|
34b321 |
Reviewed-by: Jason Wang <jasowang@redhat.com>
|
|
|
34b321 |
Message-id: 1441121206-6997-3-git-send-email-vyasevic@redhat.com
|
|
|
34b321 |
Signed-off-by: Stefan Hajnoczi <stefanha@redhat.com>
|
|
|
34b321 |
(cherry picked from commit 26c4e7ca72d970d120f0f51244bc8d37458512a0)
|
|
|
34b321 |
Signed-off-by: Vladislav Yasevich <vyasevic@redhat.com>
|
|
|
34b321 |
Signed-off-by: Miroslav Rezanina <mrezanin@redhat.com>
|
|
|
34b321 |
---
|
|
|
34b321 |
hw/net/rtl8139.c | 2 +-
|
|
|
34b321 |
1 file changed, 1 insertion(+), 1 deletion(-)
|
|
|
34b321 |
|
|
|
34b321 |
diff --git a/hw/net/rtl8139.c b/hw/net/rtl8139.c
|
|
|
34b321 |
index 6a167df..aa2503d 100644
|
|
|
34b321 |
--- a/hw/net/rtl8139.c
|
|
|
34b321 |
+++ b/hw/net/rtl8139.c
|
|
|
34b321 |
@@ -1148,7 +1148,7 @@ static ssize_t rtl8139_do_receive(NetClientState *nc, const uint8_t *buf, size_t
|
|
|
34b321 |
s->IntrStatus |= RxOverflow;
|
|
|
34b321 |
++s->RxMissed;
|
|
|
34b321 |
rtl8139_update_irq(s);
|
|
|
34b321 |
- return size_;
|
|
|
34b321 |
+ return 0;
|
|
|
34b321 |
}
|
|
|
34b321 |
|
|
|
34b321 |
packet_header |= RxStatusOK;
|
|
|
34b321 |
--
|
|
|
34b321 |
1.8.3.1
|
|
|
34b321 |
|