Whamcloud - gitweb
f5182785f5faf22177472faf95225e64525278c6
[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         void             *md_addrkey;
266         unsigned int      md_niov;                /* # frags */
267         union {
268                 struct iovec  iov[LNET_MAX_IOV];
269                 lnet_kiov_t   kiov[LNET_MAX_IOV];
270         } md_iov;
271 } lnet_libmd_t;
272
273 #define LNET_MD_FLAG_ZOMBIE           (1 << 0)
274 #define LNET_MD_FLAG_AUTO_UNLINK      (1 << 1)
275
276 #ifdef LNET_USE_LIB_FREELIST
277 typedef struct
278 {
279         void              *fl_objs;             /* single contiguous array of objects */
280         int                fl_nobjs;            /* the number of them */
281         int                fl_objsize;          /* the size (including overhead) of each of them */
282         struct list_head   fl_list;             /* where they are enqueued */
283 } lnet_freelist_t;
284
285 typedef struct
286 {
287         struct list_head   fo_list;             /* enqueue on fl_list */
288         void              *fo_contents;         /* aligned contents */
289 } lnet_freeobj_t;
290 #endif
291
292 typedef struct {
293         /* info about peers we are trying to fail */
294         struct list_head   tp_list;             /* ln_test_peers */
295         lnet_nid_t         tp_nid;              /* matching nid */
296         unsigned int       tp_threshold;        /* # failures to simulate */
297 } lnet_test_peer_t;
298
299 #define LNET_COOKIE_TYPE_MD    1
300 #define LNET_COOKIE_TYPE_ME    2
301 #define LNET_COOKIE_TYPE_EQ    3
302 #define LNET_COOKIE_TYPES      4
303 /* LNET_COOKIE_TYPES must be a power of 2, so the cookie type can be
304  * extracted by masking with (LNET_COOKIE_TYPES - 1) */
305
306 struct lnet_ni;                                  /* forward ref */
307
308 typedef struct lnet_lnd
309 {
310         /* fields managed by portals */
311         struct list_head  lnd_list;             /* stash in the LND table */
312         int               lnd_refcount;         /* # active instances */
313
314         /* fields initialised by the LND */
315         unsigned int      lnd_type;
316
317         int  (*lnd_startup) (struct lnet_ni *ni);
318         void (*lnd_shutdown) (struct lnet_ni *ni);
319         int  (*lnd_ctl)(struct lnet_ni *ni, unsigned int cmd, void *arg);
320
321         /* In data movement APIs below, payload buffers are described as a set
322          * of 'niov' fragments which are...
323          * EITHER
324          *    in virtual memory (struct iovec *iov != NULL)
325          * OR
326          *    in pages (kernel only: plt_kiov_t *kiov != NULL).
327          * The LND may NOT overwrite these fragment descriptors.
328          * An 'offset' and may specify a byte offset within the set of
329          * fragments to start from
330          */
331
332         /* Start sending a preformatted message.  'private' is NULL for PUT and
333          * GET messages; otherwise this is a response to an incoming message
334          * and 'private' is the 'private' passed to lnet_parse().  Return
335          * non-zero for immediate failure, otherwise complete later with
336          * lnet_finalize() */
337         int (*lnd_send)(struct lnet_ni *ni, void *private, lnet_msg_t *msg);
338
339         /* Start receiving 'mlen' bytes of payload data, skipping the following
340          * 'rlen' - 'mlen' bytes. 'private' is the 'private' passed to
341          * lnet_parse().  Return non-zero for immedaite failure, otherwise
342          * complete later with lnet_finalize().  This also gives back a receive
343          * credit if the LND does flow control. */
344         int (*lnd_recv)(struct lnet_ni *ni, void *private, lnet_msg_t *msg,
345                         int delayed, unsigned int niov,
346                         struct iovec *iov, lnet_kiov_t *kiov,
347                         unsigned int offset, unsigned int mlen, unsigned int rlen);
348
349         /* lnet_parse() has had to delay processing of this message
350          * (e.g. waiting for a forwarding buffer or send credits).  Give the
351          * LND a chance to free urgently needed resources.  If called, return 0
352          * for success and do NOT give back a receive credit; that has to wait
353          * until lnd_recv() gets called.  On failure return < 0 and
354          * release resources; lnd_recv() will not be called. */
355         int (*lnd_eager_recv)(struct lnet_ni *ni, void *private, lnet_msg_t *msg,
356                               void **new_privatep);
357
358         /* notification of peer health */
359         void (*lnd_notify)(struct lnet_ni *ni, lnet_nid_t peer, int alive);
360
361 #if defined(__KERNEL__) || defined(HAVE_LIBPTHREAD)
362         /* accept a new connection */
363         int (*lnd_accept)(struct lnet_ni *ni, cfs_socket_t *sock);
364 #endif
365
366 #ifndef __KERNEL__
367         /* wait for something to happen */
368         void (*lnd_wait)(struct lnet_ni *ni, int milliseconds);
369
370         /* ensure non-RDMA messages can be received outside liblustre */
371         int (*lnd_setasync)(struct lnet_ni *ni, lnet_process_id_t id, int nasync);
372 #endif
373 } lnd_t;
374
375 #define LNET_MAX_INTERFACES   16
376
377 typedef struct lnet_ni {
378         struct list_head  ni_list;              /* chain on ln_nis */
379         struct list_head  ni_txq;               /* messages waiting for tx credits */
380         int               ni_maxtxcredits;      /* # tx credits  */
381         int               ni_txcredits;         /* # tx credits free */
382         int               ni_mintxcredits;      /* lowest it's been */
383         int               ni_peertxcredits;     /* # per-peer send credits */
384         lnet_nid_t        ni_nid;               /* interface's NID */
385         void             *ni_data;              /* instance-specific data */
386         lnd_t            *ni_lnd;               /* procedural interface */
387         int               ni_refcount;          /* reference count */
388         char             *ni_interfaces[LNET_MAX_INTERFACES]; /* equivalent interfaces to use */
389 } lnet_ni_t;
390
391 typedef struct lnet_peer {
392         struct list_head  lp_hashlist;          /* chain on peer hash */
393         struct list_head  lp_txq;               /* messages blocking for tx credits */
394         struct list_head  lp_rtrq;              /* messages blocking for router credits */
395         struct list_head  lp_rtr_list;          /* chain on router list */
396         int               lp_txcredits;         /* # tx credits available */
397         int               lp_mintxcredits;      /* low water mark */
398         int               lp_rtrcredits;        /* # router credits */
399         int               lp_minrtrcredits;     /* low water mark */
400         unsigned int      lp_alive:1;           /* alive/dead? */
401         unsigned int      lp_notify:1;          /* notification outstanding? */
402         unsigned int      lp_notifylnd:1;       /* outstanding notification for LND? */
403         unsigned int      lp_notifying:1;       /* some thread is handling notification */
404         unsigned int      lp_ping_notsent;      /* SEND event outstanding from ping */
405         int               lp_alive_count;       /* # times router went dead<->alive */
406         long              lp_txqnob;            /* bytes queued for sending */
407         time_t            lp_timestamp;         /* time of last aliveness news */
408         time_t            lp_ping_timestamp;    /* time of last ping attempt */
409         time_t            lp_ping_deadline;     /* != 0 if ping reply expected */
410         lnet_ni_t        *lp_ni;                /* interface peer is on */
411         lnet_nid_t        lp_nid;               /* peer's NID */
412         int               lp_refcount;          /* # refs */
413         int               lp_rtr_refcount;      /* # refs from lnet_route_t::lr_gateway */
414 } lnet_peer_t;
415
416 typedef struct {
417         struct list_head  lr_list;              /* chain on net */
418         lnet_peer_t      *lr_gateway;           /* router node */
419 } lnet_route_t;
420
421 typedef struct {
422         struct list_head        lrn_list;       /* chain on ln_remote_nets */
423         struct list_head        lrn_routes;     /* routes to me */
424         __u32                   lrn_net;        /* my net number */
425         unsigned int            lrn_hops;       /* how far I am */
426 } lnet_remotenet_t;
427
428 typedef struct {
429         struct list_head  rbp_bufs;             /* my free buffer pool */
430         struct list_head  rbp_msgs;             /* messages blocking for a buffer */
431         int               rbp_npages;           /* # pages in each buffer */
432         int               rbp_nbuffers;         /* # buffers */
433         int               rbp_credits;          /* # free buffers / blocked messages */
434         int               rbp_mincredits;       /* low water mark */
435 } lnet_rtrbufpool_t;
436
437 typedef struct {
438         struct list_head   rb_list;             /* chain on rbp_bufs */
439         lnet_rtrbufpool_t *rb_pool;             /* owning pool */
440         lnet_kiov_t        rb_kiov[0];          /* the buffer space */
441 } lnet_rtrbuf_t;
442
443 #include <libcfs/libcfs_pack.h>
444 typedef struct {
445         __u32        msgs_alloc;
446         __u32        msgs_max;
447         __u32        errors;
448         __u32        send_count;
449         __u32        recv_count;
450         __u32        route_count;
451         __u32        drop_count;
452         __u64        send_length;
453         __u64        recv_length;
454         __u64        route_length;
455         __u64        drop_length;
456 } WIRE_ATTR lnet_counters_t;
457 #include <libcfs/libcfs_unpack.h>
458
459 #define LNET_PEER_HASHSIZE   503                /* prime! */
460
461 #define LNET_NRBPOOLS         3                 /* # different router buffer pools */
462
463 #define LNET_PROTO_PING_MATCHBITS     0x8000000000000000LL
464 #define LNET_PROTO_PING_VERSION       1
465 typedef struct {
466         __u32          pi_magic;
467         __u32          pi_version;
468         lnet_pid_t     pi_pid;
469         __u32          pi_nnids;
470         lnet_nid_t     pi_nid[0];
471 } WIRE_ATTR lnet_ping_info_t;
472
473 /* Options for lnet_portal_t::ptl_options */
474 #define LNET_PTL_LAZY               (1 << 0)
475 typedef struct {
476         struct list_head ptl_ml;  /* match list */
477         struct list_head ptl_msgq; /* messages blocking for MD */
478         __u64            ptl_ml_version;    /* validity stamp, only changed for new attached MD */
479         __u64            ptl_msgq_version;  /* validity stamp */
480         unsigned int     ptl_options;
481 } lnet_portal_t;
482
483 /* Router Checker */
484 /*                               < 0 == startup error */
485 #define LNET_RC_STATE_SHUTDOWN     0            /* not started */
486 #define LNET_RC_STATE_RUNNING      1            /* started up OK */
487 #define LNET_RC_STATE_STOPTHREAD   2            /* telling thread to stop */
488 #define LNET_RC_STATE_UNLINKING    3            /* unlinking RC MD */
489 #define LNET_RC_STATE_UNLINKED     4            /* RC's MD has been unlinked */
490
491 typedef struct
492 {
493         /* Stuff initialised at LNetInit() */
494         int                ln_init;             /* LNetInit() called? */
495         int                ln_refcount;         /* LNetNIInit/LNetNIFini counter */
496         int                ln_niinit_self;      /* Have I called LNetNIInit myself? */
497
498         struct list_head   ln_lnds;             /* registered LNDs */
499
500 #ifdef __KERNEL__
501         spinlock_t         ln_lock;
502         cfs_waitq_t        ln_waitq;
503         struct semaphore   ln_api_mutex;
504         struct semaphore   ln_lnd_mutex;
505 #else
506 # ifndef HAVE_LIBPTHREAD
507         int                ln_lock;
508         int                ln_api_mutex;
509         int                ln_lnd_mutex;
510 # else
511         pthread_cond_t     ln_cond;
512         pthread_mutex_t    ln_lock;
513         pthread_mutex_t    ln_api_mutex;
514         pthread_mutex_t    ln_lnd_mutex;
515 # endif
516 #endif
517
518         /* Stuff initialised at LNetNIInit() */
519
520         int                ln_shutdown;         /* shutdown in progress */
521         int                ln_nportals;         /* # portals */
522         lnet_portal_t     *ln_portals;          /* the vector of portals */
523
524         lnet_pid_t         ln_pid;              /* requested pid */
525
526         struct list_head   ln_nis;              /* LND instances */
527         lnet_ni_t         *ln_loni;             /* the loopback NI */
528         lnet_ni_t         *ln_eqwaitni;         /* NI to wait for events in */
529         struct list_head   ln_zombie_nis;       /* dying LND instances */
530         int                ln_nzombie_nis;      /* # of NIs to wait for */
531
532         struct list_head   ln_remote_nets;      /* remote networks with routes to them */
533         __u64              ln_remote_nets_version; /* validity stamp */
534
535         struct list_head   ln_routers;          /* list of all known routers */
536         __u64              ln_routers_version;  /* validity stamp */
537
538         struct list_head  *ln_peer_hash;        /* NID->peer hash */
539         int                ln_npeers;           /* # peers extant */
540         int                ln_peertable_version; /* /proc validity stamp */
541
542         int                ln_routing;          /* am I a router? */
543         lnet_rtrbufpool_t  ln_rtrpools[LNET_NRBPOOLS]; /* router buffer pools */
544
545         int                ln_lh_hash_size;     /* size of lib handle hash table */
546         struct list_head  *ln_lh_hash_table;    /* all extant lib handles, this interface */
547         __u64              ln_next_object_cookie; /* cookie generator */
548         __u64              ln_interface_cookie; /* uniquely identifies this ni in this epoch */
549
550         char              *ln_network_tokens;   /* space for network names */
551         int                ln_network_tokens_nob;
552
553         int                ln_testprotocompat;  /* test protocol compatibility flags */
554
555         struct list_head   ln_finalizeq;        /* msgs waiting to complete finalizing */
556 #ifdef __KERNEL__
557         void             **ln_finalizers;       /* threads doing finalization */
558         int                ln_nfinalizers;      /* max # threads finalizing */
559 #else
560         int                ln_finalizing;
561 #endif
562         struct list_head   ln_test_peers;       /* failure simulation */
563
564         lnet_handle_md_t   ln_ping_target_md;
565         lnet_handle_eq_t   ln_ping_target_eq;
566         lnet_ping_info_t  *ln_ping_info;
567
568 #ifdef __KERNEL__
569         int                ln_rc_state;         /* router checker startup/shutdown state */
570         struct semaphore   ln_rc_signal;        /* serialise startup/shutdown */
571         lnet_handle_eq_t   ln_rc_eqh;           /* router checker's event queue */
572 #endif
573
574 #ifdef LNET_USE_LIB_FREELIST
575         lnet_freelist_t    ln_free_mes;
576         lnet_freelist_t    ln_free_msgs;
577         lnet_freelist_t    ln_free_mds;
578         lnet_freelist_t    ln_free_eqs;
579 #endif
580         struct list_head   ln_active_msgs;
581         struct list_head   ln_active_mds;
582         struct list_head   ln_active_eqs;
583
584         lnet_counters_t    ln_counters;
585
586 #ifndef __KERNEL__
587         /* Temporary workaround to allow uOSS and test programs force
588          * server mode in userspace. The only place where we use it is
589          * lnet_prepare(). The only way to turn this flag on is to
590          * call lnet_server_mode() */
591
592         int                ln_server_mode_flag;
593 #endif
594 } lnet_t;
595
596 #endif