hc
2023-12-09 b22da3d8526a935aa31e086e63f60ff3246cb61c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
/* SPDX-License-Identifier: GPL-2.0-only */
/*
 * QLogic iSCSI HBA Driver
 * Copyright (c)  2003-2012 QLogic Corporation
 */
 
/*
 * Driver debug definitions.
 */
/* #define QL_DEBUG  */            /* DEBUG messages */
/* #define QL_DEBUG_LEVEL_3  */        /* Output function tracing */
/* #define QL_DEBUG_LEVEL_4  */
/* #define QL_DEBUG_LEVEL_5  */
/* #define QL_DEBUG_LEVEL_7  */
/* #define QL_DEBUG_LEVEL_9  */
 
#define QL_DEBUG_LEVEL_2    /* ALways enable error messagess */
#if defined(QL_DEBUG)
#define DEBUG(x)   do {x;} while (0);
#else
#define DEBUG(x)    do {} while (0);
#endif
 
#if defined(QL_DEBUG_LEVEL_2)
#define DEBUG2(x)      do {if(ql4xextended_error_logging == 2) x;} while (0);
#define DEBUG2_3(x)   do {x;} while (0);
#else                /*  */
#define DEBUG2(x)    do {} while (0);
#endif                /*  */
 
#if defined(QL_DEBUG_LEVEL_3)
#define DEBUG3(x)      do {if(ql4xextended_error_logging == 3) x;} while (0);
#else                /*  */
#define DEBUG3(x)    do {} while (0);
#if !defined(QL_DEBUG_LEVEL_2)
#define DEBUG2_3(x)    do {} while (0);
#endif                /*  */
#endif                /*  */
#if defined(QL_DEBUG_LEVEL_4)
#define DEBUG4(x)    do {x;} while (0);
#else                /*  */
#define DEBUG4(x)    do {} while (0);
#endif                /*  */
 
#if defined(QL_DEBUG_LEVEL_5)
#define DEBUG5(x)    do {x;} while (0);
#else                /*  */
#define DEBUG5(x)    do {} while (0);
#endif                /*  */
 
#if defined(QL_DEBUG_LEVEL_7)
#define DEBUG7(x)    do {x; } while (0)
#else                /*  */
#define DEBUG7(x)    do {} while (0)
#endif                /*  */
 
#if defined(QL_DEBUG_LEVEL_9)
#define DEBUG9(x)    do {x;} while (0);
#else                /*  */
#define DEBUG9(x)    do {} while (0);
#endif                /*  */