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