Whamcloud - gitweb
land b_ost_amd onto HEAD.
[fs/lustre-release.git] / lnet / 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 #define D_CONFIG      0x00800000
115
116 #ifdef __KERNEL__
117 # include <linux/sched.h> /* THREAD_SIZE */
118 #else
119 # ifndef THREAD_SIZE /* x86_64 has THREAD_SIZE in userspace */
120 #  define THREAD_SIZE 8192
121 # endif
122 #endif
123
124 #define LUSTRE_TRACE_SIZE (THREAD_SIZE >> 5)
125
126 #ifdef __KERNEL__
127 # ifdef  __ia64__
128 #  define CDEBUG_STACK (THREAD_SIZE -                                      \
129                         ((unsigned long)__builtin_dwarf_cfa() &            \
130                          (THREAD_SIZE - 1)))
131 # else
132 #  define CDEBUG_STACK (THREAD_SIZE -                                      \
133                         ((unsigned long)__builtin_frame_address(0) &       \
134                          (THREAD_SIZE - 1)))
135 # endif
136
137 #define CHECK_STACK(stack)                                                    \
138         do {                                                                  \
139                 if ((stack) > 3*THREAD_SIZE/4 && (stack) > portal_stack) {    \
140                         portals_debug_msg(DEBUG_SUBSYSTEM, D_WARNING,         \
141                                           __FILE__, __FUNCTION__, __LINE__,   \
142                                           (stack),"maximum lustre stack %u\n",\
143                                           portal_stack = (stack));            \
144                       /*panic("LBUG");*/                                      \
145                 }                                                             \
146         } while (0)
147 #else /* __KERNEL__ */
148 #define CHECK_STACK(stack) do { } while(0)
149 #define CDEBUG_STACK (0L)
150 #endif /* __KERNEL__ */
151
152 #if 1
153 #define CDEBUG(mask, format, a...)                                            \
154 do {                                                                          \
155         if (portal_cerror == 0)                                               \
156                 break;                                                        \
157         CHECK_STACK(CDEBUG_STACK);                                            \
158         if (((mask) & (D_ERROR | D_EMERG | D_WARNING)) ||                     \
159             (portal_debug & (mask) &&                                         \
160              portal_subsystem_debug & DEBUG_SUBSYSTEM))                       \
161                 portals_debug_msg(DEBUG_SUBSYSTEM, mask,                      \
162                                   __FILE__, __FUNCTION__, __LINE__,           \
163                                   CDEBUG_STACK, format, ## a);                \
164 } while (0)
165
166 #define CWARN(format, a...) CDEBUG(D_WARNING, format, ## a)
167 #define CERROR(format, a...) CDEBUG(D_ERROR, format, ## a)
168 #define CEMERG(format, a...) CDEBUG(D_EMERG, format, ## a)
169
170 #define GOTO(label, rc)                                                 \
171 do {                                                                    \
172         long GOTO__ret = (long)(rc);                                    \
173         CDEBUG(D_TRACE,"Process leaving via %s (rc=%lu : %ld : %lx)\n", \
174                #label, (unsigned long)GOTO__ret, (signed long)GOTO__ret,\
175                (signed long)GOTO__ret);                                 \
176         goto label;                                                     \
177 } while (0)
178
179 #define RETURN(rc)                                                      \
180 do {                                                                    \
181         typeof(rc) RETURN__ret = (rc);                                  \
182         CDEBUG(D_TRACE, "Process leaving (rc=%lu : %ld : %lx)\n",       \
183                (long)RETURN__ret, (long)RETURN__ret, (long)RETURN__ret);\
184         return RETURN__ret;                                             \
185 } while (0)
186
187 #define ENTRY                                                           \
188 do {                                                                    \
189         CDEBUG(D_TRACE, "Process entered\n");                           \
190 } while (0)
191
192 #define EXIT                                                            \
193 do {                                                                    \
194         CDEBUG(D_TRACE, "Process leaving\n");                           \
195 } while(0)
196 #else
197 #define CDEBUG(mask, format, a...)      do { } while (0)
198 #define CWARN(format, a...)             do { } while (0)
199 #define CERROR(format, a...)            printk("<3>" format, ## a)
200 #define CEMERG(format, a...)            printk("<0>" format, ## a)
201 #define GOTO(label, rc)                 do { (void)(rc); goto label; } while (0)
202 #define RETURN(rc)                      return (rc)
203 #define ENTRY                           do { } while (0)
204 #define EXIT                            do { } while (0)
205 #endif
206
207 #define PORTALS_CFG_VERSION 0x00010001;
208
209 struct portals_cfg {
210         __u32 pcfg_version;
211         __u32 pcfg_command;
212
213         __u32 pcfg_nal;
214         __u32 pcfg_flags;
215
216         __u32 pcfg_gw_nal;
217         __u64 pcfg_nid;
218         __u64 pcfg_nid2;
219         __u64 pcfg_nid3;
220         __u32 pcfg_id;
221         __u32 pcfg_misc;
222         __u32 pcfg_fd;
223         __u32 pcfg_count;
224         __u32 pcfg_size;
225         __u32 pcfg_wait;
226
227         __u32 pcfg_plen1; /* buffers in userspace */
228         char *pcfg_pbuf1;
229         __u32 pcfg_plen2; /* buffers in userspace */
230         char *pcfg_pbuf2;
231 };
232
233 #define PCFG_INIT(pcfg, cmd)                            \
234 do {                                                    \
235         memset(&pcfg, 0, sizeof(pcfg));                 \
236         pcfg.pcfg_version = PORTALS_CFG_VERSION;        \
237         pcfg.pcfg_command = (cmd);                      \
238                                                         \
239 } while (0)
240
241 typedef int (nal_cmd_handler_fn)(struct portals_cfg *, void *);
242 int libcfs_nal_cmd_register(int nal, nal_cmd_handler_fn *handler, void *arg);
243 int libcfs_nal_cmd(struct portals_cfg *pcfg);
244 void libcfs_nal_cmd_unregister(int nal);
245
246 struct portal_ioctl_data {
247         __u32 ioc_len;
248         __u32 ioc_version;
249         __u64 ioc_nid;
250         __u64 ioc_nid2;
251         __u64 ioc_nid3;
252         __u32 ioc_count;
253         __u32 ioc_nal;
254         __u32 ioc_nal_cmd;
255         __u32 ioc_fd;
256         __u32 ioc_id;
257
258         __u32 ioc_flags;
259         __u32 ioc_size;
260
261         __u32 ioc_wait;
262         __u32 ioc_timeout;
263         __u32 ioc_misc;
264
265         __u32 ioc_inllen1;
266         char *ioc_inlbuf1;
267         __u32 ioc_inllen2;
268         char *ioc_inlbuf2;
269
270         __u32 ioc_plen1; /* buffers in userspace */
271         char *ioc_pbuf1;
272         __u32 ioc_plen2; /* buffers in userspace */
273         char *ioc_pbuf2;
274
275         char ioc_bulk[0];
276 };
277
278
279 #ifdef __KERNEL__
280
281 #include <linux/list.h>
282
283 struct libcfs_ioctl_handler {
284         struct list_head item;
285         int (*handle_ioctl)(struct portal_ioctl_data *data,
286                             unsigned int cmd, unsigned long args);
287 };
288
289 #define DECLARE_IOCTL_HANDLER(ident, func)              \
290         struct libcfs_ioctl_handler ident = {           \
291                 .item = LIST_HEAD_INIT(ident.item),     \
292                 .handle_ioctl = func                    \
293         }
294
295 int libcfs_register_ioctl(struct libcfs_ioctl_handler *hand);
296 int libcfs_deregister_ioctl(struct libcfs_ioctl_handler *hand);
297
298 #endif
299
300 #define _LIBCFS_H
301
302 #endif /* _LIBCFS_H */