From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mails.dpdk.org (mails.dpdk.org [217.70.189.124]) by inbox.dpdk.org (Postfix) with ESMTP id 32065A0524 for ; Thu, 4 Feb 2021 12:35:05 +0100 (CET) Received: from [217.70.189.124] (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id 2C0EF24074B; Thu, 4 Feb 2021 12:35:05 +0100 (CET) Received: from youngberry.canonical.com (youngberry.canonical.com [91.189.89.112]) by mails.dpdk.org (Postfix) with ESMTP id C43D124072B for ; Thu, 4 Feb 2021 12:35:03 +0100 (CET) Received: from 2.general.paelzer.uk.vpn ([10.172.196.173] helo=localhost.localdomain) by youngberry.canonical.com with esmtpsa (TLS1.2:ECDHE_RSA_AES_128_GCM_SHA256:128) (Exim 4.86_2) (envelope-from ) id 1l7cud-0005NI-Ji; Thu, 04 Feb 2021 11:35:03 +0000 From: Christian Ehrhardt To: Murphy Yang Cc: Qi Zhang , dpdk stable Date: Thu, 4 Feb 2021 12:28:14 +0100 Message-Id: <20210204112954.2488123-39-christian.ehrhardt@canonical.com> X-Mailer: git-send-email 2.30.0 In-Reply-To: <20210204112954.2488123-1-christian.ehrhardt@canonical.com> References: <20210204112954.2488123-1-christian.ehrhardt@canonical.com> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Subject: [dpdk-stable] patch 'net/ice: disable IPv4 checksum offload in vector Tx' has been queued to stable release 19.11.7 X-BeenThere: stable@dpdk.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: patches for DPDK stable branches List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: stable-bounces@dpdk.org Sender: "stable" Hi, FYI, your patch has been queued to stable release 19.11.7 Note it hasn't been pushed to http://dpdk.org/browse/dpdk-stable yet. It will be pushed if I get no objections before 02/06/21. So please shout if anyone has objections. Also note that after the patch there's a diff of the upstream commit vs the patch applied to the branch. This will indicate if there was any rebasing needed to apply to the stable branch. If there were code changes for rebasing (ie: not only metadata diffs), please double check that the rebase was correctly done. Queued patches are on a temporary branch at: https://github.com/cpaelzer/dpdk-stable-queue This queued commit can be viewed at: https://github.com/cpaelzer/dpdk-stable-queue/commit/9d916364a176ffb68969d01a1b2305a141495e35 Thanks. Christian Ehrhardt --- >From 9d916364a176ffb68969d01a1b2305a141495e35 Mon Sep 17 00:00:00 2001 From: Murphy Yang Date: Fri, 8 Jan 2021 07:17:52 +0000 Subject: [PATCH] net/ice: disable IPv4 checksum offload in vector Tx [ upstream commit 30dc028802b440d6ce223078a1992ba77667af34 ] ICE choices vector TX path or basic TX path by macro 'ICE_NO_VECTOR_FLAGS'. This patch adds 'DEV_TX_OFFLOAD_IPV4_CKSUM' in 'ICE_NO_VECTOR_FLAGS' to make IPv4 checksum offload processed by basic TX path. Fixes: a22483208800 ("net/ice: disable TSO offload in vector path") Signed-off-by: Murphy Yang Acked-by: Qi Zhang --- drivers/net/ice/ice_rxtx_vec_common.h | 1 + 1 file changed, 1 insertion(+) diff --git a/drivers/net/ice/ice_rxtx_vec_common.h b/drivers/net/ice/ice_rxtx_vec_common.h index 46e3be98a6..97e26d2968 100644 --- a/drivers/net/ice/ice_rxtx_vec_common.h +++ b/drivers/net/ice/ice_rxtx_vec_common.h @@ -244,6 +244,7 @@ ice_rx_vec_queue_default(struct ice_rx_queue *rxq) #define ICE_NO_VECTOR_FLAGS ( \ DEV_TX_OFFLOAD_MULTI_SEGS | \ DEV_TX_OFFLOAD_VLAN_INSERT | \ + DEV_TX_OFFLOAD_IPV4_CKSUM | \ DEV_TX_OFFLOAD_SCTP_CKSUM | \ DEV_TX_OFFLOAD_UDP_CKSUM | \ DEV_TX_OFFLOAD_TCP_TSO | \ -- 2.30.0 --- Diff of the applied patch vs upstream commit (please double-check if non-empty: --- --- - 2021-02-04 12:04:29.754455845 +0100 +++ 0039-net-ice-disable-IPv4-checksum-offload-in-vector-Tx.patch 2021-02-04 12:04:27.950789652 +0100 @@ -1 +1 @@ -From 30dc028802b440d6ce223078a1992ba77667af34 Mon Sep 17 00:00:00 2001 +From 9d916364a176ffb68969d01a1b2305a141495e35 Mon Sep 17 00:00:00 2001 @@ -5,0 +6,2 @@ +[ upstream commit 30dc028802b440d6ce223078a1992ba77667af34 ] + @@ -13 +14,0 @@ -Cc: stable@dpdk.org @@ -22 +23 @@ -index ae2ac29f2a..c09ac7f667 100644 +index 46e3be98a6..97e26d2968 100644 @@ -25 +26 @@ -@@ -266,6 +266,7 @@ ice_rx_vec_queue_default(struct ice_rx_queue *rxq) +@@ -244,6 +244,7 @@ ice_rx_vec_queue_default(struct ice_rx_queue *rxq)