d8dd31652c
Move commonly used functions across mempool, event and net devices to a common folder in drivers. Signed-off-by: Pavan Nikhilesh <pbhagavatula@caviumnetworks.com> Acked-by: Jerin Jacob <jerin.jacob@caviumnetworks.com> Acked-by: Santosh Shukla <santosh.shukla@caviumnetworks.com>
23 lines
643 B
C
23 lines
643 B
C
/* SPDX-License-Identifier: BSD-3-Clause
|
|
* Copyright(c) 2017 Cavium, Inc
|
|
*/
|
|
|
|
#ifndef __OCTEONTX_POOL_LOGS_H__
|
|
#define __OCTEONTX_POOL_LOGS_H__
|
|
|
|
#include <rte_debug.h>
|
|
|
|
#define FPAVF_LOG(level, fmt, args...) \
|
|
rte_log(RTE_LOG_ ## level, octeontx_logtype_fpavf,\
|
|
"%s() line %u: " fmt "\n", __func__, __LINE__, ## args)
|
|
|
|
#define fpavf_log_info(fmt, ...) FPAVF_LOG(INFO, fmt, ##__VA_ARGS__)
|
|
#define fpavf_log_dbg(fmt, ...) FPAVF_LOG(DEBUG, fmt, ##__VA_ARGS__)
|
|
#define fpavf_log_err(fmt, ...) FPAVF_LOG(ERR, fmt, ##__VA_ARGS__)
|
|
#define fpavf_func_trace fpavf_log_dbg
|
|
|
|
|
|
extern int octeontx_logtype_fpavf;
|
|
|
|
#endif /* __OCTEONTX_POOL_LOGS_H__*/
|