From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mail-wm1-f66.google.com (mail-wm1-f66.google.com [209.85.128.66]) by dpdk.org (Postfix) with ESMTP id 6027C2BC8 for ; Mon, 15 Oct 2018 13:52:26 +0200 (CEST) Received: by mail-wm1-f66.google.com with SMTP id y11-v6so18546287wma.3 for ; Mon, 15 Oct 2018 04:52:26 -0700 (PDT) X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20161025; h=x-gm-message-state:from:to:cc:subject:date:message-id:in-reply-to :references:mime-version:content-transfer-encoding; bh=682M4fidUUC4qyvfMyWox9eSyi1aY7QJASP1G7sLh1k=; b=dRxza9ywYHPbXGqSi622oQG7xkF3mI09dAvuUXI2/oso8GIwysKV2qFK0+oeijTNLJ TPSCZamf0htw4/BUpm3tFThFJA+AwVEoJijT6kgopds9Bu6g4mbWzbscqunSKXHXws4R WJqGSp2vK1e8TKcrhGJB/x0HiHM5BbDVjKHaR6rAksrwsCtPEgN4Pw2AdALkoPLkS/b7 QCXeIt5oF+j/oNGFvNEXBBybOAgPa3nNgsZEAswEtB1pAgWj5pPdzv2gNJfawKZTQXTS wIeOxBt3SQT54W2OrjlOr/SVZuyKOb6xAQ9Fp1tn19wN1+gwyGTMYuPVTv2wYgce2Ykv JwkA== X-Gm-Message-State: ABuFfojqiHIygqW2bHyCvR1XHxPWx5Wl4mT6kcghjb6zbwshf0sk0hOI c988u43BoJU+KpdTdPumkJjlOqxG X-Google-Smtp-Source: ACcGV62HHEjiXd36aCPiwy4BRz3wQ1XWsAFPWNYXvLIRdy+9DFmgl9i4PLUCVe4Zk/7LHi9TbB3jRA== X-Received: by 2002:a1c:b4c1:: with SMTP id d184-v6mr13366281wmf.143.1539604346014; Mon, 15 Oct 2018 04:52:26 -0700 (PDT) Received: from localhost ([2a01:4b00:f419:6f00:8361:8946:ba2b:d556]) by smtp.gmail.com with ESMTPSA id x66-v6sm8693138wme.35.2018.10.15.04.52.24 (version=TLS1_2 cipher=ECDHE-RSA-CHACHA20-POLY1305 bits=256/256); Mon, 15 Oct 2018 04:52:24 -0700 (PDT) From: Luca Boccassi To: Jerin Jacob Cc: Bernard Iremonger , dpdk stable Date: Mon, 15 Oct 2018 12:51:39 +0100 Message-Id: <20181015115144.27626-19-bluca@debian.org> X-Mailer: git-send-email 2.19.1 In-Reply-To: <20181015115144.27626-1-bluca@debian.org> References: <20181003162121.16364-1-bluca@debian.org> <20181015115144.27626-1-bluca@debian.org> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Subject: [dpdk-stable] patch 'app/testpmd: fix csum parse-tunnel command invocation' has been queued to LTS release 16.11.9 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: Mon, 15 Oct 2018 11:52:26 -0000 Hi, FYI, your patch has been queued to LTS release 16.11.9 Note it hasn't been pushed to http://dpdk.org/browse/dpdk-stable yet. It will be pushed if I get no objections before 10/17/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. Luca Boccassi --- >>From a648fad2b0d5ad47e23bba7831892235b0b8474d 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 7dbe2456a5..27e3757330 100644 --- a/app/test-pmd/cmdline.c +++ b/app/test-pmd/cmdline.c @@ -3501,7 +3501,7 @@ cmdline_parse_token_string_t cmd_csum_tunnel_csum = csum, "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, onoff, "on#off"); @@ -3513,7 +3513,7 @@ cmdline_parse_inst_t cmd_csum_tunnel = { .f = cmd_csum_tunnel_parsed, .data = NULL, .help_str = "enable/disable parsing of tunnels for csum engine: " - "csum parse_tunnel on|off ", + "csum parse-tunnel on|off ", .tokens = { (void *)&cmd_csum_tunnel_csum, (void *)&cmd_csum_tunnel_parse, -- 2.19.1 --- Diff of the applied patch vs upstream commit (please double-check if non-empty: --- --- - 2018-10-15 12:48:35.083064102 +0100 +++ 0019-app-testpmd-fix-csum-parse-tunnel-command-invocation.patch 2018-10-15 12:48:34.589096016 +0100 @@ -1,13 +1,14 @@ -From 5b48cd159536b70a943ae8246c2f717183818b19 Mon Sep 17 00:00:00 2001 +From a648fad2b0d5ad47e23bba7831892235b0b8474d 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,10 +17,10 @@ 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/app/test-pmd/cmdline.c b/app/test-pmd/cmdline.c -index 0c5399dc46..3376a665cf 100644 +index 7dbe2456a5..27e3757330 100644 --- a/app/test-pmd/cmdline.c +++ b/app/test-pmd/cmdline.c -@@ -4367,7 +4367,7 @@ cmdline_parse_token_string_t cmd_csum_tunnel_csum = +@@ -3501,7 +3501,7 @@ cmdline_parse_token_string_t cmd_csum_tunnel_csum = csum, "csum"); cmdline_parse_token_string_t cmd_csum_tunnel_parse = TOKEN_STRING_INITIALIZER(struct cmd_csum_tunnel_result, @@ -28,15 +29,15 @@ cmdline_parse_token_string_t cmd_csum_tunnel_onoff = TOKEN_STRING_INITIALIZER(struct cmd_csum_tunnel_result, onoff, "on#off"); -@@ -4378,7 +4378,7 @@ cmdline_parse_token_num_t cmd_csum_tunnel_portid = - cmdline_parse_inst_t cmd_csum_tunnel = { +@@ -3513,7 +3513,7 @@ 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", + .help_str = "enable/disable parsing of tunnels for csum engine: " +- "csum parse_tunnel on|off ", ++ "csum parse-tunnel on|off ", .tokens = { (void *)&cmd_csum_tunnel_csum, + (void *)&cmd_csum_tunnel_parse, -- 2.19.1