aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSalym Senyonga <salymsash@gmail.com>2014-01-13 08:41:05 -0500
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>2014-01-13 18:35:49 -0500
commit5b50eeffee478f8a174ad977d738642a364b7722 (patch)
tree03ff983073210028e535b7c17cb8d17af3465a53
parentff11917d4f1b03d19dcc3c5f3ad813e428c21f40 (diff)
staging: lustre: libcfs_debug.h: align define values
Give all the constants a uniform alignment. Signed-off-by: Salym Senyonga <salymsash@gmail.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
-rw-r--r--drivers/staging/lustre/include/linux/libcfs/libcfs_debug.h108
1 files changed, 54 insertions, 54 deletions
diff --git a/drivers/staging/lustre/include/linux/libcfs/libcfs_debug.h b/drivers/staging/lustre/include/linux/libcfs/libcfs_debug.h
index 40282b70bd1b..5a3e814bb916 100644
--- a/drivers/staging/lustre/include/linux/libcfs/libcfs_debug.h
+++ b/drivers/staging/lustre/include/linux/libcfs/libcfs_debug.h
@@ -87,71 +87,71 @@ struct ptldebug_header {
87 87
88/* Debugging subsystems (32 bits, non-overlapping) */ 88/* Debugging subsystems (32 bits, non-overlapping) */
89/* keep these in sync with lnet/utils/debug.c and lnet/libcfs/debug.c */ 89/* keep these in sync with lnet/utils/debug.c and lnet/libcfs/debug.c */
90#define S_UNDEFINED 0x00000001 90#define S_UNDEFINED 0x00000001
91#define S_MDC 0x00000002 91#define S_MDC 0x00000002
92#define S_MDS 0x00000004 92#define S_MDS 0x00000004
93#define S_OSC 0x00000008 93#define S_OSC 0x00000008
94#define S_OST 0x00000010 94#define S_OST 0x00000010
95#define S_CLASS 0x00000020 95#define S_CLASS 0x00000020
96#define S_LOG 0x00000040 96#define S_LOG 0x00000040
97#define S_LLITE 0x00000080 97#define S_LLITE 0x00000080
98#define S_RPC 0x00000100 98#define S_RPC 0x00000100
99#define S_MGMT 0x00000200 99#define S_MGMT 0x00000200
100#define S_LNET 0x00000400 100#define S_LNET 0x00000400
101#define S_LND 0x00000800 /* ALL LNDs */ 101#define S_LND 0x00000800 /* ALL LNDs */
102#define S_PINGER 0x00001000 102#define S_PINGER 0x00001000
103#define S_FILTER 0x00002000 103#define S_FILTER 0x00002000
104/* unused */ 104/* unused */
105#define S_ECHO 0x00008000 105#define S_ECHO 0x00008000
106#define S_LDLM 0x00010000 106#define S_LDLM 0x00010000
107#define S_LOV 0x00020000 107#define S_LOV 0x00020000
108#define S_LQUOTA 0x00040000 108#define S_LQUOTA 0x00040000
109#define S_OSD 0x00080000 109#define S_OSD 0x00080000
110/* unused */ 110/* unused */
111/* unused */ 111/* unused */
112/* unused */ 112/* unused */
113#define S_LMV 0x00800000 /* b_new_cmd */ 113#define S_LMV 0x00800000 /* b_new_cmd */
114/* unused */ 114/* unused */
115#define S_SEC 0x02000000 /* upcall cache */ 115#define S_SEC 0x02000000 /* upcall cache */
116#define S_GSS 0x04000000 /* b_new_cmd */ 116#define S_GSS 0x04000000 /* b_new_cmd */
117/* unused */ 117/* unused */
118#define S_MGC 0x10000000 118#define S_MGC 0x10000000
119#define S_MGS 0x20000000 119#define S_MGS 0x20000000
120#define S_FID 0x40000000 /* b_new_cmd */ 120#define S_FID 0x40000000 /* b_new_cmd */
121#define S_FLD 0x80000000 /* b_new_cmd */ 121#define S_FLD 0x80000000 /* b_new_cmd */
122/* keep these in sync with lnet/utils/debug.c and lnet/libcfs/debug.c */ 122/* keep these in sync with lnet/utils/debug.c and lnet/libcfs/debug.c */
123 123
124/* Debugging masks (32 bits, non-overlapping) */ 124/* Debugging masks (32 bits, non-overlapping) */
125/* keep these in sync with lnet/utils/debug.c and lnet/libcfs/debug.c */ 125/* keep these in sync with lnet/utils/debug.c and lnet/libcfs/debug.c */
126#define D_TRACE 0x00000001 /* ENTRY/EXIT markers */ 126#define D_TRACE 0x00000001 /* ENTRY/EXIT markers */
127#define D_INODE 0x00000002 127#define D_INODE 0x00000002
128#define D_SUPER 0x00000004 128#define D_SUPER 0x00000004
129#define D_EXT2 0x00000008 /* anything from ext2_debug */ 129#define D_EXT2 0x00000008 /* anything from ext2_debug */
130#define D_MALLOC 0x00000010 /* print malloc, free information */ 130#define D_MALLOC 0x00000010 /* print malloc, free information */
131#define D_CACHE 0x00000020 /* cache-related items */ 131#define D_CACHE 0x00000020 /* cache-related items */
132#define D_INFO 0x00000040 /* general information */ 132#define D_INFO 0x00000040 /* general information */
133#define D_IOCTL 0x00000080 /* ioctl related information */ 133#define D_IOCTL 0x00000080 /* ioctl related information */
134#define D_NETERROR 0x00000100 /* network errors */ 134#define D_NETERROR 0x00000100 /* network errors */
135#define D_NET 0x00000200 /* network communications */ 135#define D_NET 0x00000200 /* network communications */
136#define D_WARNING 0x00000400 /* CWARN(...) == CDEBUG (D_WARNING, ...) */ 136#define D_WARNING 0x00000400 /* CWARN(...) == CDEBUG (D_WARNING, ...) */
137#define D_BUFFS 0x00000800 137#define D_BUFFS 0x00000800
138#define D_OTHER 0x00001000 138#define D_OTHER 0x00001000
139#define D_DENTRY 0x00002000 139#define D_DENTRY 0x00002000
140#define D_NETTRACE 0x00004000 140#define D_NETTRACE 0x00004000
141#define D_PAGE 0x00008000 /* bulk page handling */ 141#define D_PAGE 0x00008000 /* bulk page handling */
142#define D_DLMTRACE 0x00010000 142#define D_DLMTRACE 0x00010000
143#define D_ERROR 0x00020000 /* CERROR(...) == CDEBUG (D_ERROR, ...) */ 143#define D_ERROR 0x00020000 /* CERROR(...) == CDEBUG (D_ERROR, ...) */
144#define D_EMERG 0x00040000 /* CEMERG(...) == CDEBUG (D_EMERG, ...) */ 144#define D_EMERG 0x00040000 /* CEMERG(...) == CDEBUG (D_EMERG, ...) */
145#define D_HA 0x00080000 /* recovery and failover */ 145#define D_HA 0x00080000 /* recovery and failover */
146#define D_RPCTRACE 0x00100000 /* for distributed debugging */ 146#define D_RPCTRACE 0x00100000 /* for distributed debugging */
147#define D_VFSTRACE 0x00200000 147#define D_VFSTRACE 0x00200000
148#define D_READA 0x00400000 /* read-ahead */ 148#define D_READA 0x00400000 /* read-ahead */
149#define D_MMAP 0x00800000 149#define D_MMAP 0x00800000
150#define D_CONFIG 0x01000000 150#define D_CONFIG 0x01000000
151#define D_CONSOLE 0x02000000 151#define D_CONSOLE 0x02000000
152#define D_QUOTA 0x04000000 152#define D_QUOTA 0x04000000
153#define D_SEC 0x08000000 153#define D_SEC 0x08000000
154#define D_LFSCK 0x10000000 /* For both OI scrub and LFSCK */ 154#define D_LFSCK 0x10000000 /* For both OI scrub and LFSCK */
155/* keep these in sync with lnet/{utils,libcfs}/debug.c */ 155/* keep these in sync with lnet/{utils,libcfs}/debug.c */
156 156
157#define D_HSM D_TRACE 157#define D_HSM D_TRACE