Whamcloud - gitweb
b=22990 update copyright messages for Oracle
[fs/lustre-release.git] / lnet / include / lnet / lib-types.h
1 /* -*- mode: c; c-basic-offset: 8; indent-tabs-mode: nil; -*-
2  * vim:expandtab:shiftwidth=8:tabstop=8:
3  *
4  * GPL HEADER START
5  *
6  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
7  *
8  * This program is free software; you can redistribute it and/or modify
9  * it under the terms of the GNU General Public License version 2 only,
10  * as published by the Free Software Foundation.
11  *
12  * This program is distributed in the hope that it will be useful, but
13  * WITHOUT ANY WARRANTY; without even the implied warranty of
14  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
15  * General Public License version 2 for more details (a copy is included
16  * in the LICENSE file that accompanied this code).
17  *
18  * You should have received a copy of the GNU General Public License
19  * version 2 along with this program; If not, see
20  * http://www.sun.com/software/products/lustre/docs/GPLv2.pdf
21  *
22  * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara,
23  * CA 95054 USA or visit www.sun.com if you need additional information or
24  * have any questions.
25  *
26  * GPL HEADER END
27  */
28 /*
29  * Copyright (c) 2003, 2010, Oracle and/or its affiliates. All rights reserved.
30  * Use is subject to license terms.
31  */
32 /*
33  * This file is part of Lustre, http://www.lustre.org/
34  * Lustre is a trademark of Sun Microsystems, Inc.
35  *
36  * lnet/include/lnet/lib-types.h
37  *
38  * Types used by the library side routines that do not need to be
39  * exposed to the user application
40  */
41
42 #ifndef __LNET_LIB_TYPES_H__
43 #define __LNET_LIB_TYPES_H__
44
45 #if defined(__linux__)
46 #include <lnet/linux/lib-types.h>
47 #elif defined(__APPLE__)
48 #include <lnet/darwin/lib-types.h>
49 #elif defined(__WINNT__)
50 #include <lnet/winnt/lib-types.h>
51 #else
52 #error Unsupported Operating System
53 #endif
54
55 #include <libcfs/libcfs.h>
56 #include <libcfs/list.h>
57 #include <lnet/types.h>
58
59 #define WIRE_ATTR       __attribute__((packed))
60
61 /* Packed version of lnet_process_id_t to transfer via network */
62 typedef struct {
63         lnet_nid_t nid;
64         lnet_pid_t pid;   /* node id / process id */
65 } WIRE_ATTR lnet_process_id_packed_t;
66
67 /* The wire handle's interface cookie only matches one network interface in
68  * one epoch (i.e. new cookie when the interface restarts or the node
69  * reboots).  The object cookie only matches one object on that interface
70  * during that object's lifetime (i.e. no cookie re-use). */
71 typedef struct {
72         __u64 wh_interface_cookie;
73         __u64 wh_object_cookie;
74 } WIRE_ATTR lnet_handle_wire_t;
75
76 /* byte-flip insensitive! */
77 #define LNET_WIRE_HANDLE_NONE \
78 ((const lnet_handle_wire_t) {.wh_interface_cookie = -1, .wh_object_cookie = -1})
79
80 typedef enum {
81         LNET_MSG_ACK = 0,
82         LNET_MSG_PUT,
83         LNET_MSG_GET,
84         LNET_MSG_REPLY,
85         LNET_MSG_HELLO,
86 } lnet_msg_type_t;
87
88 /* The variant fields of the portals message header are aligned on an 8
89  * byte boundary in the message header.  Note that all types used in these
90  * wire structs MUST be fixed size and the smaller types are placed at the
91  * end. */
92 typedef struct lnet_ack {
93         lnet_handle_wire_t  dst_wmd;
94         __u64               match_bits;
95         __u32               mlength;
96 } WIRE_ATTR lnet_ack_t;
97
98 typedef struct lnet_put {
99         lnet_handle_wire_t  ack_wmd;
100         __u64               match_bits;
101         __u64               hdr_data;
102         __u32               ptl_index;
103         __u32               offset;
104 } WIRE_ATTR lnet_put_t;
105
106 typedef struct lnet_get {
107         lnet_handle_wire_t  return_wmd;
108         __u64               match_bits;
109         __u32               ptl_index;
110         __u32               src_offset;
111         __u32               sink_length;
112 } WIRE_ATTR lnet_get_t;
113
114 typedef struct lnet_reply {
115         lnet_handle_wire_t  dst_wmd;
116 } WIRE_ATTR lnet_reply_t;
117
118 typedef struct lnet_hello {
119         __u64              incarnation;
120         __u32              type;
121 } WIRE_ATTR lnet_hello_t;
122
123 typedef struct {
124         lnet_nid_t          dest_nid;
125         lnet_nid_t          src_nid;
126         lnet_pid_t          dest_pid;
127         lnet_pid_t          src_pid;
128         __u32               type;               /* lnet_msg_type_t */
129         __u32               payload_length;     /* payload data to follow */
130         /*<------__u64 aligned------->*/
131         union {
132                 lnet_ack_t   ack;
133                 lnet_put_t   put;
134                 lnet_get_t   get;
135                 lnet_reply_t reply;
136                 lnet_hello_t hello;
137         } msg;
138 } WIRE_ATTR lnet_hdr_t;
139
140 /* A HELLO message contains a magic number and protocol version
141  * code in the header's dest_nid, the peer's NID in the src_nid, and
142  * LNET_MSG_HELLO in the type field.  All other common fields are zero
143  * (including payload_size; i.e. no payload).  
144  * This is for use by byte-stream LNDs (e.g. TCP/IP) to check the peer is
145  * running the same protocol and to find out its NID. These LNDs should
146  * exchange HELLO messages when a connection is first established.  Individual
147  * LNDs can put whatever else they fancy in lnet_hdr_t::msg.
148  */
149 typedef struct {
150         __u32   magic;                          /* LNET_PROTO_TCP_MAGIC */
151         __u16   version_major;                  /* increment on incompatible change */
152         __u16   version_minor;                  /* increment on compatible change */
153 } WIRE_ATTR lnet_magicversion_t;
154
155 /* PROTO MAGIC for LNDs */
156 #define LNET_PROTO_IB_MAGIC                 0x0be91b91
157 #define LNET_PROTO_OPENIB_MAGIC             LNET_PROTO_IB_MAGIC
158 #define LNET_PROTO_IIB_MAGIC                LNET_PROTO_IB_MAGIC
159 #define LNET_PROTO_VIB_MAGIC                LNET_PROTO_IB_MAGIC
160 #define LNET_PROTO_RA_MAGIC                 0x0be91b92
161 #define LNET_PROTO_QSW_MAGIC                0x0be91b93
162 #define LNET_PROTO_TCP_MAGIC                0xeebc0ded
163 #define LNET_PROTO_PTL_MAGIC                0x50746C4E /* 'PtlN' unique magic */
164 #define LNET_PROTO_GM_MAGIC                 0x6d797269 /* 'myri'! */
165 #define LNET_PROTO_MX_MAGIC                 0x4d583130 /* 'MX10'! */
166 #define LNET_PROTO_ACCEPTOR_MAGIC           0xacce7100
167 #define LNET_PROTO_PING_MAGIC               0x70696E67 /* 'ping' */
168
169 /* Placeholder for a future "unified" protocol across all LNDs */
170 /* Current LNDs that receive a request with this magic will respond with a
171  * "stub" reply using their current protocol */
172 #define LNET_PROTO_MAGIC                    0x45726963 /* ! */
173
174
175 #define LNET_PROTO_TCP_VERSION_MAJOR        1
176 #define LNET_PROTO_TCP_VERSION_MINOR        0
177
178 /* Acceptor connection request */
179 typedef struct {
180         __u32       acr_magic;                  /* PTL_ACCEPTOR_PROTO_MAGIC */
181         __u32       acr_version;                /* protocol version */
182         __u64       acr_nid;                    /* target NID */
183 } WIRE_ATTR lnet_acceptor_connreq_t;
184
185 #define LNET_PROTO_ACCEPTOR_VERSION       1
186
187 /* forward refs */
188 struct lnet_libmd;
189
190 typedef struct lnet_msg {
191         struct list_head    msg_activelist;
192         struct list_head    msg_list;           /* Q for credits/MD */
193
194         lnet_process_id_t   msg_target;
195         __u32               msg_type;
196
197         unsigned int        msg_target_is_router:1; /* sending to a router */
198         unsigned int        msg_routing:1;      /* being forwarded */
199         unsigned int        msg_ack:1;          /* ack on finalize (PUT) */
200         unsigned int        msg_sending:1;      /* outgoing message */
201         unsigned int        msg_receiving:1;    /* being received */
202         unsigned int        msg_delayed:1;      /* had to Q for buffer or tx credit */
203         unsigned int        msg_txcredit:1;     /* taken an NI send credit */
204         unsigned int        msg_peertxcredit:1; /* taken a peer send credit */
205         unsigned int        msg_rtrcredit:1;    /* taken a globel router credit */
206         unsigned int        msg_peerrtrcredit:1; /* taken a peer router credit */
207         unsigned int        msg_onactivelist:1; /* on the activelist */
208
209         struct lnet_peer   *msg_txpeer;         /* peer I'm sending to */
210         struct lnet_peer   *msg_rxpeer;         /* peer I received from */
211
212         void               *msg_private;
213         struct lnet_libmd  *msg_md;
214
215         unsigned int        msg_len;
216         unsigned int        msg_wanted;
217         unsigned int        msg_offset;
218         unsigned int        msg_niov;
219         struct iovec       *msg_iov;
220         lnet_kiov_t        *msg_kiov;
221
222         lnet_event_t        msg_ev;
223         lnet_hdr_t          msg_hdr;
224 } lnet_msg_t;
225
226
227 typedef struct lnet_libhandle {
228         struct list_head  lh_hash_chain;
229         __u64             lh_cookie;
230 } lnet_libhandle_t;
231
232 #define lh_entry(ptr, type, member) \
233         ((type *)((char *)(ptr)-(unsigned long)(&((type *)0)->member)))
234
235 typedef struct lnet_eq {
236         struct list_head  eq_list;
237         lnet_libhandle_t  eq_lh;
238         lnet_seq_t        eq_enq_seq;
239         lnet_seq_t        eq_deq_seq;
240         unsigned int      eq_size;
241         lnet_event_t     *eq_events;
242         int               eq_refcount;
243         lnet_eq_handler_t eq_callback;
244 } lnet_eq_t;
245
246 typedef struct lnet_me {
247         struct list_head   me_list;
248         lnet_libhandle_t   me_lh;
249         lnet_process_id_t  me_match_id;
250         unsigned int       me_portal;
251         __u64              me_match_bits;
252         __u64              me_ignore_bits;
253         lnet_unlink_t      me_unlink;
254         struct lnet_libmd *me_md;
255 } lnet_me_t;
256
257 typedef struct lnet_libmd {
258         struct list_head  md_list;
259         lnet_libhandle_t  md_lh;
260         lnet_me_t        *md_me;
261         char             *md_start;
262         unsigned int      md_offset;
263         unsigned int      md_length;
264         unsigned int      md_max_size;
265         int               md_threshold;
266         int               md_refcount;
267         unsigned int      md_options;
268         unsigned int      md_flags;
269         void             *md_user_ptr;
270         lnet_eq_t        *md_eq;
271         unsigned int      md_niov;                /* # frags */
272         union {
273                 struct iovec  iov[LNET_MAX_IOV];
274                 lnet_kiov_t   kiov[LNET_MAX_IOV];
275         } md_iov;
276 } lnet_libmd_t;
277
278 #define LNET_MD_FLAG_ZOMBIE           (1 << 0)
279 #define LNET_MD_FLAG_AUTO_UNLINK      (1 << 1)
280
281 #ifdef LNET_USE_LIB_FREELIST
282 typedef struct
283 {
284         void              *fl_objs;             /* single contiguous array of objects */
285         int                fl_nobjs;            /* the number of them */
286         int                fl_objsize;          /* the size (including overhead) of each of them */
287         struct list_head   fl_list;             /* where they are enqueued */
288 } lnet_freelist_t;
289
290 typedef struct
291 {
292         struct list_head   fo_list;             /* enqueue on fl_list */
293         void              *fo_contents;         /* aligned contents */
294 } lnet_freeobj_t;
295 #endif
296
297 typedef struct {
298         /* info about peers we are trying to fail */
299         struct list_head   tp_list;             /* ln_test_peers */
300         lnet_nid_t         tp_nid;              /* matching nid */
301         unsigned int       tp_threshold;        /* # failures to simulate */
302 } lnet_test_peer_t;
303
304 #define LNET_COOKIE_TYPE_MD    1
305 #define LNET_COOKIE_TYPE_ME    2
306 #define LNET_COOKIE_TYPE_EQ    3
307 #define LNET_COOKIE_TYPES      4
308 /* LNET_COOKIE_TYPES must be a power of 2, so the cookie type can be
309  * extracted by masking with (LNET_COOKIE_TYPES - 1) */
310
311 struct lnet_ni;                                  /* forward ref */
312
313 typedef struct lnet_lnd
314 {
315         /* fields managed by portals */
316         struct list_head  lnd_list;             /* stash in the LND table */
317         int               lnd_refcount;         /* # active instances */
318
319         /* fields initialised by the LND */
320         unsigned int      lnd_type;
321         
322         int  (*lnd_startup) (struct lnet_ni *ni);
323         void (*lnd_shutdown) (struct lnet_ni *ni);
324         int  (*lnd_ctl)(struct lnet_ni *ni, unsigned int cmd, void *arg);
325
326         /* In data movement APIs below, payload buffers are described as a set
327          * of 'niov' fragments which are...
328          * EITHER 
329          *    in virtual memory (struct iovec *iov != NULL)
330          * OR
331          *    in pages (kernel only: plt_kiov_t *kiov != NULL).
332          * The LND may NOT overwrite these fragment descriptors.
333          * An 'offset' and may specify a byte offset within the set of
334          * fragments to start from 
335          */
336
337         /* Start sending a preformatted message.  'private' is NULL for PUT and
338          * GET messages; otherwise this is a response to an incoming message
339          * and 'private' is the 'private' passed to lnet_parse().  Return
340          * non-zero for immediate failure, otherwise complete later with
341          * lnet_finalize() */
342         int (*lnd_send)(struct lnet_ni *ni, void *private, lnet_msg_t *msg);
343
344         /* Start receiving 'mlen' bytes of payload data, skipping the following
345          * 'rlen' - 'mlen' bytes. 'private' is the 'private' passed to
346          * lnet_parse().  Return non-zero for immedaite failure, otherwise
347          * complete later with lnet_finalize().  This also gives back a receive
348          * credit if the LND does flow control. */
349         int (*lnd_recv)(struct lnet_ni *ni, void *private, lnet_msg_t *msg,
350                         int delayed, unsigned int niov, 
351                         struct iovec *iov, lnet_kiov_t *kiov,
352                         unsigned int offset, unsigned int mlen, unsigned int rlen);
353
354         /* lnet_parse() has had to delay processing of this message
355          * (e.g. waiting for a forwarding buffer or send credits).  Give the
356          * LND a chance to free urgently needed resources.  If called, return 0
357          * for success and do NOT give back a receive credit; that has to wait
358          * until lnd_recv() gets called.  On failure return < 0 and
359          * release resources; lnd_recv() will not be called. */
360         int (*lnd_eager_recv)(struct lnet_ni *ni, void *private, lnet_msg_t *msg,
361                               void **new_privatep);
362
363         /* notification of peer health */
364         void (*lnd_notify)(struct lnet_ni *ni, lnet_nid_t peer, int alive);
365
366         /* query of peer aliveness */
367         void (*lnd_query)(struct lnet_ni *ni, lnet_nid_t peer, cfs_time_t *when);
368
369 #ifdef __KERNEL__
370         /* accept a new connection */
371         int (*lnd_accept)(struct lnet_ni *ni, cfs_socket_t *sock);
372 #else
373         /* wait for something to happen */
374         void (*lnd_wait)(struct lnet_ni *ni, int milliseconds);
375
376         /* ensure non-RDMA messages can be received outside liblustre */
377         int (*lnd_setasync)(struct lnet_ni *ni, lnet_process_id_t id, int nasync);
378
379 #ifdef HAVE_LIBPTHREAD
380         int (*lnd_accept)(struct lnet_ni *ni, int sock);
381 #endif
382 #endif
383 } lnd_t;
384
385 #define LNET_NI_STATUS_UP      0x15aac0de
386 #define LNET_NI_STATUS_DOWN    0xdeadface
387 #define LNET_NI_STATUS_INVALID 0x00000000
388 typedef struct {
389         lnet_nid_t ns_nid;
390         __u32      ns_status;
391         __u32      ns_unused;
392 } WIRE_ATTR lnet_ni_status_t;
393
394 #define LNET_MAX_INTERFACES   16
395
396 typedef struct lnet_ni {
397         struct list_head  ni_list;              /* chain on ln_nis */
398         struct list_head  ni_txq;               /* messages waiting for tx credits */
399         int               ni_maxtxcredits;      /* # tx credits  */
400         int               ni_txcredits;         /* # tx credits free */
401         int               ni_mintxcredits;      /* lowest it's been */
402         int               ni_peertxcredits;     /* # per-peer send credits */
403         int               ni_peerrtrcredits;    /* # per-peer router buffer credits */
404         int               ni_peertimeout;       /* seconds to consider peer dead */
405         lnet_nid_t        ni_nid;               /* interface's NID */
406         void             *ni_data;              /* instance-specific data */
407         lnd_t            *ni_lnd;               /* procedural interface */
408         int               ni_refcount;          /* reference count */
409         cfs_time_t        ni_last_alive;        /* when I was last alive */
410         lnet_ni_status_t *ni_status;            /* my health status */
411         char             *ni_interfaces[LNET_MAX_INTERFACES]; /* equivalent interfaces to use */
412 } lnet_ni_t;
413
414 #define LNET_PROTO_PING_MATCHBITS     0x8000000000000000LL
415 #define LNET_PROTO_PING_VERSION       2
416 #define LNET_PROTO_PING_VERSION1      1
417 typedef struct {
418         __u32            pi_magic;
419         __u32            pi_version;
420         lnet_pid_t       pi_pid;
421         __u32            pi_nnis;
422         lnet_ni_status_t pi_ni[0];
423 } WIRE_ATTR lnet_ping_info_t;
424
425 /* router checker data, per router */
426 #define LNET_MAX_RTR_NIS   16
427 #define LNET_PINGINFO_SIZE offsetof(lnet_ping_info_t, pi_ni[LNET_MAX_RTR_NIS])
428 typedef struct {
429         struct list_head  rcd_list;             /* chain on the_lnet.ln_zombie_rcd */
430         lnet_handle_md_t  rcd_mdh;              /* ping buffer MD */
431         lnet_ping_info_t *rcd_pinginfo;         /* ping buffer */
432 } lnet_rc_data_t;
433
434 typedef struct lnet_peer {
435         struct list_head  lp_hashlist;          /* chain on peer hash */
436         struct list_head  lp_txq;               /* messages blocking for tx credits */
437         struct list_head  lp_rtrq;              /* messages blocking for router credits */
438         struct list_head  lp_rtr_list;          /* chain on router list */
439         int               lp_txcredits;         /* # tx credits available */
440         int               lp_mintxcredits;      /* low water mark */
441         int               lp_rtrcredits;        /* # router credits */
442         int               lp_minrtrcredits;     /* low water mark */
443         unsigned int      lp_alive:1;           /* alive/dead? */
444         unsigned int      lp_notify:1;          /* notification outstanding? */
445         unsigned int      lp_notifylnd:1;       /* outstanding notification for LND? */
446         unsigned int      lp_notifying:1;       /* some thread is handling notification */
447         unsigned int      lp_ping_notsent;      /* SEND event outstanding from ping */
448         int               lp_alive_count;       /* # times router went dead<->alive */
449         long              lp_txqnob;            /* bytes queued for sending */
450         cfs_time_t        lp_timestamp;         /* time of last aliveness news */
451         cfs_time_t        lp_ping_timestamp;    /* time of last ping attempt */
452         cfs_time_t        lp_ping_deadline;     /* != 0 if ping reply expected */
453         cfs_time_t        lp_last_alive;        /* when I was last alive */
454         cfs_time_t        lp_last_query;        /* when lp_ni was queried last time */
455         lnet_ni_t        *lp_ni;                /* interface peer is on */
456         lnet_nid_t        lp_nid;               /* peer's NID */
457         int               lp_refcount;          /* # refs */
458         int               lp_rtr_refcount;      /* # refs from lnet_route_t::lr_gateway */
459         lnet_rc_data_t   *lp_rcd;               /* router checker state */
460 } lnet_peer_t;
461
462 #define lnet_peer_aliveness_enabled(lp) ((lp)->lp_ni->ni_peertimeout > 0)
463
464 typedef struct {
465         struct list_head  lr_list;              /* chain on net */
466         lnet_peer_t      *lr_gateway;           /* router node */
467         unsigned int      lr_hops;              /* how far I am */
468 } lnet_route_t;
469
470 typedef struct {
471         struct list_head        lrn_list;       /* chain on ln_remote_nets */
472         struct list_head        lrn_routes;     /* routes to me */
473         __u32                   lrn_net;        /* my net number */
474 } lnet_remotenet_t;
475
476 typedef struct {
477         struct list_head  rbp_bufs;             /* my free buffer pool */
478         struct list_head  rbp_msgs;             /* messages blocking for a buffer */
479         int               rbp_npages;           /* # pages in each buffer */
480         int               rbp_nbuffers;         /* # buffers */
481         int               rbp_credits;          /* # free buffers / blocked messages */
482         int               rbp_mincredits;       /* low water mark */
483 } lnet_rtrbufpool_t;
484
485 typedef struct {
486         struct list_head   rb_list;             /* chain on rbp_bufs */
487         lnet_rtrbufpool_t *rb_pool;             /* owning pool */
488         lnet_kiov_t        rb_kiov[0];          /* the buffer space */
489 } lnet_rtrbuf_t;
490
491 typedef struct {
492         __u32        msgs_alloc;
493         __u32        msgs_max;
494         __u32        errors;
495         __u32        send_count;
496         __u32        recv_count;
497         __u32        route_count;
498         __u32        drop_count;
499         __u64        send_length;
500         __u64        recv_length;
501         __u64        route_length;
502         __u64        drop_length;
503 } WIRE_ATTR lnet_counters_t;
504
505 #define LNET_PEER_HASHSIZE   503                /* prime! */
506
507 #define LNET_NRBPOOLS         3                 /* # different router buffer pools */
508
509 /* Options for lnet_portal_t::ptl_options */
510 #define LNET_PTL_LAZY               (1 << 0)
511 #define LNET_PTL_MATCH_UNIQUE       (1 << 1)    /* unique match, for RDMA */
512 #define LNET_PTL_MATCH_WILDCARD     (1 << 2)    /* wildcard match, request portal */
513
514 #define LNET_PORTAL_HASH_SIZE        113        /* ME hash size of RDMA portal (prime) */
515
516 typedef struct {
517         struct list_head *ptl_mhash;            /* match hash */
518         struct list_head  ptl_mlist;            /* match list */
519         struct list_head  ptl_msgq;             /* messages blocking for MD */
520         __u64             ptl_ml_version;       /* validity stamp, only changed for new attached MD */
521         __u64             ptl_msgq_version;     /* validity stamp */
522         unsigned int      ptl_options;
523 } lnet_portal_t;
524
525 /* Router Checker states */
526 #define LNET_RC_STATE_SHUTDOWN     0            /* not started */
527 #define LNET_RC_STATE_RUNNING      1            /* started up OK */
528 #define LNET_RC_STATE_STOPTHREAD   2            /* telling thread to stop */
529 #define LNET_RC_STATE_UNLINKING    3            /* unlinking RC MD */
530 #define LNET_RC_STATE_UNLINKED     4            /* RC's MD has been unlinked */
531
532 typedef struct
533 {
534         /* Stuff initialised at LNetInit() */
535         int                ln_init;             /* LNetInit() called? */
536         int                ln_refcount;         /* LNetNIInit/LNetNIFini counter */
537         int                ln_niinit_self;      /* Have I called LNetNIInit myself? */
538
539         int                ln_ptlcompat;        /* do I support talking to portals? */
540         
541         struct list_head   ln_lnds;             /* registered LNDs */
542
543 #ifdef __KERNEL__
544         spinlock_t         ln_lock;
545         cfs_waitq_t        ln_waitq;
546         struct semaphore   ln_api_mutex;
547         struct semaphore   ln_lnd_mutex;
548 #else
549 # ifndef HAVE_LIBPTHREAD
550         int                ln_lock;
551         int                ln_api_mutex;
552         int                ln_lnd_mutex;
553 # else
554         pthread_cond_t     ln_cond;
555         pthread_mutex_t    ln_lock;
556         pthread_mutex_t    ln_api_mutex;
557         pthread_mutex_t    ln_lnd_mutex;
558 # endif
559 #endif
560
561         /* Stuff initialised at LNetNIInit() */
562
563         int                ln_shutdown;         /* shutdown in progress */
564         int                ln_nportals;         /* # portals */
565         lnet_portal_t     *ln_portals;          /* the vector of portals */
566
567         lnet_pid_t         ln_pid;              /* requested pid */
568
569         struct list_head   ln_nis;              /* LND instances */
570         lnet_ni_t         *ln_loni;             /* the loopback NI */
571         lnet_ni_t         *ln_eqwaitni;         /* NI to wait for events in */
572         struct list_head   ln_zombie_nis;       /* dying LND instances */
573         int                ln_nzombie_nis;      /* # of NIs to wait for */
574
575         struct list_head   ln_remote_nets;      /* remote networks with routes to them */
576         __u64              ln_remote_nets_version; /* validity stamp */
577
578         struct list_head   ln_routers;          /* list of all known routers */
579         __u64              ln_routers_version;  /* validity stamp */
580
581         struct list_head  *ln_peer_hash;        /* NID->peer hash */
582         int                ln_npeers;           /* # peers extant */
583         int                ln_peertable_version; /* /proc validity stamp */
584         
585         int                ln_routing;          /* am I a router? */
586         lnet_rtrbufpool_t  ln_rtrpools[LNET_NRBPOOLS]; /* router buffer pools */
587         
588         int                ln_lh_hash_size;     /* size of lib handle hash table */
589         struct list_head  *ln_lh_hash_table;    /* all extant lib handles, this interface */
590         __u64              ln_next_object_cookie; /* cookie generator */
591         __u64              ln_interface_cookie; /* uniquely identifies this ni in this epoch */
592
593         char              *ln_network_tokens;   /* space for network names */
594         int                ln_network_tokens_nob;
595
596         int                ln_testprotocompat;  /* test protocol compatibility flags */
597
598         struct list_head   ln_finalizeq;        /* msgs waiting to complete finalizing */
599 #ifdef __KERNEL__
600         void             **ln_finalizers;       /* threads doing finalization */
601         int                ln_nfinalizers;      /* max # threads finalizing */
602 #else
603         int                ln_finalizing;
604 #endif
605         struct list_head   ln_test_peers;       /* failure simulation */
606
607         lnet_handle_md_t   ln_ping_target_md;
608         lnet_handle_eq_t   ln_ping_target_eq;
609         lnet_ping_info_t  *ln_ping_info;
610
611 #ifdef __KERNEL__
612         struct semaphore   ln_rc_signal;        /* serialise startup/shutdown */
613 #endif
614         int                ln_rc_state;         /* router checker startup/shutdown state */
615         lnet_handle_eq_t   ln_rc_eqh;           /* router checker's event queue */
616         lnet_handle_md_t   ln_rc_mdh;
617         struct list_head   ln_zombie_rcd;
618         
619 #ifdef LNET_USE_LIB_FREELIST
620         lnet_freelist_t    ln_free_mes;
621         lnet_freelist_t    ln_free_msgs;
622         lnet_freelist_t    ln_free_mds;
623         lnet_freelist_t    ln_free_eqs;
624 #endif
625         struct list_head   ln_active_msgs;
626         struct list_head   ln_active_mds;
627         struct list_head   ln_active_eqs;
628
629         lnet_counters_t    ln_counters;
630
631 #ifndef __KERNEL__
632         /* Temporary workaround to allow uOSS and test programs force
633          * server mode in userspace. The only place where we use it is
634          * lnet_prepare(). The only way to turn this flag on is to
635          * call lnet_server_mode() */
636
637         int                ln_server_mode_flag;
638 #endif        
639 } lnet_t;
640
641 #endif