All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] app/testpmd: replace Y with R in RED bytes statistics
@ 2018-10-25  6:05 Leah Tekoa
  0 siblings, 0 replies; only message in thread
From: Leah Tekoa @ 2018-10-25  6:05 UTC (permalink / raw)
  To: dev; +Cc: Leah Tekoa, stable

From: Leah Tekoa <Leah@Ethernitynet.com>

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 <Leah@Ethernitynet.com>
---
 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 f908fb3..748515d 100644
--- a/app/test-pmd/cmdline_mtr.c
+++ b/app/test-pmd/cmdline_mtr.c
@@ -1440,7 +1440,7 @@ static void cmd_show_port_meter_stats_parsed(void *parsed_result,
 		printf("\tPkts R: %" PRIu64 "\n",
 			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)
 		printf("\tPkts DROPPED: %" PRIu64 "\n",
-- 
1.8.3.1

^ permalink raw reply related	[flat|nested] only message in thread

only message in thread, other threads:[~2018-10-25  6:05 UTC | newest]

Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2018-10-25  6:05 [PATCH] app/testpmd: replace Y with R in RED bytes statistics Leah Tekoa

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.