aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/net/ethernet/mellanox/mlx5/core/en_stats.h
diff options
context:
space:
mode:
authorShalom Lagziel <shaloml@mellanox.com>2018-02-12 17:43:07 +0200
committerSaeed Mahameed <saeedm@mellanox.com>2018-05-25 14:11:01 -0700
commit868a01a27d80a59e719f0c369d1b26b923fc7674 (patch)
treeaefd1c9fa55e565eac83f94251da3cb1d16d3fe9 /drivers/net/ethernet/mellanox/mlx5/core/en_stats.h
parentnet/mlx5e: Move phy link down events counter out of SW stats (diff)
downloadlinux-dev-868a01a27d80a59e719f0c369d1b26b923fc7674.tar.xz
linux-dev-868a01a27d80a59e719f0c369d1b26b923fc7674.zip
net/mlx5e: Introducing new statistics rwlock
Introduce a new read/write lock that will protect statistics gathering from netdev channels configuration changes. e.g. when channels are being replaced (increase/decrease number of rings) prevent statistic gathering (ndo_get_stats64) to read the statistics of in-active channels (channels that are being closed). Plus update channels software statistics on the fly when calling ndo_get_stats64, and remove it from stats periodic work. Fixes: 9218b44dcc05 ("net/mlx5e: Statistics handling refactoring") Signed-off-by: Shalom Lagziel <shaloml@mellanox.com> Signed-off-by: Saeed Mahameed <saeedm@mellanox.com>
Diffstat (limited to '')
-rw-r--r--drivers/net/ethernet/mellanox/mlx5/core/en_stats.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/drivers/net/ethernet/mellanox/mlx5/core/en_stats.h b/drivers/net/ethernet/mellanox/mlx5/core/en_stats.h
index 39ced559929a..390c7afa5188 100644
--- a/drivers/net/ethernet/mellanox/mlx5/core/en_stats.h
+++ b/drivers/net/ethernet/mellanox/mlx5/core/en_stats.h
@@ -239,4 +239,6 @@ struct mlx5e_stats_grp {
extern const struct mlx5e_stats_grp mlx5e_stats_grps[];
extern const int mlx5e_num_stats_grps;
+void mlx5e_grp_sw_update_stats(struct mlx5e_priv *priv);
+
#endif /* __MLX5_EN_STATS_H__ */