For ECORE_DBG_BREAK_IF() ECORE_BUG() ECORE_BUG_ON() check bxe_debug flag before

printing error message.

MFC after:5 days
This commit is contained in:
davidcs 2014-09-17 22:49:29 +00:00
parent 9f5a326fa1
commit 8d0b59b51f

View File

@ -246,14 +246,23 @@ ECORE_CRC32_LE(uint32_t seed, uint8_t *mac, uint32_t len)
#else
extern unsigned long bxe_debug;
#define BXE_DEBUG_ECORE_DBG_BREAK_IF 0x01
#define BXE_DEBUG_ECORE_BUG 0x02
#define BXE_DEBUG_ECORE_BUG_ON 0x04
#define ECORE_DBG_BREAK_IF(exp) \
printf("%s (%s,%d)\n", __FUNCTION__, __FILE__, __LINE__);
if (bxe_debug & BXE_DEBUG_ECORE_DBG_BREAK_IF) \
printf("%s (%s,%d)\n", __FUNCTION__, __FILE__, __LINE__);
#define ECORE_BUG(exp) \
printf("%s (%s,%d)\n", __FUNCTION__, __FILE__, __LINE__);
if (bxe_debug & BXE_DEBUG_ECORE_BUG) \
printf("%s (%s,%d)\n", __FUNCTION__, __FILE__, __LINE__);
#define ECORE_BUG_ON(exp) \
printf("%s (%s,%d)\n", __FUNCTION__, __FILE__, __LINE__);
if (bxe_debug & BXE_DEBUG_ECORE_BUG_ON) \
printf("%s (%s,%d)\n", __FUNCTION__, __FILE__, __LINE__);
#endif /* #ifdef ECORE_STOP_ON_ERROR */