Whamcloud - gitweb
Land from b_hd_pid to HEAD
[fs/lustre-release.git] / lustre / portals / include / linux / kp30.h
1 /* -*- mode: c; c-basic-offset: 8; indent-tabs-mode: nil; -*-
2  * vim:expandtab:shiftwidth=8:tabstop=8:
3  */
4 #ifndef _KP30_INCLUDED
5 #define _KP30_INCLUDED
6
7 #include <linux/libcfs.h>
8 #define PORTAL_DEBUG
9
10 #ifdef __KERNEL__
11 # include <linux/vmalloc.h>
12 # include <linux/time.h>
13 # include <linux/slab.h>
14 # include <linux/interrupt.h>
15 # include <linux/highmem.h>
16 # include <linux/module.h>
17 # include <linux/version.h>
18 # include <portals/p30.h>
19 # include <linux/smp_lock.h>
20 # include <asm/atomic.h>
21
22 #if (LINUX_VERSION_CODE < KERNEL_VERSION(2,5,0))
23 #define schedule_work schedule_task
24 #define prepare_work(wq,cb,cbdata)                                            \
25 do {                                                                          \
26         INIT_TQUEUE((wq), 0, 0);                                              \
27         PREPARE_TQUEUE((wq), (cb), (cbdata));                                 \
28 } while (0)
29
30 #define PageUptodate Page_Uptodate
31 #define our_recalc_sigpending(current) recalc_sigpending(current)
32 #define num_online_cpus() smp_num_cpus
33 static inline void our_cond_resched(void)
34 {
35         if (current->need_resched)
36                schedule ();
37 }
38 #define work_struct_t       struct tq_struct
39
40 #else
41
42 #define prepare_work(wq,cb,cbdata)                                            \
43 do {                                                                          \
44         INIT_WORK((wq), (void *)(cb), (void *)(cbdata));                      \
45 } while (0)
46 #define wait_on_page wait_on_page_locked
47 #define our_recalc_sigpending(current) recalc_sigpending()
48 #define strtok(a,b) strpbrk(a, b)
49 static inline void our_cond_resched(void)
50 {
51         cond_resched();
52 }
53 #define work_struct_t      struct work_struct
54
55 #endif /* LINUX_VERSION_CODE < KERNEL_VERSION(2,5,0) */
56
57 #ifdef PORTAL_DEBUG
58 extern void kportal_assertion_failed(char *expr, char *file, const char *func,
59                                      const int line);
60 #define LASSERT(e) ((e) ? 0 : kportal_assertion_failed( #e , __FILE__,  \
61                                                         __FUNCTION__, __LINE__))
62 /* it would be great to dump_stack() here, but some kernels
63  * export it as show_stack() and I can't be bothered to
64  * proprely engage in that dance right now */
65 #define LASSERTF(cond, fmt...)                                                \
66         do {                                                                  \
67                 if (unlikely(!(cond))) {                                      \
68                         portals_debug_msg(0, D_EMERG,  __FILE__, __FUNCTION__,\
69                                           __LINE__,  CDEBUG_STACK,            \
70                                           "ASSERTION(" #cond ") failed:" fmt);\
71                         LBUG();                                               \
72                 }                                                             \
73         } while (0)
74
75 #else
76 #define LASSERT(e)
77 #define LASSERTF(cond, fmt...) do { } while (0)
78 #endif
79
80 #ifdef CONFIG_SMP
81 #define LASSERT_SPIN_LOCKED(lock) LASSERT(spin_is_locked(lock))
82 #else
83 #define LASSERT_SPIN_LOCKED(lock) do {} while(0)
84 #endif
85
86 #ifdef __arch_um__
87 #define LBUG_WITH_LOC(file, func, line)                                 \
88 do {                                                                    \
89         CEMERG("LBUG - trying to dump log to /tmp/lustre-log\n");       \
90         portals_debug_dumplog();                                        \
91         portals_run_lbug_upcall(file, func, line);                      \
92         panic("LBUG");                                                  \
93 } while (0)
94 #else
95 #define LBUG_WITH_LOC(file, func, line)                                 \
96 do {                                                                    \
97         CEMERG("LBUG\n");                                               \
98         portals_debug_dumplog();                                        \
99         portals_run_lbug_upcall(file, func, line);                      \
100         set_task_state(current, TASK_UNINTERRUPTIBLE);                  \
101         schedule();                                                     \
102 } while (0)
103 #endif /* __arch_um__ */
104
105 #define LBUG() LBUG_WITH_LOC(__FILE__, __FUNCTION__, __LINE__)
106
107 /*
108  * Memory
109  */
110 #ifdef PORTAL_DEBUG
111 extern atomic_t portal_kmemory;
112
113 # define portal_kmem_inc(ptr, size)                                           \
114 do {                                                                          \
115         atomic_add(size, &portal_kmemory);                                    \
116 } while (0)
117
118 # define portal_kmem_dec(ptr, size) do {                                      \
119         atomic_sub(size, &portal_kmemory);                                    \
120 } while (0)
121
122 #else
123 # define portal_kmem_inc(ptr, size) do {} while (0)
124 # define portal_kmem_dec(ptr, size) do {} while (0)
125 #endif /* PORTAL_DEBUG */
126
127 #define PORTAL_VMALLOC_SIZE        16384
128
129 #define PORTAL_ALLOC_GFP(ptr, size, mask)                                 \
130 do {                                                                      \
131         LASSERT(!in_interrupt() ||                                        \
132                (size <= PORTAL_VMALLOC_SIZE && mask == GFP_ATOMIC));      \
133         if ((size) > PORTAL_VMALLOC_SIZE)                                 \
134                 (ptr) = vmalloc(size);                                    \
135         else                                                              \
136                 (ptr) = kmalloc((size), (mask));                          \
137         if ((ptr) == NULL) {                                              \
138                 CERROR("PORTALS: out of memory at %s:%d (tried to alloc '"\
139                        #ptr "' = %d)\n", __FILE__, __LINE__, (int)(size));\
140                 CERROR("PORTALS: %d total bytes allocated by portals\n",  \
141                        atomic_read(&portal_kmemory));                     \
142         } else {                                                          \
143                 portal_kmem_inc((ptr), (size));                           \
144                 memset((ptr), 0, (size));                                 \
145         }                                                                 \
146         CDEBUG(D_MALLOC, "kmalloced '" #ptr "': %d at %p (tot %d).\n",    \
147                (int)(size), (ptr), atomic_read (&portal_kmemory));        \
148 } while (0)
149
150 #define PORTAL_ALLOC(ptr, size) \
151         PORTAL_ALLOC_GFP(ptr, size, GFP_NOFS)
152
153 #define PORTAL_ALLOC_ATOMIC(ptr, size) \
154         PORTAL_ALLOC_GFP(ptr, size, GFP_ATOMIC)
155
156 #define PORTAL_FREE(ptr, size)                                          \
157 do {                                                                    \
158         int s = (size);                                                 \
159         if ((ptr) == NULL) {                                            \
160                 CERROR("PORTALS: free NULL '" #ptr "' (%d bytes) at "   \
161                        "%s:%d\n", s, __FILE__, __LINE__);               \
162                 break;                                                  \
163         }                                                               \
164         if (s > PORTAL_VMALLOC_SIZE)                                    \
165                 vfree(ptr);                                             \
166         else                                                            \
167                 kfree(ptr);                                             \
168         portal_kmem_dec((ptr), s);                                      \
169         CDEBUG(D_MALLOC, "kfreed '" #ptr "': %d at %p (tot %d).\n",     \
170                s, (ptr), atomic_read(&portal_kmemory));                 \
171 } while (0)
172
173 /* ------------------------------------------------------------------- */
174
175 #if (LINUX_VERSION_CODE < KERNEL_VERSION(2,5,0))
176
177 #define PORTAL_SYMBOL_REGISTER(x) inter_module_register(#x, THIS_MODULE, &x)
178 #define PORTAL_SYMBOL_UNREGISTER(x) inter_module_unregister(#x)
179
180 #define PORTAL_SYMBOL_GET(x) ((typeof(&x))inter_module_get(#x))
181 #define PORTAL_SYMBOL_PUT(x) inter_module_put(#x)
182
183 #define PORTAL_MODULE_USE       MOD_INC_USE_COUNT
184 #define PORTAL_MODULE_UNUSE     MOD_DEC_USE_COUNT
185 #else
186
187 #define PORTAL_SYMBOL_REGISTER(x)
188 #define PORTAL_SYMBOL_UNREGISTER(x)
189
190 #define PORTAL_SYMBOL_GET(x) symbol_get(x)
191 #define PORTAL_SYMBOL_PUT(x) symbol_put(x)
192
193 #define PORTAL_MODULE_USE       try_module_get(THIS_MODULE)
194 #define PORTAL_MODULE_UNUSE     module_put(THIS_MODULE)
195
196 #endif
197
198 /******************************************************************************/
199
200 #ifdef PORTALS_PROFILING
201 #define prof_enum(FOO) PROF__##FOO
202 enum {
203         prof_enum(our_recvmsg),
204         prof_enum(our_sendmsg),
205         prof_enum(socknal_recv),
206         prof_enum(lib_parse),
207         prof_enum(conn_list_walk),
208         prof_enum(memcpy),
209         prof_enum(lib_finalize),
210         prof_enum(pingcli_time),
211         prof_enum(gmnal_send),
212         prof_enum(gmnal_recv),
213         MAX_PROFS
214 };
215
216 struct prof_ent {
217         char *str;
218         /* hrmph.  wrap-tastic. */
219         u32       starts;
220         u32       finishes;
221         cycles_t  total_cycles;
222         cycles_t  start;
223         cycles_t  end;
224 };
225
226 extern struct prof_ent prof_ents[MAX_PROFS];
227
228 #define PROF_START(FOO)                                         \
229         do {                                                    \
230                 struct prof_ent *pe = &prof_ents[PROF__##FOO];  \
231                 pe->starts++;                                   \
232                 pe->start = get_cycles();                       \
233         } while (0)
234
235 #define PROF_FINISH(FOO)                                        \
236         do {                                                    \
237                 struct prof_ent *pe = &prof_ents[PROF__##FOO];  \
238                 pe->finishes++;                                 \
239                 pe->end = get_cycles();                         \
240                 pe->total_cycles += (pe->end - pe->start);      \
241         } while (0)
242 #else /* !PORTALS_PROFILING */
243 #define PROF_START(FOO) do {} while(0)
244 #define PROF_FINISH(FOO) do {} while(0)
245 #endif /* PORTALS_PROFILING */
246
247 /* debug.c */
248 extern spinlock_t stack_backtrace_lock;
249
250 char *portals_debug_dumpstack(void);
251 void portals_run_upcall(char **argv);
252 void portals_run_lbug_upcall(char * file, const char *fn, const int line);
253 void portals_debug_dumplog(void);
254 int portals_debug_init(unsigned long bufsize);
255 int portals_debug_cleanup(void);
256 int portals_debug_clear_buffer(void);
257 int portals_debug_mark_buffer(char *text);
258 int portals_debug_set_daemon(unsigned int cmd, unsigned int length,
259                              char *file, unsigned int size);
260 __s32 portals_debug_copy_to_user(char *buf, unsigned long len);
261 #if (__GNUC__)
262 /* Use the special GNU C __attribute__ hack to have the compiler check the
263  * printf style argument string against the actual argument count and
264  * types.
265  */
266 #ifdef printf
267 # warning printf has been defined as a macro...
268 # undef printf
269 #endif
270 void portals_debug_msg(int subsys, int mask, char *file, const char *fn,
271                        const int line, unsigned long stack,
272                        char *format, ...)
273         __attribute__ ((format (printf, 7, 8)));
274 #else
275 void portals_debug_msg(int subsys, int mask, char *file, const char *fn,
276                        const int line, unsigned long stack,
277                        const char *format, ...);
278 #endif /* __GNUC__ */
279 void portals_debug_set_level(unsigned int debug_level);
280
281 # define fprintf(a, format, b...) CDEBUG(D_OTHER, format , ## b)
282 # define printf(format, b...) CDEBUG(D_OTHER, format , ## b)
283 # define time(a) CURRENT_TIME
284
285 extern void kportal_daemonize (char *name);
286 extern void kportal_blockallsigs (void);
287
288 #else  /* !__KERNEL__ */
289 # include <stdio.h>
290 # include <stdlib.h>
291 #ifndef __CYGWIN__
292 # include <stdint.h>
293 #else
294 # include <cygwin-ioctl.h>
295 #endif
296 # include <unistd.h>
297 # include <time.h>
298 # include <limits.h>
299 # include <asm/types.h>
300 # ifndef DEBUG_SUBSYSTEM
301 #  define DEBUG_SUBSYSTEM S_UNDEFINED
302 # endif
303 # ifdef PORTAL_DEBUG
304 #  undef NDEBUG
305 #  include <assert.h>
306 #  define LASSERT(e)     assert(e)
307 #  define LASSERTF(cond, args...)                                              \
308 do {                                                                           \
309           if (!(cond))                                                         \
310                 CERROR(args);                                                  \
311           assert(cond);                                                        \
312 } while (0)
313 # else
314 #  define LASSERT(e)
315 #  define LASSERTF(cond, args...) do { } while (0)
316 # endif
317 # define printk(format, args...) printf (format, ## args)
318 # define PORTAL_ALLOC(ptr, size) do { (ptr) = malloc(size); } while (0);
319 # define PORTAL_FREE(a, b) do { free(a); } while (0);
320 void portals_debug_dumplog(void);
321 # define portals_debug_msg(subsys, mask, file, fn, line, stack, format, a...) \
322     printf("%02x:%06x (@%lu %s:%s,l. %d %d %lu): " format,                    \
323            (subsys), (mask), (long)time(0), file, fn, line,                   \
324            getpid() , stack, ## a);
325 #endif
326
327 /* support decl needed both by kernel and liblustre */
328 char *portals_nid2str(int nal, ptl_nid_t nid, char *str);
329 char *portals_id2str(int nal, ptl_process_id_t nid, char *str);
330
331 #ifndef CURRENT_TIME
332 # define CURRENT_TIME time(0)
333 #endif
334
335 /******************************************************************************/
336 /* Light-weight trace
337  * Support for temporary event tracing with minimal Heisenberg effect. */
338 #define LWT_SUPPORT  0
339
340 #define LWT_MEMORY   (64<<20)
341 #define LWT_MAX_CPUS 4
342
343 typedef struct {
344         cycles_t    lwte_when;
345         char       *lwte_where;
346         void       *lwte_task;
347         long        lwte_p1;
348         long        lwte_p2;
349         long        lwte_p3;
350         long        lwte_p4;
351 #if BITS_PER_LONG > 32
352         long        lwte_pad;
353 #endif
354 } lwt_event_t;
355
356 #if LWT_SUPPORT
357 #ifdef __KERNEL__
358 #define LWT_EVENTS_PER_PAGE (PAGE_SIZE / sizeof (lwt_event_t))
359
360 typedef struct _lwt_page {
361         struct list_head     lwtp_list;
362         struct page         *lwtp_page;
363         lwt_event_t         *lwtp_events;
364 } lwt_page_t;
365
366 typedef struct {
367         int                lwtc_current_index;
368         lwt_page_t        *lwtc_current_page;
369 } lwt_cpu_t;
370
371 extern int       lwt_enabled;
372 extern lwt_cpu_t lwt_cpus[];
373
374 extern int  lwt_init (void);
375 extern void lwt_fini (void);
376 extern int  lwt_lookup_string (int *size, char *knlptr,
377                                char *usrptr, int usrsize);
378 extern int  lwt_control (int enable, int clear);
379 extern int  lwt_snapshot (cycles_t *now, int *ncpu, int *total_size,
380                           void *user_ptr, int user_size);
381
382 /* Note that we _don't_ define LWT_EVENT at all if LWT_SUPPORT isn't set.
383  * This stuff is meant for finding specific problems; it never stays in
384  * production code... */
385
386 #define LWTSTR(n)       #n
387 #define LWTWHERE(f,l)   f ":" LWTSTR(l)
388
389 #define LWT_EVENT(p1, p2, p3, p4)                                       \
390 do {                                                                    \
391         unsigned long    flags;                                         \
392         lwt_cpu_t       *cpu;                                           \
393         lwt_page_t      *p;                                             \
394         lwt_event_t     *e;                                             \
395                                                                         \
396         local_irq_save (flags);                                         \
397                                                                         \
398         if (lwt_enabled) {                                              \
399                 cpu = &lwt_cpus[smp_processor_id()];                    \
400                 p = cpu->lwtc_current_page;                             \
401                 e = &p->lwtp_events[cpu->lwtc_current_index++];         \
402                                                                         \
403                 if (cpu->lwtc_current_index >= LWT_EVENTS_PER_PAGE) {   \
404                         cpu->lwtc_current_page =                        \
405                                 list_entry (p->lwtp_list.next,          \
406                                             lwt_page_t, lwtp_list);     \
407                         cpu->lwtc_current_index = 0;                    \
408                 }                                                       \
409                                                                         \
410                 e->lwte_when  = get_cycles();                           \
411                 e->lwte_where = LWTWHERE(__FILE__,__LINE__);            \
412                 e->lwte_task  = current;                                \
413                 e->lwte_p1    = (long)(p1);                             \
414                 e->lwte_p2    = (long)(p2);                             \
415                 e->lwte_p3    = (long)(p3);                             \
416                 e->lwte_p4    = (long)(p4);                             \
417         }                                                               \
418                                                                         \
419         local_irq_restore (flags);                                      \
420 } while (0)
421 #else  /* __KERNEL__ */
422 #define LWT_EVENT(p1,p2,p3,p4)     /* no userland implementation yet */
423 #endif /* __KERNEL__ */
424 #endif /* LWT_SUPPORT */
425
426 struct portals_device_userstate
427 {
428         int          pdu_memhog_pages;
429         struct page *pdu_memhog_root_page;
430 };
431
432 #include <linux/portals_lib.h>
433
434 /*
435  * USER LEVEL STUFF BELOW
436  */
437
438 #define PORTAL_IOCTL_VERSION 0x00010007
439 #define PING_SYNC       0
440 #define PING_ASYNC      1
441
442 struct portal_ioctl_hdr {
443         __u32 ioc_len;
444         __u32 ioc_version;
445 };
446
447 struct portals_debug_ioctl_data
448 {
449         struct portal_ioctl_hdr hdr;
450         unsigned int subs;
451         unsigned int debug;
452 };
453
454 #define PORTAL_IOC_INIT(data)                           \
455 do {                                                    \
456         memset(&data, 0, sizeof(data));                 \
457         data.ioc_version = PORTAL_IOCTL_VERSION;        \
458         data.ioc_len = sizeof(data);                    \
459 } while (0)
460
461 /* FIXME check conflict with lustre_lib.h */
462 #define PTL_IOC_DEBUG_MASK             _IOWR('f', 250, long)
463
464 static inline int portal_ioctl_packlen(struct portal_ioctl_data *data)
465 {
466         int len = sizeof(*data);
467         len += size_round(data->ioc_inllen1);
468         len += size_round(data->ioc_inllen2);
469         return len;
470 }
471
472 static inline int portal_ioctl_is_invalid(struct portal_ioctl_data *data)
473 {
474         if (data->ioc_len > (1<<30)) {
475                 CERROR ("PORTALS ioctl: ioc_len larger than 1<<30\n");
476                 return 1;
477         }
478         if (data->ioc_inllen1 > (1<<30)) {
479                 CERROR ("PORTALS ioctl: ioc_inllen1 larger than 1<<30\n");
480                 return 1;
481         }
482         if (data->ioc_inllen2 > (1<<30)) {
483                 CERROR ("PORTALS ioctl: ioc_inllen2 larger than 1<<30\n");
484                 return 1;
485         }
486         if (data->ioc_inlbuf1 && !data->ioc_inllen1) {
487                 CERROR ("PORTALS ioctl: inlbuf1 pointer but 0 length\n");
488                 return 1;
489         }
490         if (data->ioc_inlbuf2 && !data->ioc_inllen2) {
491                 CERROR ("PORTALS ioctl: inlbuf2 pointer but 0 length\n");
492                 return 1;
493         }
494         if (data->ioc_pbuf1 && !data->ioc_plen1) {
495                 CERROR ("PORTALS ioctl: pbuf1 pointer but 0 length\n");
496                 return 1;
497         }
498         if (data->ioc_pbuf2 && !data->ioc_plen2) {
499                 CERROR ("PORTALS ioctl: pbuf2 pointer but 0 length\n");
500                 return 1;
501         }
502         if (data->ioc_plen1 && !data->ioc_pbuf1) {
503                 CERROR ("PORTALS ioctl: plen1 nonzero but no pbuf1 pointer\n");
504                 return 1;
505         }
506         if (data->ioc_plen2 && !data->ioc_pbuf2) {
507                 CERROR ("PORTALS ioctl: plen2 nonzero but no pbuf2 pointer\n");
508                 return 1;
509         }
510         if (portal_ioctl_packlen(data) != data->ioc_len ) {
511                 CERROR ("PORTALS ioctl: packlen != ioc_len\n");
512                 return 1;
513         }
514         if (data->ioc_inllen1 &&
515             data->ioc_bulk[data->ioc_inllen1 - 1] != '\0') {
516                 CERROR ("PORTALS ioctl: inlbuf1 not 0 terminated\n");
517                 return 1;
518         }
519         if (data->ioc_inllen2 &&
520             data->ioc_bulk[size_round(data->ioc_inllen1) +
521                            data->ioc_inllen2 - 1] != '\0') {
522                 CERROR ("PORTALS ioctl: inlbuf2 not 0 terminated\n");
523                 return 1;
524         }
525         return 0;
526 }
527
528 #ifndef __KERNEL__
529 static inline int portal_ioctl_pack(struct portal_ioctl_data *data, char **pbuf,
530                                     int max)
531 {
532         char *ptr;
533         struct portal_ioctl_data *overlay;
534         data->ioc_len = portal_ioctl_packlen(data);
535         data->ioc_version = PORTAL_IOCTL_VERSION;
536
537         if (*pbuf && portal_ioctl_packlen(data) > max)
538                 return 1;
539         if (*pbuf == NULL) {
540                 *pbuf = malloc(data->ioc_len);
541         }
542         if (!*pbuf)
543                 return 1;
544         overlay = (struct portal_ioctl_data *)*pbuf;
545         memcpy(*pbuf, data, sizeof(*data));
546
547         ptr = overlay->ioc_bulk;
548         if (data->ioc_inlbuf1)
549                 LOGL(data->ioc_inlbuf1, data->ioc_inllen1, ptr);
550         if (data->ioc_inlbuf2)
551                 LOGL(data->ioc_inlbuf2, data->ioc_inllen2, ptr);
552         if (portal_ioctl_is_invalid(overlay))
553                 return 1;
554
555         return 0;
556 }
557 #else
558 #include <asm/uaccess.h>
559
560 /* buffer MUST be at least the size of portal_ioctl_hdr */
561 static inline int portal_ioctl_getdata(char *buf, char *end, void *arg)
562 {
563         struct portal_ioctl_hdr *hdr;
564         struct portal_ioctl_data *data;
565         int err;
566         ENTRY;
567
568         hdr = (struct portal_ioctl_hdr *)buf;
569         data = (struct portal_ioctl_data *)buf;
570
571         err = copy_from_user(buf, (void *)arg, sizeof(*hdr));
572         if ( err ) {
573                 EXIT;
574                 return err;
575         }
576
577         if (hdr->ioc_version != PORTAL_IOCTL_VERSION) {
578                 CERROR ("PORTALS: version mismatch kernel vs application\n");
579                 return -EINVAL;
580         }
581
582         if (hdr->ioc_len + buf >= end) {
583                 CERROR ("PORTALS: user buffer exceeds kernel buffer\n");
584                 return -EINVAL;
585         }
586
587
588         if (hdr->ioc_len < sizeof(struct portal_ioctl_data)) {
589                 CERROR ("PORTALS: user buffer too small for ioctl\n");
590                 return -EINVAL;
591         }
592
593         err = copy_from_user(buf, (void *)arg, hdr->ioc_len);
594         if ( err ) {
595                 EXIT;
596                 return err;
597         }
598
599         if (portal_ioctl_is_invalid(data)) {
600                 CERROR ("PORTALS: ioctl not correctly formatted\n");
601                 return -EINVAL;
602         }
603
604         if (data->ioc_inllen1) {
605                 data->ioc_inlbuf1 = &data->ioc_bulk[0];
606         }
607
608         if (data->ioc_inllen2) {
609                 data->ioc_inlbuf2 = &data->ioc_bulk[0] +
610                         size_round(data->ioc_inllen1);
611         }
612
613         EXIT;
614         return 0;
615 }
616 #endif
617
618 /* ioctls for manipulating snapshots 30- */
619 #define IOC_PORTAL_TYPE                   'e'
620 #define IOC_PORTAL_MIN_NR                 30
621
622 #define IOC_PORTAL_PING                    _IOWR('e', 30, long)
623 #define IOC_PORTAL_GET_DEBUG               _IOWR('e', 31, long)
624 #define IOC_PORTAL_CLEAR_DEBUG             _IOWR('e', 32, long)
625 #define IOC_PORTAL_MARK_DEBUG              _IOWR('e', 33, long)
626 #define IOC_PORTAL_PANIC                   _IOWR('e', 34, long)
627 #define IOC_PORTAL_NAL_CMD                 _IOWR('e', 35, long)
628 #define IOC_PORTAL_GET_NID                 _IOWR('e', 36, long)
629 #define IOC_PORTAL_FAIL_NID                _IOWR('e', 37, long)
630 #define IOC_PORTAL_SET_DAEMON              _IOWR('e', 38, long)
631 #define IOC_PORTAL_LWT_CONTROL             _IOWR('e', 39, long)
632 #define IOC_PORTAL_LWT_SNAPSHOT            _IOWR('e', 40, long)
633 #define IOC_PORTAL_LWT_LOOKUP_STRING       _IOWR('e', 41, long)
634 #define IOC_PORTAL_MEMHOG                  _IOWR('e', 42, long)
635 #define IOC_PORTAL_MAX_NR                             42
636
637 enum {
638         QSWNAL    = 1,
639         SOCKNAL   = 2,
640         GMNAL     = 3,
641         /*          4 unused */
642         TCPNAL    = 5,
643         ROUTER    = 6,
644         IBNAL     = 7,
645         NAL_ENUM_END_MARKER
646 };
647
648 #define PTL_NALFMT_SIZE              30 /* %u:%u.%u.%u.%u,%u (10+4+4+4+3+4+1) */
649
650 #define NAL_MAX_NR (NAL_ENUM_END_MARKER - 1)
651
652 #define NAL_CMD_REGISTER_PEER_FD     100
653 #define NAL_CMD_CLOSE_CONNECTION     101
654 #define NAL_CMD_REGISTER_MYNID       102
655 #define NAL_CMD_PUSH_CONNECTION      103
656 #define NAL_CMD_GET_CONN             104
657 #define NAL_CMD_DEL_AUTOCONN         105
658 #define NAL_CMD_ADD_AUTOCONN         106
659 #define NAL_CMD_GET_AUTOCONN         107
660 #define NAL_CMD_GET_TXDESC           108
661 #define NAL_CMD_ADD_ROUTE            109
662 #define NAL_CMD_DEL_ROUTE            110
663 #define NAL_CMD_GET_ROUTE            111
664 #define NAL_CMD_NOTIFY_ROUTER        112
665
666 enum {
667         DEBUG_DAEMON_START       =  1,
668         DEBUG_DAEMON_STOP        =  2,
669         DEBUG_DAEMON_PAUSE       =  3,
670         DEBUG_DAEMON_CONTINUE    =  4,
671 };
672
673
674 enum cfg_record_type {
675         PORTALS_CFG_TYPE = 1,
676         LUSTRE_CFG_TYPE = 123,
677 };
678
679 typedef int (*cfg_record_cb_t)(enum cfg_record_type, int len, void *data);
680
681 #ifdef __CYGWIN__
682 # ifndef BITS_PER_LONG
683 #  if (~0UL) == 0xffffffffUL
684 #   define BITS_PER_LONG 32
685 #  else
686 #   define BITS_PER_LONG 64
687 #  endif
688 # endif
689 #endif
690
691 #if BITS_PER_LONG > 32
692 # define LI_POISON ((int)0x5a5a5a5a5a5a5a5a)
693 # define LL_POISON ((long)0x5a5a5a5a5a5a5a5a)
694 # define LP_POISON ((void *)(long)0x5a5a5a5a5a5a5a5a)
695 #else
696 # define LI_POISON ((int)0x5a5a5a5a)
697 # define LL_POISON ((long)0x5a5a5a5a)
698 # define LP_POISON ((void *)(long)0x5a5a5a5a)
699 #endif
700
701 #if defined(__x86_64__)
702 # define LPU64 "%Lu"
703 # define LPD64 "%Ld"
704 # define LPX64 "%#Lx"
705 # define LPSZ  "%lu"
706 # define LPSSZ "%ld"
707 #elif (BITS_PER_LONG == 32 || __WORDSIZE == 32)
708 # define LPU64 "%Lu"
709 # define LPD64 "%Ld"
710 # define LPX64 "%#Lx"
711 # define LPSZ  "%u"
712 # define LPSSZ "%d"
713 #elif (BITS_PER_LONG == 64 || __WORDSIZE == 64)
714 # define LPU64 "%lu"
715 # define LPD64 "%ld"
716 # define LPX64 "%#lx"
717 # define LPSZ  "%lu"
718 # define LPSSZ "%ld"
719 #endif
720 #ifndef LPU64
721 # error "No word size defined"
722 #endif
723
724 #endif