From: Bing Zhao Date: Mon, 26 Oct 2020 08:37:42 +0000 (+0800) Subject: common/mlx5: fix PCI driver name X-Git-Url: http://git.droids-corp.org/?a=commitdiff_plain;h=e4b7b8d082db943355100fd7270113bd4be0fff6;p=dpdk.git common/mlx5: fix PCI driver name In the refactor of mlx5 common layer, the PCI driver name to the RTE device was changed from "net_mlx5" to "mlx5_pci". The string of name "mlx5_pci" is used directly in the structure rte_pci_driver. In the past, a macro "MLX5_DRIVER_NAME" is used instead of any direct string, and now it is missing. The functions that use "MLX5_DRIVER_NAME" will get some mismatch, e.g mlx5_eth_find_next. It needs to use this macro again in all code to make everything get aligned. Fixes: 8a41f4deccc3 ("common/mlx5: introduce layer for multiple class drivers") Cc: stable@dpdk.org Signed-off-by: Bing Zhao Reviewed-by: Parav Pandit Acked-by: Matan Azrad --- diff --git a/drivers/common/mlx5/mlx5_common.h b/drivers/common/mlx5/mlx5_common.h index ed44a45a81..3d3d109f99 100644 --- a/drivers/common/mlx5/mlx5_common.h +++ b/drivers/common/mlx5/mlx5_common.h @@ -18,6 +18,8 @@ #include "mlx5_prm.h" #include "mlx5_devx_cmds.h" +/* Reported driver name. */ +#define MLX5_DRIVER_NAME "mlx5_pci" /* Bit-field manipulation. */ #define BITFIELD_DECLARE(bf, type, size) \ diff --git a/drivers/common/mlx5/mlx5_common_pci.c b/drivers/common/mlx5/mlx5_common_pci.c index 02417c6ff1..5208972bb6 100644 --- a/drivers/common/mlx5/mlx5_common_pci.c +++ b/drivers/common/mlx5/mlx5_common_pci.c @@ -408,7 +408,7 @@ static struct rte_pci_id *mlx5_pci_id_table; static struct rte_pci_driver mlx5_pci_driver = { .driver = { - .name = "mlx5_pci", + .name = MLX5_DRIVER_NAME, }, .probe = mlx5_common_pci_probe, .remove = mlx5_common_pci_remove, diff --git a/drivers/net/mlx5/mlx5_defs.h b/drivers/net/mlx5/mlx5_defs.h index 42916ed7a7..2657081c51 100644 --- a/drivers/net/mlx5/mlx5_defs.h +++ b/drivers/net/mlx5/mlx5_defs.h @@ -11,9 +11,6 @@ #include "mlx5_autoconf.h" -/* Reported driver name. */ -#define MLX5_DRIVER_NAME "net_mlx5" - /* Maximum number of simultaneous VLAN filters. */ #define MLX5_MAX_VLAN_IDS 128