4f3419a602
Replace compile time option for init and driver log with dynamic value. Signed-off-by: Stephen Hemminger <stephen@networkplumber.org> Signed-off-by: Ferruh Yigit <ferruh.yigit@intel.com> --- v2: remove remaining RTE_LIBRTE_BNX2X_DEBUG usage
58 lines
1.6 KiB
C
58 lines
1.6 KiB
C
/*
|
|
* Copyright (c) 2013-2015 Brocade Communications Systems, Inc.
|
|
*
|
|
* Copyright (c) 2015 QLogic Corporation.
|
|
* All rights reserved.
|
|
* www.qlogic.com
|
|
*
|
|
* See LICENSE.bnx2x_pmd for copyright and licensing details.
|
|
*/
|
|
|
|
#ifndef _PMD_LOGS_H_
|
|
#define _PMD_LOGS_H_
|
|
|
|
extern int bnx2x_logtype_init;
|
|
#define PMD_INIT_LOG(level, fmt, args...) \
|
|
rte_log(RTE_LOG_ ## level, bnx2x_logtype_init, \
|
|
"%s(): " fmt "\n", __func__, ##args)
|
|
|
|
#define PMD_INIT_FUNC_TRACE() PMD_INIT_LOG(DEBUG, " >>")
|
|
|
|
#ifdef RTE_LIBRTE_BNX2X_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_BNX2X_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_BNX2X_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 bnx2x_logtype_driver;
|
|
#define PMD_DRV_LOG_RAW(level, fmt, args...) \
|
|
rte_log(RTE_LOG_ ## level, bnx2x_logtype_driver, \
|
|
"%s(): " fmt, __func__, ## args)
|
|
|
|
#define PMD_DRV_LOG(level, fmt, args...) \
|
|
PMD_DRV_LOG_RAW(level, fmt "\n", ## args)
|
|
|
|
#ifdef RTE_LIBRTE_BNX2X_DEBUG_PERIODIC
|
|
#define PMD_DEBUG_PERIODIC_LOG(level, fmt, args...) \
|
|
RTE_LOG(level, PMD, "%s(): " fmt "\n", __func__, ## args)
|
|
#else
|
|
#define PMD_DEBUG_PERIODIC_LOG(level, fmt, args...) do { } while(0)
|
|
#endif
|
|
|
|
#endif /* _PMD_LOGS_H_ */
|