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 41DBD1B127 for ; Wed, 21 Nov 2018 17:50:35 +0100 (CET) Received: from smtp.corp.redhat.com (int-mx06.intmail.prod.int.phx2.redhat.com [10.5.11.16]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by mx1.redhat.com (Postfix) with ESMTPS id A028AC04959E; Wed, 21 Nov 2018 16:50:34 +0000 (UTC) Received: from ktraynor.remote.csb (unknown [10.36.118.7]) by smtp.corp.redhat.com (Postfix) with ESMTP id 9DCA85C221; Wed, 21 Nov 2018 16:50:33 +0000 (UTC) From: Kevin Traynor To: Jerin Jacob Cc: Bernard Iremonger , dpdk stable Date: Wed, 21 Nov 2018 16:47:57 +0000 Message-Id: <20181121164828.32249-43-ktraynor@redhat.com> In-Reply-To: <20181121164828.32249-1-ktraynor@redhat.com> References: <20181121164828.32249-1-ktraynor@redhat.com> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-Scanned-By: MIMEDefang 2.79 on 10.5.11.16 X-Greylist: Sender IP whitelisted, not delayed by milter-greylist-4.5.16 (mx1.redhat.com [10.5.110.31]); Wed, 21 Nov 2018 16:50:34 +0000 (UTC) Subject: [dpdk-stable] patch 'app/testpmd: fix csum parse-tunnel command invocation' 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: Wed, 21 Nov 2018 16:50:35 -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/27/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 765b7d02e51a47fd25fd9de2e3522d25f7a20e55 Mon Sep 17 00:00:00 2001 From: Jerin Jacob Date: Tue, 2 Oct 2018 19:05:47 +0530 Subject: [PATCH] app/testpmd: fix csum parse-tunnel command invocation [ upstream commit 5b48cd159536b70a943ae8246c2f717183818b19 ] Based on the documentation and help print, the sub command for csum suppose to be "parse-tunnel" instead of "parse_tunnel". Fixes: 64fc36064dc3 ("app/testpmd: add csum parse-tunnel command") Signed-off-by: Jerin Jacob Acked-by: Bernard Iremonger --- app/test-pmd/cmdline.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/app/test-pmd/cmdline.c b/app/test-pmd/cmdline.c index 589121d69..7a6fe5d33 100644 --- a/app/test-pmd/cmdline.c +++ b/app/test-pmd/cmdline.c @@ -4280,5 +4280,5 @@ cmdline_parse_token_string_t cmd_csum_tunnel_csum = cmdline_parse_token_string_t cmd_csum_tunnel_parse = TOKEN_STRING_INITIALIZER(struct cmd_csum_tunnel_result, - parse, "parse_tunnel"); + parse, "parse-tunnel"); cmdline_parse_token_string_t cmd_csum_tunnel_onoff = TOKEN_STRING_INITIALIZER(struct cmd_csum_tunnel_result, @@ -4291,5 +4291,5 @@ cmdline_parse_inst_t cmd_csum_tunnel = { .f = cmd_csum_tunnel_parsed, .data = NULL, - .help_str = "csum parse_tunnel on|off : " + .help_str = "csum parse-tunnel on|off : " "Enable/Disable parsing of tunnels for csum engine", .tokens = { -- 2.19.0 --- Diff of the applied patch vs upstream commit (please double-check if non-empty: --- --- - 2018-11-21 16:44:32.122614288 +0000 +++ 0043-app-testpmd-fix-csum-parse-tunnel-command-invocation.patch 2018-11-21 16:44:30.000000000 +0000 @@ -1,13 +1,14 @@ -From 5b48cd159536b70a943ae8246c2f717183818b19 Mon Sep 17 00:00:00 2001 +From 765b7d02e51a47fd25fd9de2e3522d25f7a20e55 Mon Sep 17 00:00:00 2001 From: Jerin Jacob Date: Tue, 2 Oct 2018 19:05:47 +0530 Subject: [PATCH] app/testpmd: fix csum parse-tunnel command invocation +[ upstream commit 5b48cd159536b70a943ae8246c2f717183818b19 ] + Based on the documentation and help print, the sub command for csum suppose to be "parse-tunnel" instead of "parse_tunnel". Fixes: 64fc36064dc3 ("app/testpmd: add csum parse-tunnel command") -Cc: stable@dpdk.org Signed-off-by: Jerin Jacob Acked-by: Bernard Iremonger @@ -16,17 +17,17 @@ 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/app/test-pmd/cmdline.c b/app/test-pmd/cmdline.c -index 0c5399dc4..3376a665c 100644 +index 589121d69..7a6fe5d33 100644 --- a/app/test-pmd/cmdline.c +++ b/app/test-pmd/cmdline.c -@@ -4368,5 +4368,5 @@ cmdline_parse_token_string_t cmd_csum_tunnel_csum = +@@ -4280,5 +4280,5 @@ cmdline_parse_token_string_t cmd_csum_tunnel_csum = cmdline_parse_token_string_t cmd_csum_tunnel_parse = TOKEN_STRING_INITIALIZER(struct cmd_csum_tunnel_result, - parse, "parse_tunnel"); + parse, "parse-tunnel"); cmdline_parse_token_string_t cmd_csum_tunnel_onoff = TOKEN_STRING_INITIALIZER(struct cmd_csum_tunnel_result, -@@ -4379,5 +4379,5 @@ cmdline_parse_inst_t cmd_csum_tunnel = { +@@ -4291,5 +4291,5 @@ cmdline_parse_inst_t cmd_csum_tunnel = { .f = cmd_csum_tunnel_parsed, .data = NULL, - .help_str = "csum parse_tunnel on|off : "