DPDK patches and discussions
 help / color / mirror / Atom feed
* [PATCH] app/testpmd: fix forwarding stats for Tx dropped
@ 2023-01-31 11:56 Ferruh Yigit
  2023-02-01  1:14 ` lihuisong (C)
  2023-02-07 10:10 ` Singh, Aman Deep
  0 siblings, 2 replies; 4+ messages in thread
From: Ferruh Yigit @ 2023-01-31 11:56 UTC (permalink / raw)
  To: Aman Singh, Yuying Zhang, David Marchand, Ferruh Yigit, Maxime Coquelin
  Cc: dev, stable, Joshua Washington

There is an inconsistency at displaying Tx dropped value for per port
forwarding stats and accumulated forwarding stats.

While displaying per port TX-dropped value, it only takes
'ports_stats[pt_id].tx_dropped' into account,
but for accumulated TX-dropped results it takes both
'ports_stats[pt_id].tx_dropped' & 'stats.oerrors' into account.

To fix, make both per port and accumulated stats display 'tx_dropped'
and 'stats.oerrors' (ports_stats[pt_id].tx_dropped + stats.oerrors).

Fixes: 53324971a14e ("app/testpmd: display/clear forwarding stats on demand")
Cc: stable@dpdk.org

Reported-by: Joshua Washington <joshwash@google.com>
Signed-off-by: Ferruh Yigit <ferruh.yigit@amd.com>
---

Cc: david.marchand@redhat.com

Mail list reference:
https://inbox.dpdk.org/dev/a440ab60-9624-f21e-396a-239bdf2aa1a1@amd.com/
---
 app/test-pmd/testpmd.c | 11 +++++++----
 1 file changed, 7 insertions(+), 4 deletions(-)

diff --git a/app/test-pmd/testpmd.c b/app/test-pmd/testpmd.c
index 60eb9579ded1..6f4749b8af0c 100644
--- a/app/test-pmd/testpmd.c
+++ b/app/test-pmd/testpmd.c
@@ -2057,6 +2057,8 @@ fwd_stats_display(void)
 			fwd_cycles += fs->core_cycles;
 	}
 	for (i = 0; i < cur_fwd_config.nb_fwd_ports; i++) {
+		uint64_t tx_dropped = 0;
+
 		pt_id = fwd_ports_ids[i];
 		port = &ports[pt_id];
 
@@ -2078,8 +2080,9 @@ fwd_stats_display(void)
 		total_recv += stats.ipackets;
 		total_xmit += stats.opackets;
 		total_rx_dropped += stats.imissed;
-		total_tx_dropped += ports_stats[pt_id].tx_dropped;
-		total_tx_dropped += stats.oerrors;
+		tx_dropped += ports_stats[pt_id].tx_dropped;
+		tx_dropped += stats.oerrors;
+		total_tx_dropped += tx_dropped;
 		total_rx_nombuf  += stats.rx_nombuf;
 
 		printf("\n  %s Forward statistics for port %-2d %s\n",
@@ -2106,8 +2109,8 @@ fwd_stats_display(void)
 
 		printf("  TX-packets: %-14"PRIu64" TX-dropped: %-14"PRIu64
 		       "TX-total: %-"PRIu64"\n",
-		       stats.opackets, ports_stats[pt_id].tx_dropped,
-		       stats.opackets + ports_stats[pt_id].tx_dropped);
+		       stats.opackets, tx_dropped,
+		       stats.opackets + tx_dropped);
 
 		if (record_burst_stats) {
 			if (ports_stats[pt_id].rx_stream)
-- 
2.25.1


^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: [PATCH] app/testpmd: fix forwarding stats for Tx dropped
  2023-01-31 11:56 [PATCH] app/testpmd: fix forwarding stats for Tx dropped Ferruh Yigit
@ 2023-02-01  1:14 ` lihuisong (C)
  2023-02-07 10:10 ` Singh, Aman Deep
  1 sibling, 0 replies; 4+ messages in thread
From: lihuisong (C) @ 2023-02-01  1:14 UTC (permalink / raw)
  To: Ferruh Yigit, Aman Singh, Yuying Zhang, David Marchand,
	Ferruh Yigit, Maxime Coquelin
  Cc: dev, stable, Joshua Washington

Maybe many PMDs do not support oerrors statistics, which cause this 
problem isn't found.

LGTM
Acked-by: Huisong Li <lihuisong@huawei.com>

在 2023/1/31 19:56, Ferruh Yigit 写道:
> There is an inconsistency at displaying Tx dropped value for per port
> forwarding stats and accumulated forwarding stats.
>
> While displaying per port TX-dropped value, it only takes
> 'ports_stats[pt_id].tx_dropped' into account,
> but for accumulated TX-dropped results it takes both
> 'ports_stats[pt_id].tx_dropped' & 'stats.oerrors' into account.
>
> To fix, make both per port and accumulated stats display 'tx_dropped'
> and 'stats.oerrors' (ports_stats[pt_id].tx_dropped + stats.oerrors).
>
> Fixes: 53324971a14e ("app/testpmd: display/clear forwarding stats on demand")
> Cc: stable@dpdk.org
>
> Reported-by: Joshua Washington <joshwash@google.com>
> Signed-off-by: Ferruh Yigit <ferruh.yigit@amd.com>
> ---
>
> Cc: david.marchand@redhat.com
>
> Mail list reference:
> https://inbox.dpdk.org/dev/a440ab60-9624-f21e-396a-239bdf2aa1a1@amd.com/
> ---
>   app/test-pmd/testpmd.c | 11 +++++++----
>   1 file changed, 7 insertions(+), 4 deletions(-)
>
> diff --git a/app/test-pmd/testpmd.c b/app/test-pmd/testpmd.c
> index 60eb9579ded1..6f4749b8af0c 100644
> --- a/app/test-pmd/testpmd.c
> +++ b/app/test-pmd/testpmd.c
> @@ -2057,6 +2057,8 @@ fwd_stats_display(void)
>   			fwd_cycles += fs->core_cycles;
>   	}
>   	for (i = 0; i < cur_fwd_config.nb_fwd_ports; i++) {
> +		uint64_t tx_dropped = 0;
> +
>   		pt_id = fwd_ports_ids[i];
>   		port = &ports[pt_id];
>   
> @@ -2078,8 +2080,9 @@ fwd_stats_display(void)
>   		total_recv += stats.ipackets;
>   		total_xmit += stats.opackets;
>   		total_rx_dropped += stats.imissed;
> -		total_tx_dropped += ports_stats[pt_id].tx_dropped;
> -		total_tx_dropped += stats.oerrors;
> +		tx_dropped += ports_stats[pt_id].tx_dropped;
> +		tx_dropped += stats.oerrors;
> +		total_tx_dropped += tx_dropped;
>   		total_rx_nombuf  += stats.rx_nombuf;
>   
>   		printf("\n  %s Forward statistics for port %-2d %s\n",
> @@ -2106,8 +2109,8 @@ fwd_stats_display(void)
>   
>   		printf("  TX-packets: %-14"PRIu64" TX-dropped: %-14"PRIu64
>   		       "TX-total: %-"PRIu64"\n",
> -		       stats.opackets, ports_stats[pt_id].tx_dropped,
> -		       stats.opackets + ports_stats[pt_id].tx_dropped);
> +		       stats.opackets, tx_dropped,
> +		       stats.opackets + tx_dropped);
>   
>   		if (record_burst_stats) {
>   			if (ports_stats[pt_id].rx_stream)

^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: [PATCH] app/testpmd: fix forwarding stats for Tx dropped
  2023-01-31 11:56 [PATCH] app/testpmd: fix forwarding stats for Tx dropped Ferruh Yigit
  2023-02-01  1:14 ` lihuisong (C)
@ 2023-02-07 10:10 ` Singh, Aman Deep
  2023-02-08  2:07   ` Ferruh Yigit
  1 sibling, 1 reply; 4+ messages in thread
From: Singh, Aman Deep @ 2023-02-07 10:10 UTC (permalink / raw)
  To: Ferruh Yigit, Yuying Zhang, David Marchand, Ferruh Yigit,
	Maxime Coquelin
  Cc: dev, stable, Joshua Washington


On 1/31/2023 5:26 PM, Ferruh Yigit wrote:
> There is an inconsistency at displaying Tx dropped value for per port
> forwarding stats and accumulated forwarding stats.
>
> While displaying per port TX-dropped value, it only takes
> 'ports_stats[pt_id].tx_dropped' into account,
> but for accumulated TX-dropped results it takes both
> 'ports_stats[pt_id].tx_dropped' & 'stats.oerrors' into account.
>
> To fix, make both per port and accumulated stats display 'tx_dropped'
> and 'stats.oerrors' (ports_stats[pt_id].tx_dropped + stats.oerrors).
>
> Fixes: 53324971a14e ("app/testpmd: display/clear forwarding stats on demand")
> Cc: stable@dpdk.org
>
> Reported-by: Joshua Washington <joshwash@google.com>
> Signed-off-by: Ferruh Yigit <ferruh.yigit@amd.com>

Acked-by: Aman Singh <aman.deep.singh@intel.com>

> ---
>
> Cc: david.marchand@redhat.com
>
> Mail list reference:
> https://inbox.dpdk.org/dev/a440ab60-9624-f21e-396a-239bdf2aa1a1@amd.com/
> ---

<snip>


^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: [PATCH] app/testpmd: fix forwarding stats for Tx dropped
  2023-02-07 10:10 ` Singh, Aman Deep
@ 2023-02-08  2:07   ` Ferruh Yigit
  0 siblings, 0 replies; 4+ messages in thread
From: Ferruh Yigit @ 2023-02-08  2:07 UTC (permalink / raw)
  To: Singh, Aman Deep, Yuying Zhang, David Marchand, Ferruh Yigit,
	Maxime Coquelin, lihuisong (C)
  Cc: dev, stable, Joshua Washington

On 2/7/2023 10:10 AM, Singh, Aman Deep wrote:
> 
> On 1/31/2023 5:26 PM, Ferruh Yigit wrote:
>> There is an inconsistency at displaying Tx dropped value for per port
>> forwarding stats and accumulated forwarding stats.
>>
>> While displaying per port TX-dropped value, it only takes
>> 'ports_stats[pt_id].tx_dropped' into account,
>> but for accumulated TX-dropped results it takes both
>> 'ports_stats[pt_id].tx_dropped' & 'stats.oerrors' into account.
>>
>> To fix, make both per port and accumulated stats display 'tx_dropped'
>> and 'stats.oerrors' (ports_stats[pt_id].tx_dropped + stats.oerrors).
>>
>> Fixes: 53324971a14e ("app/testpmd: display/clear forwarding stats on
>> demand")
>> Cc: stable@dpdk.org
>>
>> Reported-by: Joshua Washington <joshwash@google.com>
>> Signed-off-by: Ferruh Yigit <ferruh.yigit@amd.com>
> 
> Acked-by: Huisong Li <lihuisong@huawei.com>
>
> Acked-by: Aman Singh <aman.deep.singh@intel.com>
> 

Applied to dpdk-next-net/main, thanks.


^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2023-02-08  2:07 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2023-01-31 11:56 [PATCH] app/testpmd: fix forwarding stats for Tx dropped Ferruh Yigit
2023-02-01  1:14 ` lihuisong (C)
2023-02-07 10:10 ` Singh, Aman Deep
2023-02-08  2:07   ` Ferruh Yigit

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).