79daffdcb6
Replace compile time configuration with runtime. Signed-off-by: Stephen Hemminger <stephen@networkplumber.org>
41 lines
1.2 KiB
C
41 lines
1.2 KiB
C
/* SPDX-License-Identifier: BSD-3-Clause
|
|
* Copyright(c) 2010-2014 Intel Corporation
|
|
*/
|
|
|
|
#ifndef _VMXNET3_LOGS_H_
|
|
#define _VMXNET3_LOGS_H_
|
|
|
|
extern int vmxnet3_logtype_init;
|
|
#define PMD_INIT_LOG(level, fmt, args...) \
|
|
rte_log(RTE_LOG_ ## level, vmxnet3_logtype_driver, \
|
|
"%s(): " fmt "\n", __func__, ## args)
|
|
#define PMD_INIT_FUNC_TRACE() PMD_INIT_LOG(DEBUG, " >>")
|
|
|
|
#ifdef RTE_LIBRTE_VMXNET3_DEBUG_RX
|
|
#define PMD_RX_LOG(level, fmt, args...) \
|
|
RTE_LOG(level, PMD, "%s(): " fmt "\n", __func__, ## args)
|
|
#else
|
|
#define PMD_RX_LOG(level, fmt, args...) do { } while(0)
|
|
#endif
|
|
|
|
#ifdef RTE_LIBRTE_VMXNET3_DEBUG_TX
|
|
#define PMD_TX_LOG(level, fmt, args...) \
|
|
RTE_LOG(level, PMD, "%s(): " fmt "\n", __func__, ## args)
|
|
#else
|
|
#define PMD_TX_LOG(level, fmt, args...) do { } while(0)
|
|
#endif
|
|
|
|
#ifdef RTE_LIBRTE_VMXNET3_DEBUG_TX_FREE
|
|
#define PMD_TX_FREE_LOG(level, fmt, args...) \
|
|
RTE_LOG(level, PMD, "%s(): " fmt "\n", __func__, ## args)
|
|
#else
|
|
#define PMD_TX_FREE_LOG(level, fmt, args...) do { } while(0)
|
|
#endif
|
|
|
|
extern int vmxnet3_logtype_driver;
|
|
#define PMD_DRV_LOG(level, fmt, args...) \
|
|
rte_log(RTE_LOG_ ## level, vmxnet3_logtype_driver, \
|
|
"%s(): " fmt "\n", __func__, ## args)
|
|
|
|
#endif /* _VMXNET3_LOGS_H_ */
|