b1bc1afa4a
This patch introduces logging for the pfe PMD. Signed-off-by: Gagandeep Singh <g.singh@nxp.com> Acked-by: Nipun Gupta <nipun.gupta@nxp.com> Acked-by: Akhil Goyal <akhil.goyal@nxp.com>
32 lines
828 B
C
32 lines
828 B
C
/* SPDX-License-Identifier: BSD-3-Clause
|
|
* Copyright 2019 NXP
|
|
*/
|
|
|
|
#ifndef _PFE_LOGS_H_
|
|
#define _PFE_LOGS_H_
|
|
|
|
extern int pfe_logtype_pmd;
|
|
|
|
/* PMD related logs */
|
|
#define PFE_PMD_LOG(level, fmt, args...) \
|
|
rte_log(RTE_LOG_ ## level, pfe_logtype_pmd, "pfe_net: %s()" \
|
|
fmt "\n", __func__, ##args)
|
|
|
|
#define PMD_INIT_FUNC_TRACE() PFE_PMD_LOG(DEBUG, " >>")
|
|
|
|
#define PFE_PMD_DEBUG(fmt, args...) \
|
|
PFE_PMD_LOG(DEBUG, fmt, ## args)
|
|
#define PFE_PMD_ERR(fmt, args...) \
|
|
PFE_PMD_LOG(ERR, fmt, ## args)
|
|
#define PFE_PMD_INFO(fmt, args...) \
|
|
PFE_PMD_LOG(INFO, fmt, ## args)
|
|
|
|
#define PFE_PMD_WARN(fmt, args...) \
|
|
PFE_PMD_LOG(WARNING, fmt, ## args)
|
|
|
|
/* DP Logs, toggled out at compile time if level lower than current level */
|
|
#define PFE_DP_LOG(level, fmt, args...) \
|
|
RTE_LOG_DP(level, PMD, fmt, ## args)
|
|
|
|
#endif /* _PFE_LOGS_H_ */
|