patches for DPDK stable branches
 help / color / mirror / Atom feed
* [dpdk-stable] [PATCH] net/mlx5: fix xstats reset reinitialization
@ 2020-10-19  6:36 Shiri Kuzin
  2020-10-19 13:39 ` [dpdk-stable] [dpdk-dev] " Shiri Kuzin
  2020-10-21 11:03 ` [dpdk-stable] " Raslan Darawsheh
  0 siblings, 2 replies; 3+ messages in thread
From: Shiri Kuzin @ 2020-10-19  6:36 UTC (permalink / raw)
  To: dev; +Cc: matan, rasland, viacheslavo, stable

The mlx5_xstats_reset clears the device extended statistics.
In this function the driver may reinitialize the structures
that are used to read device counters.

In case of reinitialization, the number of counters may
change, which wouldn't be taken into account by the
reset API callback and can cause a segmentation fault.

This issue is fixed by allocating the counters size after
the reinitialization.

Fixes: a4193ae3bc4f ("net/mlx5: support extended statistics")
Cc: stable@dpdk.org

Signed-off-by: Shiri Kuzin <shirik@nvidia.com>
Acked-by: Matan Azrad <matan@nvidia.com>
---
 drivers/net/mlx5/mlx5_stats.c | 18 +++++++++++++++---
 1 file changed, 15 insertions(+), 3 deletions(-)

diff --git a/drivers/net/mlx5/mlx5_stats.c b/drivers/net/mlx5/mlx5_stats.c
index e30542e..82d4d4a 100644
--- a/drivers/net/mlx5/mlx5_stats.c
+++ b/drivers/net/mlx5/mlx5_stats.c
@@ -17,6 +17,7 @@
 #include "mlx5_defs.h"
 #include "mlx5.h"
 #include "mlx5_rxtx.h"
+#include "mlx5_malloc.h"
 
 /**
  * DPDK callback to get extended device statistics.
@@ -216,8 +217,7 @@
 	struct mlx5_xstats_ctrl *xstats_ctrl = &priv->xstats_ctrl;
 	int stats_n;
 	unsigned int i;
-	unsigned int n = xstats_ctrl->mlx5_stats_n;
-	uint64_t counters[n];
+	uint64_t *counters;
 	int ret;
 
 	stats_n = mlx5_os_get_stats_n(dev);
@@ -228,17 +228,29 @@
 	}
 	if (xstats_ctrl->stats_n != stats_n)
 		mlx5_os_stats_init(dev);
+	counters =  mlx5_malloc(MLX5_MEM_SYS, sizeof(*counters) *
+			xstats_ctrl->mlx5_stats_n, 0,
+			SOCKET_ID_ANY);
+	if (!counters) {
+		DRV_LOG(WARNING, "port %u unable to allocate memory for xstats "
+				"counters",
+		     dev->data->port_id);
+		rte_errno = ENOMEM;
+		return -rte_errno;
+	}
 	ret = mlx5_os_read_dev_counters(dev, counters);
 	if (ret) {
 		DRV_LOG(ERR, "port %u cannot read device counters: %s",
 			dev->data->port_id, strerror(rte_errno));
+		mlx5_free(counters);
 		return ret;
 	}
-	for (i = 0; i != n; ++i) {
+	for (i = 0; i != xstats_ctrl->mlx5_stats_n; ++i) {
 		xstats_ctrl->base[i] = counters[i];
 		xstats_ctrl->hw_stats[i] = 0;
 	}
 	mlx5_txpp_xstats_reset(dev);
+	mlx5_free(counters);
 	return 0;
 }
 
-- 
1.8.3.1


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

* Re: [dpdk-stable] [dpdk-dev] [PATCH] net/mlx5: fix xstats reset reinitialization
  2020-10-19  6:36 [dpdk-stable] [PATCH] net/mlx5: fix xstats reset reinitialization Shiri Kuzin
@ 2020-10-19 13:39 ` Shiri Kuzin
  2020-10-21 11:03 ` [dpdk-stable] " Raslan Darawsheh
  1 sibling, 0 replies; 3+ messages in thread
From: Shiri Kuzin @ 2020-10-19 13:39 UTC (permalink / raw)
  To: Shiri Kuzin, dev
  Cc: Matan Azrad, stable, Raslan Darawsheh, Slava Ovsiienko, ralf.hoffmann



> -----Original Message-----
> From: dev <dev-bounces@dpdk.org> On Behalf Of Shiri Kuzin
> Sent: Monday, October 19, 2020 9:37 AM
> To: dev@dpdk.org
> Cc: matan@mellanox.com; rasland@mellanox.com;
> viacheslavo@mellanox.com; stable@dpdk.org
> Subject: [dpdk-dev] [PATCH] net/mlx5: fix xstats reset reinitialization
> 
> The mlx5_xstats_reset clears the device extended statistics.
> In this function the driver may reinitialize the structures that are used to read
> device counters.
> 
> In case of reinitialization, the number of counters may change, which
> wouldn't be taken into account by the reset API callback and can cause a
> segmentation fault.
> 
> This issue is fixed by allocating the counters size after the reinitialization.
> 
> Fixes: a4193ae3bc4f ("net/mlx5: support extended statistics")
> Cc: stable@dpdk.org
> 
> Signed-off-by: Shiri Kuzin <shirik@nvidia.com>
> Acked-by: Matan Azrad <matan@nvidia.com>
Reported-by: Ralf Hoffmann <ralf.hoffmann@allegro-packets.com>
> ---
>  drivers/net/mlx5/mlx5_stats.c | 18 +++++++++++++++---
>  1 file changed, 15 insertions(+), 3 deletions(-)
> 
> diff --git a/drivers/net/mlx5/mlx5_stats.c b/drivers/net/mlx5/mlx5_stats.c
> index e30542e..82d4d4a 100644
> --- a/drivers/net/mlx5/mlx5_stats.c
> +++ b/drivers/net/mlx5/mlx5_stats.c
> @@ -17,6 +17,7 @@
>  #include "mlx5_defs.h"
>  #include "mlx5.h"
>  #include "mlx5_rxtx.h"
> +#include "mlx5_malloc.h"
> 
>  /**
>   * DPDK callback to get extended device statistics.
> @@ -216,8 +217,7 @@
>  	struct mlx5_xstats_ctrl *xstats_ctrl = &priv->xstats_ctrl;
>  	int stats_n;
>  	unsigned int i;
> -	unsigned int n = xstats_ctrl->mlx5_stats_n;
> -	uint64_t counters[n];
> +	uint64_t *counters;
>  	int ret;
> 
>  	stats_n = mlx5_os_get_stats_n(dev);
> @@ -228,17 +228,29 @@
>  	}
>  	if (xstats_ctrl->stats_n != stats_n)
>  		mlx5_os_stats_init(dev);
> +	counters =  mlx5_malloc(MLX5_MEM_SYS, sizeof(*counters) *
> +			xstats_ctrl->mlx5_stats_n, 0,
> +			SOCKET_ID_ANY);
> +	if (!counters) {
> +		DRV_LOG(WARNING, "port %u unable to allocate memory
> for xstats "
> +				"counters",
> +		     dev->data->port_id);
> +		rte_errno = ENOMEM;
> +		return -rte_errno;
> +	}
>  	ret = mlx5_os_read_dev_counters(dev, counters);
>  	if (ret) {
>  		DRV_LOG(ERR, "port %u cannot read device counters: %s",
>  			dev->data->port_id, strerror(rte_errno));
> +		mlx5_free(counters);
>  		return ret;
>  	}
> -	for (i = 0; i != n; ++i) {
> +	for (i = 0; i != xstats_ctrl->mlx5_stats_n; ++i) {
>  		xstats_ctrl->base[i] = counters[i];
>  		xstats_ctrl->hw_stats[i] = 0;
>  	}
>  	mlx5_txpp_xstats_reset(dev);
> +	mlx5_free(counters);
>  	return 0;
>  }
> 
> --
> 1.8.3.1


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

* Re: [dpdk-stable] [PATCH] net/mlx5: fix xstats reset reinitialization
  2020-10-19  6:36 [dpdk-stable] [PATCH] net/mlx5: fix xstats reset reinitialization Shiri Kuzin
  2020-10-19 13:39 ` [dpdk-stable] [dpdk-dev] " Shiri Kuzin
@ 2020-10-21 11:03 ` Raslan Darawsheh
  1 sibling, 0 replies; 3+ messages in thread
From: Raslan Darawsheh @ 2020-10-21 11:03 UTC (permalink / raw)
  To: Shiri Kuzin, dev; +Cc: matan, rasland, viacheslavo, stable

Hi,

> -----Original Message-----
> From: Shiri Kuzin <shirik@nvidia.com>
> Sent: Monday, October 19, 2020 9:37 AM
> To: dev@dpdk.org
> Cc: matan@mellanox.com; rasland@mellanox.com;
> viacheslavo@mellanox.com; stable@dpdk.org
> Subject: [PATCH] net/mlx5: fix xstats reset reinitialization
> 
> The mlx5_xstats_reset clears the device extended statistics.
> In this function the driver may reinitialize the structures
> that are used to read device counters.
> 
> In case of reinitialization, the number of counters may
> change, which wouldn't be taken into account by the
> reset API callback and can cause a segmentation fault.
> 
> This issue is fixed by allocating the counters size after
> the reinitialization.
> 
> Fixes: a4193ae3bc4f ("net/mlx5: support extended statistics")
> Cc: stable@dpdk.org
> 
> Signed-off-by: Shiri Kuzin <shirik@nvidia.com>
> Acked-by: Matan Azrad <matan@nvidia.com>
> ---
>  drivers/net/mlx5/mlx5_stats.c | 18 +++++++++++++++---
>  1 file changed, 15 insertions(+), 3 deletions(-)
> 
> diff --git a/drivers/net/mlx5/mlx5_stats.c b/drivers/net/mlx5/mlx5_stats.c
> index e30542e..82d4d4a 100644
> --- a/drivers/net/mlx5/mlx5_stats.c
> +++ b/drivers/net/mlx5/mlx5_stats.c
> @@ -17,6 +17,7 @@
>  #include "mlx5_defs.h"
>  #include "mlx5.h"
>  #include "mlx5_rxtx.h"
> +#include "mlx5_malloc.h"
> 
>  /**
>   * DPDK callback to get extended device statistics.
> @@ -216,8 +217,7 @@
>  	struct mlx5_xstats_ctrl *xstats_ctrl = &priv->xstats_ctrl;
>  	int stats_n;
>  	unsigned int i;
> -	unsigned int n = xstats_ctrl->mlx5_stats_n;
> -	uint64_t counters[n];
> +	uint64_t *counters;
>  	int ret;
> 
>  	stats_n = mlx5_os_get_stats_n(dev);
> @@ -228,17 +228,29 @@
>  	}
>  	if (xstats_ctrl->stats_n != stats_n)
>  		mlx5_os_stats_init(dev);
> +	counters =  mlx5_malloc(MLX5_MEM_SYS, sizeof(*counters) *
> +			xstats_ctrl->mlx5_stats_n, 0,
> +			SOCKET_ID_ANY);
> +	if (!counters) {
> +		DRV_LOG(WARNING, "port %u unable to allocate memory
> for xstats "
> +				"counters",
> +		     dev->data->port_id);
> +		rte_errno = ENOMEM;
> +		return -rte_errno;
> +	}
>  	ret = mlx5_os_read_dev_counters(dev, counters);
>  	if (ret) {
>  		DRV_LOG(ERR, "port %u cannot read device counters: %s",
>  			dev->data->port_id, strerror(rte_errno));
> +		mlx5_free(counters);
>  		return ret;
>  	}
> -	for (i = 0; i != n; ++i) {
> +	for (i = 0; i != xstats_ctrl->mlx5_stats_n; ++i) {
>  		xstats_ctrl->base[i] = counters[i];
>  		xstats_ctrl->hw_stats[i] = 0;
>  	}
>  	mlx5_txpp_xstats_reset(dev);
> +	mlx5_free(counters);
>  	return 0;
>  }
> 
> --
> 1.8.3.1

Patch applied to next-net-mlx,

Kindest regards,
Raslan Darawsheh

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

end of thread, other threads:[~2020-10-21 11:03 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2020-10-19  6:36 [dpdk-stable] [PATCH] net/mlx5: fix xstats reset reinitialization Shiri Kuzin
2020-10-19 13:39 ` [dpdk-stable] [dpdk-dev] " Shiri Kuzin
2020-10-21 11:03 ` [dpdk-stable] " Raslan Darawsheh

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).