Whamcloud - gitweb
i=liang,b=15332,b=21103:
[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, cfs_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_NI_STATUS_UP      0x15aac0de
378 #define LNET_NI_STATUS_DOWN    0xdeadface
379 #define LNET_NI_STATUS_INVALID 0x00000000
380 typedef struct {
381         lnet_nid_t ns_nid;
382         __u32      ns_status;
383         __u32      ns_unused;
384 } WIRE_ATTR lnet_ni_status_t;
385
386 #define LNET_MAX_INTERFACES   16
387
388 typedef struct lnet_ni {
389         struct list_head  ni_list;              /* chain on ln_nis */
390         struct list_head  ni_txq;               /* messages waiting for tx credits */
391         int               ni_maxtxcredits;      /* # tx credits  */
392         int               ni_txcredits;         /* # tx credits free */
393         int               ni_mintxcredits;      /* lowest it's been */
394         int               ni_peertxcredits;     /* # per-peer send credits */
395         int               ni_peerrtrcredits;    /* # per-peer router buffer credits */
396         int               ni_peertimeout;       /* seconds to consider peer dead */
397         lnet_nid_t        ni_nid;               /* interface's NID */
398         void             *ni_data;              /* instance-specific data */
399         lnd_t            *ni_lnd;               /* procedural interface */
400         int               ni_refcount;          /* reference count */
401         cfs_time_t        ni_last_alive;        /* when I was last alive */
402         lnet_ni_status_t *ni_status;            /* my health status */
403         char             *ni_interfaces[LNET_MAX_INTERFACES]; /* equivalent interfaces to use */
404 } lnet_ni_t;
405
406 #define LNET_PROTO_PING_MATCHBITS     0x8000000000000000LL
407 #define LNET_PROTO_PING_VERSION       2
408 #define LNET_PROTO_PING_VERSION1      1
409 typedef struct {
410         __u32            pi_magic;
411         __u32            pi_version;
412         lnet_pid_t       pi_pid;
413         __u32            pi_nnis;
414         lnet_ni_status_t pi_ni[0];
415 } WIRE_ATTR lnet_ping_info_t;
416
417 /* router checker data, per router */
418 #define LNET_MAX_RTR_NIS   16
419 #define LNET_PINGINFO_SIZE offsetof(lnet_ping_info_t, pi_ni[LNET_MAX_RTR_NIS])
420 typedef struct {
421         struct list_head  rcd_list;             /* chain on the_lnet.ln_zombie_rcd */
422         lnet_handle_md_t  rcd_mdh;              /* ping buffer MD */
423         lnet_ping_info_t *rcd_pinginfo;         /* ping buffer */
424 } lnet_rc_data_t;
425
426 typedef struct lnet_peer {
427         struct list_head  lp_hashlist;          /* chain on peer hash */
428         struct list_head  lp_txq;               /* messages blocking for tx credits */
429         struct list_head  lp_rtrq;              /* messages blocking for router credits */
430         struct list_head  lp_rtr_list;          /* chain on router list */
431         int               lp_txcredits;         /* # tx credits available */
432         int               lp_mintxcredits;      /* low water mark */
433         int               lp_rtrcredits;        /* # router credits */
434         int               lp_minrtrcredits;     /* low water mark */
435         unsigned int      lp_alive:1;           /* alive/dead? */
436         unsigned int      lp_notify:1;          /* notification outstanding? */
437         unsigned int      lp_notifylnd:1;       /* outstanding notification for LND? */
438         unsigned int      lp_notifying:1;       /* some thread is handling notification */
439         unsigned int      lp_ping_notsent;      /* SEND event outstanding from ping */
440         int               lp_alive_count;       /* # times router went dead<->alive */
441         long              lp_txqnob;            /* bytes queued for sending */
442         cfs_time_t        lp_timestamp;         /* time of last aliveness news */
443         cfs_time_t        lp_ping_timestamp;    /* time of last ping attempt */
444         cfs_time_t        lp_ping_deadline;     /* != 0 if ping reply expected */
445         cfs_time_t        lp_last_alive;        /* when I was last alive */
446         cfs_time_t        lp_last_query;        /* when lp_ni was queried last time */
447         lnet_ni_t        *lp_ni;                /* interface peer is on */
448         lnet_nid_t        lp_nid;               /* peer's NID */
449         int               lp_refcount;          /* # refs */
450         int               lp_rtr_refcount;      /* # refs from lnet_route_t::lr_gateway */
451         lnet_rc_data_t   *lp_rcd;               /* router checker state */
452 } lnet_peer_t;
453
454 typedef struct {
455         struct list_head  lr_list;              /* chain on net */
456         lnet_peer_t      *lr_gateway;           /* router node */
457         unsigned int      lr_hops;              /* how far I am */
458 } lnet_route_t;
459
460 typedef struct {
461         struct list_head        lrn_list;       /* chain on ln_remote_nets */
462         struct list_head        lrn_routes;     /* routes to me */
463         __u32                   lrn_net;        /* my net number */
464 } lnet_remotenet_t;
465
466 typedef struct {
467         struct list_head  rbp_bufs;             /* my free buffer pool */
468         struct list_head  rbp_msgs;             /* messages blocking for a buffer */
469         int               rbp_npages;           /* # pages in each buffer */
470         int               rbp_nbuffers;         /* # buffers */
471         int               rbp_credits;          /* # free buffers / blocked messages */
472         int               rbp_mincredits;       /* low water mark */
473 } lnet_rtrbufpool_t;
474
475 typedef struct {
476         struct list_head   rb_list;             /* chain on rbp_bufs */
477         lnet_rtrbufpool_t *rb_pool;             /* owning pool */
478         lnet_kiov_t        rb_kiov[0];          /* the buffer space */
479 } lnet_rtrbuf_t;
480
481 #include <libcfs/libcfs_pack.h>
482 typedef struct {
483         __u32        msgs_alloc;
484         __u32        msgs_max;
485         __u32        errors;
486         __u32        send_count;
487         __u32        recv_count;
488         __u32        route_count;
489         __u32        drop_count;
490         __u64        send_length;
491         __u64        recv_length;
492         __u64        route_length;
493         __u64        drop_length;
494 } WIRE_ATTR lnet_counters_t;
495 #include <libcfs/libcfs_unpack.h>
496
497 #define LNET_PEER_HASHSIZE   503                /* prime! */
498
499 #define LNET_NRBPOOLS         3                 /* # different router buffer pools */
500
501 /* Options for lnet_portal_t::ptl_options */
502 #define LNET_PTL_LAZY               (1 << 0)
503 typedef struct {
504         struct list_head ptl_ml;  /* match list */
505         struct list_head ptl_msgq; /* messages blocking for MD */
506         __u64            ptl_ml_version;    /* validity stamp, only changed for new attached MD */
507         __u64            ptl_msgq_version;  /* validity stamp */
508         unsigned int     ptl_options;
509 } lnet_portal_t;
510
511 /* Router Checker states */
512 #define LNET_RC_STATE_SHUTDOWN     0            /* not started */
513 #define LNET_RC_STATE_RUNNING      1            /* started up OK */
514 #define LNET_RC_STATE_STOPTHREAD   2            /* telling thread to stop */
515 #define LNET_RC_STATE_UNLINKING    3            /* unlinking RC MD */
516 #define LNET_RC_STATE_UNLINKED     4            /* RC's MD has been unlinked */
517
518 typedef struct
519 {
520         /* Stuff initialised at LNetInit() */
521         int                ln_init;             /* LNetInit() called? */
522         int                ln_refcount;         /* LNetNIInit/LNetNIFini counter */
523         int                ln_niinit_self;      /* Have I called LNetNIInit myself? */
524
525         struct list_head   ln_lnds;             /* registered LNDs */
526
527 #ifdef __KERNEL__
528         spinlock_t         ln_lock;
529         cfs_waitq_t        ln_waitq;
530         struct semaphore   ln_api_mutex;
531         struct semaphore   ln_lnd_mutex;
532 #else
533 # ifndef HAVE_LIBPTHREAD
534         int                ln_lock;
535         int                ln_api_mutex;
536         int                ln_lnd_mutex;
537 # else
538         pthread_cond_t     ln_cond;
539         pthread_mutex_t    ln_lock;
540         pthread_mutex_t    ln_api_mutex;
541         pthread_mutex_t    ln_lnd_mutex;
542 # endif
543 #endif
544
545         /* Stuff initialised at LNetNIInit() */
546
547         int                ln_shutdown;         /* shutdown in progress */
548         int                ln_nportals;         /* # portals */
549         lnet_portal_t     *ln_portals;          /* the vector of portals */
550
551         lnet_pid_t         ln_pid;              /* requested pid */
552
553         struct list_head   ln_nis;              /* LND instances */
554         lnet_ni_t         *ln_loni;             /* the loopback NI */
555         lnet_ni_t         *ln_eqwaitni;         /* NI to wait for events in */
556         struct list_head   ln_zombie_nis;       /* dying LND instances */
557         int                ln_nzombie_nis;      /* # of NIs to wait for */
558
559         struct list_head   ln_remote_nets;      /* remote networks with routes to them */
560         __u64              ln_remote_nets_version; /* validity stamp */
561
562         struct list_head   ln_routers;          /* list of all known routers */
563         __u64              ln_routers_version;  /* validity stamp */
564
565         struct list_head  *ln_peer_hash;        /* NID->peer hash */
566         int                ln_npeers;           /* # peers extant */
567         int                ln_peertable_version; /* /proc validity stamp */
568
569         int                ln_routing;          /* am I a router? */
570         lnet_rtrbufpool_t  ln_rtrpools[LNET_NRBPOOLS]; /* router buffer pools */
571
572         int                ln_lh_hash_size;     /* size of lib handle hash table */
573         struct list_head  *ln_lh_hash_table;    /* all extant lib handles, this interface */
574         __u64              ln_next_object_cookie; /* cookie generator */
575         __u64              ln_interface_cookie; /* uniquely identifies this ni in this epoch */
576
577         char              *ln_network_tokens;   /* space for network names */
578         int                ln_network_tokens_nob;
579
580         int                ln_testprotocompat;  /* test protocol compatibility flags */
581
582         struct list_head   ln_finalizeq;        /* msgs waiting to complete finalizing */
583 #ifdef __KERNEL__
584         void             **ln_finalizers;       /* threads doing finalization */
585         int                ln_nfinalizers;      /* max # threads finalizing */
586 #else
587         int                ln_finalizing;
588 #endif
589         struct list_head   ln_test_peers;       /* failure simulation */
590
591         lnet_handle_md_t   ln_ping_target_md;
592         lnet_handle_eq_t   ln_ping_target_eq;
593         lnet_ping_info_t  *ln_ping_info;
594
595 #ifdef __KERNEL__
596         struct semaphore   ln_rc_signal;        /* serialise startup/shutdown */
597 #endif
598         int                ln_rc_state;         /* router checker startup/shutdown state */
599         lnet_handle_eq_t   ln_rc_eqh;           /* router checker's event queue */
600         lnet_handle_md_t   ln_rc_mdh;
601         struct list_head   ln_zombie_rcd;
602
603 #ifdef LNET_USE_LIB_FREELIST
604         lnet_freelist_t    ln_free_mes;
605         lnet_freelist_t    ln_free_msgs;
606         lnet_freelist_t    ln_free_mds;
607         lnet_freelist_t    ln_free_eqs;
608 #endif
609         struct list_head   ln_active_msgs;
610         struct list_head   ln_active_mds;
611         struct list_head   ln_active_eqs;
612
613         lnet_counters_t    ln_counters;
614
615 #ifndef __KERNEL__
616         /* Temporary workaround to allow uOSS and test programs force
617          * server mode in userspace. The only place where we use it is
618          * lnet_prepare(). The only way to turn this flag on is to
619          * call lnet_server_mode() */
620
621         int                ln_server_mode_flag;
622 #endif
623 } lnet_t;
624
625 #endif