1
2
3
4
5
6
7
8
9
10
11
12
13
14
15 #ifndef __BNX2FC_DEBUG__
16 #define __BNX2FC_DEBUG__
17
18
19 #define LOG_IO 0x01
20 #define LOG_TGT 0x02
21 #define LOG_HBA 0x04
22 #define LOG_ELS 0x08
23 #define LOG_MISC 0x10
24 #define LOG_ALL 0xff
25
26 extern unsigned int bnx2fc_debug_level;
27
28 #define BNX2FC_ELS_DBG(fmt, ...) \
29 do { \
30 if (unlikely(bnx2fc_debug_level & LOG_ELS)) \
31 pr_info(fmt, ##__VA_ARGS__); \
32 } while (0)
33
34 #define BNX2FC_MISC_DBG(fmt, ...) \
35 do { \
36 if (unlikely(bnx2fc_debug_level & LOG_MISC)) \
37 pr_info(fmt, ##__VA_ARGS__); \
38 } while (0)
39
40 __printf(2, 3)
41 void BNX2FC_IO_DBG(const struct bnx2fc_cmd *io_req, const char *fmt, ...);
42 __printf(2, 3)
43 void BNX2FC_TGT_DBG(const struct bnx2fc_rport *tgt, const char *fmt, ...);
44 __printf(2, 3)
45 void BNX2FC_HBA_DBG(const struct fc_lport *lport, const char *fmt, ...);
46
47 #endif