1 /* SPDX-License-Identifier: BSD-3-Clause
2 * Copyright 2020 Mellanox Technologies, Ltd
5 #ifndef RTE_PMD_MLX5_REGEX_UTILS_H_
6 #define RTE_PMD_MLX5_REGEX_UTILS_H_
8 #include <mlx5_common.h>
10 extern int mlx5_regex_logtype;
12 #define MLX5_REGEX_LOG_PREFIX "regex_mlx5"
13 /* Generic printf()-like logging macro with automatic line feed. */
14 #define DRV_LOG(level, ...) \
15 PMD_DRV_LOG_(level, mlx5_regex_logtype, MLX5_REGEX_LOG_PREFIX, \
16 __VA_ARGS__ PMD_DRV_LOG_STRIP PMD_DRV_LOG_OPAREN, \
19 #endif /* RTE_PMD_MLX5_REGEX_UTILS_H_ */