Whamcloud - gitweb
8f69c18d191146b04d3390931391830287543245
[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_MX_MAGIC                 0x4d583130 /* 'MX10'! */
164 #define LNET_PROTO_ACCEPTOR_MAGIC           0xacce7100
165 #define LNET_PROTO_PING_MAGIC               0x70696E67 /* 'ping' */
166
167 /* Placeholder for a future "unified" protocol across all LNDs */
168 /* Current LNDs that receive a request with this magic will respond with a
169  * "stub" reply using their current protocol */
170 #define LNET_PROTO_MAGIC                    0x45726963 /* ! */
171
172
173 #define LNET_PROTO_TCP_VERSION_MAJOR        1
174 #define LNET_PROTO_TCP_VERSION_MINOR        0
175
176 /* Acceptor connection request */
177 typedef struct {
178         __u32       acr_magic;                  /* PTL_ACCEPTOR_PROTO_MAGIC */
179         __u32       acr_version;                /* protocol version */
180         __u64       acr_nid;                    /* target NID */
181 } WIRE_ATTR lnet_acceptor_connreq_t;
182 #include <libcfs/libcfs_unpack.h>
183
184 #define LNET_PROTO_ACCEPTOR_VERSION       1
185
186 /* forward refs */
187 struct lnet_libmd;
188
189 typedef struct lnet_msg {
190         cfs_list_t            msg_activelist;
191         cfs_list_t            msg_list;           /* Q for credits/MD */
192
193         lnet_process_id_t     msg_target;
194         __u32                 msg_type;
195
196         unsigned int          msg_vmflush:1;      /* VM trying to free memory */
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         cfs_list_t            lh_hash_chain;
229         __u64                 lh_cookie;
230 } lnet_libhandle_t;
231
232 #define lh_entry(ptr, type, member) \
233         ((type *)((char *)(ptr)-(char *)(&((type *)0)->member)))
234
235 typedef struct lnet_eq {
236         cfs_list_t            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         cfs_list_t             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         cfs_list_t            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         cfs_list_t             fl_list;          /* where they are enqueued */
288 } lnet_freelist_t;
289
290 typedef struct
291 {
292         cfs_list_t             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         cfs_list_t             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         cfs_list_t            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 #if defined(__KERNEL__) || defined(HAVE_LIBPTHREAD)
370         /* accept a new connection */
371         int (*lnd_accept)(struct lnet_ni *ni, cfs_socket_t *sock);
372 #endif
373
374 #ifndef __KERNEL__
375         /* wait for something to happen */
376         void (*lnd_wait)(struct lnet_ni *ni, int milliseconds);
377
378         /* ensure non-RDMA messages can be received outside liblustre */
379         int (*lnd_setasync)(struct lnet_ni *ni, lnet_process_id_t id, int nasync);
380 #endif
381 } lnd_t;
382
383 #define LNET_NI_STATUS_UP      0x15aac0de
384 #define LNET_NI_STATUS_DOWN    0xdeadface
385 #define LNET_NI_STATUS_INVALID 0x00000000
386 typedef struct {
387         lnet_nid_t ns_nid;
388         __u32      ns_status;
389         __u32      ns_unused;
390 } WIRE_ATTR lnet_ni_status_t;
391
392 #define LNET_MAX_INTERFACES   16
393
394 typedef struct lnet_ni {
395         cfs_list_t        ni_list;              /* chain on ln_nis */
396         cfs_list_t        ni_txq;               /* messages waiting for tx credits */
397         int               ni_maxtxcredits;      /* # tx credits  */
398         int               ni_txcredits;         /* # tx credits free */
399         int               ni_mintxcredits;      /* lowest it's been */
400         int               ni_peertxcredits;     /* # per-peer send credits */
401         int               ni_peerrtrcredits;    /* # per-peer router buffer credits */
402         int               ni_peertimeout;       /* seconds to consider peer dead */
403         lnet_nid_t        ni_nid;               /* interface's NID */
404         void             *ni_data;              /* instance-specific data */
405         lnd_t            *ni_lnd;               /* procedural interface */
406         int               ni_refcount;          /* reference count */
407         cfs_time_t        ni_last_alive;        /* when I was last alive */
408         lnet_ni_status_t *ni_status;            /* my health status */
409         char             *ni_interfaces[LNET_MAX_INTERFACES]; /* equivalent interfaces to use */
410 } lnet_ni_t;
411
412 #define LNET_PROTO_PING_MATCHBITS     0x8000000000000000LL
413 #define LNET_PROTO_PING_VERSION       2
414 #define LNET_PROTO_PING_VERSION1      1
415 typedef struct {
416         __u32            pi_magic;
417         __u32            pi_version;
418         lnet_pid_t       pi_pid;
419         __u32            pi_nnis;
420         lnet_ni_status_t pi_ni[0];
421 } WIRE_ATTR lnet_ping_info_t;
422
423 /* router checker data, per router */
424 #define LNET_MAX_RTR_NIS   16
425 #define LNET_PINGINFO_SIZE offsetof(lnet_ping_info_t, pi_ni[LNET_MAX_RTR_NIS])
426 typedef struct {
427         cfs_list_t        rcd_list;             /* chain on the_lnet.ln_zombie_rcd */
428         lnet_handle_md_t  rcd_mdh;              /* ping buffer MD */
429         lnet_ping_info_t *rcd_pinginfo;         /* ping buffer */
430 } lnet_rc_data_t;
431
432 typedef struct lnet_peer {
433         cfs_list_t        lp_hashlist;          /* chain on peer hash */
434         cfs_list_t        lp_txq;               /* messages blocking for tx credits */
435         cfs_list_t        lp_rtrq;              /* messages blocking for router credits */
436         cfs_list_t        lp_rtr_list;          /* chain on router list */
437         int               lp_txcredits;         /* # tx credits available */
438         int               lp_mintxcredits;      /* low water mark */
439         int               lp_rtrcredits;        /* # router credits */
440         int               lp_minrtrcredits;     /* low water mark */
441         unsigned int      lp_alive:1;           /* alive/dead? */
442         unsigned int      lp_notify:1;          /* notification outstanding? */
443         unsigned int      lp_notifylnd:1;       /* outstanding notification for LND? */
444         unsigned int      lp_notifying:1;       /* some thread is handling notification */
445         unsigned int      lp_ping_notsent;      /* SEND event outstanding from ping */
446         int               lp_alive_count;       /* # times router went dead<->alive */
447         long              lp_txqnob;            /* bytes queued for sending */
448         cfs_time_t        lp_timestamp;         /* time of last aliveness news */
449         cfs_time_t        lp_ping_timestamp;    /* time of last ping attempt */
450         cfs_time_t        lp_ping_deadline;     /* != 0 if ping reply expected */
451         cfs_time_t        lp_last_alive;        /* when I was last alive */
452         cfs_time_t        lp_last_query;        /* when lp_ni was queried last time */
453         lnet_ni_t        *lp_ni;                /* interface peer is on */
454         lnet_nid_t        lp_nid;               /* peer's NID */
455         int               lp_refcount;          /* # refs */
456         int               lp_rtr_refcount;      /* # refs from lnet_route_t::lr_gateway */
457         lnet_rc_data_t   *lp_rcd;               /* router checker state */
458 } lnet_peer_t;
459
460 #define lnet_peer_aliveness_enabled(lp) ((lp)->lp_ni->ni_peertimeout > 0)
461
462 typedef struct {
463         cfs_list_t        lr_list;              /* chain on net */
464         lnet_peer_t      *lr_gateway;           /* router node */
465         unsigned int      lr_hops;              /* how far I am */
466 } lnet_route_t;
467
468 typedef struct {
469         cfs_list_t              lrn_list;       /* chain on ln_remote_nets */
470         cfs_list_t              lrn_routes;     /* routes to me */
471         __u32                   lrn_net;        /* my net number */
472 } lnet_remotenet_t;
473
474 typedef struct {
475         cfs_list_t rbp_bufs;             /* my free buffer pool */
476         cfs_list_t rbp_msgs;             /* messages blocking for a buffer */
477         int        rbp_npages;           /* # pages in each buffer */
478         int        rbp_nbuffers;         /* # buffers */
479         int        rbp_credits;          /* # free buffers / blocked messages */
480         int        rbp_mincredits;       /* low water mark */
481 } lnet_rtrbufpool_t;
482
483 typedef struct {
484         cfs_list_t             rb_list;             /* chain on rbp_bufs */
485         lnet_rtrbufpool_t     *rb_pool;             /* owning pool */
486         lnet_kiov_t            rb_kiov[0];          /* the buffer space */
487 } lnet_rtrbuf_t;
488
489 #include <libcfs/libcfs_pack.h>
490 typedef struct {
491         __u32        msgs_alloc;
492         __u32        msgs_max;
493         __u32        errors;
494         __u32        send_count;
495         __u32        recv_count;
496         __u32        route_count;
497         __u32        drop_count;
498         __u64        send_length;
499         __u64        recv_length;
500         __u64        route_length;
501         __u64        drop_length;
502 } WIRE_ATTR lnet_counters_t;
503 #include <libcfs/libcfs_unpack.h>
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 /* ME hash of RDMA portal */
515 #define LNET_PORTAL_HASH_BITS        8
516 #define LNET_PORTAL_HASH_SIZE       (1 << LNET_PORTAL_HASH_BITS)
517
518 typedef struct {
519         cfs_list_t       *ptl_mhash;            /* match hash */
520         cfs_list_t        ptl_mlist;            /* match list */
521         cfs_list_t        ptl_msgq;             /* messages blocking for MD */
522         __u64             ptl_ml_version;       /* validity stamp, only changed for new attached MD */
523         __u64             ptl_msgq_version;     /* validity stamp */
524         unsigned int      ptl_options;
525 } lnet_portal_t;
526
527 /* Router Checker states */
528 #define LNET_RC_STATE_SHUTDOWN     0            /* not started */
529 #define LNET_RC_STATE_RUNNING      1            /* started up OK */
530 #define LNET_RC_STATE_STOPTHREAD   2            /* telling thread to stop */
531 #define LNET_RC_STATE_UNLINKING    3            /* unlinking RC MD */
532 #define LNET_RC_STATE_UNLINKED     4            /* RC's MD has been unlinked */
533
534 typedef struct
535 {
536         /* Stuff initialised at LNetInit() */
537         int                    ln_init;             /* LNetInit() called? */
538         int                    ln_refcount;         /* LNetNIInit/LNetNIFini counter */
539         int                    ln_niinit_self;      /* Have I called LNetNIInit myself? */
540
541         cfs_list_t             ln_lnds;             /* registered LNDs */
542
543 #ifdef __KERNEL__
544         cfs_spinlock_t         ln_lock;
545         cfs_waitq_t            ln_waitq;
546         cfs_semaphore_t   ln_api_mutex;
547         cfs_semaphore_t   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         cfs_list_t             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         cfs_list_t             ln_zombie_nis;       /* dying LND instances */
573         int                    ln_nzombie_nis;      /* # of NIs to wait for */
574
575         cfs_list_t             ln_remote_nets;      /* remote networks with routes to them */
576         __u64                  ln_remote_nets_version; /* validity stamp */
577
578         cfs_list_t             ln_routers;       /* list of all known routers */
579         __u64                  ln_routers_version;  /* validity stamp */
580
581         cfs_list_t            *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         cfs_list_t            *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         cfs_list_t             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         cfs_list_t             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         cfs_semaphore_t   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         cfs_list_t         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         cfs_list_t             ln_active_msgs;
626         cfs_list_t             ln_active_mds;
627         cfs_list_t             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