common/mlx5: align log prefix across drivers
Some mlx5 PMDs define the log prefix as "mlx5_pmd" while others as "pmd_mlx5". The patch aligns all pmds to use the "mlx5_pmd" format. Signed-off-by: Asaf Penso <asafp@nvidia.com> Acked-by: Viacheslav Ovsiienko <viacheslavo@nvidia.com>
This commit is contained in:
parent
212d17b6a6
commit
2d2546ad6b
@ -65,10 +65,6 @@ pmd_drv_log_basename(const char *s)
|
||||
RTE_FMT_HEAD(__VA_ARGS__,), \
|
||||
RTE_FMT_TAIL(__VA_ARGS__,)))
|
||||
|
||||
/*
|
||||
* When debugging is enabled (MLX5_DEBUG not defined), file, line and function
|
||||
* information replace the driver name (MLX5_DRIVER_NAME) in log messages.
|
||||
*/
|
||||
#ifdef RTE_LIBRTE_MLX5_DEBUG
|
||||
|
||||
#define PMD_DRV_LOG__(level, type, name, ...) \
|
||||
|
@ -10,7 +10,7 @@
|
||||
|
||||
extern int mlx5_common_logtype;
|
||||
|
||||
#define MLX5_COMMON_LOG_PREFIX "common_mlx5"
|
||||
#define MLX5_COMMON_LOG_PREFIX "mlx5_common"
|
||||
/* Generic printf()-like logging macro with automatic line feed. */
|
||||
#define DRV_LOG(level, ...) \
|
||||
PMD_DRV_LOG_(level, mlx5_common_logtype, MLX5_COMMON_LOG_PREFIX, \
|
||||
|
@ -29,9 +29,11 @@
|
||||
|
||||
extern int mlx5_logtype;
|
||||
|
||||
#define MLX5_NET_LOG_PREFIX "mlx5_net"
|
||||
|
||||
/* Generic printf()-like logging macro with automatic line feed. */
|
||||
#define DRV_LOG(level, ...) \
|
||||
PMD_DRV_LOG_(level, mlx5_logtype, MLX5_DRIVER_NAME, \
|
||||
PMD_DRV_LOG_(level, mlx5_logtype, MLX5_NET_LOG_PREFIX, \
|
||||
__VA_ARGS__ PMD_DRV_LOG_STRIP PMD_DRV_LOG_OPAREN, \
|
||||
PMD_DRV_LOG_CPAREN)
|
||||
|
||||
|
@ -9,7 +9,7 @@
|
||||
|
||||
extern int mlx5_regex_logtype;
|
||||
|
||||
#define MLX5_REGEX_LOG_PREFIX "regex_mlx5"
|
||||
#define MLX5_REGEX_LOG_PREFIX "mlx5_regex"
|
||||
/* Generic printf()-like logging macro with automatic line feed. */
|
||||
#define DRV_LOG(level, ...) \
|
||||
PMD_DRV_LOG_(level, mlx5_regex_logtype, MLX5_REGEX_LOG_PREFIX, \
|
||||
|
Loading…
Reference in New Issue
Block a user