Whamcloud - gitweb
LU-13368 lnet: discard the callback
[fs/lustre-release.git] / lnet / klnds / o2iblnd / o2iblnd.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) 2007, 2010, Oracle and/or its affiliates. All rights reserved.
24  * Use is subject to license terms.
25  *
26  * Copyright (c) 2011, 2017, 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/klnds/o2iblnd/o2iblnd.h
33  *
34  * Author: Eric Barton <eric@bartonsoftware.com>
35  */
36
37 #include <linux/module.h>
38 #include <linux/kernel.h>
39
40 #if defined(NEED_LOCKDEP_IS_HELD_DISCARD_CONST) \
41  && defined(CONFIG_LOCKDEP) \
42  && defined(lockdep_is_held)
43 #undef lockdep_is_held
44         #define lockdep_is_held(lock) \
45                 lock_is_held((struct lockdep_map *)&(lock)->dep_map)
46 #endif
47
48 #ifdef HAVE_COMPAT_RDMA
49 #include <linux/compat-2.6.h>
50
51 #ifdef LINUX_3_17_COMPAT_H
52 #undef NEED_KTIME_GET_REAL_NS
53 #endif
54
55 /* MOFED has its own bitmap_alloc backport */
56 #define HAVE_BITMAP_ALLOC 1
57
58 #endif
59
60 #include <linux/kthread.h>
61 #include <linux/mm.h>
62 #include <linux/string.h>
63 #include <linux/stat.h>
64 #include <linux/errno.h>
65 #include <linux/unistd.h>
66 #include <linux/uio.h>
67
68 #include <asm/uaccess.h>
69 #include <asm/io.h>
70
71 #include <linux/init.h>
72 #include <linux/fs.h>
73 #include <linux/file.h>
74 #include <linux/stat.h>
75 #include <linux/list.h>
76 #include <linux/kmod.h>
77 #include <linux/sysctl.h>
78 #include <linux/pci.h>
79
80 #include <net/sock.h>
81 #include <linux/in.h>
82
83 #include <rdma/rdma_cm.h>
84 #include <rdma/ib_cm.h>
85 #include <rdma/ib_verbs.h>
86 #include <rdma/ib_fmr_pool.h>
87
88 #define DEBUG_SUBSYSTEM S_LND
89
90 #include <libcfs/libcfs.h>
91 #include <lnet/lib-lnet.h>
92
93 #define IBLND_PEER_HASH_SIZE            101     /* # peer_ni lists */
94
95 #define IBLND_N_SCHED                   2
96 #define IBLND_N_SCHED_HIGH              4
97
98 struct kib_tunables {
99         int              *kib_dev_failover;     /* HCA failover */
100         unsigned int     *kib_service;          /* IB service number */
101         int              *kib_cksum;            /* checksum struct kib_msg? */
102         int              *kib_timeout;          /* comms timeout (seconds) */
103         int              *kib_keepalive;        /* keepalive timeout (seconds) */
104         char            **kib_default_ipif;     /* default IPoIB interface */
105         int              *kib_retry_count;
106         int              *kib_rnr_retry_count;
107         int              *kib_ib_mtu;           /* IB MTU */
108         int              *kib_require_priv_port;/* accept only privileged ports */
109         int              *kib_use_priv_port;    /* use privileged port for active connect */
110         /* # threads on each CPT */
111         int              *kib_nscheds;
112         int              *kib_wrq_sge;          /* # sg elements per wrq */
113         int              *kib_use_fastreg_gaps; /* enable discontiguous fastreg fragment support */
114 };
115
116 extern struct kib_tunables  kiblnd_tunables;
117
118 #define IBLND_MSG_QUEUE_SIZE_V1      8          /* V1 only : # messages/RDMAs in-flight */
119 #define IBLND_CREDIT_HIGHWATER_V1    7          /* V1 only : when eagerly to return credits */
120
121 #define IBLND_CREDITS_DEFAULT        8          /* default # of peer_ni credits */
122 #define IBLND_CREDITS_MAX          ((typeof(((struct kib_msg *) 0)->ibm_credits)) - 1)  /* Max # of peer_ni credits */
123
124 /* when eagerly to return credits */
125 #define IBLND_CREDITS_HIGHWATER(t, conn) ((conn->ibc_version) == IBLND_MSG_VERSION_1 ? \
126                                         IBLND_CREDIT_HIGHWATER_V1 : \
127                         min(t->lnd_peercredits_hiw, (__u32)conn->ibc_queue_depth - 1))
128
129 #ifdef HAVE_RDMA_CREATE_ID_5ARG
130 # define kiblnd_rdma_create_id(ns, cb, dev, ps, qpt) \
131          rdma_create_id((ns) ? (ns) : &init_net, cb, dev, ps, qpt)
132 #else
133 # ifdef HAVE_RDMA_CREATE_ID_4ARG
134 #  define kiblnd_rdma_create_id(ns, cb, dev, ps, qpt) \
135           rdma_create_id(cb, dev, ps, qpt)
136 # else
137 #  define kiblnd_rdma_create_id(ns, cb, dev, ps, qpt) \
138           rdma_create_id(cb, dev, ps)
139 # endif
140 #endif
141
142 /* 2 OOB shall suffice for 1 keepalive and 1 returning credits */
143 #define IBLND_OOB_CAPABLE(v)       ((v) != IBLND_MSG_VERSION_1)
144 #define IBLND_OOB_MSGS(v)           (IBLND_OOB_CAPABLE(v) ? 2 : 0)
145
146 #define IBLND_MSG_SIZE              (4<<10)                 /* max size of queued messages (inc hdr) */
147 #define IBLND_MAX_RDMA_FRAGS         LNET_MAX_IOV           /* max # of fragments supported */
148
149 /************************/
150 /* derived constants... */
151 /* Pools (shared by connections on each CPT) */
152 /* These pools can grow at runtime, so don't need give a very large value */
153 #define IBLND_TX_POOL                   256
154 #define IBLND_FMR_POOL                  256
155 #define IBLND_FMR_POOL_FLUSH            192
156
157 /* RX messages (per connection) */
158 #define IBLND_RX_MSGS(c)        \
159         ((c->ibc_queue_depth) * 2 + IBLND_OOB_MSGS(c->ibc_version))
160 #define IBLND_RX_MSG_BYTES(c)       (IBLND_RX_MSGS(c) * IBLND_MSG_SIZE)
161 #define IBLND_RX_MSG_PAGES(c)   \
162         ((IBLND_RX_MSG_BYTES(c) + PAGE_SIZE - 1) / PAGE_SIZE)
163
164 /* WRs and CQEs (per connection) */
165 #define IBLND_RECV_WRS(c)            IBLND_RX_MSGS(c)
166
167 /* 2 = LNet msg + Transfer chain */
168 #define IBLND_CQ_ENTRIES(c) (IBLND_RECV_WRS(c) + kiblnd_send_wrs(c))
169
170 struct kib_hca_dev;
171
172 /* o2iblnd can run over aliased interface */
173 #ifdef IFALIASZ
174 #define KIB_IFNAME_SIZE              IFALIASZ
175 #else
176 #define KIB_IFNAME_SIZE              256
177 #endif
178
179 enum kib_dev_caps {
180         IBLND_DEV_CAPS_FASTREG_ENABLED          = BIT(0),
181         IBLND_DEV_CAPS_FASTREG_GAPS_SUPPORT     = BIT(1),
182         IBLND_DEV_CAPS_FMR_ENABLED              = BIT(2),
183 };
184
185 struct kib_dev {
186         struct list_head        ibd_list;       /* chain on kib_devs */
187         struct list_head        ibd_fail_list;  /* chain on kib_failed_devs */
188         __u32                   ibd_ifip;       /* IPoIB interface IP */
189         /** IPoIB interface name */
190         char                    ibd_ifname[KIB_IFNAME_SIZE];
191         int                     ibd_nnets;      /* # nets extant */
192
193         time64_t                ibd_next_failover;
194         /* # failover failures */
195         int                     ibd_failed_failover;
196         /* failover in progress */
197         unsigned int            ibd_failover;
198         /* IPoIB interface is a bonding master */
199         unsigned int            ibd_can_failover;
200         struct list_head        ibd_nets;
201         struct kib_hca_dev      *ibd_hdev;
202         enum kib_dev_caps       ibd_dev_caps;
203 };
204
205 struct kib_hca_dev {
206         struct rdma_cm_id   *ibh_cmid;          /* listener cmid */
207         struct ib_device    *ibh_ibdev;         /* IB device */
208         int                  ibh_page_shift;    /* page shift of current HCA */
209         int                  ibh_page_size;     /* page size of current HCA */
210         __u64                ibh_page_mask;     /* page mask of current HCA */
211         __u64                ibh_mr_size;       /* size of MR */
212         int                  ibh_max_qp_wr;     /* maximum work requests size */
213 #ifdef HAVE_IB_GET_DMA_MR
214         struct ib_mr        *ibh_mrs;           /* global MR */
215 #endif
216         struct ib_pd        *ibh_pd;            /* PD */
217         u8                   ibh_port;          /* port number */
218         struct ib_event_handler
219                              ibh_event_handler; /* IB event handler */
220         int                  ibh_state;         /* device status */
221 #define IBLND_DEV_PORT_DOWN     0
222 #define IBLND_DEV_PORT_ACTIVE   1
223 #define IBLND_DEV_FATAL         2
224         struct kib_dev           *ibh_dev;           /* owner */
225         atomic_t             ibh_ref;           /* refcount */
226 };
227
228 /** # of seconds to keep pool alive */
229 #define IBLND_POOL_DEADLINE     300
230 /** # of seconds to retry if allocation failed */
231 #define IBLND_POOL_RETRY        1
232
233 struct kib_pages {
234         int                     ibp_npages;             /* # pages */
235         struct page            *ibp_pages[0];           /* page array */
236 };
237
238 struct kib_pool;
239 struct kib_poolset;
240
241 typedef int  (*kib_ps_pool_create_t)(struct kib_poolset *ps,
242                                      int inc, struct kib_pool **pp_po);
243 typedef void (*kib_ps_pool_destroy_t)(struct kib_pool *po);
244 typedef void (*kib_ps_node_init_t)(struct kib_pool *po, struct list_head *node);
245 typedef void (*kib_ps_node_fini_t)(struct kib_pool *po, struct list_head *node);
246
247 struct kib_net;
248
249 #define IBLND_POOL_NAME_LEN     32
250
251 struct kib_poolset {
252         /* serialize */
253         spinlock_t              ps_lock;
254         /* network it belongs to */
255         struct kib_net          *ps_net;
256         /* pool set name */
257         char                    ps_name[IBLND_POOL_NAME_LEN];
258         /* list of pools */
259         struct list_head        ps_pool_list;
260         /* failed pool list */
261         struct list_head        ps_failed_pool_list;
262         /* time stamp for retry if failed to allocate */
263         time64_t                ps_next_retry;
264         /* is allocating new pool */
265         int                     ps_increasing;
266         /* new pool size */
267         int                     ps_pool_size;
268         /* CPT id */
269         int                     ps_cpt;
270
271         /* create a new pool */
272         kib_ps_pool_create_t    ps_pool_create;
273         /* destroy a pool */
274         kib_ps_pool_destroy_t   ps_pool_destroy;
275         /* initialize new allocated node */
276         kib_ps_node_init_t      ps_node_init;
277         /* finalize node */
278         kib_ps_node_fini_t      ps_node_fini;
279 };
280
281 struct kib_pool {
282         /* chain on pool list */
283         struct list_head        po_list;
284         /* pre-allocated node */
285         struct list_head        po_free_list;
286         /* pool_set of this pool */
287         struct kib_poolset     *po_owner;
288         /* deadline of this pool */
289         time64_t                po_deadline;
290         /* # of elements in use */
291         int                     po_allocated;
292         /* pool is created on failed HCA */
293         int                     po_failed;
294         /* # of pre-allocated elements */
295         int                     po_size;
296 };
297
298 struct kib_tx_poolset {
299         struct kib_poolset      tps_poolset;            /* pool-set */
300         __u64                   tps_next_tx_cookie;     /* cookie of TX */
301 };
302
303 struct kib_tx_pool {
304         struct kib_pool         tpo_pool;               /* pool */
305         struct kib_hca_dev     *tpo_hdev;               /* device for this pool */
306         struct kib_tx          *tpo_tx_descs;           /* all the tx descriptors */
307         struct kib_pages       *tpo_tx_pages;           /* premapped tx msg pages */
308 };
309
310 struct kib_fmr_poolset {
311         spinlock_t              fps_lock;               /* serialize */
312         struct kib_net         *fps_net;                /* IB network */
313         struct list_head        fps_pool_list;          /* FMR pool list */
314         struct list_head        fps_failed_pool_list;   /* FMR pool list */
315         __u64                   fps_version;            /* validity stamp */
316         int                     fps_cpt;                /* CPT id */
317         int                     fps_pool_size;
318         int                     fps_flush_trigger;
319         int                     fps_cache;
320         /* is allocating new pool */
321         int                     fps_increasing;
322         /* time stamp for retry if failed to allocate */
323         time64_t                fps_next_retry;
324 };
325
326 #ifndef HAVE_IB_RDMA_WR
327 struct ib_rdma_wr {
328         struct ib_send_wr wr;
329 };
330 #endif
331
332 struct kib_fast_reg_descriptor { /* For fast registration */
333         struct list_head                 frd_list;
334         struct ib_rdma_wr                frd_inv_wr;
335 #ifdef HAVE_IB_MAP_MR_SG
336         struct ib_reg_wr                 frd_fastreg_wr;
337 #else
338         struct ib_rdma_wr                frd_fastreg_wr;
339         struct ib_fast_reg_page_list    *frd_frpl;
340 #endif
341         struct ib_mr                    *frd_mr;
342         bool                             frd_valid;
343 };
344
345 struct kib_fmr_pool {
346         struct list_head        fpo_list;       /* chain on pool list */
347         struct kib_hca_dev     *fpo_hdev;       /* device for this pool */
348         struct kib_fmr_poolset      *fpo_owner; /* owner of this pool */
349         union {
350                 struct {
351                         struct ib_fmr_pool *fpo_fmr_pool; /* IB FMR pool */
352                 } fmr;
353                 struct { /* For fast registration */
354                         struct list_head  fpo_pool_list;
355                         int               fpo_pool_size;
356                 } fast_reg;
357         };
358         time64_t                fpo_deadline;   /* deadline of this pool */
359         int                     fpo_failed;     /* fmr pool is failed */
360         int                     fpo_map_count;  /* # of mapped FMR */
361         bool                    fpo_is_fmr; /* True if FMR pools allocated */
362 };
363
364 struct kib_fmr {
365         struct kib_fmr_pool             *fmr_pool;      /* pool of FMR */
366         struct ib_pool_fmr              *fmr_pfmr;      /* IB pool fmr */
367         struct kib_fast_reg_descriptor  *fmr_frd;
368         u32                              fmr_key;
369 };
370
371 #ifdef HAVE_ORACLE_OFED_EXTENSIONS
372 #define kib_fmr_pool_map(pool, pgs, n, iov) \
373         ib_fmr_pool_map_phys((pool), (pgs), (n), (iov), NULL)
374 #else
375 #define kib_fmr_pool_map(pool, pgs, n, iov) \
376         ib_fmr_pool_map_phys((pool), (pgs), (n), (iov))
377 #endif
378
379 struct kib_net {
380         /* chain on struct kib_dev::ibd_nets */
381         struct list_head        ibn_list;
382         __u64                   ibn_incarnation;/* my epoch */
383         int                     ibn_init;       /* initialisation state */
384         int                     ibn_shutdown;   /* shutting down? */
385
386         atomic_t                ibn_npeers;     /* # peers extant */
387         atomic_t                ibn_nconns;     /* # connections extant */
388
389         struct kib_tx_poolset   **ibn_tx_ps;    /* tx pool-set */
390         struct kib_fmr_poolset  **ibn_fmr_ps;   /* fmr pool-set */
391
392         struct kib_dev          *ibn_dev;       /* underlying IB device */
393         struct lnet_ni          *ibn_ni;        /* LNet interface */
394 };
395
396 #define KIB_THREAD_SHIFT                16
397 #define KIB_THREAD_ID(cpt, tid)         ((cpt) << KIB_THREAD_SHIFT | (tid))
398 #define KIB_THREAD_CPT(id)              ((id) >> KIB_THREAD_SHIFT)
399 #define KIB_THREAD_TID(id)              ((id) & ((1UL << KIB_THREAD_SHIFT) - 1))
400
401 struct kib_sched_info {
402         /* serialise */
403         spinlock_t              ibs_lock;
404         /* schedulers sleep here */
405         wait_queue_head_t       ibs_waitq;
406         /* conns to check for rx completions */
407         struct list_head        ibs_conns;
408         /* number of scheduler threads */
409         int                     ibs_nthreads;
410         /* max allowed scheduler threads */
411         int                     ibs_nthreads_max;
412         int                     ibs_cpt;        /* CPT id */
413 };
414
415 struct kib_data {
416         int                     kib_init;       /* initialisation state */
417         int                     kib_shutdown;   /* shut down? */
418         struct list_head        kib_devs;       /* IB devices extant */
419         /* list head of failed devices */
420         struct list_head        kib_failed_devs;
421         /* schedulers sleep here */
422         wait_queue_head_t       kib_failover_waitq;
423         atomic_t                kib_nthreads;   /* # live threads */
424         /* stabilize net/dev/peer_ni/conn ops */
425         rwlock_t                kib_global_lock;
426         /* hash table of all my known peers */
427         struct list_head        *kib_peers;
428         /* size of kib_peers */
429         int                     kib_peer_hash_size;
430         /* the connd task (serialisation assertions) */
431         void                    *kib_connd;
432         /* connections to setup/teardown */
433         struct list_head        kib_connd_conns;
434         /* connections with zero refcount */
435         struct list_head        kib_connd_zombies;
436         /* connections to reconnect */
437         struct list_head        kib_reconn_list;
438         /* peers wait for reconnection */
439         struct list_head        kib_reconn_wait;
440         /* connections wait for completion */
441         struct list_head        kib_connd_waits;
442         /*
443          * The second that peers are pulled out from \a kib_reconn_wait
444          * for reconnection.
445          */
446         time64_t                kib_reconn_sec;
447         /* connection daemon sleeps here */
448         wait_queue_head_t       kib_connd_waitq;
449         spinlock_t              kib_connd_lock; /* serialise */
450         struct ib_qp_attr       kib_error_qpa;  /* QP->ERROR */
451         /* percpt data for schedulers */
452         struct kib_sched_info   **kib_scheds;
453 };
454
455 #define IBLND_INIT_NOTHING         0
456 #define IBLND_INIT_DATA            1
457 #define IBLND_INIT_ALL             2
458
459 /************************************************************************
460  * IB Wire message format.
461  * These are sent in sender's byte order (i.e. receiver flips).
462  */
463
464 struct kib_connparams {
465         __u16             ibcp_queue_depth;
466         __u16             ibcp_max_frags;
467         __u32             ibcp_max_msg_size;
468 } WIRE_ATTR;
469
470 struct kib_immediate_msg {
471         struct lnet_hdr         ibim_hdr;       /* portals header */
472         char                    ibim_payload[0];/* piggy-backed payload */
473 } WIRE_ATTR;
474
475 struct kib_rdma_frag {
476         __u32             rf_nob;               /* # bytes this frag */
477         __u64             rf_addr;              /* CAVEAT EMPTOR: misaligned!! */
478 } WIRE_ATTR;
479
480 struct kib_rdma_desc {
481         __u32                   rd_key;         /* local/remote key */
482         __u32                   rd_nfrags;      /* # fragments */
483         struct kib_rdma_frag    rd_frags[0];    /* buffer frags */
484 } WIRE_ATTR;
485
486 struct kib_putreq_msg {
487         struct lnet_hdr         ibprm_hdr;      /* portals header */
488         __u64                   ibprm_cookie;   /* opaque completion cookie */
489 } WIRE_ATTR;
490
491 struct kib_putack_msg {
492         __u64             ibpam_src_cookie;     /* reflected completion cookie */
493         __u64             ibpam_dst_cookie;     /* opaque completion cookie */
494         struct kib_rdma_desc    ibpam_rd;       /* sender's sink buffer */
495 } WIRE_ATTR;
496
497 struct kib_get_msg {
498         struct lnet_hdr         ibgm_hdr;       /* portals header */
499         __u64                   ibgm_cookie;    /* opaque completion cookie */
500         struct kib_rdma_desc    ibgm_rd;        /* rdma descriptor */
501 } WIRE_ATTR;
502
503 struct kib_completion_msg {
504         __u64             ibcm_cookie;          /* opaque completion cookie */
505         __s32             ibcm_status;          /* < 0 failure: >= 0 length */
506 } WIRE_ATTR;
507
508 struct kib_msg {
509         /* First 2 fields fixed FOR ALL TIME */
510         __u32             ibm_magic;            /* I'm an ibnal message */
511         __u16             ibm_version;          /* this is my version number */
512
513         __u8              ibm_type;             /* msg type */
514         __u8              ibm_credits;          /* returned credits */
515         __u32             ibm_nob;              /* # bytes in whole message */
516         __u32             ibm_cksum;            /* checksum (0 == no checksum) */
517         __u64             ibm_srcnid;           /* sender's NID */
518         __u64             ibm_srcstamp;         /* sender's incarnation */
519         __u64             ibm_dstnid;           /* destination's NID */
520         __u64             ibm_dststamp;         /* destination's incarnation */
521
522         union {
523                 struct kib_connparams           connparams;
524                 struct kib_immediate_msg        immediate;
525                 struct kib_putreq_msg           putreq;
526                 struct kib_putack_msg           putack;
527                 struct kib_get_msg              get;
528                 struct kib_completion_msg       completion;
529         } WIRE_ATTR ibm_u;
530 } WIRE_ATTR;
531
532 #define IBLND_MSG_MAGIC LNET_PROTO_IB_MAGIC     /* unique magic */
533
534 #define IBLND_MSG_VERSION_1         0x11
535 #define IBLND_MSG_VERSION_2         0x12
536 #define IBLND_MSG_VERSION           IBLND_MSG_VERSION_2
537
538 #define IBLND_MSG_CONNREQ           0xc0        /* connection request */
539 #define IBLND_MSG_CONNACK           0xc1        /* connection acknowledge */
540 #define IBLND_MSG_NOOP              0xd0        /* nothing (just credits) */
541 #define IBLND_MSG_IMMEDIATE         0xd1        /* immediate */
542 #define IBLND_MSG_PUT_REQ           0xd2        /* putreq (src->sink) */
543 #define IBLND_MSG_PUT_NAK           0xd3        /* completion (sink->src) */
544 #define IBLND_MSG_PUT_ACK           0xd4        /* putack (sink->src) */
545 #define IBLND_MSG_PUT_DONE          0xd5        /* completion (src->sink) */
546 #define IBLND_MSG_GET_REQ           0xd6        /* getreq (sink->src) */
547 #define IBLND_MSG_GET_DONE          0xd7        /* completion (src->sink: all OK) */
548
549 struct kib_rej {
550         __u32            ibr_magic;             /* sender's magic */
551         __u16            ibr_version;           /* sender's version */
552         __u8             ibr_why;               /* reject reason */
553         __u8             ibr_padding;           /* padding */
554         __u64            ibr_incarnation;       /* incarnation of peer_ni */
555         struct kib_connparams   ibr_cp;         /* connection parameters */
556 } WIRE_ATTR;
557
558 /* connection rejection reasons */
559 #define IBLND_REJECT_CONN_RACE       1          /* You lost connection race */
560 #define IBLND_REJECT_NO_RESOURCES    2          /* Out of memory/conns etc */
561 #define IBLND_REJECT_FATAL           3          /* Anything else */
562
563 #define IBLND_REJECT_CONN_UNCOMPAT   4          /* incompatible version peer_ni */
564 #define IBLND_REJECT_CONN_STALE      5          /* stale peer_ni */
565
566 /* peer_ni's rdma frags doesn't match mine */
567 #define IBLND_REJECT_RDMA_FRAGS      6
568 /* peer_ni's msg queue size doesn't match mine */
569 #define IBLND_REJECT_MSG_QUEUE_SIZE  7
570 #define IBLND_REJECT_INVALID_SRV_ID  8
571
572 /***********************************************************************/
573
574 struct kib_rx {                                 /* receive message */
575         /* queue for attention */
576         struct list_head        rx_list;
577         /* owning conn */
578         struct kib_conn        *rx_conn;
579         /* # bytes received (-1 while posted) */
580         int                     rx_nob;
581         /* message buffer (host vaddr) */
582         struct kib_msg         *rx_msg;
583         /* message buffer (I/O addr) */
584         __u64                   rx_msgaddr;
585         /* for dma_unmap_single() */
586         DEFINE_DMA_UNMAP_ADDR(rx_msgunmap);
587         /* receive work item... */
588         struct ib_recv_wr       rx_wrq;
589         /* ...and its memory */
590         struct ib_sge           rx_sge;
591 };
592
593 #define IBLND_POSTRX_DONT_POST    0             /* don't post */
594 #define IBLND_POSTRX_NO_CREDIT    1             /* post: no credits */
595 #define IBLND_POSTRX_PEER_CREDIT  2             /* post: give peer_ni back 1 credit */
596 #define IBLND_POSTRX_RSRVD_CREDIT 3             /* post: give myself back 1 reserved credit */
597
598 struct kib_tx {                                 /* transmit message */
599         /* queue on idle_txs ibc_tx_queue etc. */
600         struct list_head        tx_list;
601         /* pool I'm from */
602         struct kib_tx_pool      *tx_pool;
603         /* owning conn */
604         struct kib_conn         *tx_conn;
605         /* # tx callbacks outstanding */
606         short                   tx_sending;
607         /* queued for sending */
608         short                   tx_queued;
609         /* waiting for peer_ni */
610         short                   tx_waiting;
611         /* LNET completion status */
612         int                     tx_status;
613         /* health status of the transmit */
614         enum lnet_msg_hstatus   tx_hstatus;
615         /* completion deadline */
616         ktime_t                 tx_deadline;
617         /* completion cookie */
618         __u64                   tx_cookie;
619         /* lnet msgs to finalize on completion */
620         struct lnet_msg         *tx_lntmsg[2];
621         /* message buffer (host vaddr) */
622         struct kib_msg          *tx_msg;
623         /* message buffer (I/O addr) */
624         __u64                   tx_msgaddr;
625         /* for dma_unmap_single() */
626         DEFINE_DMA_UNMAP_ADDR(tx_msgunmap);
627         /** sge for tx_msgaddr */
628         struct ib_sge           tx_msgsge;
629         /* # send work items */
630         int                     tx_nwrq;
631         /* # used scatter/gather elements */
632         int                     tx_nsge;
633         /* send work items... */
634         struct ib_rdma_wr       *tx_wrq;
635         /* ...and their memory */
636         struct ib_sge           *tx_sge;
637         /* rdma descriptor */
638         struct kib_rdma_desc    *tx_rd;
639         /* # entries in... */
640         int                     tx_nfrags;
641         /* dma_map_sg descriptor */
642         struct scatterlist      *tx_frags;
643         /* rdma phys page addrs */
644         __u64                   *tx_pages;
645         /* gaps in fragments */
646         bool                    tx_gaps;
647         /* FMR */
648         struct kib_fmr          tx_fmr;
649                                 /* dma direction */
650         int                     tx_dmadir;
651 };
652
653 struct kib_connvars {
654         /* connection-in-progress variables */
655         struct kib_msg          cv_msg;
656 };
657
658 struct kib_conn {
659         /* scheduler information */
660         struct kib_sched_info   *ibc_sched;
661         /* owning peer_ni */
662         struct kib_peer_ni      *ibc_peer;
663         /* HCA bound on */
664         struct kib_hca_dev      *ibc_hdev;
665         /* stash on peer_ni's conn list */
666         struct list_head        ibc_list;
667         /* schedule for attention */
668         struct list_head        ibc_sched_list;
669         /* version of connection */
670         __u16                   ibc_version;
671         /* reconnect later */
672         __u16                   ibc_reconnect:1;
673         /* which instance of the peer */
674         __u64                   ibc_incarnation;
675         /* # users */
676         atomic_t                ibc_refcount;
677         /* what's happening */
678         int                     ibc_state;
679         /* # uncompleted sends */
680         int                     ibc_nsends_posted;
681         /* # uncompleted NOOPs */
682         int                     ibc_noops_posted;
683         /* # credits I have */
684         int                     ibc_credits;
685         /* # credits to return */
686         int                     ibc_outstanding_credits;
687         /* # ACK/DONE msg credits */
688         int                     ibc_reserved_credits;
689         /* set on comms error */
690         int                     ibc_comms_error;
691         /* connections queue depth */
692         __u16                   ibc_queue_depth;
693         /* connections max frags */
694         __u16                   ibc_max_frags;
695         /* count of timeout txs waiting on cq */
696         __u16                   ibc_waits;
697         /* receive buffers owned */
698         unsigned int            ibc_nrx:16;
699         /* scheduled for attention */
700         unsigned int            ibc_scheduled:1;
701         /* CQ callback fired */
702         unsigned int            ibc_ready:1;
703         /* time of last send */
704         ktime_t                 ibc_last_send;
705         /** link chain for kiblnd_check_conns only */
706         struct list_head        ibc_connd_list;
707         /** rxs completed before ESTABLISHED */
708         struct list_head        ibc_early_rxs;
709         /** IBLND_MSG_NOOPs for IBLND_MSG_VERSION_1 */
710         struct list_head        ibc_tx_noops;
711         /* sends that need a credit */
712         struct list_head        ibc_tx_queue;
713         /* sends that don't need a credit */
714         struct list_head        ibc_tx_queue_nocred;
715         /* sends that need to reserve an ACK/DONE msg */
716         struct list_head        ibc_tx_queue_rsrvd;
717         /* active tx awaiting completion */
718         struct list_head        ibc_active_txs;
719         /* zombie tx awaiting done */
720         struct list_head        ibc_zombie_txs;
721         /* serialise */
722         spinlock_t              ibc_lock;
723         /* the rx descs */
724         struct kib_rx           *ibc_rxs;
725         /* premapped rx msg pages */
726         struct kib_pages        *ibc_rx_pages;
727
728         /* CM id */
729         struct rdma_cm_id       *ibc_cmid;
730         /* completion queue */
731         struct ib_cq            *ibc_cq;
732
733         /* in-progress connection state */
734         struct kib_connvars     *ibc_connvars;
735 };
736
737 #define IBLND_CONN_INIT               0         /* being initialised */
738 #define IBLND_CONN_ACTIVE_CONNECT     1         /* active sending req */
739 #define IBLND_CONN_PASSIVE_WAIT       2         /* passive waiting for rtu */
740 #define IBLND_CONN_ESTABLISHED        3         /* connection established */
741 #define IBLND_CONN_CLOSING            4         /* being closed */
742 #define IBLND_CONN_DISCONNECTED       5         /* disconnected */
743
744 struct kib_peer_ni {
745         /* stash on global peer_ni list */
746         struct list_head        ibp_list;
747         /* who's on the other end(s) */
748         lnet_nid_t              ibp_nid;
749         /* LNet interface */
750         struct lnet_ni          *ibp_ni;
751         /* all active connections */
752         struct list_head        ibp_conns;
753         /* next connection to send on for round robin */
754         struct kib_conn         *ibp_next_conn;
755         /* msgs waiting for a conn */
756         struct list_head        ibp_tx_queue;
757         /* incarnation of peer_ni */
758         __u64                   ibp_incarnation;
759         /* when (in seconds) I was last alive */
760         time64_t                ibp_last_alive;
761         /* # users */
762         atomic_t                ibp_refcount;
763         /* version of peer_ni */
764         __u16                   ibp_version;
765         /* current passive connection attempts */
766         unsigned short          ibp_accepting;
767         /* current active connection attempts */
768         unsigned short          ibp_connecting;
769         /* reconnect this peer_ni later */
770         unsigned char           ibp_reconnecting;
771         /* counter of how many times we triggered a conn race */
772         unsigned char           ibp_races;
773         /* # consecutive reconnection attempts to this peer */
774         unsigned int            ibp_reconnected;
775         /* number of total active retries */
776         unsigned int            ibp_retries;
777         /* errno on closing this peer_ni */
778         int                     ibp_error;
779         /* max map_on_demand */
780         __u16                   ibp_max_frags;
781         /* max_peer_credits */
782         __u16                   ibp_queue_depth;
783 };
784
785 #ifndef HAVE_IB_INC_RKEY
786 /**
787  * ib_inc_rkey - increments the key portion of the given rkey. Can be used
788  * for calculating a new rkey for type 2 memory windows.
789  * @rkey - the rkey to increment.
790  */
791 static inline u32 ib_inc_rkey(u32 rkey)
792 {
793         const u32 mask = 0x000000ff;
794         return ((rkey + 1) & mask) | (rkey & ~mask);
795 }
796 #endif
797
798 extern struct kib_data kiblnd_data;
799
800 extern void kiblnd_hdev_destroy(struct kib_hca_dev *hdev);
801
802 int kiblnd_msg_queue_size(int version, struct lnet_ni *ni);
803
804 static inline int kiblnd_timeout(void)
805 {
806         return *kiblnd_tunables.kib_timeout ? *kiblnd_tunables.kib_timeout :
807                 lnet_get_lnd_timeout();
808 }
809
810 static inline int
811 kiblnd_concurrent_sends(int version, struct lnet_ni *ni)
812 {
813         struct lnet_ioctl_config_o2iblnd_tunables *tunables;
814         int concurrent_sends;
815
816         tunables = &ni->ni_lnd_tunables.lnd_tun_u.lnd_o2ib;
817         concurrent_sends = tunables->lnd_concurrent_sends;
818
819         if (version == IBLND_MSG_VERSION_1) {
820                 if (concurrent_sends > IBLND_MSG_QUEUE_SIZE_V1 * 2)
821                         return IBLND_MSG_QUEUE_SIZE_V1 * 2;
822
823                 if (concurrent_sends < IBLND_MSG_QUEUE_SIZE_V1 / 2)
824                         return IBLND_MSG_QUEUE_SIZE_V1 / 2;
825         }
826
827         return concurrent_sends;
828 }
829
830 static inline void
831 kiblnd_hdev_addref_locked(struct kib_hca_dev *hdev)
832 {
833         LASSERT(atomic_read(&hdev->ibh_ref) > 0);
834         atomic_inc(&hdev->ibh_ref);
835 }
836
837 static inline void
838 kiblnd_hdev_decref(struct kib_hca_dev *hdev)
839 {
840         LASSERT(atomic_read(&hdev->ibh_ref) > 0);
841         if (atomic_dec_and_test(&hdev->ibh_ref))
842                 kiblnd_hdev_destroy(hdev);
843 }
844
845 static inline int
846 kiblnd_dev_can_failover(struct kib_dev *dev)
847 {
848         if (!list_empty(&dev->ibd_fail_list)) /* already scheduled */
849                 return 0;
850
851         if (*kiblnd_tunables.kib_dev_failover == 0) /* disabled */
852                 return 0;
853
854         if (*kiblnd_tunables.kib_dev_failover > 1) /* force failover */
855                 return 1;
856
857         return dev->ibd_can_failover;
858 }
859
860 #define kiblnd_conn_addref(conn)                                \
861 do {                                                            \
862         CDEBUG(D_NET, "conn[%p] (%d)++\n",                      \
863                (conn), atomic_read(&(conn)->ibc_refcount)); \
864         atomic_inc(&(conn)->ibc_refcount);                  \
865 } while (0)
866
867 #define kiblnd_conn_decref(conn)                                        \
868 do {                                                                    \
869         unsigned long flags;                                            \
870                                                                         \
871         CDEBUG(D_NET, "conn[%p] (%d)--\n",                              \
872                (conn), atomic_read(&(conn)->ibc_refcount));             \
873         LASSERT_ATOMIC_POS(&(conn)->ibc_refcount);                      \
874         if (atomic_dec_and_test(&(conn)->ibc_refcount)) {               \
875                 spin_lock_irqsave(&kiblnd_data.kib_connd_lock, flags);  \
876                 list_add_tail(&(conn)->ibc_list,                        \
877                                   &kiblnd_data.kib_connd_zombies);      \
878                 wake_up(&kiblnd_data.kib_connd_waitq);          \
879                 spin_unlock_irqrestore(&kiblnd_data.kib_connd_lock, flags);\
880         }                                                               \
881 } while (0)
882
883 #define kiblnd_peer_addref(peer_ni)                                \
884 do {                                                            \
885         CDEBUG(D_NET, "peer_ni[%p] -> %s (%d)++\n",                \
886                (peer_ni), libcfs_nid2str((peer_ni)->ibp_nid),         \
887                atomic_read (&(peer_ni)->ibp_refcount));         \
888         atomic_inc(&(peer_ni)->ibp_refcount);                   \
889 } while (0)
890
891 #define kiblnd_peer_decref(peer_ni)                                \
892 do {                                                            \
893         CDEBUG(D_NET, "peer_ni[%p] -> %s (%d)--\n",                \
894                (peer_ni), libcfs_nid2str((peer_ni)->ibp_nid),         \
895                atomic_read (&(peer_ni)->ibp_refcount));         \
896         LASSERT_ATOMIC_POS(&(peer_ni)->ibp_refcount);              \
897         if (atomic_dec_and_test(&(peer_ni)->ibp_refcount))      \
898                 kiblnd_destroy_peer(peer_ni);                      \
899 } while (0)
900
901 static inline bool
902 kiblnd_peer_connecting(struct kib_peer_ni *peer_ni)
903 {
904         return peer_ni->ibp_connecting != 0 ||
905                peer_ni->ibp_reconnecting != 0 ||
906                peer_ni->ibp_accepting != 0;
907 }
908
909 static inline bool
910 kiblnd_peer_idle(struct kib_peer_ni *peer_ni)
911 {
912         return !kiblnd_peer_connecting(peer_ni) && list_empty(&peer_ni->ibp_conns);
913 }
914
915 static inline struct list_head *
916 kiblnd_nid2peerlist (lnet_nid_t nid)
917 {
918         unsigned int hash =
919                 ((unsigned int)nid) % kiblnd_data.kib_peer_hash_size;
920
921         return &kiblnd_data.kib_peers[hash];
922 }
923
924 static inline int
925 kiblnd_peer_active(struct kib_peer_ni *peer_ni)
926 {
927         /* Am I in the peer_ni hash table? */
928         return !list_empty(&peer_ni->ibp_list);
929 }
930
931 static inline struct kib_conn *
932 kiblnd_get_conn_locked(struct kib_peer_ni *peer_ni)
933 {
934         struct list_head *next;
935
936         LASSERT(!list_empty(&peer_ni->ibp_conns));
937
938         /* Advance to next connection, be sure to skip the head node */
939         if (!peer_ni->ibp_next_conn ||
940             peer_ni->ibp_next_conn->ibc_list.next == &peer_ni->ibp_conns)
941                 next = peer_ni->ibp_conns.next;
942         else
943                 next = peer_ni->ibp_next_conn->ibc_list.next;
944         peer_ni->ibp_next_conn = list_entry(next, struct kib_conn, ibc_list);
945
946         return peer_ni->ibp_next_conn;
947 }
948
949 static inline int
950 kiblnd_send_keepalive(struct kib_conn *conn)
951 {
952         s64 keepalive_ns = *kiblnd_tunables.kib_keepalive * NSEC_PER_SEC;
953
954         return (*kiblnd_tunables.kib_keepalive > 0) &&
955                 ktime_after(ktime_get(),
956                             ktime_add_ns(conn->ibc_last_send, keepalive_ns));
957 }
958
959 static inline int
960 kiblnd_need_noop(struct kib_conn *conn)
961 {
962         struct lnet_ni *ni = conn->ibc_peer->ibp_ni;
963         struct lnet_ioctl_config_o2iblnd_tunables *tunables;
964
965         LASSERT(conn->ibc_state >= IBLND_CONN_ESTABLISHED);
966         tunables = &ni->ni_lnd_tunables.lnd_tun_u.lnd_o2ib;
967
968         if (conn->ibc_outstanding_credits <
969             IBLND_CREDITS_HIGHWATER(tunables, conn) &&
970             !kiblnd_send_keepalive(conn))
971                 return 0; /* No need to send NOOP */
972
973         if (IBLND_OOB_CAPABLE(conn->ibc_version)) {
974                 if (!list_empty(&conn->ibc_tx_queue_nocred))
975                         return 0; /* NOOP can be piggybacked */
976
977                 /* No tx to piggyback NOOP onto or no credit to send a tx */
978                 return (list_empty(&conn->ibc_tx_queue) ||
979                         conn->ibc_credits == 0);
980         }
981
982         if (!list_empty(&conn->ibc_tx_noops) || /* NOOP already queued */
983             !list_empty(&conn->ibc_tx_queue_nocred) || /* piggyback NOOP */
984             conn->ibc_credits == 0)                    /* no credit */
985                 return 0;
986
987         if (conn->ibc_credits == 1 &&      /* last credit reserved for */
988             conn->ibc_outstanding_credits == 0) /* giving back credits */
989                 return 0;
990
991         /* No tx to piggyback NOOP onto or no credit to send a tx */
992         return (list_empty(&conn->ibc_tx_queue) || conn->ibc_credits == 1);
993 }
994
995 static inline void
996 kiblnd_abort_receives(struct kib_conn *conn)
997 {
998         ib_modify_qp(conn->ibc_cmid->qp,
999                      &kiblnd_data.kib_error_qpa, IB_QP_STATE);
1000 }
1001
1002 static inline const char *
1003 kiblnd_queue2str(struct kib_conn *conn, struct list_head *q)
1004 {
1005         if (q == &conn->ibc_tx_queue)
1006                 return "tx_queue";
1007
1008         if (q == &conn->ibc_tx_queue_rsrvd)
1009                 return "tx_queue_rsrvd";
1010
1011         if (q == &conn->ibc_tx_queue_nocred)
1012                 return "tx_queue_nocred";
1013
1014         if (q == &conn->ibc_active_txs)
1015                 return "active_txs";
1016
1017         LBUG();
1018         return NULL;
1019 }
1020
1021 /* CAVEAT EMPTOR: We rely on descriptor alignment to allow us to use the
1022  * lowest bits of the work request id to stash the work item type. */
1023
1024 #define IBLND_WID_INVAL 0
1025 #define IBLND_WID_TX    1
1026 #define IBLND_WID_RX    2
1027 #define IBLND_WID_RDMA  3
1028 #define IBLND_WID_MR    4
1029 #define IBLND_WID_MASK  7UL
1030
1031 static inline __u64
1032 kiblnd_ptr2wreqid (void *ptr, int type)
1033 {
1034         unsigned long lptr = (unsigned long)ptr;
1035
1036         LASSERT ((lptr & IBLND_WID_MASK) == 0);
1037         LASSERT ((type & ~IBLND_WID_MASK) == 0);
1038         return (__u64)(lptr | type);
1039 }
1040
1041 static inline void *
1042 kiblnd_wreqid2ptr (__u64 wreqid)
1043 {
1044         return (void *)(((unsigned long)wreqid) & ~IBLND_WID_MASK);
1045 }
1046
1047 static inline int
1048 kiblnd_wreqid2type (__u64 wreqid)
1049 {
1050         return (wreqid & IBLND_WID_MASK);
1051 }
1052
1053 static inline void
1054 kiblnd_set_conn_state(struct kib_conn *conn, int state)
1055 {
1056         conn->ibc_state = state;
1057         smp_mb();
1058 }
1059
1060 static inline void
1061 kiblnd_init_msg(struct kib_msg *msg, int type, int body_nob)
1062 {
1063         msg->ibm_type = type;
1064         msg->ibm_nob = offsetof(struct kib_msg, ibm_u) + body_nob;
1065 }
1066
1067 static inline int
1068 kiblnd_rd_size(struct kib_rdma_desc *rd)
1069 {
1070         int   i;
1071         int   size;
1072
1073         for (i = size = 0; i < rd->rd_nfrags; i++)
1074                 size += rd->rd_frags[i].rf_nob;
1075
1076         return size;
1077 }
1078
1079 static inline __u64
1080 kiblnd_rd_frag_addr(struct kib_rdma_desc *rd, int index)
1081 {
1082         return rd->rd_frags[index].rf_addr;
1083 }
1084
1085 static inline int
1086 kiblnd_rd_frag_size(struct kib_rdma_desc *rd, int index)
1087 {
1088         return rd->rd_frags[index].rf_nob;
1089 }
1090
1091 static inline __u32
1092 kiblnd_rd_frag_key(struct kib_rdma_desc *rd, int index)
1093 {
1094         return rd->rd_key;
1095 }
1096
1097 static inline int
1098 kiblnd_rd_consume_frag(struct kib_rdma_desc *rd, int index, __u32 nob)
1099 {
1100         if (nob < rd->rd_frags[index].rf_nob) {
1101                 rd->rd_frags[index].rf_addr += nob;
1102                 rd->rd_frags[index].rf_nob  -= nob;
1103         } else {
1104                 index ++;
1105         }
1106
1107         return index;
1108 }
1109
1110 static inline int
1111 kiblnd_rd_msg_size(struct kib_rdma_desc *rd, int msgtype, int n)
1112 {
1113         LASSERT (msgtype == IBLND_MSG_GET_REQ ||
1114                  msgtype == IBLND_MSG_PUT_ACK);
1115
1116         return msgtype == IBLND_MSG_GET_REQ ?
1117                offsetof(struct kib_get_msg, ibgm_rd.rd_frags[n]) :
1118                offsetof(struct kib_putack_msg, ibpam_rd.rd_frags[n]);
1119 }
1120
1121 static inline __u64
1122 kiblnd_dma_mapping_error(struct ib_device *dev, u64 dma_addr)
1123 {
1124         return ib_dma_mapping_error(dev, dma_addr);
1125 }
1126
1127 static inline __u64 kiblnd_dma_map_single(struct ib_device *dev,
1128                                           void *msg, size_t size,
1129                                           enum dma_data_direction direction)
1130 {
1131         return ib_dma_map_single(dev, msg, size, direction);
1132 }
1133
1134 static inline void kiblnd_dma_unmap_single(struct ib_device *dev,
1135                                            __u64 addr, size_t size,
1136                                           enum dma_data_direction direction)
1137 {
1138         ib_dma_unmap_single(dev, addr, size, direction);
1139 }
1140
1141 #define KIBLND_UNMAP_ADDR_SET(p, m, a)  do {} while (0)
1142 #define KIBLND_UNMAP_ADDR(p, m, a)      (a)
1143
1144 static inline int kiblnd_dma_map_sg(struct ib_device *dev,
1145                                     struct scatterlist *sg, int nents,
1146                                     enum dma_data_direction direction)
1147 {
1148         return ib_dma_map_sg(dev, sg, nents, direction);
1149 }
1150
1151 static inline void kiblnd_dma_unmap_sg(struct ib_device *dev,
1152                                        struct scatterlist *sg, int nents,
1153                                        enum dma_data_direction direction)
1154 {
1155         ib_dma_unmap_sg(dev, sg, nents, direction);
1156 }
1157
1158 #ifndef HAVE_IB_SG_DMA_ADDRESS
1159 #include <linux/scatterlist.h>
1160 #define ib_sg_dma_address(dev, sg)      sg_dma_address(sg)
1161 #define ib_sg_dma_len(dev, sg)          sg_dma_len(sg)
1162 #endif
1163
1164 static inline __u64 kiblnd_sg_dma_address(struct ib_device *dev,
1165                                           struct scatterlist *sg)
1166 {
1167         return ib_sg_dma_address(dev, sg);
1168 }
1169
1170 static inline unsigned int kiblnd_sg_dma_len(struct ib_device *dev,
1171                                              struct scatterlist *sg)
1172 {
1173         return ib_sg_dma_len(dev, sg);
1174 }
1175
1176 /* XXX We use KIBLND_CONN_PARAM(e) as writable buffer, it's not strictly
1177  * right because OFED1.2 defines it as const, to use it we have to add
1178  * (void *) cast to overcome "const" */
1179
1180 #define KIBLND_CONN_PARAM(e)            ((e)->param.conn.private_data)
1181 #define KIBLND_CONN_PARAM_LEN(e)        ((e)->param.conn.private_data_len)
1182
1183 void kiblnd_abort_txs(struct kib_conn *conn, struct list_head *txs);
1184 void kiblnd_map_rx_descs(struct kib_conn *conn);
1185 void kiblnd_unmap_rx_descs(struct kib_conn *conn);
1186 void kiblnd_pool_free_node(struct kib_pool *pool, struct list_head *node);
1187 struct list_head *kiblnd_pool_alloc_node(struct kib_poolset *ps);
1188
1189 int kiblnd_fmr_pool_map(struct kib_fmr_poolset *fps, struct kib_tx *tx,
1190                         struct kib_rdma_desc *rd, u32 nob, u64 iov,
1191                         struct kib_fmr *fmr);
1192 void kiblnd_fmr_pool_unmap(struct kib_fmr *fmr, int status);
1193
1194 int  kiblnd_tunables_setup(struct lnet_ni *ni);
1195 int  kiblnd_tunables_init(void);
1196
1197 int  kiblnd_connd (void *arg);
1198 int  kiblnd_scheduler(void *arg);
1199 int  kiblnd_thread_start(int (*fn)(void *arg), void *arg, char *name);
1200 int  kiblnd_failover_thread (void *arg);
1201
1202 int kiblnd_alloc_pages(struct kib_pages **pp, int cpt, int npages);
1203
1204 int  kiblnd_cm_callback(struct rdma_cm_id *cmid,
1205                         struct rdma_cm_event *event);
1206 int  kiblnd_translate_mtu(int value);
1207
1208 int  kiblnd_dev_failover(struct kib_dev *dev, struct net *ns);
1209 int kiblnd_create_peer(struct lnet_ni *ni, struct kib_peer_ni **peerp,
1210                        lnet_nid_t nid);
1211 void kiblnd_destroy_peer(struct kib_peer_ni *peer);
1212 bool kiblnd_reconnect_peer(struct kib_peer_ni *peer);
1213 void kiblnd_destroy_dev(struct kib_dev *dev);
1214 void kiblnd_unlink_peer_locked(struct kib_peer_ni *peer_ni);
1215 struct kib_peer_ni *kiblnd_find_peer_locked(struct lnet_ni *ni, lnet_nid_t nid);
1216 int  kiblnd_close_stale_conns_locked(struct kib_peer_ni *peer_ni,
1217                                      int version, u64 incarnation);
1218 int  kiblnd_close_peer_conns_locked(struct kib_peer_ni *peer_ni, int why);
1219
1220 struct kib_conn *kiblnd_create_conn(struct kib_peer_ni *peer_ni,
1221                                     struct rdma_cm_id *cmid,
1222                                     int state, int version);
1223 void kiblnd_destroy_conn(struct kib_conn *conn);
1224 void kiblnd_close_conn(struct kib_conn *conn, int error);
1225 void kiblnd_close_conn_locked(struct kib_conn *conn, int error);
1226
1227 void kiblnd_launch_tx(struct lnet_ni *ni, struct kib_tx *tx, lnet_nid_t nid);
1228 void kiblnd_txlist_done(struct list_head *txlist, int status,
1229                         enum lnet_msg_hstatus hstatus);
1230
1231 void kiblnd_qp_event(struct ib_event *event, void *arg);
1232 void kiblnd_cq_event(struct ib_event *event, void *arg);
1233 void kiblnd_cq_completion(struct ib_cq *cq, void *arg);
1234
1235 void kiblnd_pack_msg(struct lnet_ni *ni, struct kib_msg *msg, int version,
1236                      int credits, lnet_nid_t dstnid, __u64 dststamp);
1237 int kiblnd_unpack_msg(struct kib_msg *msg, int nob);
1238 int kiblnd_post_rx(struct kib_rx *rx, int credit);
1239
1240 int kiblnd_send(struct lnet_ni *ni, void *private, struct lnet_msg *lntmsg);
1241 int kiblnd_recv(struct lnet_ni *ni, void *private, struct lnet_msg *lntmsg,
1242                 int delayed, unsigned int niov,
1243                 struct bio_vec *kiov, unsigned int offset, unsigned int mlen,
1244                 unsigned int rlen);
1245