mirror of https://github.com/F-Stack/f-stack.git
38 lines
1.1 KiB
C
38 lines
1.1 KiB
C
/* SPDX-License-Identifier: BSD-3-Clause
|
|
* Copyright (C) 2022-2023, Advanced Micro Devices, Inc.
|
|
*/
|
|
|
|
#ifndef CDX_LOGS_H
|
|
#define CDX_LOGS_H
|
|
|
|
extern int cdx_logtype_bus;
|
|
|
|
#define CDX_BUS_LOG(level, fmt, args...) \
|
|
rte_log(RTE_LOG_ ## level, cdx_logtype_bus, "cdx: " fmt "\n", \
|
|
##args)
|
|
|
|
/* Debug logs with Function names */
|
|
#define CDX_BUS_DEBUG(fmt, args...) \
|
|
rte_log(RTE_LOG_DEBUG, cdx_logtype_bus, "cdx: %s(): " fmt "\n", \
|
|
__func__, ##args)
|
|
|
|
#define CDX_BUS_INFO(fmt, args...) \
|
|
CDX_BUS_LOG(INFO, fmt, ## args)
|
|
#define CDX_BUS_ERR(fmt, args...) \
|
|
CDX_BUS_LOG(ERR, fmt, ## args)
|
|
#define CDX_BUS_WARN(fmt, args...) \
|
|
CDX_BUS_LOG(WARNING, fmt, ## args)
|
|
|
|
/* DP Logs, toggled out at compile time if level lower than current level */
|
|
#define CDX_BUS_DP_LOG(level, fmt, args...) \
|
|
RTE_LOG_DP(level, PMD, fmt, ## args)
|
|
|
|
#define CDX_BUS_DP_DEBUG(fmt, args...) \
|
|
CDX_BUS_DP_LOG(DEBUG, fmt, ## args)
|
|
#define CDX_BUS_DP_INFO(fmt, args...) \
|
|
CDX_BUS_DP_LOG(INFO, fmt, ## args)
|
|
#define CDX_BUS_DP_WARN(fmt, args...) \
|
|
CDX_BUS_DP_LOG(WARNING, fmt, ## args)
|
|
|
|
#endif /* CDX_LOGS_H */
|