diff mbox

[API-NEXT,RFC,25/31] drivers: ixgbe: adding logging macros

Message ID 1452285014-60320-26-git-send-email-christophe.milard@linaro.org
State New
Headers show

Commit Message

Christophe Milard Jan. 8, 2016, 8:30 p.m. UTC
Signed-off-by: Christophe Milard <christophe.milard@linaro.org>
---
 drivers/ixgbe/ixgbe_logs.h | 67 ++++++++++++++++++++++++++++++++++++++++++++++
 1 file changed, 67 insertions(+)
 create mode 100644 drivers/ixgbe/ixgbe_logs.h
diff mbox

Patch

diff --git a/drivers/ixgbe/ixgbe_logs.h b/drivers/ixgbe/ixgbe_logs.h
new file mode 100644
index 0000000..82261ef
--- /dev/null
+++ b/drivers/ixgbe/ixgbe_logs.h
@@ -0,0 +1,67 @@ 
+/*-
+ *   BSD LICENSE
+ *
+ *   Copyright(c) 2010-2014 Intel Corporation. All rights reserved.
+ *   All rights reserved.
+ *
+ *   Redistribution and use in source and binary forms, with or without
+ *   modification, are permitted provided that the following conditions
+ *   are met:
+ *
+ *     * Redistributions of source code must retain the above copyright
+ *       notice, this list of conditions and the following disclaimer.
+ *     * Redistributions in binary form must reproduce the above copyright
+ *       notice, this list of conditions and the following disclaimer in
+ *       the documentation and/or other materials provided with the
+ *       distribution.
+ *     * Neither the name of Intel Corporation nor the names of its
+ *       contributors may be used to endorse or promote products derived
+ *       from this software without specific prior written permission.
+ *
+ *   THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
+ *   "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
+ *   LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
+ *   A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
+ *   OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
+ *   SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
+ *   LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
+ *   DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
+ *   THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
+ *   (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
+ *   OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
+ */
+
+#ifndef _IXGBE_LOGS_H_
+#define _IXGBE_LOGS_H_
+#include "../driver_log.h"
+
+/* debugging driver initialisation: */
+#ifdef IXGBE_DEBUG_INIT
+#define PMD_INIT_LOG_ERR(fmt, args...) DRV_ERR("INIT: " fmt "\n",  ##args)
+#define PMD_INIT_LOG_DBG(fmt, args...) DRV_DBG("INIT: " fmt "\n",  ##args)
+#define PMD_INIT_FUNC_TRACE() PMD_INIT_LOG_DBG(" >>")
+#else
+#define PMD_INIT_FUNC_TRACE() do { } while (0)
+#define PMD_INIT_LOG_ERR(fmt, args...) do { } while (0)
+#define PMD_INIT_LOG_DBG(fmt, args...) do { } while (0)
+#endif
+
+/* debugging driver RX function: */
+#ifdef IXGBE_DEBUG_RX
+#define PMD_RX_LOG_ERR(fmt, args...) DRV_ERR("RX: " fmt "\n",  ##args)
+#define PMD_RX_LOG_DBG(fmt, args...) DRV_DBG("RX: " fmt "\n",  ##args)
+#else
+#define PMD_RX_LOG_ERR(fmt, args...) do { } while (0)
+#define PMD_RX_LOG_DBG(fmt, args...) do { } while (0)
+#endif
+
+/* debugging driver TX function: */
+#ifdef IXGBE_DEBUG_TX
+#define PMD_TX_LOG_ERR(fmt, args...) DRV_ERR("TX: " fmt "\n",  ##args)
+#define PMD_TX_LOG_DBG(fmt, args...) DRV_DBG("TX: " fmt "\n",  ##args)
+#else
+#define PMD_TX_LOG_ERR(fmt, args...) do { } while (0)
+#define PMD_TX_LOG_DBG(fmt, args...) do { } while (0)
+#endif
+
+#endif /* _IXGBE_LOGS_H_ */