Whamcloud - gitweb
13ca7d5cf67622e7c3003731c5be8124260139d8
[fs/lustre-release.git] / lnet / include / lnet / lib-types.h
1 /*
2  * GPL HEADER START
3  *
4  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
5  *
6  * This program is free software; you can redistribute it and/or modify
7  * it under the terms of the GNU General Public License version 2 only,
8  * as published by the Free Software Foundation.
9  *
10  * This program is distributed in the hope that it will be useful, but
11  * WITHOUT ANY WARRANTY; without even the implied warranty of
12  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
13  * General Public License version 2 for more details (a copy is included
14  * in the LICENSE file that accompanied this code).
15  *
16  * You should have received a copy of the GNU General Public License
17  * version 2 along with this program; If not, see
18  * http://www.gnu.org/licenses/gpl-2.0.html
19  *
20  * GPL HEADER END
21  */
22 /*
23  * Copyright (c) 2003, 2010, Oracle and/or its affiliates. All rights reserved.
24  * Use is subject to license terms.
25  *
26  * Copyright (c) 2012, 2016, Intel Corporation.
27  */
28 /*
29  * This file is part of Lustre, http://www.lustre.org/
30  * Lustre is a trademark of Sun Microsystems, Inc.
31  *
32  * lnet/include/lnet/lib-types.h
33  *
34  * Types used by the library side routines that do not need to be
35  * exposed to the user application
36  */
37
38 #ifndef __LNET_LIB_TYPES_H__
39 #define __LNET_LIB_TYPES_H__
40
41 #ifndef __KERNEL__
42 # error This include is only for kernel use.
43 #endif
44
45 #include <linux/kthread.h>
46 #include <linux/uio.h>
47 #include <linux/types.h>
48
49 #include <lnet/lnetctl.h>
50
51 /* Max payload size */
52 #ifndef CONFIG_LNET_MAX_PAYLOAD
53 # error "CONFIG_LNET_MAX_PAYLOAD must be defined in config.h"
54 #endif
55
56 #define LNET_MAX_PAYLOAD       CONFIG_LNET_MAX_PAYLOAD
57 #if (LNET_MAX_PAYLOAD < LNET_MTU)
58 # error "LNET_MAX_PAYLOAD too small - error in configure --with-max-payload-mb"
59 #elif (LNET_MAX_PAYLOAD > (PAGE_SIZE * LNET_MAX_IOV))
60 # error "LNET_MAX_PAYLOAD too large - error in configure --with-max-payload-mb"
61 #endif
62
63 /* forward refs */
64 struct lnet_libmd;
65
66 typedef struct lnet_msg {
67         struct list_head        msg_activelist;
68         struct list_head        msg_list;       /* Q for credits/MD */
69
70         lnet_process_id_t       msg_target;
71         /* Primary NID of the source. */
72         lnet_nid_t              msg_initiator;
73         /* where is it from, it's only for building event */
74         lnet_nid_t              msg_from;
75         __u32                   msg_type;
76
77         /* committed for sending */
78         unsigned int            msg_tx_committed:1;
79         /* CPT # this message committed for sending */
80         unsigned int            msg_tx_cpt:15;
81         /* committed for receiving */
82         unsigned int            msg_rx_committed:1;
83         /* CPT # this message committed for receiving */
84         unsigned int            msg_rx_cpt:15;
85         /* queued for tx credit */
86         unsigned int            msg_tx_delayed:1;
87         /* queued for RX buffer */
88         unsigned int            msg_rx_delayed:1;
89         /* ready for pending on RX delay list */
90         unsigned int            msg_rx_ready_delay:1;
91
92         unsigned int          msg_vmflush:1;      /* VM trying to free memory */
93         unsigned int          msg_target_is_router:1; /* sending to a router */
94         unsigned int          msg_routing:1;      /* being forwarded */
95         unsigned int          msg_ack:1;          /* ack on finalize (PUT) */
96         unsigned int          msg_sending:1;      /* outgoing message */
97         unsigned int          msg_receiving:1;    /* being received */
98         unsigned int          msg_txcredit:1;     /* taken an NI send credit */
99         unsigned int          msg_peertxcredit:1; /* taken a peer send credit */
100         unsigned int          msg_rtrcredit:1;    /* taken a globel router credit */
101         unsigned int          msg_peerrtrcredit:1; /* taken a peer router credit */
102         unsigned int          msg_onactivelist:1; /* on the activelist */
103         unsigned int          msg_rdma_get:1;
104
105         struct lnet_peer_ni  *msg_txpeer;         /* peer I'm sending to */
106         struct lnet_peer_ni  *msg_rxpeer;         /* peer I received from */
107
108         void                 *msg_private;
109         struct lnet_libmd    *msg_md;
110         /* the NI the message was sent or received over */
111         struct lnet_ni       *msg_txni;
112         struct lnet_ni       *msg_rxni;
113
114         unsigned int          msg_len;
115         unsigned int          msg_wanted;
116         unsigned int          msg_offset;
117         unsigned int          msg_niov;
118         struct kvec          *msg_iov;
119         lnet_kiov_t          *msg_kiov;
120
121         lnet_event_t          msg_ev;
122         lnet_hdr_t            msg_hdr;
123 } lnet_msg_t;
124
125
126 typedef struct lnet_libhandle {
127         struct list_head        lh_hash_chain;
128         __u64                   lh_cookie;
129 } lnet_libhandle_t;
130
131 #define lh_entry(ptr, type, member) \
132         ((type *)((char *)(ptr)-(char *)(&((type *)0)->member)))
133
134 typedef struct lnet_eq {
135         struct list_head        eq_list;
136         lnet_libhandle_t        eq_lh;
137         lnet_seq_t              eq_enq_seq;
138         lnet_seq_t              eq_deq_seq;
139         unsigned int            eq_size;
140         lnet_eq_handler_t       eq_callback;
141         lnet_event_t            *eq_events;
142         int                     **eq_refs;      /* percpt refcount for EQ */
143 } lnet_eq_t;
144
145 typedef struct lnet_me {
146         struct list_head        me_list;
147         lnet_libhandle_t        me_lh;
148         lnet_process_id_t       me_match_id;
149         unsigned int            me_portal;
150         unsigned int            me_pos;         /* hash offset in mt_hash */
151         __u64                   me_match_bits;
152         __u64                   me_ignore_bits;
153         lnet_unlink_t           me_unlink;
154         struct lnet_libmd      *me_md;
155 } lnet_me_t;
156
157 typedef struct lnet_libmd {
158         struct list_head        md_list;
159         lnet_libhandle_t        md_lh;
160         lnet_me_t              *md_me;
161         char                   *md_start;
162         unsigned int            md_offset;
163         unsigned int            md_length;
164         unsigned int            md_max_size;
165         int                     md_threshold;
166         int                     md_refcount;
167         unsigned int            md_options;
168         unsigned int            md_flags;
169         unsigned int            md_niov;        /* # frags at end of struct */
170         void                   *md_user_ptr;
171         lnet_eq_t              *md_eq;
172         lnet_handle_md_t       md_bulk_handle;
173         union {
174                 struct kvec     iov[LNET_MAX_IOV];
175                 lnet_kiov_t     kiov[LNET_MAX_IOV];
176         } md_iov;
177 } lnet_libmd_t;
178
179 #define LNET_MD_FLAG_ZOMBIE      (1 << 0)
180 #define LNET_MD_FLAG_AUTO_UNLINK (1 << 1)
181 #define LNET_MD_FLAG_ABORTED     (1 << 2)
182
183 typedef struct {
184         /* info about peers we are trying to fail */
185         struct list_head        tp_list;        /* ln_test_peers */
186         lnet_nid_t              tp_nid;         /* matching nid */
187         unsigned int            tp_threshold;   /* # failures to simulate */
188 } lnet_test_peer_t;
189
190 #define LNET_COOKIE_TYPE_MD    1
191 #define LNET_COOKIE_TYPE_ME    2
192 #define LNET_COOKIE_TYPE_EQ    3
193 #define LNET_COOKIE_TYPE_BITS  2
194 #define LNET_COOKIE_MASK        ((1ULL << LNET_COOKIE_TYPE_BITS) - 1ULL)
195
196 struct lnet_ni;                                  /* forward ref */
197 struct socket;
198
199 typedef struct lnet_lnd
200 {
201         /* fields managed by portals */
202         struct list_head        lnd_list;       /* stash in the LND table */
203         int                     lnd_refcount;   /* # active instances */
204
205         /* fields initialized by the LND */
206         __u32                   lnd_type;
207
208         int  (*lnd_startup)(struct lnet_ni *ni);
209         void (*lnd_shutdown)(struct lnet_ni *ni);
210         int  (*lnd_ctl)(struct lnet_ni *ni, unsigned int cmd, void *arg);
211
212         /* In data movement APIs below, payload buffers are described as a set
213          * of 'niov' fragments which are...
214          * EITHER
215          *    in virtual memory (struct kvec *iov != NULL)
216          * OR
217          *    in pages (kernel only: plt_kiov_t *kiov != NULL).
218          * The LND may NOT overwrite these fragment descriptors.
219          * An 'offset' and may specify a byte offset within the set of
220          * fragments to start from
221          */
222
223         /* Start sending a preformatted message.  'private' is NULL for PUT and
224          * GET messages; otherwise this is a response to an incoming message
225          * and 'private' is the 'private' passed to lnet_parse().  Return
226          * non-zero for immediate failure, otherwise complete later with
227          * lnet_finalize() */
228         int (*lnd_send)(struct lnet_ni *ni, void *private, lnet_msg_t *msg);
229
230         /* Start receiving 'mlen' bytes of payload data, skipping the following
231          * 'rlen' - 'mlen' bytes. 'private' is the 'private' passed to
232          * lnet_parse().  Return non-zero for immedaite failure, otherwise
233          * complete later with lnet_finalize().  This also gives back a receive
234          * credit if the LND does flow control. */
235         int (*lnd_recv)(struct lnet_ni *ni, void *private, lnet_msg_t *msg,
236                         int delayed, unsigned int niov,
237                         struct kvec *iov, lnet_kiov_t *kiov,
238                         unsigned int offset, unsigned int mlen, unsigned int rlen);
239
240         /* lnet_parse() has had to delay processing of this message
241          * (e.g. waiting for a forwarding buffer or send credits).  Give the
242          * LND a chance to free urgently needed resources.  If called, return 0
243          * for success and do NOT give back a receive credit; that has to wait
244          * until lnd_recv() gets called.  On failure return < 0 and
245          * release resources; lnd_recv() will not be called. */
246         int (*lnd_eager_recv)(struct lnet_ni *ni, void *private, lnet_msg_t *msg,
247                               void **new_privatep);
248
249         /* notification of peer health */
250         void (*lnd_notify)(struct lnet_ni *ni, lnet_nid_t peer, int alive);
251
252         /* query of peer aliveness */
253         void (*lnd_query)(struct lnet_ni *ni, lnet_nid_t peer, cfs_time_t *when);
254
255         /* accept a new connection */
256         int (*lnd_accept)(struct lnet_ni *ni, struct socket *sock);
257 } lnd_t;
258
259 typedef struct lnet_ni_status {
260         lnet_nid_t ns_nid;
261         __u32      ns_status;
262         __u32      ns_unused;
263 } WIRE_ATTR lnet_ni_status_t;
264
265 struct lnet_tx_queue {
266         int                     tq_credits;     /* # tx credits free */
267         int                     tq_credits_min; /* lowest it's been */
268         int                     tq_credits_max; /* total # tx credits */
269         struct list_head        tq_delayed;     /* delayed TXs */
270 };
271
272 enum lnet_net_state {
273         /* set when net block is allocated */
274         LNET_NET_STATE_INIT = 0,
275         /* set when NIs in net are started successfully */
276         LNET_NET_STATE_ACTIVE,
277         /* set if all NIs in net are in FAILED state */
278         LNET_NET_STATE_INACTIVE,
279         /* set when shutting down a NET */
280         LNET_NET_STATE_DELETING
281 };
282
283 enum lnet_ni_state {
284         /* set when NI block is allocated */
285         LNET_NI_STATE_INIT = 0,
286         /* set when NI is started successfully */
287         LNET_NI_STATE_ACTIVE,
288         /* set when LND notifies NI failed */
289         LNET_NI_STATE_FAILED,
290         /* set when LND notifies NI degraded */
291         LNET_NI_STATE_DEGRADED,
292         /* set when shuttding down NI */
293         LNET_NI_STATE_DELETING
294 };
295
296 struct lnet_element_stats {
297         atomic_t        send_count;
298         atomic_t        recv_count;
299         atomic_t        drop_count;
300 };
301
302 struct lnet_net {
303         /* chain on the ln_nets */
304         struct list_head        net_list;
305
306         /* net ID, which is composed of
307          * (net_type << 16) | net_num.
308          * net_type can be one of the enumerated types defined in
309          * lnet/include/lnet/nidstr.h */
310         __u32                   net_id;
311
312         /* priority of the network */
313         __u32                   net_prio;
314
315         /* total number of CPTs in the array */
316         __u32                   net_ncpts;
317
318         /* cumulative CPTs of all NIs in this net */
319         __u32                   *net_cpts;
320
321         /* network tunables */
322         struct lnet_ioctl_config_lnd_cmn_tunables net_tunables;
323
324         /*
325          * boolean to indicate that the tunables have been set and
326          * shouldn't be reset
327          */
328         bool                    net_tunables_set;
329
330         /* procedural interface */
331         lnd_t                   *net_lnd;
332
333         /* list of NIs on this net */
334         struct list_head        net_ni_list;
335
336         /* list of NIs being added, but not started yet */
337         struct list_head        net_ni_added;
338
339         /* dying LND instances */
340         struct list_head        net_ni_zombie;
341
342         /* network state */
343         enum lnet_net_state     net_state;
344 };
345
346 typedef struct lnet_ni {
347         /* chain on the lnet_net structure */
348         struct list_head        ni_netlist;
349
350         /* chain on net_ni_cpt */
351         struct list_head        ni_cptlist;
352
353         spinlock_t              ni_lock;
354
355         /* number of CPTs */
356         int                     ni_ncpts;
357
358         /* bond NI on some CPTs */
359         __u32                   *ni_cpts;
360
361         /* interface's NID */
362         lnet_nid_t              ni_nid;
363
364         /* instance-specific data */
365         void                    *ni_data;
366
367         /* per ni credits */
368         atomic_t                ni_tx_credits;
369
370         /* percpt TX queues */
371         struct lnet_tx_queue    **ni_tx_queues;
372
373         /* percpt reference count */
374         int                     **ni_refs;
375
376         /* when I was last alive */
377         long                    ni_last_alive;
378
379         /* pointer to parent network */
380         struct lnet_net         *ni_net;
381
382         /* my health status */
383         lnet_ni_status_t        *ni_status;
384
385         /* NI FSM */
386         enum lnet_ni_state      ni_state;
387
388         /* per NI LND tunables */
389         struct lnet_lnd_tunables ni_lnd_tunables;
390
391         /* lnd tunables set explicitly */
392         bool ni_lnd_tunables_set;
393
394         /* NI statistics */
395         struct lnet_element_stats ni_stats;
396
397         /* physical device CPT */
398         int                     ni_dev_cpt;
399
400         /* sequence number used to round robin over nis within a net */
401         __u32                   ni_seq;
402
403         /*
404          * equivalent interfaces to use
405          * This is an array because socklnd bonding can still be configured
406          */
407         char                    *ni_interfaces[LNET_MAX_INTERFACES];
408         struct net              *ni_net_ns;     /* original net namespace */
409 } lnet_ni_t;
410
411 #define LNET_PROTO_PING_MATCHBITS       0x8000000000000000LL
412
413 /* NB: value of these features equal to LNET_PROTO_PING_VERSION_x
414  * of old LNet, so there shouldn't be any compatibility issue */
415 #define LNET_PING_FEAT_INVAL            (0)             /* no feature */
416 #define LNET_PING_FEAT_BASE             (1 << 0)        /* just a ping */
417 #define LNET_PING_FEAT_NI_STATUS        (1 << 1)        /* return NI status */
418 #define LNET_PING_FEAT_RTE_DISABLED     (1 << 2)        /* Routing enabled */
419
420 #define LNET_PING_FEAT_MASK             (LNET_PING_FEAT_BASE | \
421                                          LNET_PING_FEAT_NI_STATUS)
422
423 typedef struct lnet_ping_info {
424         __u32                   pi_magic;
425         __u32                   pi_features;
426         lnet_pid_t              pi_pid;
427         __u32                   pi_nnis;
428         struct lnet_ni_status   pi_ni[0];
429 } WIRE_ATTR lnet_ping_info_t;
430
431 /* router checker data, per router */
432 #define LNET_MAX_RTR_NIS   16
433 #define LNET_PINGINFO_SIZE offsetof(struct lnet_ping_info, pi_ni[LNET_MAX_RTR_NIS])
434 typedef struct {
435         /* chain on the_lnet.ln_zombie_rcd or ln_deathrow_rcd */
436         struct list_head        rcd_list;
437         lnet_handle_md_t        rcd_mdh;        /* ping buffer MD */
438         struct lnet_peer_ni     *rcd_gateway;   /* reference to gateway */
439         struct lnet_ping_info   *rcd_pinginfo;  /* ping buffer */
440 } lnet_rc_data_t;
441
442 struct lnet_peer_ni {
443         /* chain on peer_net */
444         struct list_head        lpni_on_peer_net_list;
445         /* chain on remote peer list */
446         struct list_head        lpni_on_remote_peer_ni_list;
447         /* chain on peer hash */
448         struct list_head        lpni_hashlist;
449         /* messages blocking for tx credits */
450         struct list_head        lpni_txq;
451         /* messages blocking for router credits */
452         struct list_head        lpni_rtrq;
453         /* chain on router list */
454         struct list_head        lpni_rtr_list;
455         /* pointer to peer net I'm part of */
456         struct lnet_peer_net    *lpni_peer_net;
457         /* statistics kept on each peer NI */
458         struct lnet_element_stats lpni_stats;
459         /* spin lock protecting credits and lpni_txq / lpni_rtrq */
460         spinlock_t              lpni_lock;
461         /* # tx credits available */
462         int                     lpni_txcredits;
463         /* low water mark */
464         int                     lpni_mintxcredits;
465         /* # router credits */
466         int                     lpni_rtrcredits;
467         /* low water mark */
468         int                     lpni_minrtrcredits;
469         /* bytes queued for sending */
470         long                    lpni_txqnob;
471         /* alive/dead? */
472         bool                    lpni_alive;
473         /* notification outstanding? */
474         bool                    lpni_notify;
475         /* outstanding notification for LND? */
476         bool                    lpni_notifylnd;
477         /* some thread is handling notification */
478         bool                    lpni_notifying;
479         /* SEND event outstanding from ping */
480         bool                    lpni_ping_notsent;
481         /* # times router went dead<->alive. Protected with lpni_lock */
482         int                     lpni_alive_count;
483         /* time of last aliveness news */
484         cfs_time_t              lpni_timestamp;
485         /* time of last ping attempt */
486         cfs_time_t              lpni_ping_timestamp;
487         /* != 0 if ping reply expected */
488         cfs_time_t              lpni_ping_deadline;
489         /* when I was last alive */
490         cfs_time_t              lpni_last_alive;
491         /* when lpni_ni was queried last time */
492         cfs_time_t              lpni_last_query;
493         /* network peer is on */
494         struct lnet_net         *lpni_net;
495         /* peer's NID */
496         lnet_nid_t              lpni_nid;
497         /* # refs */
498         atomic_t                lpni_refcount;
499         /* CPT this peer attached on */
500         int                     lpni_cpt;
501         /* # refs from lnet_route_t::lr_gateway */
502         int                     lpni_rtr_refcount;
503         /* sequence number used to round robin over peer nis within a net */
504         __u32                   lpni_seq;
505         /* sequence number used to round robin over gateways */
506         __u32                   lpni_gw_seq;
507         /* health flag */
508         bool                    lpni_healthy;
509         /* returned RC ping features. Protected with lpni_lock */
510         unsigned int            lpni_ping_feats;
511         /* routes on this peer */
512         struct list_head        lpni_routes;
513         /* array of preferred local nids */
514         lnet_nid_t              *lpni_pref_nids;
515         /* number of preferred NIDs in lnpi_pref_nids */
516         __u32                   lpni_pref_nnids;
517         /* router checker state */
518         lnet_rc_data_t          *lpni_rcd;
519 };
520
521 struct lnet_peer {
522         /* chain on global peer list */
523         struct list_head        lp_on_lnet_peer_list;
524
525         /* list of peer nets */
526         struct list_head        lp_peer_nets;
527
528         /* primary NID of the peer */
529         lnet_nid_t              lp_primary_nid;
530
531         /* peer is Multi-Rail enabled peer */
532         bool                    lp_multi_rail;
533 };
534
535 struct lnet_peer_net {
536         /* chain on peer block */
537         struct list_head        lpn_on_peer_list;
538
539         /* list of peer_nis on this network */
540         struct list_head        lpn_peer_nis;
541
542         /* pointer to the peer I'm part of */
543         struct lnet_peer        *lpn_peer;
544
545         /* Net ID */
546         __u32                   lpn_net_id;
547 };
548
549 /* peer hash size */
550 #define LNET_PEER_HASH_BITS     9
551 #define LNET_PEER_HASH_SIZE     (1 << LNET_PEER_HASH_BITS)
552
553 /* peer hash table */
554 struct lnet_peer_table {
555         int                     pt_version;     /* /proc validity stamp */
556         atomic_t                pt_number;      /* # peers extant */
557         struct list_head        *pt_hash;       /* NID->peer hash */
558         struct list_head        pt_zombie_list; /* zombie peers */
559         int                     pt_zombies;     /* # zombie peers */
560         spinlock_t              pt_zombie_lock; /* protect list and count */
561 };
562
563 /* peer aliveness is enabled only on routers for peers in a network where the
564  * lnet_ni_t::ni_peertimeout has been set to a positive value */
565 #define lnet_peer_aliveness_enabled(lp) (the_lnet.ln_routing != 0 && \
566                                         ((lp)->lpni_net) && \
567                                         (lp)->lpni_net->net_tunables.lct_peer_timeout > 0)
568
569 typedef struct {
570         struct list_head        lr_list;        /* chain on net */
571         struct list_head        lr_gwlist;      /* chain on gateway */
572         struct lnet_peer_ni     *lr_gateway;    /* router node */
573         __u32                   lr_net;         /* remote network number */
574         int                     lr_seq;         /* sequence for round-robin */
575         unsigned int            lr_downis;      /* number of down NIs */
576         __u32                   lr_hops;        /* how far I am */
577         unsigned int            lr_priority;    /* route priority */
578 } lnet_route_t;
579
580 #define LNET_REMOTE_NETS_HASH_DEFAULT   (1U << 7)
581 #define LNET_REMOTE_NETS_HASH_MAX       (1U << 16)
582 #define LNET_REMOTE_NETS_HASH_SIZE      (1 << the_lnet.ln_remote_nets_hbits)
583
584 typedef struct {
585         /* chain on ln_remote_nets_hash */
586         struct list_head        lrn_list;
587         /* routes to me */
588         struct list_head        lrn_routes;
589         /* my net number */
590         __u32                   lrn_net;
591 } lnet_remotenet_t;
592
593 /** lnet message has credit and can be submitted to lnd for send/receive */
594 #define LNET_CREDIT_OK          0
595 /** lnet message is waiting for credit */
596 #define LNET_CREDIT_WAIT        1
597
598 typedef struct {
599         /* my free buffer pool */
600         struct list_head        rbp_bufs;
601         /* messages blocking for a buffer */
602         struct list_head        rbp_msgs;
603         /* # pages in each buffer */
604         int                     rbp_npages;
605         /* requested number of buffers */
606         int                     rbp_req_nbuffers;
607         /* # buffers actually allocated */
608         int                     rbp_nbuffers;
609         /* # free buffers / blocked messages */
610         int                     rbp_credits;
611         /* low water mark */
612         int                     rbp_mincredits;
613 } lnet_rtrbufpool_t;
614
615 typedef struct {
616         struct list_head         rb_list;       /* chain on rbp_bufs */
617         lnet_rtrbufpool_t       *rb_pool;       /* owning pool */
618         lnet_kiov_t              rb_kiov[0];    /* the buffer space */
619 } lnet_rtrbuf_t;
620
621 #define LNET_PEER_HASHSIZE   503                /* prime! */
622
623 enum {
624         /* Didn't match anything */
625         LNET_MATCHMD_NONE       = (1 << 0),
626         /* Matched OK */
627         LNET_MATCHMD_OK         = (1 << 1),
628         /* Must be discarded */
629         LNET_MATCHMD_DROP       = (1 << 2),
630         /* match and buffer is exhausted */
631         LNET_MATCHMD_EXHAUSTED  = (1 << 3),
632         /* match or drop */
633         LNET_MATCHMD_FINISH     = (LNET_MATCHMD_OK | LNET_MATCHMD_DROP),
634 };
635
636 /* Options for lnet_portal_t::ptl_options */
637 #define LNET_PTL_LAZY               (1 << 0)
638 #define LNET_PTL_MATCH_UNIQUE       (1 << 1)    /* unique match, for RDMA */
639 #define LNET_PTL_MATCH_WILDCARD     (1 << 2)    /* wildcard match, request portal */
640
641 /* parameter for matching operations (GET, PUT) */
642 struct lnet_match_info {
643         __u64                   mi_mbits;
644         lnet_process_id_t       mi_id;
645         unsigned int            mi_cpt;
646         unsigned int            mi_opc;
647         unsigned int            mi_portal;
648         unsigned int            mi_rlength;
649         unsigned int            mi_roffset;
650 };
651
652 /* ME hash of RDMA portal */
653 #define LNET_MT_HASH_BITS               8
654 #define LNET_MT_HASH_SIZE               (1 << LNET_MT_HASH_BITS)
655 #define LNET_MT_HASH_MASK               (LNET_MT_HASH_SIZE - 1)
656 /* we allocate (LNET_MT_HASH_SIZE + 1) entries for lnet_match_table::mt_hash,
657  * the last entry is reserved for MEs with ignore-bits */
658 #define LNET_MT_HASH_IGNORE             LNET_MT_HASH_SIZE
659 /* __u64 has 2^6 bits, so need 2^(LNET_MT_HASH_BITS - LNET_MT_BITS_U64) which
660  * is 4 __u64s as bit-map, and add an extra __u64 (only use one bit) for the
661  * ME-list with ignore-bits, which is mtable::mt_hash[LNET_MT_HASH_IGNORE] */
662 #define LNET_MT_BITS_U64                6       /* 2^6 bits */
663 #define LNET_MT_EXHAUSTED_BITS          (LNET_MT_HASH_BITS - LNET_MT_BITS_U64)
664 #define LNET_MT_EXHAUSTED_BMAP          ((1 << LNET_MT_EXHAUSTED_BITS) + 1)
665
666 /* portal match table */
667 struct lnet_match_table {
668         /* reserved for upcoming patches, CPU partition ID */
669         unsigned int            mt_cpt;
670         unsigned int            mt_portal;      /* portal index */
671         /* match table is set as "enabled" if there's non-exhausted MD
672          * attached on mt_mhash, it's only valid for wildcard portal */
673         unsigned int            mt_enabled;
674         /* bitmap to flag whether MEs on mt_hash are exhausted or not */
675         __u64                   mt_exhausted[LNET_MT_EXHAUSTED_BMAP];
676         struct list_head        *mt_mhash;      /* matching hash */
677 };
678
679 /* these are only useful for wildcard portal */
680 /* Turn off message rotor for wildcard portals */
681 #define LNET_PTL_ROTOR_OFF      0
682 /* round-robin dispatch all PUT messages for wildcard portals */
683 #define LNET_PTL_ROTOR_ON       1
684 /* round-robin dispatch routed PUT message for wildcard portals */
685 #define LNET_PTL_ROTOR_RR_RT    2
686 /* dispatch routed PUT message by hashing source NID for wildcard portals */
687 #define LNET_PTL_ROTOR_HASH_RT  3
688
689 typedef struct lnet_portal {
690         spinlock_t              ptl_lock;
691         unsigned int            ptl_index;      /* portal ID, reserved */
692         /* flags on this portal: lazy, unique... */
693         unsigned int            ptl_options;
694         /* list of messages which are stealing buffer */
695         struct list_head        ptl_msg_stealing;
696         /* messages blocking for MD */
697         struct list_head        ptl_msg_delayed;
698         /* Match table for each CPT */
699         struct lnet_match_table **ptl_mtables;
700         /* spread rotor of incoming "PUT" */
701         unsigned int            ptl_rotor;
702         /* # active entries for this portal */
703         int                     ptl_mt_nmaps;
704         /* array of active entries' cpu-partition-id */
705         int                     ptl_mt_maps[0];
706 } lnet_portal_t;
707
708 #define LNET_LH_HASH_BITS       12
709 #define LNET_LH_HASH_SIZE       (1ULL << LNET_LH_HASH_BITS)
710 #define LNET_LH_HASH_MASK       (LNET_LH_HASH_SIZE - 1)
711
712 /* resource container (ME, MD, EQ) */
713 struct lnet_res_container {
714         unsigned int            rec_type;       /* container type */
715         __u64                   rec_lh_cookie;  /* cookie generator */
716         struct list_head        rec_active;     /* active resource list */
717         struct list_head        *rec_lh_hash;   /* handle hash */
718 };
719
720 /* message container */
721 struct lnet_msg_container {
722         int                     msc_init;       /* initialized or not */
723         /* max # threads finalizing */
724         int                     msc_nfinalizers;
725         /* msgs waiting to complete finalizing */
726         struct list_head        msc_finalizing;
727         struct list_head        msc_active;     /* active message list */
728         /* threads doing finalization */
729         void                    **msc_finalizers;
730 };
731
732 /* Router Checker states */
733 #define LNET_RC_STATE_SHUTDOWN          0       /* not started */
734 #define LNET_RC_STATE_RUNNING           1       /* started up OK */
735 #define LNET_RC_STATE_STOPPING          2       /* telling thread to stop */
736
737 typedef struct
738 {
739         /* CPU partition table of LNet */
740         struct cfs_cpt_table            *ln_cpt_table;
741         /* number of CPTs in ln_cpt_table */
742         unsigned int                    ln_cpt_number;
743         unsigned int                    ln_cpt_bits;
744
745         /* protect LNet resources (ME/MD/EQ) */
746         struct cfs_percpt_lock          *ln_res_lock;
747         /* # portals */
748         int                             ln_nportals;
749         /* the vector of portals */
750         lnet_portal_t                   **ln_portals;
751         /* percpt ME containers */
752         struct lnet_res_container       **ln_me_containers;
753         /* percpt MD container */
754         struct lnet_res_container       **ln_md_containers;
755
756         /* Event Queue container */
757         struct lnet_res_container       ln_eq_container;
758         wait_queue_head_t               ln_eq_waitq;
759         spinlock_t                      ln_eq_wait_lock;
760
761         unsigned int                    ln_remote_nets_hbits;
762
763         /* protect NI, peer table, credits, routers, rtrbuf... */
764         struct cfs_percpt_lock          *ln_net_lock;
765         /* percpt message containers for active/finalizing/freed message */
766         struct lnet_msg_container       **ln_msg_containers;
767         lnet_counters_t                 **ln_counters;
768         struct lnet_peer_table          **ln_peer_tables;
769         /* list of configured or discovered peers */
770         struct list_head                ln_peers;
771         /* list of peer nis not on a local network */
772         struct list_head                ln_remote_peer_ni_list;
773         /* failure simulation */
774         struct list_head                ln_test_peers;
775         struct list_head                ln_drop_rules;
776         struct list_head                ln_delay_rules;
777         /* LND instances */
778         struct list_head                ln_nets;
779         /* the loopback NI */
780         struct lnet_ni                  *ln_loni;
781         /* network zombie list */
782         struct list_head                ln_net_zombie;
783
784         /* remote networks with routes to them */
785         struct list_head                *ln_remote_nets_hash;
786         /* validity stamp */
787         __u64                           ln_remote_nets_version;
788         /* list of all known routers */
789         struct list_head                ln_routers;
790         /* validity stamp */
791         __u64                           ln_routers_version;
792         /* percpt router buffer pools */
793         lnet_rtrbufpool_t               **ln_rtrpools;
794
795         lnet_handle_md_t                ln_ping_target_md;
796         lnet_handle_eq_t                ln_ping_target_eq;
797         struct lnet_ping_info           *ln_ping_info;
798
799         /* router checker startup/shutdown state */
800         int                             ln_rc_state;
801         /* router checker's event queue */
802         lnet_handle_eq_t                ln_rc_eqh;
803         /* rcd still pending on net */
804         struct list_head                ln_rcd_deathrow;
805         /* rcd ready for free */
806         struct list_head                ln_rcd_zombie;
807         /* serialise startup/shutdown */
808         struct semaphore                ln_rc_signal;
809
810         struct mutex                    ln_api_mutex;
811         struct mutex                    ln_lnd_mutex;
812         /* Have I called LNetNIInit myself? */
813         int                             ln_niinit_self;
814         /* LNetNIInit/LNetNIFini counter */
815         int                             ln_refcount;
816         /* shutdown in progress */
817         int                             ln_shutdown;
818
819         int                             ln_routing;     /* am I a router? */
820         lnet_pid_t                      ln_pid;         /* requested pid */
821         /* uniquely identifies this ni in this epoch */
822         __u64                           ln_interface_cookie;
823         /* registered LNDs */
824         struct list_head                ln_lnds;
825
826         /* test protocol compatibility flags */
827         int                             ln_testprotocompat;
828
829         /* 0 - load the NIs from the mod params
830          * 1 - do not load the NIs from the mod params
831          * Reverse logic to ensure that other calls to LNetNIInit
832          * need no change
833          */
834         bool                            ln_nis_from_mod_params;
835
836         /* waitq for router checker.  As long as there are no routes in
837          * the list, the router checker will sleep on this queue.  when
838          * routes are added the thread will wake up */
839         wait_queue_head_t               ln_rc_waitq;
840 } lnet_t;
841
842 #endif