3a5b6aaac6
Nfp log print was controlled by nfp's own macro before. This commit changes to use dpdk debug rx/tx macro to control it. Signed-off-by: Long Wu <long.wu@corigine.com> Reviewed-by: Chaoyong He <chaoyong.he@corigine.com> Reviewed-by: Niklas Söderlund <niklas.soderlund@corigine.com> Acked-by: Ferruh Yigit <ferruh.yigit@xilinx.com>
44 lines
1.2 KiB
C
44 lines
1.2 KiB
C
/* SPDX-License-Identifier: BSD-3-Clause
|
|
* Copyright (c) 2014, 2015 Netronome Systems, Inc.
|
|
* All rights reserved.
|
|
*/
|
|
|
|
#ifndef _NFP_LOGS_H_
|
|
#define _NFP_LOGS_H_
|
|
|
|
#include <rte_log.h>
|
|
|
|
extern int nfp_logtype_init;
|
|
#define PMD_INIT_LOG(level, fmt, args...) \
|
|
rte_log(RTE_LOG_ ## level, nfp_logtype_init, \
|
|
"%s(): " fmt "\n", __func__, ## args)
|
|
#define PMD_INIT_FUNC_TRACE() PMD_INIT_LOG(DEBUG, " >>")
|
|
|
|
#ifdef RTE_ETHDEV_DEBUG_RX
|
|
#define PMD_RX_LOG(level, fmt, args...) \
|
|
RTE_LOG(level, PMD, "%s() rx: " fmt "\n", __func__, ## args)
|
|
#else
|
|
#define PMD_RX_LOG(level, fmt, args...) do { } while (0)
|
|
#endif
|
|
|
|
#ifdef RTE_ETHDEV_DEBUG_TX
|
|
#define PMD_TX_LOG(level, fmt, args...) \
|
|
RTE_LOG(level, PMD, "%s() tx: " fmt "\n", __func__, ## args)
|
|
#define ASSERT(x) if (!(x)) rte_panic("NFP_NET: x")
|
|
#else
|
|
#define PMD_TX_LOG(level, fmt, args...) do { } while (0)
|
|
#define ASSERT(x) do { } while (0)
|
|
#endif
|
|
|
|
extern int nfp_logtype_cpp;
|
|
#define PMD_CPP_LOG(level, fmt, args...) \
|
|
rte_log(RTE_LOG_ ## level, nfp_logtype_cpp, \
|
|
"%s(): " fmt "\n", __func__, ## args)
|
|
|
|
extern int nfp_logtype_driver;
|
|
#define PMD_DRV_LOG(level, fmt, args...) \
|
|
rte_log(RTE_LOG_ ## level, nfp_logtype_driver, \
|
|
"%s(): " fmt "\n", __func__, ## args)
|
|
|
|
#endif /* _NFP_LOGS_H_ */
|