Whamcloud - gitweb
- merge 2 weeks of b1_4 fixes onto HEAD
[fs/lustre-release.git] / lustre / portals / include / linux / libcfs.h
1 /* -*- mode: c; c-basic-offset: 8; indent-tabs-mode: nil; -*-
2  * vim:expandtab:shiftwidth=8:tabstop=8:
3  */
4 #ifndef _LIBCFS_H
5
6
7 #define PORTAL_DEBUG
8
9 /* I think this beast is just trying to get cycles_t and get_cycles().
10  * this should be in its own header. */
11 #ifdef __linux__
12 # include <asm/types.h>
13 # if defined(__powerpc__) && !defined(__KERNEL__)
14 #  define __KERNEL__
15 #  include <asm/timex.h>
16 #  undef __KERNEL__
17 # else
18 #  if defined(__KERNEL__)
19 #   include <asm/timex.h>
20 #  else
21 #   include <sys/time.h>
22 #   define cycles_t unsigned long
23 static inline cycles_t get_cycles(void) 
24 {
25         struct timeval tv;
26         gettimeofday(&tv, NULL);
27         return (tv.tv_sec * 100000) + tv.tv_usec;
28 }
29 #  endif
30 # endif
31 #else
32 # include <sys/types.h>
33 typedef u_int32_t __u32;
34 typedef u_int64_t __u64;
35 #endif
36
37 #ifdef __KERNEL__
38 # include <linux/time.h>
39 #else
40 # include <sys/time.h>
41 # define do_gettimeofday(tv) gettimeofday(tv, NULL);
42 #endif
43
44 #ifndef offsetof
45 # define offsetof(typ,memb)     ((unsigned long)((char *)&(((typ *)0)->memb)))
46 #endif
47
48 #define LOWEST_BIT_SET(x)       ((x) & ~((x) - 1))
49
50 /*
51  *  Debugging
52  */
53 extern unsigned int portal_subsystem_debug;
54 extern unsigned int portal_stack;
55 extern unsigned int portal_debug;
56 extern unsigned int portal_printk;
57 extern unsigned int portal_cerror;
58 /* Debugging subsystems (32 bits, non-overlapping) */
59 #define S_UNDEFINED   0x00000001
60 #define S_MDC         0x00000002
61 #define S_MDS         0x00000004
62 #define S_OSC         0x00000008
63 #define S_OST         0x00000010
64 #define S_CLASS       0x00000020
65 #define S_LOG         0x00000040
66 #define S_LLITE       0x00000080
67 #define S_RPC         0x00000100
68 #define S_MGMT        0x00000200
69 #define S_PORTALS     0x00000400
70 #define S_SOCKNAL     0x00000800
71 #define S_QSWNAL      0x00001000
72 #define S_PINGER      0x00002000
73 #define S_FILTER      0x00004000
74 #define S_PTLBD       0x00008000
75 #define S_ECHO        0x00010000
76 #define S_LDLM        0x00020000
77 #define S_LOV         0x00040000
78 #define S_GMNAL       0x00080000
79 #define S_PTLROUTER   0x00100000
80 #define S_COBD        0x00200000
81 #define S_IBNAL       0x00400000
82 #define S_SM          0x00800000
83 #define S_ASOBD       0x01000000
84 #define S_LMV         0x02000000
85 #define S_CMOBD       0x04000000
86
87 /* If you change these values, please keep portals/utils/debug.c
88  * up to date! */
89
90 /* Debugging masks (32 bits, non-overlapping) */
91 #define D_TRACE       0x00000001 /* ENTRY/EXIT markers */
92 #define D_INODE       0x00000002
93 #define D_SUPER       0x00000004
94 #define D_EXT2        0x00000008 /* anything from ext2_debug */
95 #define D_MALLOC      0x00000010 /* print malloc, free information */
96 #define D_CACHE       0x00000020 /* cache-related items */
97 #define D_INFO        0x00000040 /* general information */
98 #define D_IOCTL       0x00000080 /* ioctl related information */
99 #define D_BLOCKS      0x00000100 /* ext2 block allocation */
100 #define D_NET         0x00000200 /* network communications */
101 #define D_WARNING     0x00000400 /* CWARN(...) == CDEBUG (D_WARNING, ...) */
102 #define D_BUFFS       0x00000800
103 #define D_OTHER       0x00001000
104 #define D_DENTRY      0x00002000
105 #define D_PORTALS     0x00004000 /* ENTRY/EXIT markers */
106 #define D_PAGE        0x00008000 /* bulk page handling */
107 #define D_DLMTRACE    0x00010000
108 #define D_ERROR       0x00020000 /* CERROR(...) == CDEBUG (D_ERROR, ...) */
109 #define D_EMERG       0x00040000 /* CEMERG(...) == CDEBUG (D_EMERG, ...) */
110 #define D_HA          0x00080000 /* recovery and failover */
111 #define D_RPCTRACE    0x00100000 /* for distributed debugging */
112 #define D_VFSTRACE    0x00200000
113 #define D_READA       0x00400000 /* read-ahead */
114
115 #ifdef __KERNEL__
116 # include <linux/sched.h> /* THREAD_SIZE */
117 #else
118 # ifndef THREAD_SIZE /* x86_64 has THREAD_SIZE in userspace */
119 #  define THREAD_SIZE 8192
120 # endif
121 #endif
122
123 #define LUSTRE_TRACE_SIZE (THREAD_SIZE >> 5)
124
125 #ifdef __KERNEL__
126 # ifdef  __ia64__
127 #  define CDEBUG_STACK (THREAD_SIZE -                                      \
128                         ((unsigned long)__builtin_dwarf_cfa() &            \
129                          (THREAD_SIZE - 1)))
130 # else
131 #  define CDEBUG_STACK (THREAD_SIZE -                                      \
132                         ((unsigned long)__builtin_frame_address(0) &       \
133                          (THREAD_SIZE - 1)))
134 # endif
135
136 #define CHECK_STACK(stack)                                                    \
137         do {                                                                  \
138                 if ((stack) > 3*THREAD_SIZE/4 && (stack) > portal_stack) {    \
139                         portals_debug_msg(DEBUG_SUBSYSTEM, D_WARNING,         \
140                                           __FILE__, __FUNCTION__, __LINE__,   \
141                                           (stack),"maximum lustre stack %u\n",\
142                                           portal_stack = (stack));            \
143                       /*panic("LBUG");*/                                      \
144                 }                                                             \
145         } while (0)
146 #else /* __KERNEL__ */
147 #define CHECK_STACK(stack) do { } while(0)
148 #define CDEBUG_STACK (0L)
149 #endif /* __KERNEL__ */
150
151 #if 1
152 #define CDEBUG(mask, format, a...)                                            \
153 do {                                                                          \
154         if (portal_cerror == 0)                                               \
155                 break;                                                        \
156         CHECK_STACK(CDEBUG_STACK);                                            \
157         if (((mask) & (D_ERROR | D_EMERG | D_WARNING)) ||                     \
158             (portal_debug & (mask) &&                                         \
159              portal_subsystem_debug & DEBUG_SUBSYSTEM))                       \
160                 portals_debug_msg(DEBUG_SUBSYSTEM, mask,                      \
161                                   __FILE__, __FUNCTION__, __LINE__,           \
162                                   CDEBUG_STACK, format, ## a);                \
163 } while (0)
164
165 #define CWARN(format, a...) CDEBUG(D_WARNING, format, ## a)
166 #define CERROR(format, a...) CDEBUG(D_ERROR, format, ## a)
167 #define CEMERG(format, a...) CDEBUG(D_EMERG, format, ## a)
168
169 #define GOTO(label, rc)                                                 \
170 do {                                                                    \
171         long GOTO__ret = (long)(rc);                                    \
172         CDEBUG(D_TRACE,"Process leaving via %s (rc=%lu : %ld : %lx)\n", \
173                #label, (unsigned long)GOTO__ret, (signed long)GOTO__ret,\
174                (signed long)GOTO__ret);                                 \
175         goto label;                                                     \
176 } while (0)
177
178 #define RETURN(rc)                                                      \
179 do {                                                                    \
180         typeof(rc) RETURN__ret = (rc);                                  \
181         CDEBUG(D_TRACE, "Process leaving (rc=%lu : %ld : %lx)\n",       \
182                (long)RETURN__ret, (long)RETURN__ret, (long)RETURN__ret);\
183         return RETURN__ret;                                             \
184 } while (0)
185
186 #define ENTRY                                                           \
187 do {                                                                    \
188         CDEBUG(D_TRACE, "Process entered\n");                           \
189 } while (0)
190
191 #define EXIT                                                            \
192 do {                                                                    \
193         CDEBUG(D_TRACE, "Process leaving\n");                           \
194 } while(0)
195 #else
196 #define CDEBUG(mask, format, a...)      do { } while (0)
197 #define CWARN(format, a...)             do { } while (0)
198 #define CERROR(format, a...)            printk("<3>" format, ## a)
199 #define CEMERG(format, a...)            printk("<0>" format, ## a)
200 #define GOTO(label, rc)                 do { (void)(rc); goto label; } while (0)
201 #define RETURN(rc)                      return (rc)
202 #define ENTRY                           do { } while (0)
203 #define EXIT                            do { } while (0)
204 #endif
205
206 #define PORTALS_CFG_VERSION 0x00010001;
207
208 struct portals_cfg {
209         __u32 pcfg_version;
210         __u32 pcfg_command;
211
212         __u32 pcfg_nal;
213         __u32 pcfg_flags;
214
215         __u32 pcfg_gw_nal;
216         __u64 pcfg_nid;
217         __u64 pcfg_nid2;
218         __u64 pcfg_nid3;
219         __u32 pcfg_id;
220         __u32 pcfg_misc;
221         __u32 pcfg_fd;
222         __u32 pcfg_count;
223         __u32 pcfg_size;
224         __u32 pcfg_wait;
225
226         __u32 pcfg_plen1; /* buffers in userspace */
227         char *pcfg_pbuf1;
228         __u32 pcfg_plen2; /* buffers in userspace */
229         char *pcfg_pbuf2;
230 };
231
232 #define PCFG_INIT(pcfg, cmd)                            \
233 do {                                                    \
234         memset(&pcfg, 0, sizeof(pcfg));                 \
235         pcfg.pcfg_version = PORTALS_CFG_VERSION;        \
236         pcfg.pcfg_command = (cmd);                      \
237                                                         \
238 } while (0)
239
240 typedef int (nal_cmd_handler_fn)(struct portals_cfg *, void *);
241 int libcfs_nal_cmd_register(int nal, nal_cmd_handler_fn *handler, void *arg);
242 int libcfs_nal_cmd(struct portals_cfg *pcfg);
243 void libcfs_nal_cmd_unregister(int nal);
244
245 struct portal_ioctl_data {
246         __u32 ioc_len;
247         __u32 ioc_version;
248         __u64 ioc_nid;
249         __u64 ioc_nid2;
250         __u64 ioc_nid3;
251         __u32 ioc_count;
252         __u32 ioc_nal;
253         __u32 ioc_nal_cmd;
254         __u32 ioc_fd;
255         __u32 ioc_id;
256
257         __u32 ioc_flags;
258         __u32 ioc_size;
259
260         __u32 ioc_wait;
261         __u32 ioc_timeout;
262         __u32 ioc_misc;
263
264         __u32 ioc_inllen1;
265         char *ioc_inlbuf1;
266         __u32 ioc_inllen2;
267         char *ioc_inlbuf2;
268
269         __u32 ioc_plen1; /* buffers in userspace */
270         char *ioc_pbuf1;
271         __u32 ioc_plen2; /* buffers in userspace */
272         char *ioc_pbuf2;
273
274         char ioc_bulk[0];
275 };
276
277
278 #ifdef __KERNEL__
279
280 #include <linux/list.h>
281
282 struct libcfs_ioctl_handler {
283         struct list_head item;
284         int (*handle_ioctl)(struct portal_ioctl_data *data,
285                             unsigned int cmd, unsigned long args);
286 };
287
288 #define DECLARE_IOCTL_HANDLER(ident, func)              \
289         struct libcfs_ioctl_handler ident = {           \
290                 .item = LIST_HEAD_INIT(ident.item),     \
291                 .handle_ioctl = func                    \
292         }
293
294 int libcfs_register_ioctl(struct libcfs_ioctl_handler *hand);
295 int libcfs_deregister_ioctl(struct libcfs_ioctl_handler *hand);
296
297 #endif
298
299 #define _LIBCFS_H
300
301 #endif /* _LIBCFS_H */