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