Whamcloud - gitweb
LU-7734 lnet: Add peer_ni and NI stats for DLC
[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         union {
173                 struct kvec     iov[LNET_MAX_IOV];
174                 lnet_kiov_t     kiov[LNET_MAX_IOV];
175         } md_iov;
176 } lnet_libmd_t;
177
178 #define LNET_MD_FLAG_ZOMBIE      (1 << 0)
179 #define LNET_MD_FLAG_AUTO_UNLINK (1 << 1)
180 #define LNET_MD_FLAG_ABORTED     (1 << 2)
181
182 typedef struct {
183         /* info about peers we are trying to fail */
184         struct list_head        tp_list;        /* ln_test_peers */
185         lnet_nid_t              tp_nid;         /* matching nid */
186         unsigned int            tp_threshold;   /* # failures to simulate */
187 } lnet_test_peer_t;
188
189 #define LNET_COOKIE_TYPE_MD    1
190 #define LNET_COOKIE_TYPE_ME    2
191 #define LNET_COOKIE_TYPE_EQ    3
192 #define LNET_COOKIE_TYPE_BITS  2
193 #define LNET_COOKIE_MASK        ((1ULL << LNET_COOKIE_TYPE_BITS) - 1ULL)
194
195 struct lnet_ni;                                  /* forward ref */
196 struct socket;
197
198 typedef struct lnet_lnd
199 {
200         /* fields managed by portals */
201         struct list_head        lnd_list;       /* stash in the LND table */
202         int                     lnd_refcount;   /* # active instances */
203
204         /* fields initialized by the LND */
205         __u32                   lnd_type;
206
207         int  (*lnd_startup)(struct lnet_ni *ni);
208         void (*lnd_shutdown)(struct lnet_ni *ni);
209         int  (*lnd_ctl)(struct lnet_ni *ni, unsigned int cmd, void *arg);
210
211         /* In data movement APIs below, payload buffers are described as a set
212          * of 'niov' fragments which are...
213          * EITHER
214          *    in virtual memory (struct kvec *iov != NULL)
215          * OR
216          *    in pages (kernel only: plt_kiov_t *kiov != NULL).
217          * The LND may NOT overwrite these fragment descriptors.
218          * An 'offset' and may specify a byte offset within the set of
219          * fragments to start from
220          */
221
222         /* Start sending a preformatted message.  'private' is NULL for PUT and
223          * GET messages; otherwise this is a response to an incoming message
224          * and 'private' is the 'private' passed to lnet_parse().  Return
225          * non-zero for immediate failure, otherwise complete later with
226          * lnet_finalize() */
227         int (*lnd_send)(struct lnet_ni *ni, void *private, lnet_msg_t *msg);
228
229         /* Start receiving 'mlen' bytes of payload data, skipping the following
230          * 'rlen' - 'mlen' bytes. 'private' is the 'private' passed to
231          * lnet_parse().  Return non-zero for immedaite failure, otherwise
232          * complete later with lnet_finalize().  This also gives back a receive
233          * credit if the LND does flow control. */
234         int (*lnd_recv)(struct lnet_ni *ni, void *private, lnet_msg_t *msg,
235                         int delayed, unsigned int niov,
236                         struct kvec *iov, lnet_kiov_t *kiov,
237                         unsigned int offset, unsigned int mlen, unsigned int rlen);
238
239         /* lnet_parse() has had to delay processing of this message
240          * (e.g. waiting for a forwarding buffer or send credits).  Give the
241          * LND a chance to free urgently needed resources.  If called, return 0
242          * for success and do NOT give back a receive credit; that has to wait
243          * until lnd_recv() gets called.  On failure return < 0 and
244          * release resources; lnd_recv() will not be called. */
245         int (*lnd_eager_recv)(struct lnet_ni *ni, void *private, lnet_msg_t *msg,
246                               void **new_privatep);
247
248         /* notification of peer health */
249         void (*lnd_notify)(struct lnet_ni *ni, lnet_nid_t peer, int alive);
250
251         /* query of peer aliveness */
252         void (*lnd_query)(struct lnet_ni *ni, lnet_nid_t peer, cfs_time_t *when);
253
254         /* accept a new connection */
255         int (*lnd_accept)(struct lnet_ni *ni, struct socket *sock);
256 } lnd_t;
257
258 typedef struct lnet_ni_status {
259         lnet_nid_t ns_nid;
260         __u32      ns_status;
261         __u32      ns_unused;
262 } WIRE_ATTR lnet_ni_status_t;
263
264 struct lnet_tx_queue {
265         int                     tq_credits;     /* # tx credits free */
266         int                     tq_credits_min; /* lowest it's been */
267         int                     tq_credits_max; /* total # tx credits */
268         struct list_head        tq_delayed;     /* delayed TXs */
269 };
270
271 enum lnet_net_state {
272         /* set when net block is allocated */
273         LNET_NET_STATE_INIT = 0,
274         /* set when NIs in net are started successfully */
275         LNET_NET_STATE_ACTIVE,
276         /* set if all NIs in net are in FAILED state */
277         LNET_NET_STATE_INACTIVE,
278         /* set when shutting down a NET */
279         LNET_NET_STATE_DELETING
280 };
281
282 enum lnet_ni_state {
283         /* set when NI block is allocated */
284         LNET_NI_STATE_INIT = 0,
285         /* set when NI is started successfully */
286         LNET_NI_STATE_ACTIVE,
287         /* set when LND notifies NI failed */
288         LNET_NI_STATE_FAILED,
289         /* set when LND notifies NI degraded */
290         LNET_NI_STATE_DEGRADED,
291         /* set when shuttding down NI */
292         LNET_NI_STATE_DELETING
293 };
294
295 struct lnet_element_stats {
296         atomic_t        send_count;
297         atomic_t        recv_count;
298         atomic_t        drop_count;
299 };
300
301 struct lnet_net {
302         /* chain on the ln_nets */
303         struct list_head        net_list;
304
305         /* net ID, which is compoed of
306          * (net_type << 16) | net_num.
307          * net_type can be one of the enumarated types defined in
308          * lnet/include/lnet/nidstr.h */
309         __u32                   net_id;
310
311         /* priority of the network */
312         __u32                   net_prio;
313
314         /* total number of CPTs in the array */
315         __u32                   net_ncpts;
316
317         /* cumulative CPTs of all NIs in this net */
318         __u32                   *net_cpts;
319
320         /* network tunables */
321         struct lnet_ioctl_config_lnd_cmn_tunables net_tunables;
322
323         /*
324          * boolean to indicate that the tunables have been set and
325          * shouldn't be reset
326          */
327         bool                    net_tunables_set;
328
329         /* procedural interface */
330         lnd_t                   *net_lnd;
331
332         /* list of NIs on this net */
333         struct list_head        net_ni_list;
334
335         /* list of NIs being added, but not started yet */
336         struct list_head        net_ni_added;
337
338         /* dying LND instances */
339         struct list_head        net_ni_zombie;
340
341         /* network state */
342         enum lnet_net_state     net_state;
343 };
344
345 typedef struct lnet_ni {
346         /* chain on the lnet_net structure */
347         struct list_head        ni_netlist;
348
349         /* chain on net_ni_cpt */
350         struct list_head        ni_cptlist;
351
352         spinlock_t              ni_lock;
353
354         /* number of CPTs */
355         int                     ni_ncpts;
356
357         /* bond NI on some CPTs */
358         __u32                   *ni_cpts;
359
360         /* interface's NID */
361         lnet_nid_t              ni_nid;
362
363         /* instance-specific data */
364         void                    *ni_data;
365
366         /* percpt TX queues */
367         struct lnet_tx_queue    **ni_tx_queues;
368
369         /* percpt reference count */
370         int                     **ni_refs;
371
372         /* when I was last alive */
373         long                    ni_last_alive;
374
375         /* pointer to parent network */
376         struct lnet_net         *ni_net;
377
378         /* my health status */
379         lnet_ni_status_t        *ni_status;
380
381         /* NI FSM */
382         enum lnet_ni_state      ni_state;
383
384         /* per NI LND tunables */
385         struct lnet_lnd_tunables ni_lnd_tunables;
386
387         /* lnd tunables set explicitly */
388         bool ni_lnd_tunables_set;
389
390         /* NI statistics */
391         struct lnet_element_stats ni_stats;
392
393         /* physical device CPT */
394         int                     dev_cpt;
395
396         /* sequence number used to round robin over nis within a net */
397         __u32                   ni_seq;
398
399         /*
400          * equivalent interfaces to use
401          * This is an array because socklnd bonding can still be configured
402          */
403         char                    *ni_interfaces[LNET_MAX_INTERFACES];
404         struct net              *ni_net_ns;     /* original net namespace */
405 } lnet_ni_t;
406
407 #define LNET_PROTO_PING_MATCHBITS       0x8000000000000000LL
408
409 /* NB: value of these features equal to LNET_PROTO_PING_VERSION_x
410  * of old LNet, so there shouldn't be any compatibility issue */
411 #define LNET_PING_FEAT_INVAL            (0)             /* no feature */
412 #define LNET_PING_FEAT_BASE             (1 << 0)        /* just a ping */
413 #define LNET_PING_FEAT_NI_STATUS        (1 << 1)        /* return NI status */
414 #define LNET_PING_FEAT_RTE_DISABLED     (1 << 2)        /* Routing enabled */
415
416 #define LNET_PING_FEAT_MASK             (LNET_PING_FEAT_BASE | \
417                                          LNET_PING_FEAT_NI_STATUS)
418
419 typedef struct lnet_ping_info {
420         __u32                   pi_magic;
421         __u32                   pi_features;
422         lnet_pid_t              pi_pid;
423         __u32                   pi_nnis;
424         struct lnet_ni_status   pi_ni[0];
425 } WIRE_ATTR lnet_ping_info_t;
426
427 /* router checker data, per router */
428 #define LNET_MAX_RTR_NIS   16
429 #define LNET_PINGINFO_SIZE offsetof(struct lnet_ping_info, pi_ni[LNET_MAX_RTR_NIS])
430 typedef struct {
431         /* chain on the_lnet.ln_zombie_rcd or ln_deathrow_rcd */
432         struct list_head        rcd_list;
433         lnet_handle_md_t        rcd_mdh;        /* ping buffer MD */
434         struct lnet_peer_ni     *rcd_gateway;   /* reference to gateway */
435         struct lnet_ping_info   *rcd_pinginfo;  /* ping buffer */
436 } lnet_rc_data_t;
437
438 struct lnet_peer_ni {
439         /* chain on peer_net */
440         struct list_head        lpni_on_peer_net_list;
441         /* chain on remote peer list */
442         struct list_head        lpni_on_remote_peer_ni_list;
443         /* chain on peer hash */
444         struct list_head        lpni_hashlist;
445         /* messages blocking for tx credits */
446         struct list_head        lpni_txq;
447         /* messages blocking for router credits */
448         struct list_head        lpni_rtrq;
449         /* chain on router list */
450         struct list_head        lpni_rtr_list;
451         /* pointer to peer net I'm part of */
452         struct lnet_peer_net    *lpni_peer_net;
453         /* statistics kept on each peer NI */
454         struct lnet_element_stats lpni_stats;
455         /* # tx credits available */
456         int                     lpni_txcredits;
457         /* low water mark */
458         int                     lpni_mintxcredits;
459         /* # router credits */
460         int                     lpni_rtrcredits;
461         /* low water mark */
462         int                     lpni_minrtrcredits;
463         /* alive/dead? */
464         unsigned int            lpni_alive:1;
465         /* notification outstanding? */
466         unsigned int            lpni_notify:1;
467         /* outstanding notification for LND? */
468         unsigned int            lpni_notifylnd:1;
469         /* some thread is handling notification */
470         unsigned int            lpni_notifying:1;
471         /* SEND event outstanding from ping */
472         unsigned int            lpni_ping_notsent;
473         /* # times router went dead<->alive */
474         int                     lpni_alive_count;
475         /* bytes queued for sending */
476         long                    lpni_txqnob;
477         /* time of last aliveness news */
478         cfs_time_t              lpni_timestamp;
479         /* time of last ping attempt */
480         cfs_time_t              lpni_ping_timestamp;
481         /* != 0 if ping reply expected */
482         cfs_time_t              lpni_ping_deadline;
483         /* when I was last alive */
484         cfs_time_t              lpni_last_alive;
485         /* when lpni_ni was queried last time */
486         cfs_time_t              lpni_last_query;
487         /* network peer is on */
488         struct lnet_net         *lpni_net;
489         /* peer's NID */
490         lnet_nid_t              lpni_nid;
491         /* # refs */
492         atomic_t                lpni_refcount;
493         /* CPT this peer attached on */
494         int                     lpni_cpt;
495         /* # refs from lnet_route_t::lr_gateway */
496         int                     lpni_rtr_refcount;
497         /* sequence number used to round robin over peer nis within a net */
498         __u32                   lpni_seq;
499         /* health flag */
500         bool                    lpni_healthy;
501         /* returned RC ping features */
502         unsigned int            lpni_ping_feats;
503         /* routes on this peer */
504         struct list_head        lpni_routes;
505         /* array of preferred local nids */
506         lnet_nid_t              *lpni_pref_nids;
507         /* number of preferred NIDs in lnpi_pref_nids */
508         __u32                   lpni_pref_nnids;
509         /* router checker state */
510         lnet_rc_data_t          *lpni_rcd;
511 };
512
513 struct lnet_peer {
514         /* chain on global peer list */
515         struct list_head        lp_on_lnet_peer_list;
516
517         /* list of peer nets */
518         struct list_head        lp_peer_nets;
519
520         /* primary NID of the peer */
521         lnet_nid_t              lp_primary_nid;
522
523         /* peer is Multi-Rail enabled peer */
524         bool                    lp_multi_rail;
525 };
526
527 struct lnet_peer_net {
528         /* chain on peer block */
529         struct list_head        lpn_on_peer_list;
530
531         /* list of peer_nis on this network */
532         struct list_head        lpn_peer_nis;
533
534         /* pointer to the peer I'm part of */
535         struct lnet_peer        *lpn_peer;
536
537         /* Net ID */
538         __u32                   lpn_net_id;
539
540         /* health flag */
541         bool                    lpn_healthy;
542 };
543
544 /* peer hash size */
545 #define LNET_PEER_HASH_BITS     9
546 #define LNET_PEER_HASH_SIZE     (1 << LNET_PEER_HASH_BITS)
547
548 /* peer hash table */
549 struct lnet_peer_table {
550         int                     pt_version;     /* /proc validity stamp */
551         int                     pt_number;      /* # peers extant */
552         int                     pt_zombies;     /* # zombies to go to deathrow
553                                                  * (and not there yet) */
554         struct list_head        pt_deathrow;    /* zombie peers */
555         struct list_head        *pt_hash;       /* NID->peer hash */
556 };
557
558 /* peer aliveness is enabled only on routers for peers in a network where the
559  * lnet_ni_t::ni_peertimeout has been set to a positive value */
560 #define lnet_peer_aliveness_enabled(lp) (the_lnet.ln_routing != 0 && \
561                                          (lp)->lpni_net->net_tunables.lct_peer_timeout > 0)
562
563 typedef struct {
564         struct list_head        lr_list;        /* chain on net */
565         struct list_head        lr_gwlist;      /* chain on gateway */
566         struct lnet_peer_ni     *lr_gateway;    /* router node */
567         __u32                   lr_net;         /* remote network number */
568         int                     lr_seq;         /* sequence for round-robin */
569         unsigned int            lr_downis;      /* number of down NIs */
570         __u32                   lr_hops;        /* how far I am */
571         unsigned int            lr_priority;    /* route priority */
572 } lnet_route_t;
573
574 #define LNET_REMOTE_NETS_HASH_DEFAULT   (1U << 7)
575 #define LNET_REMOTE_NETS_HASH_MAX       (1U << 16)
576 #define LNET_REMOTE_NETS_HASH_SIZE      (1 << the_lnet.ln_remote_nets_hbits)
577
578 typedef struct {
579         /* chain on ln_remote_nets_hash */
580         struct list_head        lrn_list;
581         /* routes to me */
582         struct list_head        lrn_routes;
583         /* my net number */
584         __u32                   lrn_net;
585 } lnet_remotenet_t;
586
587 /** lnet message has credit and can be submitted to lnd for send/receive */
588 #define LNET_CREDIT_OK          0
589 /** lnet message is waiting for credit */
590 #define LNET_CREDIT_WAIT        1
591
592 typedef struct {
593         /* my free buffer pool */
594         struct list_head        rbp_bufs;
595         /* messages blocking for a buffer */
596         struct list_head        rbp_msgs;
597         /* # pages in each buffer */
598         int                     rbp_npages;
599         /* requested number of buffers */
600         int                     rbp_req_nbuffers;
601         /* # buffers actually allocated */
602         int                     rbp_nbuffers;
603         /* # free buffers / blocked messages */
604         int                     rbp_credits;
605         /* low water mark */
606         int                     rbp_mincredits;
607 } lnet_rtrbufpool_t;
608
609 typedef struct {
610         struct list_head         rb_list;       /* chain on rbp_bufs */
611         lnet_rtrbufpool_t       *rb_pool;       /* owning pool */
612         lnet_kiov_t              rb_kiov[0];    /* the buffer space */
613 } lnet_rtrbuf_t;
614
615 #define LNET_PEER_HASHSIZE   503                /* prime! */
616
617 enum {
618         /* Didn't match anything */
619         LNET_MATCHMD_NONE       = (1 << 0),
620         /* Matched OK */
621         LNET_MATCHMD_OK         = (1 << 1),
622         /* Must be discarded */
623         LNET_MATCHMD_DROP       = (1 << 2),
624         /* match and buffer is exhausted */
625         LNET_MATCHMD_EXHAUSTED  = (1 << 3),
626         /* match or drop */
627         LNET_MATCHMD_FINISH     = (LNET_MATCHMD_OK | LNET_MATCHMD_DROP),
628 };
629
630 /* Options for lnet_portal_t::ptl_options */
631 #define LNET_PTL_LAZY               (1 << 0)
632 #define LNET_PTL_MATCH_UNIQUE       (1 << 1)    /* unique match, for RDMA */
633 #define LNET_PTL_MATCH_WILDCARD     (1 << 2)    /* wildcard match, request portal */
634
635 /* parameter for matching operations (GET, PUT) */
636 struct lnet_match_info {
637         __u64                   mi_mbits;
638         lnet_process_id_t       mi_id;
639         unsigned int            mi_cpt;
640         unsigned int            mi_opc;
641         unsigned int            mi_portal;
642         unsigned int            mi_rlength;
643         unsigned int            mi_roffset;
644 };
645
646 /* ME hash of RDMA portal */
647 #define LNET_MT_HASH_BITS               8
648 #define LNET_MT_HASH_SIZE               (1 << LNET_MT_HASH_BITS)
649 #define LNET_MT_HASH_MASK               (LNET_MT_HASH_SIZE - 1)
650 /* we allocate (LNET_MT_HASH_SIZE + 1) entries for lnet_match_table::mt_hash,
651  * the last entry is reserved for MEs with ignore-bits */
652 #define LNET_MT_HASH_IGNORE             LNET_MT_HASH_SIZE
653 /* __u64 has 2^6 bits, so need 2^(LNET_MT_HASH_BITS - LNET_MT_BITS_U64) which
654  * is 4 __u64s as bit-map, and add an extra __u64 (only use one bit) for the
655  * ME-list with ignore-bits, which is mtable::mt_hash[LNET_MT_HASH_IGNORE] */
656 #define LNET_MT_BITS_U64                6       /* 2^6 bits */
657 #define LNET_MT_EXHAUSTED_BITS          (LNET_MT_HASH_BITS - LNET_MT_BITS_U64)
658 #define LNET_MT_EXHAUSTED_BMAP          ((1 << LNET_MT_EXHAUSTED_BITS) + 1)
659
660 /* portal match table */
661 struct lnet_match_table {
662         /* reserved for upcoming patches, CPU partition ID */
663         unsigned int            mt_cpt;
664         unsigned int            mt_portal;      /* portal index */
665         /* match table is set as "enabled" if there's non-exhausted MD
666          * attached on mt_mhash, it's only valid for wildcard portal */
667         unsigned int            mt_enabled;
668         /* bitmap to flag whether MEs on mt_hash are exhausted or not */
669         __u64                   mt_exhausted[LNET_MT_EXHAUSTED_BMAP];
670         struct list_head        *mt_mhash;      /* matching hash */
671 };
672
673 /* these are only useful for wildcard portal */
674 /* Turn off message rotor for wildcard portals */
675 #define LNET_PTL_ROTOR_OFF      0
676 /* round-robin dispatch all PUT messages for wildcard portals */
677 #define LNET_PTL_ROTOR_ON       1
678 /* round-robin dispatch routed PUT message for wildcard portals */
679 #define LNET_PTL_ROTOR_RR_RT    2
680 /* dispatch routed PUT message by hashing source NID for wildcard portals */
681 #define LNET_PTL_ROTOR_HASH_RT  3
682
683 typedef struct lnet_portal {
684         spinlock_t              ptl_lock;
685         unsigned int            ptl_index;      /* portal ID, reserved */
686         /* flags on this portal: lazy, unique... */
687         unsigned int            ptl_options;
688         /* list of messages which are stealing buffer */
689         struct list_head        ptl_msg_stealing;
690         /* messages blocking for MD */
691         struct list_head        ptl_msg_delayed;
692         /* Match table for each CPT */
693         struct lnet_match_table **ptl_mtables;
694         /* spread rotor of incoming "PUT" */
695         unsigned int            ptl_rotor;
696         /* # active entries for this portal */
697         int                     ptl_mt_nmaps;
698         /* array of active entries' cpu-partition-id */
699         int                     ptl_mt_maps[0];
700 } lnet_portal_t;
701
702 #define LNET_LH_HASH_BITS       12
703 #define LNET_LH_HASH_SIZE       (1ULL << LNET_LH_HASH_BITS)
704 #define LNET_LH_HASH_MASK       (LNET_LH_HASH_SIZE - 1)
705
706 /* resource container (ME, MD, EQ) */
707 struct lnet_res_container {
708         unsigned int            rec_type;       /* container type */
709         __u64                   rec_lh_cookie;  /* cookie generator */
710         struct list_head        rec_active;     /* active resource list */
711         struct list_head        *rec_lh_hash;   /* handle hash */
712 };
713
714 /* message container */
715 struct lnet_msg_container {
716         int                     msc_init;       /* initialized or not */
717         /* max # threads finalizing */
718         int                     msc_nfinalizers;
719         /* msgs waiting to complete finalizing */
720         struct list_head        msc_finalizing;
721         struct list_head        msc_active;     /* active message list */
722         /* threads doing finalization */
723         void                    **msc_finalizers;
724 };
725
726 /* Router Checker states */
727 #define LNET_RC_STATE_SHUTDOWN          0       /* not started */
728 #define LNET_RC_STATE_RUNNING           1       /* started up OK */
729 #define LNET_RC_STATE_STOPPING          2       /* telling thread to stop */
730
731 typedef struct
732 {
733         /* CPU partition table of LNet */
734         struct cfs_cpt_table            *ln_cpt_table;
735         /* number of CPTs in ln_cpt_table */
736         unsigned int                    ln_cpt_number;
737         unsigned int                    ln_cpt_bits;
738
739         /* protect LNet resources (ME/MD/EQ) */
740         struct cfs_percpt_lock          *ln_res_lock;
741         /* # portals */
742         int                             ln_nportals;
743         /* the vector of portals */
744         lnet_portal_t                   **ln_portals;
745         /* percpt ME containers */
746         struct lnet_res_container       **ln_me_containers;
747         /* percpt MD container */
748         struct lnet_res_container       **ln_md_containers;
749
750         /* Event Queue container */
751         struct lnet_res_container       ln_eq_container;
752         wait_queue_head_t               ln_eq_waitq;
753         spinlock_t                      ln_eq_wait_lock;
754
755         unsigned int                    ln_remote_nets_hbits;
756
757         /* protect NI, peer table, credits, routers, rtrbuf... */
758         struct cfs_percpt_lock          *ln_net_lock;
759         /* percpt message containers for active/finalizing/freed message */
760         struct lnet_msg_container       **ln_msg_containers;
761         lnet_counters_t                 **ln_counters;
762         struct lnet_peer_table          **ln_peer_tables;
763         /* list of configured or discovered peers */
764         struct list_head                ln_peers;
765         /* list of peer nis not on a local network */
766         struct list_head                ln_remote_peer_ni_list;
767         /* failure simulation */
768         struct list_head                ln_test_peers;
769         struct list_head                ln_drop_rules;
770         struct list_head                ln_delay_rules;
771         /* LND instances */
772         struct list_head                ln_nets;
773         /* the loopback NI */
774         struct lnet_ni                  *ln_loni;
775         /* network zombie list */
776         struct list_head                ln_net_zombie;
777
778         /* remote networks with routes to them */
779         struct list_head                *ln_remote_nets_hash;
780         /* validity stamp */
781         __u64                           ln_remote_nets_version;
782         /* list of all known routers */
783         struct list_head                ln_routers;
784         /* validity stamp */
785         __u64                           ln_routers_version;
786         /* percpt router buffer pools */
787         lnet_rtrbufpool_t               **ln_rtrpools;
788
789         lnet_handle_md_t                ln_ping_target_md;
790         lnet_handle_eq_t                ln_ping_target_eq;
791         struct lnet_ping_info           *ln_ping_info;
792
793         /* router checker startup/shutdown state */
794         int                             ln_rc_state;
795         /* router checker's event queue */
796         lnet_handle_eq_t                ln_rc_eqh;
797         /* rcd still pending on net */
798         struct list_head                ln_rcd_deathrow;
799         /* rcd ready for free */
800         struct list_head                ln_rcd_zombie;
801         /* serialise startup/shutdown */
802         struct semaphore                ln_rc_signal;
803
804         struct mutex                    ln_api_mutex;
805         struct mutex                    ln_lnd_mutex;
806         /* Have I called LNetNIInit myself? */
807         int                             ln_niinit_self;
808         /* LNetNIInit/LNetNIFini counter */
809         int                             ln_refcount;
810         /* shutdown in progress */
811         int                             ln_shutdown;
812
813         int                             ln_routing;     /* am I a router? */
814         lnet_pid_t                      ln_pid;         /* requested pid */
815         /* uniquely identifies this ni in this epoch */
816         __u64                           ln_interface_cookie;
817         /* registered LNDs */
818         struct list_head                ln_lnds;
819
820         /* test protocol compatibility flags */
821         int                             ln_testprotocompat;
822
823         /* 0 - load the NIs from the mod params
824          * 1 - do not load the NIs from the mod params
825          * Reverse logic to ensure that other calls to LNetNIInit
826          * need no change
827          */
828         bool                            ln_nis_from_mod_params;
829
830         /* waitq for router checker.  As long as there are no routes in
831          * the list, the router checker will sleep on this queue.  when
832          * routes are added the thread will wake up */
833         wait_queue_head_t               ln_rc_waitq;
834 } lnet_t;
835
836 #endif