Whamcloud - gitweb
LU-56 libcfs: NUMA allocator and code cleanup
[fs/lustre-release.git] / libcfs / include / libcfs / libcfs_private.h
1 /*
2  * GPL HEADER START
3  *
4  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
5  *
6  * This program is free software; you can redistribute it and/or modify
7  * it under the terms of the GNU General Public License version 2 only,
8  * as published by the Free Software Foundation.
9  *
10  * This program is distributed in the hope that it will be useful, but
11  * WITHOUT ANY WARRANTY; without even the implied warranty of
12  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
13  * General Public License version 2 for more details (a copy is included
14  * in the LICENSE file that accompanied this code).
15  *
16  * You should have received a copy of the GNU General Public License
17  * version 2 along with this program; If not, see
18  * http://www.sun.com/software/products/lustre/docs/GPLv2.pdf
19  *
20  * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara,
21  * CA 95054 USA or visit www.sun.com if you need additional information or
22  * have any questions.
23  *
24  * GPL HEADER END
25  */
26 /*
27  * Copyright (c) 2008, 2010, Oracle and/or its affiliates. All rights reserved.
28  * Use is subject to license terms.
29  *
30  * Copyright (c) 2011, Whamcloud, Inc.
31  */
32 /*
33  * This file is part of Lustre, http://www.lustre.org/
34  * Lustre is a trademark of Sun Microsystems, Inc.
35  *
36  * libcfs/include/libcfs/libcfs_private.h
37  *
38  * Various defines for libcfs.
39  *
40  */
41
42 #ifndef __LIBCFS_PRIVATE_H__
43 #define __LIBCFS_PRIVATE_H__
44
45 /* XXX this layering violation is for nidstrings */
46 #include <lnet/types.h>
47
48 #ifndef DEBUG_SUBSYSTEM
49 # define DEBUG_SUBSYSTEM S_UNDEFINED
50 #endif
51
52 #ifdef __KERNEL__
53
54 #ifdef LIBCFS_DEBUG
55
56 /*
57  * When this is on, LASSERT macro includes check for assignment used instead
58  * of equality check, but doesn't have unlikely(). Turn this on from time to
59  * time to make test-builds. This shouldn't be on for production release.
60  */
61 #define LASSERT_CHECKED (0)
62
63 #if LASSERT_CHECKED
64 /*
65  * Assertion.
66  *
67  * Strange construction with empty "then" clause is used to trigger compiler
68  * warnings on the assertions of the form LASSERT(a = b);
69  *
70  * "warning: suggest parentheses around assignment used as truth value"
71  *
72  * requires -Wall. Unfortunately this rules out use of likely/unlikely.
73  */
74 #define LASSERTF(cond, fmt, ...)                                        \
75 do {                                                                    \
76         if (cond)                                                       \
77                 ;                                                       \
78         else {                                                          \
79                 LIBCFS_DEBUG_MSG_DATA_DECL(msgdata, D_EMERG, NULL);     \
80                 libcfs_debug_msg(&msgdata,                              \
81                                  "ASSERTION( %s ) failed: " fmt, #cond, \
82                                   ## __VA_ARGS__);                      \
83                 LBUG();                                                 \
84         }                                                              \
85 } while(0)
86
87 #define LASSERT(cond) LASSERTF(cond, "\n")
88
89 #else /* !LASSERT_CHECKED */
90
91 #define LASSERTF(cond, fmt, ...)                                        \
92 do {                                                                    \
93         if (unlikely(!(cond))) {                                        \
94                 LIBCFS_DEBUG_MSG_DATA_DECL(msgdata, D_EMERG, NULL);     \
95                 libcfs_debug_msg(&msgdata,                              \
96                                  "ASSERTION( %s ) failed: " fmt, #cond, \
97                                  ## __VA_ARGS__ );                      \
98                 LBUG();                                                 \
99         }                                                               \
100 } while(0)
101
102 #define LASSERT(cond) LASSERTF(cond, "\n")
103 #endif /* !LASSERT_CHECKED */
104 #else /* !LIBCFS_DEBUG */
105 /* sizeof is to use expression without evaluating it. */
106 # define LASSERT(e) ((void)sizeof!!(e))
107 # define LASSERTF(cond, ...) ((void)sizeof!!(cond))
108 #endif /* !LIBCFS_DEBUG */
109
110 #ifdef INVARIANT_CHECK
111 /**
112  * This is for more expensive checks that one doesn't want to be enabled all
113  * the time. LINVRNT() has to be explicitly enabled by --enable-invariants
114  * configure option.
115  */
116 # define LINVRNT(exp) LASSERT(exp)
117 #else
118 # define LINVRNT(exp) ((void)sizeof!!(exp))
119 #endif
120
121 #define KLASSERT(e) LASSERT(e)
122
123 void lbug_with_loc(struct libcfs_debug_msg_data *) __attribute__((noreturn));
124
125 #define LBUG()                                                          \
126 do {                                                                    \
127         LIBCFS_DEBUG_MSG_DATA_DECL(msgdata, D_EMERG, NULL);             \
128         lbug_with_loc(&msgdata);                                        \
129 } while(0)
130
131 extern cfs_atomic_t libcfs_kmemory;
132 /*
133  * Memory
134  */
135 #ifdef LIBCFS_DEBUG
136
137 # define libcfs_kmem_inc(ptr, size)             \
138 do {                                            \
139         cfs_atomic_add(size, &libcfs_kmemory);  \
140 } while (0)
141
142 # define libcfs_kmem_dec(ptr, size)             \
143 do {                                            \
144         cfs_atomic_sub(size, &libcfs_kmemory);  \
145 } while (0)
146
147 # define libcfs_kmem_read()                     \
148         cfs_atomic_read(&libcfs_kmemory)
149
150 #else
151 # define libcfs_kmem_inc(ptr, size) do {} while (0)
152 # define libcfs_kmem_dec(ptr, size) do {} while (0)
153 # define libcfs_kmem_read()     (0)
154 #endif /* LIBCFS_DEBUG */
155
156 #ifndef LIBCFS_VMALLOC_SIZE
157 #define LIBCFS_VMALLOC_SIZE        (2 << CFS_PAGE_SHIFT) /* 2 pages */
158 #endif
159
160 #define LIBCFS_ALLOC_PRE(size, mask)                                        \
161 do {                                                                        \
162         LASSERT(!cfs_in_interrupt() ||                                      \
163                 ((size) <= LIBCFS_VMALLOC_SIZE &&                           \
164                  ((mask) & CFS_ALLOC_ATOMIC)) != 0);                        \
165 } while (0)
166
167 #define LIBCFS_ALLOC_POST(ptr, size)                                        \
168 do {                                                                        \
169         if (unlikely((ptr) == NULL)) {                                      \
170                 CERROR("LNET: out of memory at %s:%d (tried to alloc '"     \
171                        #ptr "' = %d)\n", __FILE__, __LINE__, (int)(size));  \
172                 CERROR("LNET: %d total bytes allocated by lnet\n",          \
173                        libcfs_kmem_read());                                 \
174         } else {                                                            \
175                 memset((ptr), 0, (size));                                   \
176                 libcfs_kmem_inc((ptr), (size));                             \
177                 CDEBUG(D_MALLOC, "alloc '" #ptr "': %d at %p (tot %d).\n",  \
178                        (int)(size), (ptr), libcfs_kmem_read());             \
179         }                                                                   \
180 } while (0)
181
182 /**
183  * allocate memory with GFP flags @mask
184  */
185 #define LIBCFS_ALLOC_GFP(ptr, size, mask)                                   \
186 do {                                                                        \
187         LIBCFS_ALLOC_PRE((size), (mask));                                   \
188         (ptr) = (size) <= LIBCFS_VMALLOC_SIZE ?                             \
189                 cfs_alloc((size), (mask)) : cfs_alloc_large(size);          \
190         LIBCFS_ALLOC_POST((ptr), (size));                                   \
191 } while (0)
192
193 /**
194  * default allocator
195  */
196 #define LIBCFS_ALLOC(ptr, size) \
197         LIBCFS_ALLOC_GFP(ptr, size, CFS_ALLOC_IO)
198
199 /**
200  * non-sleeping allocator
201  */
202 #define LIBCFS_ALLOC_ATOMIC(ptr, size) \
203         LIBCFS_ALLOC_GFP(ptr, size, CFS_ALLOC_ATOMIC)
204
205 /**
206  * allocate memory for specified CPU partition
207  *   \a cptab != NULL, \a cpt is CPU partition id of \a cptab
208  *   \a cptab == NULL, \a cpt is HW NUMA node id
209  */
210 #define LIBCFS_CPT_ALLOC_GFP(ptr, cptab, cpt, size, mask)                   \
211 do {                                                                        \
212         LIBCFS_ALLOC_PRE((size), (mask));                                   \
213         (ptr) = (size) <= LIBCFS_VMALLOC_SIZE ?                             \
214                 cfs_cpt_malloc((cptab), (cpt), (size), (mask)) :            \
215                 cfs_cpt_vmalloc((cptab), (cpt), (size));                    \
216         LIBCFS_ALLOC_POST((ptr), (size));                                   \
217 } while (0)
218
219 /** default numa allocator */
220 #define LIBCFS_CPT_ALLOC(ptr, cptab, cpt, size)                             \
221         LIBCFS_CPT_ALLOC_GFP(ptr, cptab, cpt, size, CFS_ALLOC_IO)
222
223 #define LIBCFS_FREE(ptr, size)                                          \
224 do {                                                                    \
225         int s = (size);                                                 \
226         if (unlikely((ptr) == NULL)) {                                  \
227                 CERROR("LIBCFS: free NULL '" #ptr "' (%d bytes) at "    \
228                        "%s:%d\n", s, __FILE__, __LINE__);               \
229                 break;                                                  \
230         }                                                               \
231         libcfs_kmem_dec((ptr), s);                                      \
232         CDEBUG(D_MALLOC, "kfreed '" #ptr "': %d at %p (tot %d).\n",     \
233                s, (ptr), libcfs_kmem_read());                           \
234         if (unlikely(s > LIBCFS_VMALLOC_SIZE))                          \
235                 cfs_free_large(ptr);                                    \
236         else                                                            \
237                 cfs_free(ptr);                                          \
238 } while (0)
239
240 /******************************************************************************/
241
242 /* htonl hack - either this, or compile with -O2. Stupid byteorder/generic.h */
243 #if defined(__GNUC__) && (__GNUC__ >= 2) && !defined(__OPTIMIZE__)
244 #define ___htonl(x) __cpu_to_be32(x)
245 #define ___htons(x) __cpu_to_be16(x)
246 #define ___ntohl(x) __be32_to_cpu(x)
247 #define ___ntohs(x) __be16_to_cpu(x)
248 #define htonl(x) ___htonl(x)
249 #define ntohl(x) ___ntohl(x)
250 #define htons(x) ___htons(x)
251 #define ntohs(x) ___ntohs(x)
252 #endif
253
254 void libcfs_debug_dumpstack(cfs_task_t *tsk);
255 void libcfs_run_upcall(char **argv);
256 void libcfs_run_lbug_upcall(struct libcfs_debug_msg_data *);
257 void libcfs_debug_dumplog(void);
258 int libcfs_debug_init(unsigned long bufsize);
259 int libcfs_debug_cleanup(void);
260 int libcfs_debug_clear_buffer(void);
261 int libcfs_debug_mark_buffer(const char *text);
262
263 void libcfs_debug_set_level(unsigned int debug_level);
264
265 #else  /* !__KERNEL__ */
266 # ifdef LIBCFS_DEBUG
267 #  undef NDEBUG
268 #  include <assert.h>
269 #  define LASSERT(e)     assert(e)
270 #  define LASSERTF(cond, ...)                                                  \
271 do {                                                                           \
272           if (!(cond))                                                         \
273                 CERROR(__VA_ARGS__);                                           \
274           assert(cond);                                                        \
275 } while (0)
276 #  define LBUG()   assert(0)
277 #  ifdef INVARIANT_CHECK
278 #   define LINVRNT(exp) LASSERT(exp)
279 #  else
280 #   define LINVRNT(exp) ((void)sizeof!!(exp))
281 #  endif
282 # else
283 #  define LASSERT(e) ((void)sizeof!!(e))
284 #  define LASSERTF(cond, ...) ((void)sizeof!!(cond))
285 #  define LBUG()   ((void)(0))
286 #  define LINVRNT(exp) ((void)sizeof!!(exp))
287 # endif /* LIBCFS_DEBUG */
288 # define KLASSERT(e) ((void)0)
289 # define printk printf
290 # ifdef CRAY_XT3                                /* buggy calloc! */
291 #  define LIBCFS_ALLOC_GFP(ptr, size, mask)     \
292    do {                                         \
293         (ptr) = malloc(size);                   \
294         memset(ptr, 0, size);                   \
295    } while (0)
296 # else
297 #  define LIBCFS_ALLOC_GFP(ptr, size, mask)     \
298    do {                                         \
299         (ptr) = calloc(1, size);                \
300    } while (0)
301 # endif
302 # define LIBCFS_FREE(ptr, size) do { free(ptr); } while((size) - (size))
303 # define LIBCFS_ALLOC(ptr, size)                                \
304          LIBCFS_ALLOC_GFP(ptr, size, 0)
305 # define LIBCFS_CPT_ALLOC_GFP(ptr, cptab, cpt, size, mask)      \
306          LIBCFS_ALLOC(ptr, size)
307 # define LIBCFS_CPT_ALLOC(ptr, cptab, cpt, size)                \
308          LIBCFS_ALLOC(ptr, size)
309
310 void libcfs_debug_dumplog(void);
311 int libcfs_debug_init(unsigned long bufsize);
312 int libcfs_debug_cleanup(void);
313
314 #define libcfs_debug_dumpstack(tsk)     ((void)0)
315
316 /*
317  * Generic compiler-dependent macros required for kernel
318  * build go below this comment. Actual compiler/compiler version
319  * specific implementations come from the above header files
320  */
321 #ifdef __GNUC__
322 #define likely(x)      __builtin_expect(!!(x), 1)
323 #define unlikely(x)    __builtin_expect(!!(x), 0)
324 #else
325 #define likely(x)       (!!(x))
326 #define unlikely(x)     (!!(x))
327 #endif
328 /* !__KERNEL__ */
329 #endif
330
331 #define LASSERT_ATOMIC_ENABLED          (1)
332
333 #if LASSERT_ATOMIC_ENABLED
334
335 /** assert value of @a is equal to @v */
336 #define LASSERT_ATOMIC_EQ(a, v)                                 \
337 do {                                                            \
338         LASSERTF(cfs_atomic_read(a) == v,                       \
339                  "value: %d\n", cfs_atomic_read((a)));          \
340 } while (0)
341
342 /** assert value of @a is unequal to @v */
343 #define LASSERT_ATOMIC_NE(a, v)                                 \
344 do {                                                            \
345         LASSERTF(cfs_atomic_read(a) != v,                       \
346                  "value: %d\n", cfs_atomic_read((a)));          \
347 } while (0)
348
349 /** assert value of @a is little than @v */
350 #define LASSERT_ATOMIC_LT(a, v)                                 \
351 do {                                                            \
352         LASSERTF(cfs_atomic_read(a) < v,                        \
353                  "value: %d\n", cfs_atomic_read((a)));          \
354 } while (0)
355
356 /** assert value of @a is little/equal to @v */
357 #define LASSERT_ATOMIC_LE(a, v)                                 \
358 do {                                                            \
359         LASSERTF(cfs_atomic_read(a) <= v,                       \
360                  "value: %d\n", cfs_atomic_read((a)));          \
361 } while (0)
362
363 /** assert value of @a is great than @v */
364 #define LASSERT_ATOMIC_GT(a, v)                                 \
365 do {                                                            \
366         LASSERTF(cfs_atomic_read(a) > v,                        \
367                  "value: %d\n", cfs_atomic_read((a)));          \
368 } while (0)
369
370 /** assert value of @a is great/equal to @v */
371 #define LASSERT_ATOMIC_GE(a, v)                                 \
372 do {                                                            \
373         LASSERTF(cfs_atomic_read(a) >= v,                       \
374                  "value: %d\n", cfs_atomic_read((a)));          \
375 } while (0)
376
377 /** assert value of @a is great than @v1 and little than @v2 */
378 #define LASSERT_ATOMIC_GT_LT(a, v1, v2)                         \
379 do {                                                            \
380         int __v = cfs_atomic_read(a);                           \
381         LASSERTF(__v > v1 && __v < v2, "value: %d\n", __v);     \
382 } while (0)
383
384 /** assert value of @a is great than @v1 and little/equal to @v2 */
385 #define LASSERT_ATOMIC_GT_LE(a, v1, v2)                         \
386 do {                                                            \
387         int __v = cfs_atomic_read(a);                           \
388         LASSERTF(__v > v1 && __v <= v2, "value: %d\n", __v);    \
389 } while (0)
390
391 /** assert value of @a is great/equal to @v1 and little than @v2 */
392 #define LASSERT_ATOMIC_GE_LT(a, v1, v2)                         \
393 do {                                                            \
394         int __v = cfs_atomic_read(a);                           \
395         LASSERTF(__v >= v1 && __v < v2, "value: %d\n", __v);    \
396 } while (0)
397
398 /** assert value of @a is great/equal to @v1 and little/equal to @v2 */
399 #define LASSERT_ATOMIC_GE_LE(a, v1, v2)                         \
400 do {                                                            \
401         int __v = cfs_atomic_read(a);                           \
402         LASSERTF(__v >= v1 && __v <= v2, "value: %d\n", __v);   \
403 } while (0)
404
405 #else /* !LASSERT_ATOMIC_ENABLED */
406
407 #define LASSERT_ATOMIC_EQ(a, v)                 do {} while (0)
408 #define LASSERT_ATOMIC_NE(a, v)                 do {} while (0)
409 #define LASSERT_ATOMIC_LT(a, v)                 do {} while (0)
410 #define LASSERT_ATOMIC_LE(a, v)                 do {} while (0)
411 #define LASSERT_ATOMIC_GT(a, v)                 do {} while (0)
412 #define LASSERT_ATOMIC_GE(a, v)                 do {} while (0)
413 #define LASSERT_ATOMIC_GT_LT(a, v1, v2)         do {} while (0)
414 #define LASSERT_ATOMIC_GT_LE(a, v1, v2)         do {} while (0)
415 #define LASSERT_ATOMIC_GE_LT(a, v1, v2)         do {} while (0)
416 #define LASSERT_ATOMIC_GE_LE(a, v1, v2)         do {} while (0)
417
418 #endif /* LASSERT_ATOMIC_ENABLED */
419
420 #define LASSERT_ATOMIC_ZERO(a)                  LASSERT_ATOMIC_EQ(a, 0)
421 #define LASSERT_ATOMIC_POS(a)                   LASSERT_ATOMIC_GT(a, 0)
422
423 #define CFS_ALLOC_PTR(ptr)      LIBCFS_ALLOC(ptr, sizeof (*(ptr)));
424 #define CFS_FREE_PTR(ptr)       LIBCFS_FREE(ptr, sizeof (*(ptr)));
425
426 /** Compile-time assertion.
427
428  * Check an invariant described by a constant expression at compile time by
429  * forcing a compiler error if it does not hold.  \a cond must be a constant
430  * expression as defined by the ISO C Standard:
431  *
432  *       6.8.4.2  The switch statement
433  *       ....
434  *       [#3] The expression of each case label shall be  an  integer
435  *       constant   expression  and  no  two  of  the  case  constant
436  *       expressions in the same switch statement shall have the same
437  *       value  after  conversion...
438  *
439  */
440 #define CLASSERT(cond) do {switch(42) {case (cond): case 0: break;}} while (0)
441
442 /* support decl needed both by kernel and liblustre */
443 int         libcfs_isknown_lnd(int type);
444 char       *libcfs_lnd2modname(int type);
445 char       *libcfs_lnd2str(int type);
446 int         libcfs_str2lnd(const char *str);
447 char       *libcfs_net2str(__u32 net);
448 char       *libcfs_nid2str(lnet_nid_t nid);
449 __u32       libcfs_str2net(const char *str);
450 lnet_nid_t  libcfs_str2nid(const char *str);
451 int         libcfs_str2anynid(lnet_nid_t *nid, const char *str);
452 char       *libcfs_id2str(lnet_process_id_t id);
453 void        cfs_free_nidlist(cfs_list_t *list);
454 int         cfs_parse_nidlist(char *str, int len, cfs_list_t *list);
455 int         cfs_match_nid(lnet_nid_t nid, cfs_list_t *list);
456
457 /** \addtogroup lnet_addr
458  * @{ */
459 /* how an LNET NID encodes net:address */
460 /** extract the address part of an lnet_nid_t */
461 #define LNET_NIDADDR(nid)      ((__u32)((nid) & 0xffffffff))
462 /** extract the network part of an lnet_nid_t */
463 #define LNET_NIDNET(nid)       ((__u32)(((nid) >> 32)) & 0xffffffff)
464 /** make an lnet_nid_t from a network part and an address part */
465 #define LNET_MKNID(net,addr)   ((((__u64)(net))<<32)|((__u64)(addr)))
466 /* how net encodes type:number */
467 #define LNET_NETNUM(net)       ((net) & 0xffff)
468 #define LNET_NETTYP(net)       (((net) >> 16) & 0xffff)
469 #define LNET_MKNET(typ,num)    ((((__u32)(typ))<<16)|((__u32)(num)))
470 /** @} lnet_addr */
471
472 /* max value for numeric network address */
473 #define MAX_NUMERIC_VALUE 0xffffffff
474
475 /* implication */
476 #define ergo(a, b) (!(a) || (b))
477 /* logical equivalence */
478 #define equi(a, b) (!!(a) == !!(b))
479
480 #ifndef CFS_CURRENT_TIME
481 # define CFS_CURRENT_TIME time(0)
482 #endif
483
484 /* --------------------------------------------------------------------
485  * Light-weight trace
486  * Support for temporary event tracing with minimal Heisenberg effect.
487  * All stuff about lwt are put in arch/kp30.h
488  * -------------------------------------------------------------------- */
489
490 struct libcfs_device_userstate
491 {
492         int           ldu_memhog_pages;
493         cfs_page_t   *ldu_memhog_root_page;
494 };
495
496 /* what used to be in portals_lib.h */
497 #ifndef MIN
498 # define MIN(a,b) (((a)<(b)) ? (a): (b))
499 #endif
500 #ifndef MAX
501 # define MAX(a,b) (((a)>(b)) ? (a): (b))
502 #endif
503
504 #define MKSTR(ptr) ((ptr))? (ptr) : ""
505
506 static inline int cfs_size_round4 (int val)
507 {
508         return (val + 3) & (~0x3);
509 }
510
511 #ifndef HAVE_CFS_SIZE_ROUND
512 static inline int cfs_size_round (int val)
513 {
514         return (val + 7) & (~0x7);
515 }
516 #define HAVE_CFS_SIZE_ROUND
517 #endif
518
519 static inline int cfs_size_round16(int val)
520 {
521         return (val + 0xf) & (~0xf);
522 }
523
524 static inline int cfs_size_round32(int val)
525 {
526         return (val + 0x1f) & (~0x1f);
527 }
528
529 static inline int cfs_size_round0(int val)
530 {
531         if (!val)
532                 return 0;
533         return (val + 1 + 7) & (~0x7);
534 }
535
536 static inline size_t cfs_round_strlen(char *fset)
537 {
538         return (size_t)cfs_size_round((int)strlen(fset) + 1);
539 }
540
541 #define LOGL(var,len,ptr)                                       \
542 do {                                                            \
543         if (var)                                                \
544                 memcpy((char *)ptr, (const char *)var, len);    \
545         ptr += cfs_size_round(len);                             \
546 } while (0)
547
548 #define LOGU(var,len,ptr)                                       \
549 do {                                                            \
550         if (var)                                                \
551                 memcpy((char *)var, (const char *)ptr, len);    \
552         ptr += cfs_size_round(len);                             \
553 } while (0)
554
555 #define LOGL0(var,len,ptr)                              \
556 do {                                                    \
557         if (!len)                                       \
558                 break;                                  \
559         memcpy((char *)ptr, (const char *)var, len);    \
560         *((char *)(ptr) + len) = 0;                     \
561         ptr += cfs_size_round(len + 1);                 \
562 } while (0)
563
564 /**
565  *  Lustre Network Driver types.
566  */
567 enum {
568         /* Only add to these values (i.e. don't ever change or redefine them):
569          * network addresses depend on them... */
570         QSWLND    = 1,
571         SOCKLND   = 2,
572         GMLND     = 3, /* obsolete, keep it so that libcfs_nid2str works */
573         PTLLND    = 4,
574         O2IBLND   = 5,
575         CIBLND    = 6,
576         OPENIBLND = 7,
577         IIBLND    = 8,
578         LOLND     = 9,
579         RALND     = 10,
580         VIBLND    = 11,
581         MXLND     = 12,
582         GNILND    = 13,
583 };
584
585 #endif