i40e: always log init messages
'init' messages should always be logged and filtered at runtime by rte_log. All the more so as these messages are not in the datapath. Signed-off-by: David Marchand <david.marchand@6wind.com> Acked-by: Bruce Richardson <bruce.richardson@intel.com>
This commit is contained in:
parent
0eedec25ea
commit
7f63da6d89
@ -34,12 +34,13 @@
|
||||
#ifndef _I40E_LOGS_H_
|
||||
#define _I40E_LOGS_H_
|
||||
|
||||
#ifdef RTE_LIBRTE_I40E_DEBUG_INIT
|
||||
#define PMD_INIT_LOG(level, fmt, args...) \
|
||||
RTE_LOG(level, PMD, "%s(): " fmt "\n", __func__, ## args)
|
||||
rte_log(RTE_LOG_ ## level, RTE_LOGTYPE_PMD, \
|
||||
"PMD: %s(): " fmt "\n", __func__, ##args)
|
||||
|
||||
#ifdef RTE_LIBRTE_I40E_DEBUG_INIT
|
||||
#define PMD_INIT_FUNC_TRACE() PMD_INIT_LOG(DEBUG, " >>")
|
||||
#else
|
||||
#define PMD_INIT_LOG(level, fmt, args...) do { } while(0)
|
||||
#define PMD_INIT_FUNC_TRACE() do { } while(0)
|
||||
#endif
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user