2019-09-26 14:01:50 +00:00
|
|
|
/* SPDX-License-Identifier: BSD-3-Clause
|
2021-04-07 09:19:13 +00:00
|
|
|
* Copyright(c) 2018-2021 HiSilicon Limited.
|
2019-09-26 14:01:50 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef _HNS3_LOGS_H_
|
|
|
|
#define _HNS3_LOGS_H_
|
|
|
|
|
|
|
|
extern int hns3_logtype_init;
|
|
|
|
#define PMD_INIT_LOG(level, fmt, args...) \
|
|
|
|
rte_log(RTE_LOG_ ## level, hns3_logtype_init, "%s(): " fmt "\n", \
|
|
|
|
__func__, ##args)
|
|
|
|
#define PMD_INIT_FUNC_TRACE() PMD_INIT_LOG(DEBUG, " >>")
|
|
|
|
|
|
|
|
extern int hns3_logtype_driver;
|
|
|
|
#define PMD_DRV_LOG_RAW(hw, level, fmt, args...) \
|
|
|
|
rte_log(level, hns3_logtype_driver, "%s %s(): " fmt, \
|
|
|
|
(hw)->data->name, __func__, ## args)
|
|
|
|
|
|
|
|
#define hns3_err(hw, fmt, args...) \
|
|
|
|
PMD_DRV_LOG_RAW(hw, RTE_LOG_ERR, fmt "\n", ## args)
|
|
|
|
|
|
|
|
#define hns3_warn(hw, fmt, args...) \
|
|
|
|
PMD_DRV_LOG_RAW(hw, RTE_LOG_WARNING, fmt "\n", ## args)
|
|
|
|
|
|
|
|
#define hns3_notice(hw, fmt, args...) \
|
|
|
|
PMD_DRV_LOG_RAW(hw, RTE_LOG_NOTICE, fmt "\n", ## args)
|
|
|
|
|
|
|
|
#define hns3_info(hw, fmt, args...) \
|
|
|
|
PMD_DRV_LOG_RAW(hw, RTE_LOG_INFO, fmt "\n", ## args)
|
|
|
|
|
|
|
|
#define hns3_dbg(hw, fmt, args...) \
|
|
|
|
PMD_DRV_LOG_RAW(hw, RTE_LOG_DEBUG, fmt "\n", ## args)
|
|
|
|
|
|
|
|
#endif /* _HNS3_LOGS_H_ */
|