yeahuh / rpms / qemu-kvm

Forked from rpms/qemu-kvm 2 years ago
Clone

Blame SOURCES/kvm-net-remove-an-assert-call-in-eth_get_gso_type.patch

6e7d01
From b7de63e72c479df42c324c058a487517210fa069 Mon Sep 17 00:00:00 2001
6e7d01
From: Jon Maloy <jmaloy@redhat.com>
6e7d01
Date: Tue, 13 Apr 2021 19:21:50 -0400
6e7d01
Subject: [PATCH 1/5] net: remove an assert call in eth_get_gso_type
6e7d01
6e7d01
RH-Author: Jon Maloy <jmaloy@redhat.com>
6e7d01
Message-id: <20210413192150.3817133-2-jmaloy@redhat.com>
6e7d01
Patchwork-id: 101469
6e7d01
O-Subject: [RHEL-8.5.0 qemu-kvm PATCH 1/1] net: remove an assert call in eth_get_gso_type
6e7d01
Bugzilla: 1892350
6e7d01
RH-Acked-by: Laszlo Ersek <lersek@redhat.com>
6e7d01
RH-Acked-by: Stefan Hajnoczi <stefanha@redhat.com>
6e7d01
RH-Acked-by: Xiao Wang <jasowang@redhat.com>
6e7d01
6e7d01
From: Prasad J Pandit <pjp@fedoraproject.org>
6e7d01
6e7d01
eth_get_gso_type() routine returns segmentation offload type based on
6e7d01
L3 protocol type. It calls g_assert_not_reached if L3 protocol is
6e7d01
unknown, making the following return statement unreachable. Remove the
6e7d01
g_assert call, it maybe triggered by a guest user.
6e7d01
6e7d01
Reported-by: Gaoning Pan <pgn@zju.edu.cn>
6e7d01
Signed-off-by: Prasad J Pandit <pjp@fedoraproject.org>
6e7d01
Signed-off-by: Jason Wang <jasowang@redhat.com>
6e7d01
6e7d01
(cherry picked from commit 7564bf7701f00214cdc8a678a9f7df765244def1)
6e7d01
Signed-off-by: Jon Maloy <jmaloy@redhat.com>
6e7d01
Signed-off-by: Danilo C. L. de Paula <ddepaula@redhat.com>
6e7d01
---
6e7d01
 net/eth.c | 6 +++---
6e7d01
 1 file changed, 3 insertions(+), 3 deletions(-)
6e7d01
6e7d01
diff --git a/net/eth.c b/net/eth.c
6e7d01
index 0c1d413ee2..1e0821c5f8 100644
6e7d01
--- a/net/eth.c
6e7d01
+++ b/net/eth.c
6e7d01
@@ -16,6 +16,7 @@
6e7d01
  */
6e7d01
 
6e7d01
 #include "qemu/osdep.h"
6e7d01
+#include "qemu/log.h"
6e7d01
 #include "net/eth.h"
6e7d01
 #include "net/checksum.h"
6e7d01
 #include "net/tap.h"
6e7d01
@@ -71,9 +72,8 @@ eth_get_gso_type(uint16_t l3_proto, uint8_t *l3_hdr, uint8_t l4proto)
6e7d01
             return VIRTIO_NET_HDR_GSO_TCPV6 | ecn_state;
6e7d01
         }
6e7d01
     }
6e7d01
-
6e7d01
-    /* Unsupported offload */
6e7d01
-    g_assert_not_reached();
6e7d01
+    qemu_log_mask(LOG_UNIMP, "%s: probably not GSO frame, "
6e7d01
+        "unknown L3 protocol: 0x%04"PRIx16"\n", __func__, l3_proto);
6e7d01
 
6e7d01
     return VIRTIO_NET_HDR_GSO_NONE | ecn_state;
6e7d01
 }
6e7d01
-- 
6e7d01
2.27.0
6e7d01