net/mlx5e: Use rx_missed_errors instead of rx_dropped for reporting buffer exhaustion
authorCarolina Jubran <cjubran@nvidia.com>
Wed, 22 May 2024 19:26:58 +0000 (22:26 +0300)
committerDavid S. Miller <davem@davemloft.net>
Fri, 24 May 2024 12:27:08 +0000 (13:27 +0100)
Previously, the driver incorrectly used rx_dropped to report device
buffer exhaustion.

According to the documentation, rx_dropped should not be used to count
packets dropped due to buffer exhaustion, which is the purpose of
rx_missed_errors.

Use rx_missed_errors as intended for counting packets dropped due to
buffer exhaustion.

Fixes: 269e6b3af3bf ("net/mlx5e: Report additional error statistics in get stats ndo")
Signed-off-by: Carolina Jubran <cjubran@nvidia.com>
Signed-off-by: Tariq Toukan <tariqt@nvidia.com>
Reviewed-by: Simon Horman <horms@kernel.org>
Signed-off-by: David S. Miller <davem@davemloft.net>
drivers/net/ethernet/mellanox/mlx5/core/en_main.c

index b758bc72ac36bb61b40da488659368548c825005..c53c99dde558727190e7cad76d42efaabf2ecdcf 100644 (file)
@@ -3886,7 +3886,7 @@ mlx5e_get_stats(struct net_device *dev, struct rtnl_link_stats64 *stats)
                mlx5e_fold_sw_stats64(priv, stats);
        }
 
-       stats->rx_dropped = priv->stats.qcnt.rx_out_of_buffer;
+       stats->rx_missed_errors = priv->stats.qcnt.rx_out_of_buffer;
 
        stats->rx_length_errors =
                PPORT_802_3_GET(pstats, a_in_range_length_errors) +