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