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