Blame view

kernel/linux-rt-4.4.41/drivers/scsi/qla4xxx/ql4_dbg.h 1.57 KB
5113f6f70   김현기   kernel add
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
62
  /*
   * QLogic iSCSI HBA Driver
   * Copyright (c)  2003-2012 QLogic Corporation
   *
   * See LICENSE.qla4xxx for copyright and licensing details.
   */
  
  /*
   * 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				/*  */