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 CEC991B4FA for ; Fri, 23 Nov 2018 11:29:13 +0100 (CET) Received: from smtp.corp.redhat.com (int-mx04.intmail.prod.int.phx2.redhat.com [10.5.11.14]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by mx1.redhat.com (Postfix) with ESMTPS id 44D013002C89; Fri, 23 Nov 2018 10:29:13 +0000 (UTC) Received: from ktraynor.remote.csb (unknown [10.36.118.7]) by smtp.corp.redhat.com (Postfix) with ESMTP id 76ADC413C; Fri, 23 Nov 2018 10:29:12 +0000 (UTC) From: Kevin Traynor To: Leah Tekoa Cc: dpdk stable Date: Fri, 23 Nov 2018 10:26:24 +0000 Message-Id: <20181123102713.17309-20-ktraynor@redhat.com> In-Reply-To: <20181123102713.17309-1-ktraynor@redhat.com> References: <20181123102713.17309-1-ktraynor@redhat.com> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-Scanned-By: MIMEDefang 2.79 on 10.5.11.14 X-Greylist: Sender IP whitelisted, not delayed by milter-greylist-4.5.16 (mx1.redhat.com [10.5.110.43]); Fri, 23 Nov 2018 10:29:13 +0000 (UTC) Subject: [dpdk-stable] patch 'app/testpmd: fix RED byte stats' 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: Fri, 23 Nov 2018 10:29:14 -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/29/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 51054444b66acd4aec2314f083e2720193f5aedb Mon Sep 17 00:00:00 2001 From: Leah Tekoa Date: Thu, 25 Oct 2018 06:05:14 +0000 Subject: [PATCH] app/testpmd: fix RED byte stats [ upstream commit 930a030d2afbd46b7a446305c9c9ae16a5a3b099 ] Y stands for Yellow, R stands for Red. Fixes: 30ffb4e67ee3 ("app/testpmd: add commands traffic metering and policing") Signed-off-by: Leah Tekoa --- app/test-pmd/cmdline_mtr.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/test-pmd/cmdline_mtr.c b/app/test-pmd/cmdline_mtr.c index 32a47305f..63f32828f 100644 --- a/app/test-pmd/cmdline_mtr.c +++ b/app/test-pmd/cmdline_mtr.c @@ -1441,5 +1441,5 @@ static void cmd_show_port_meter_stats_parsed(void *parsed_result, stats.n_pkts[RTE_MTR_RED]); if (stats_mask & RTE_MTR_STATS_N_BYTES_RED) - printf("\tBytes Y: %" PRIu64 "\n", + printf("\tBytes R: %" PRIu64 "\n", stats.n_bytes[RTE_MTR_RED]); if (stats_mask & RTE_MTR_STATS_N_PKTS_DROPPED) -- 2.19.0 --- Diff of the applied patch vs upstream commit (please double-check if non-empty: --- --- - 2018-11-23 10:22:54.776918009 +0000 +++ 0020-app-testpmd-fix-RED-byte-stats.patch 2018-11-23 10:22:54.000000000 +0000 @@ -1,12 +1,13 @@ -From 930a030d2afbd46b7a446305c9c9ae16a5a3b099 Mon Sep 17 00:00:00 2001 +From 51054444b66acd4aec2314f083e2720193f5aedb Mon Sep 17 00:00:00 2001 From: Leah Tekoa Date: Thu, 25 Oct 2018 06:05:14 +0000 Subject: [PATCH] app/testpmd: fix RED byte stats +[ upstream commit 930a030d2afbd46b7a446305c9c9ae16a5a3b099 ] + Y stands for Yellow, R stands for Red. Fixes: 30ffb4e67ee3 ("app/testpmd: add commands traffic metering and policing") -Cc: stable@dpdk.org Signed-off-by: Leah Tekoa ---