From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mx1.redhat.com (mx1.redhat.com [209.132.183.28]) by dpdk.org (Postfix) with ESMTP id 62F945681 for ; Tue, 20 Nov 2018 20:15:10 +0100 (CET) Received: from smtp.corp.redhat.com (int-mx01.intmail.prod.int.phx2.redhat.com [10.5.11.11]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by mx1.redhat.com (Postfix) with ESMTPS id C0A2E811D6; Tue, 20 Nov 2018 19:15:09 +0000 (UTC) Received: from ktraynor.remote.csb (unknown [10.36.118.7]) by smtp.corp.redhat.com (Postfix) with ESMTP id A1E87600C3; Tue, 20 Nov 2018 19:15:08 +0000 (UTC) From: Kevin Traynor To: Dekel Peled Cc: Andrew Rybchenko , dpdk stable Date: Tue, 20 Nov 2018 19:12:22 +0000 Message-Id: <20181120191252.30277-32-ktraynor@redhat.com> In-Reply-To: <20181120191252.30277-1-ktraynor@redhat.com> References: <20181120191252.30277-1-ktraynor@redhat.com> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-Scanned-By: MIMEDefang 2.79 on 10.5.11.11 X-Greylist: Sender IP whitelisted, not delayed by milter-greylist-4.5.16 (mx1.redhat.com [10.5.110.27]); Tue, 20 Nov 2018 19:15:09 +0000 (UTC) Subject: [dpdk-stable] patch 'ethdev: fix missing names in Tx offload name array' has been queued to stable release 18.08.1 X-BeenThere: stable@dpdk.org X-Mailman-Version: 2.1.15 Precedence: list List-Id: patches for DPDK stable branches List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 20 Nov 2018 19:15:10 -0000 Hi, FYI, your patch has been queued to stable release 18.08.1 Note it hasn't been pushed to http://dpdk.org/browse/dpdk-stable yet. It will be pushed if I get no objections before 11/23/18. 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. If the code is different (ie: not only metadata diffs), due for example to a change in context or macro names, please double check it. Thanks. Kevin Traynor --- >>From 481e72a9926d41f2cefa7c15f1befd180aa20ed5 Mon Sep 17 00:00:00 2001 From: Dekel Peled Date: Wed, 12 Sep 2018 11:28:02 +0300 Subject: [PATCH] ethdev: fix missing names in Tx offload name array [ upstream commit d9552ee24a9f6805ba3951647c26a21839fadefe ] Patch 5355f443 added two definitions of DEV_TX_OFFLOAD_xxx. If new Tx offload capabilities are defined, they also must be mentioned in rte_tx_offload_names in rte_ethdev.c file. This patch adds the required lines in array rte_tx_offload_names. Fixes: 5355f4439e2e ("ethdev: introduce generic IP/UDP tunnel checksum and TSO") Signed-off-by: Dekel Peled Acked-by: Andrew Rybchenko --- lib/librte_ethdev/rte_ethdev.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/lib/librte_ethdev/rte_ethdev.c b/lib/librte_ethdev/rte_ethdev.c index 850d0c1b5..a43dfc8b7 100644 --- a/lib/librte_ethdev/rte_ethdev.c +++ b/lib/librte_ethdev/rte_ethdev.c @@ -157,4 +157,6 @@ static const struct { RTE_TX_OFFLOAD_BIT2STR(MBUF_FAST_FREE), RTE_TX_OFFLOAD_BIT2STR(SECURITY), + RTE_TX_OFFLOAD_BIT2STR(UDP_TNL_TSO), + RTE_TX_OFFLOAD_BIT2STR(IP_TNL_TSO), }; -- 2.19.0 --- Diff of the applied patch vs upstream commit (please double-check if non-empty: --- --- - 2018-11-20 17:53:08.235611914 +0000 +++ 0032-ethdev-fix-missing-names-in-Tx-offload-name-array.patch 2018-11-20 17:53:07.000000000 +0000 @@ -1,8 +1,10 @@ -From d9552ee24a9f6805ba3951647c26a21839fadefe Mon Sep 17 00:00:00 2001 +From 481e72a9926d41f2cefa7c15f1befd180aa20ed5 Mon Sep 17 00:00:00 2001 From: Dekel Peled Date: Wed, 12 Sep 2018 11:28:02 +0300 Subject: [PATCH] ethdev: fix missing names in Tx offload name array +[ upstream commit d9552ee24a9f6805ba3951647c26a21839fadefe ] + Patch 5355f443 added two definitions of DEV_TX_OFFLOAD_xxx. If new Tx offload capabilities are defined, they also must be mentioned in rte_tx_offload_names in rte_ethdev.c file. @@ -10,7 +12,6 @@ This patch adds the required lines in array rte_tx_offload_names. Fixes: 5355f4439e2e ("ethdev: introduce generic IP/UDP tunnel checksum and TSO") -Cc: stable@dpdk.org Signed-off-by: Dekel Peled Acked-by: Andrew Rybchenko @@ -19,7 +20,7 @@ 1 file changed, 2 insertions(+) diff --git a/lib/librte_ethdev/rte_ethdev.c b/lib/librte_ethdev/rte_ethdev.c -index 3f8de9341..5004b9f7b 100644 +index 850d0c1b5..a43dfc8b7 100644 --- a/lib/librte_ethdev/rte_ethdev.c +++ b/lib/librte_ethdev/rte_ethdev.c @@ -157,4 +157,6 @@ static const struct {