Whamcloud - gitweb
LU-13581 build: xarray and lockdep_is_held const clash
[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         /*
441          * The second that peers are pulled out from \a kib_reconn_wait
442          * for reconnection.
443          */
444         time64_t                kib_reconn_sec;
445         /* connection daemon sleeps here */
446         wait_queue_head_t       kib_connd_waitq;
447         spinlock_t              kib_connd_lock; /* serialise */
448         struct ib_qp_attr       kib_error_qpa;  /* QP->ERROR */
449         /* percpt data for schedulers */
450         struct kib_sched_info   **kib_scheds;
451 };
452
453 #define IBLND_INIT_NOTHING         0
454 #define IBLND_INIT_DATA            1
455 #define IBLND_INIT_ALL             2
456
457 /************************************************************************
458  * IB Wire message format.
459  * These are sent in sender's byte order (i.e. receiver flips).
460  */
461
462 struct kib_connparams {
463         __u16             ibcp_queue_depth;
464         __u16             ibcp_max_frags;
465         __u32             ibcp_max_msg_size;
466 } WIRE_ATTR;
467
468 struct kib_immediate_msg {
469         struct lnet_hdr         ibim_hdr;       /* portals header */
470         char                    ibim_payload[0];/* piggy-backed payload */
471 } WIRE_ATTR;
472
473 struct kib_rdma_frag {
474         __u32             rf_nob;               /* # bytes this frag */
475         __u64             rf_addr;              /* CAVEAT EMPTOR: misaligned!! */
476 } WIRE_ATTR;
477
478 struct kib_rdma_desc {
479         __u32                   rd_key;         /* local/remote key */
480         __u32                   rd_nfrags;      /* # fragments */
481         struct kib_rdma_frag    rd_frags[0];    /* buffer frags */
482 } WIRE_ATTR;
483
484 struct kib_putreq_msg {
485         struct lnet_hdr         ibprm_hdr;      /* portals header */
486         __u64                   ibprm_cookie;   /* opaque completion cookie */
487 } WIRE_ATTR;
488
489 struct kib_putack_msg {
490         __u64             ibpam_src_cookie;     /* reflected completion cookie */
491         __u64             ibpam_dst_cookie;     /* opaque completion cookie */
492         struct kib_rdma_desc    ibpam_rd;       /* sender's sink buffer */
493 } WIRE_ATTR;
494
495 struct kib_get_msg {
496         struct lnet_hdr         ibgm_hdr;       /* portals header */
497         __u64                   ibgm_cookie;    /* opaque completion cookie */
498         struct kib_rdma_desc    ibgm_rd;        /* rdma descriptor */
499 } WIRE_ATTR;
500
501 struct kib_completion_msg {
502         __u64             ibcm_cookie;          /* opaque completion cookie */
503         __s32             ibcm_status;          /* < 0 failure: >= 0 length */
504 } WIRE_ATTR;
505
506 struct kib_msg {
507         /* First 2 fields fixed FOR ALL TIME */
508         __u32             ibm_magic;            /* I'm an ibnal message */
509         __u16             ibm_version;          /* this is my version number */
510
511         __u8              ibm_type;             /* msg type */
512         __u8              ibm_credits;          /* returned credits */
513         __u32             ibm_nob;              /* # bytes in whole message */
514         __u32             ibm_cksum;            /* checksum (0 == no checksum) */
515         __u64             ibm_srcnid;           /* sender's NID */
516         __u64             ibm_srcstamp;         /* sender's incarnation */
517         __u64             ibm_dstnid;           /* destination's NID */
518         __u64             ibm_dststamp;         /* destination's incarnation */
519
520         union {
521                 struct kib_connparams           connparams;
522                 struct kib_immediate_msg        immediate;
523                 struct kib_putreq_msg           putreq;
524                 struct kib_putack_msg           putack;
525                 struct kib_get_msg              get;
526                 struct kib_completion_msg       completion;
527         } WIRE_ATTR ibm_u;
528 } WIRE_ATTR;
529
530 #define IBLND_MSG_MAGIC LNET_PROTO_IB_MAGIC     /* unique magic */
531
532 #define IBLND_MSG_VERSION_1         0x11
533 #define IBLND_MSG_VERSION_2         0x12
534 #define IBLND_MSG_VERSION           IBLND_MSG_VERSION_2
535
536 #define IBLND_MSG_CONNREQ           0xc0        /* connection request */
537 #define IBLND_MSG_CONNACK           0xc1        /* connection acknowledge */
538 #define IBLND_MSG_NOOP              0xd0        /* nothing (just credits) */
539 #define IBLND_MSG_IMMEDIATE         0xd1        /* immediate */
540 #define IBLND_MSG_PUT_REQ           0xd2        /* putreq (src->sink) */
541 #define IBLND_MSG_PUT_NAK           0xd3        /* completion (sink->src) */
542 #define IBLND_MSG_PUT_ACK           0xd4        /* putack (sink->src) */
543 #define IBLND_MSG_PUT_DONE          0xd5        /* completion (src->sink) */
544 #define IBLND_MSG_GET_REQ           0xd6        /* getreq (sink->src) */
545 #define IBLND_MSG_GET_DONE          0xd7        /* completion (src->sink: all OK) */
546
547 struct kib_rej {
548         __u32            ibr_magic;             /* sender's magic */
549         __u16            ibr_version;           /* sender's version */
550         __u8             ibr_why;               /* reject reason */
551         __u8             ibr_padding;           /* padding */
552         __u64            ibr_incarnation;       /* incarnation of peer_ni */
553         struct kib_connparams   ibr_cp;         /* connection parameters */
554 } WIRE_ATTR;
555
556 /* connection rejection reasons */
557 #define IBLND_REJECT_CONN_RACE       1          /* You lost connection race */
558 #define IBLND_REJECT_NO_RESOURCES    2          /* Out of memory/conns etc */
559 #define IBLND_REJECT_FATAL           3          /* Anything else */
560
561 #define IBLND_REJECT_CONN_UNCOMPAT   4          /* incompatible version peer_ni */
562 #define IBLND_REJECT_CONN_STALE      5          /* stale peer_ni */
563
564 /* peer_ni's rdma frags doesn't match mine */
565 #define IBLND_REJECT_RDMA_FRAGS      6
566 /* peer_ni's msg queue size doesn't match mine */
567 #define IBLND_REJECT_MSG_QUEUE_SIZE  7
568 #define IBLND_REJECT_INVALID_SRV_ID  8
569
570 /***********************************************************************/
571
572 struct kib_rx {                                 /* receive message */
573         /* queue for attention */
574         struct list_head        rx_list;
575         /* owning conn */
576         struct kib_conn        *rx_conn;
577         /* # bytes received (-1 while posted) */
578         int                     rx_nob;
579         /* message buffer (host vaddr) */
580         struct kib_msg         *rx_msg;
581         /* message buffer (I/O addr) */
582         __u64                   rx_msgaddr;
583         /* for dma_unmap_single() */
584         DEFINE_DMA_UNMAP_ADDR(rx_msgunmap);
585         /* receive work item... */
586         struct ib_recv_wr       rx_wrq;
587         /* ...and its memory */
588         struct ib_sge           rx_sge;
589 };
590
591 #define IBLND_POSTRX_DONT_POST    0             /* don't post */
592 #define IBLND_POSTRX_NO_CREDIT    1             /* post: no credits */
593 #define IBLND_POSTRX_PEER_CREDIT  2             /* post: give peer_ni back 1 credit */
594 #define IBLND_POSTRX_RSRVD_CREDIT 3             /* post: give myself back 1 reserved credit */
595
596 struct kib_tx {                                 /* transmit message */
597         /* queue on idle_txs ibc_tx_queue etc. */
598         struct list_head        tx_list;
599         /* pool I'm from */
600         struct kib_tx_pool      *tx_pool;
601         /* owning conn */
602         struct kib_conn         *tx_conn;
603         /* # tx callbacks outstanding */
604         short                   tx_sending;
605         /* queued for sending */
606         short                   tx_queued;
607         /* waiting for peer_ni */
608         short                   tx_waiting;
609         /* LNET completion status */
610         int                     tx_status;
611         /* health status of the transmit */
612         enum lnet_msg_hstatus   tx_hstatus;
613         /* completion deadline */
614         ktime_t                 tx_deadline;
615         /* completion cookie */
616         __u64                   tx_cookie;
617         /* lnet msgs to finalize on completion */
618         struct lnet_msg         *tx_lntmsg[2];
619         /* message buffer (host vaddr) */
620         struct kib_msg          *tx_msg;
621         /* message buffer (I/O addr) */
622         __u64                   tx_msgaddr;
623         /* for dma_unmap_single() */
624         DEFINE_DMA_UNMAP_ADDR(tx_msgunmap);
625         /** sge for tx_msgaddr */
626         struct ib_sge           tx_msgsge;
627         /* # send work items */
628         int                     tx_nwrq;
629         /* # used scatter/gather elements */
630         int                     tx_nsge;
631         /* send work items... */
632         struct ib_rdma_wr       *tx_wrq;
633         /* ...and their memory */
634         struct ib_sge           *tx_sge;
635         /* rdma descriptor */
636         struct kib_rdma_desc    *tx_rd;
637         /* # entries in... */
638         int                     tx_nfrags;
639         /* dma_map_sg descriptor */
640         struct scatterlist      *tx_frags;
641         /* rdma phys page addrs */
642         __u64                   *tx_pages;
643         /* gaps in fragments */
644         bool                    tx_gaps;
645         /* FMR */
646         struct kib_fmr          tx_fmr;
647                                 /* dma direction */
648         int                     tx_dmadir;
649 };
650
651 struct kib_connvars {
652         /* connection-in-progress variables */
653         struct kib_msg          cv_msg;
654 };
655
656 struct kib_conn {
657         /* scheduler information */
658         struct kib_sched_info   *ibc_sched;
659         /* owning peer_ni */
660         struct kib_peer_ni      *ibc_peer;
661         /* HCA bound on */
662         struct kib_hca_dev      *ibc_hdev;
663         /* stash on peer_ni's conn list */
664         struct list_head        ibc_list;
665         /* schedule for attention */
666         struct list_head        ibc_sched_list;
667         /* version of connection */
668         __u16                   ibc_version;
669         /* reconnect later */
670         __u16                   ibc_reconnect:1;
671         /* which instance of the peer */
672         __u64                   ibc_incarnation;
673         /* # users */
674         atomic_t                ibc_refcount;
675         /* what's happening */
676         int                     ibc_state;
677         /* # uncompleted sends */
678         int                     ibc_nsends_posted;
679         /* # uncompleted NOOPs */
680         int                     ibc_noops_posted;
681         /* # credits I have */
682         int                     ibc_credits;
683         /* # credits to return */
684         int                     ibc_outstanding_credits;
685         /* # ACK/DONE msg credits */
686         int                     ibc_reserved_credits;
687         /* set on comms error */
688         int                     ibc_comms_error;
689         /* connections queue depth */
690         __u16                   ibc_queue_depth;
691         /* connections max frags */
692         __u16                   ibc_max_frags;
693         /* receive buffers owned */
694         unsigned int            ibc_nrx:16;
695         /* scheduled for attention */
696         unsigned int            ibc_scheduled:1;
697         /* CQ callback fired */
698         unsigned int            ibc_ready:1;
699         /* time of last send */
700         ktime_t                 ibc_last_send;
701         /** link chain for kiblnd_check_conns only */
702         struct list_head        ibc_connd_list;
703         /** rxs completed before ESTABLISHED */
704         struct list_head        ibc_early_rxs;
705         /** IBLND_MSG_NOOPs for IBLND_MSG_VERSION_1 */
706         struct list_head        ibc_tx_noops;
707         /* sends that need a credit */
708         struct list_head        ibc_tx_queue;
709         /* sends that don't need a credit */
710         struct list_head        ibc_tx_queue_nocred;
711         /* sends that need to reserve an ACK/DONE msg */
712         struct list_head        ibc_tx_queue_rsrvd;
713         /* active tx awaiting completion */
714         struct list_head        ibc_active_txs;
715         /* zombie tx awaiting done */
716         struct list_head        ibc_zombie_txs;
717         /* serialise */
718         spinlock_t              ibc_lock;
719         /* the rx descs */
720         struct kib_rx           *ibc_rxs;
721         /* premapped rx msg pages */
722         struct kib_pages        *ibc_rx_pages;
723
724         /* CM id */
725         struct rdma_cm_id       *ibc_cmid;
726         /* completion queue */
727         struct ib_cq            *ibc_cq;
728
729         /* in-progress connection state */
730         struct kib_connvars     *ibc_connvars;
731 };
732
733 #define IBLND_CONN_INIT               0         /* being initialised */
734 #define IBLND_CONN_ACTIVE_CONNECT     1         /* active sending req */
735 #define IBLND_CONN_PASSIVE_WAIT       2         /* passive waiting for rtu */
736 #define IBLND_CONN_ESTABLISHED        3         /* connection established */
737 #define IBLND_CONN_CLOSING            4         /* being closed */
738 #define IBLND_CONN_DISCONNECTED       5         /* disconnected */
739
740 struct kib_peer_ni {
741         /* stash on global peer_ni list */
742         struct list_head        ibp_list;
743         /* who's on the other end(s) */
744         lnet_nid_t              ibp_nid;
745         /* LNet interface */
746         struct lnet_ni          *ibp_ni;
747         /* all active connections */
748         struct list_head        ibp_conns;
749         /* next connection to send on for round robin */
750         struct kib_conn         *ibp_next_conn;
751         /* msgs waiting for a conn */
752         struct list_head        ibp_tx_queue;
753         /* incarnation of peer_ni */
754         __u64                   ibp_incarnation;
755         /* when (in seconds) I was last alive */
756         time64_t                ibp_last_alive;
757         /* # users */
758         atomic_t                ibp_refcount;
759         /* version of peer_ni */
760         __u16                   ibp_version;
761         /* current passive connection attempts */
762         unsigned short          ibp_accepting;
763         /* current active connection attempts */
764         unsigned short          ibp_connecting;
765         /* reconnect this peer_ni later */
766         unsigned char           ibp_reconnecting;
767         /* counter of how many times we triggered a conn race */
768         unsigned char           ibp_races;
769         /* # consecutive reconnection attempts to this peer */
770         unsigned int            ibp_reconnected;
771         /* errno on closing this peer_ni */
772         int                     ibp_error;
773         /* max map_on_demand */
774         __u16                   ibp_max_frags;
775         /* max_peer_credits */
776         __u16                   ibp_queue_depth;
777 };
778
779 #ifndef HAVE_IB_INC_RKEY
780 /**
781  * ib_inc_rkey - increments the key portion of the given rkey. Can be used
782  * for calculating a new rkey for type 2 memory windows.
783  * @rkey - the rkey to increment.
784  */
785 static inline u32 ib_inc_rkey(u32 rkey)
786 {
787         const u32 mask = 0x000000ff;
788         return ((rkey + 1) & mask) | (rkey & ~mask);
789 }
790 #endif
791
792 extern struct kib_data kiblnd_data;
793
794 extern void kiblnd_hdev_destroy(struct kib_hca_dev *hdev);
795
796 int kiblnd_msg_queue_size(int version, struct lnet_ni *ni);
797
798 static inline int kiblnd_timeout(void)
799 {
800         return *kiblnd_tunables.kib_timeout ? *kiblnd_tunables.kib_timeout :
801                 lnet_get_lnd_timeout();
802 }
803
804 static inline int
805 kiblnd_concurrent_sends(int version, struct lnet_ni *ni)
806 {
807         struct lnet_ioctl_config_o2iblnd_tunables *tunables;
808         int concurrent_sends;
809
810         tunables = &ni->ni_lnd_tunables.lnd_tun_u.lnd_o2ib;
811         concurrent_sends = tunables->lnd_concurrent_sends;
812
813         if (version == IBLND_MSG_VERSION_1) {
814                 if (concurrent_sends > IBLND_MSG_QUEUE_SIZE_V1 * 2)
815                         return IBLND_MSG_QUEUE_SIZE_V1 * 2;
816
817                 if (concurrent_sends < IBLND_MSG_QUEUE_SIZE_V1 / 2)
818                         return IBLND_MSG_QUEUE_SIZE_V1 / 2;
819         }
820
821         return concurrent_sends;
822 }
823
824 static inline void
825 kiblnd_hdev_addref_locked(struct kib_hca_dev *hdev)
826 {
827         LASSERT(atomic_read(&hdev->ibh_ref) > 0);
828         atomic_inc(&hdev->ibh_ref);
829 }
830
831 static inline void
832 kiblnd_hdev_decref(struct kib_hca_dev *hdev)
833 {
834         LASSERT(atomic_read(&hdev->ibh_ref) > 0);
835         if (atomic_dec_and_test(&hdev->ibh_ref))
836                 kiblnd_hdev_destroy(hdev);
837 }
838
839 static inline int
840 kiblnd_dev_can_failover(struct kib_dev *dev)
841 {
842         if (!list_empty(&dev->ibd_fail_list)) /* already scheduled */
843                 return 0;
844
845         if (*kiblnd_tunables.kib_dev_failover == 0) /* disabled */
846                 return 0;
847
848         if (*kiblnd_tunables.kib_dev_failover > 1) /* force failover */
849                 return 1;
850
851         return dev->ibd_can_failover;
852 }
853
854 #define kiblnd_conn_addref(conn)                                \
855 do {                                                            \
856         CDEBUG(D_NET, "conn[%p] (%d)++\n",                      \
857                (conn), atomic_read(&(conn)->ibc_refcount)); \
858         atomic_inc(&(conn)->ibc_refcount);                  \
859 } while (0)
860
861 #define kiblnd_conn_decref(conn)                                        \
862 do {                                                                    \
863         unsigned long flags;                                            \
864                                                                         \
865         CDEBUG(D_NET, "conn[%p] (%d)--\n",                              \
866                (conn), atomic_read(&(conn)->ibc_refcount));             \
867         LASSERT_ATOMIC_POS(&(conn)->ibc_refcount);                      \
868         if (atomic_dec_and_test(&(conn)->ibc_refcount)) {               \
869                 spin_lock_irqsave(&kiblnd_data.kib_connd_lock, flags);  \
870                 list_add_tail(&(conn)->ibc_list,                        \
871                                   &kiblnd_data.kib_connd_zombies);      \
872                 wake_up(&kiblnd_data.kib_connd_waitq);          \
873                 spin_unlock_irqrestore(&kiblnd_data.kib_connd_lock, flags);\
874         }                                                               \
875 } while (0)
876
877 #define kiblnd_peer_addref(peer_ni)                                \
878 do {                                                            \
879         CDEBUG(D_NET, "peer_ni[%p] -> %s (%d)++\n",                \
880                (peer_ni), libcfs_nid2str((peer_ni)->ibp_nid),         \
881                atomic_read (&(peer_ni)->ibp_refcount));         \
882         atomic_inc(&(peer_ni)->ibp_refcount);                   \
883 } while (0)
884
885 #define kiblnd_peer_decref(peer_ni)                                \
886 do {                                                            \
887         CDEBUG(D_NET, "peer_ni[%p] -> %s (%d)--\n",                \
888                (peer_ni), libcfs_nid2str((peer_ni)->ibp_nid),         \
889                atomic_read (&(peer_ni)->ibp_refcount));         \
890         LASSERT_ATOMIC_POS(&(peer_ni)->ibp_refcount);              \
891         if (atomic_dec_and_test(&(peer_ni)->ibp_refcount))      \
892                 kiblnd_destroy_peer(peer_ni);                      \
893 } while (0)
894
895 static inline bool
896 kiblnd_peer_connecting(struct kib_peer_ni *peer_ni)
897 {
898         return peer_ni->ibp_connecting != 0 ||
899                peer_ni->ibp_reconnecting != 0 ||
900                peer_ni->ibp_accepting != 0;
901 }
902
903 static inline bool
904 kiblnd_peer_idle(struct kib_peer_ni *peer_ni)
905 {
906         return !kiblnd_peer_connecting(peer_ni) && list_empty(&peer_ni->ibp_conns);
907 }
908
909 static inline struct list_head *
910 kiblnd_nid2peerlist (lnet_nid_t nid)
911 {
912         unsigned int hash =
913                 ((unsigned int)nid) % kiblnd_data.kib_peer_hash_size;
914
915         return &kiblnd_data.kib_peers[hash];
916 }
917
918 static inline int
919 kiblnd_peer_active(struct kib_peer_ni *peer_ni)
920 {
921         /* Am I in the peer_ni hash table? */
922         return !list_empty(&peer_ni->ibp_list);
923 }
924
925 static inline struct kib_conn *
926 kiblnd_get_conn_locked(struct kib_peer_ni *peer_ni)
927 {
928         struct list_head *next;
929
930         LASSERT(!list_empty(&peer_ni->ibp_conns));
931
932         /* Advance to next connection, be sure to skip the head node */
933         if (!peer_ni->ibp_next_conn ||
934             peer_ni->ibp_next_conn->ibc_list.next == &peer_ni->ibp_conns)
935                 next = peer_ni->ibp_conns.next;
936         else
937                 next = peer_ni->ibp_next_conn->ibc_list.next;
938         peer_ni->ibp_next_conn = list_entry(next, struct kib_conn, ibc_list);
939
940         return peer_ni->ibp_next_conn;
941 }
942
943 static inline int
944 kiblnd_send_keepalive(struct kib_conn *conn)
945 {
946         s64 keepalive_ns = *kiblnd_tunables.kib_keepalive * NSEC_PER_SEC;
947
948         return (*kiblnd_tunables.kib_keepalive > 0) &&
949                 ktime_after(ktime_get(),
950                             ktime_add_ns(conn->ibc_last_send, keepalive_ns));
951 }
952
953 static inline int
954 kiblnd_need_noop(struct kib_conn *conn)
955 {
956         struct lnet_ni *ni = conn->ibc_peer->ibp_ni;
957         struct lnet_ioctl_config_o2iblnd_tunables *tunables;
958
959         LASSERT(conn->ibc_state >= IBLND_CONN_ESTABLISHED);
960         tunables = &ni->ni_lnd_tunables.lnd_tun_u.lnd_o2ib;
961
962         if (conn->ibc_outstanding_credits <
963             IBLND_CREDITS_HIGHWATER(tunables, conn) &&
964             !kiblnd_send_keepalive(conn))
965                 return 0; /* No need to send NOOP */
966
967         if (IBLND_OOB_CAPABLE(conn->ibc_version)) {
968                 if (!list_empty(&conn->ibc_tx_queue_nocred))
969                         return 0; /* NOOP can be piggybacked */
970
971                 /* No tx to piggyback NOOP onto or no credit to send a tx */
972                 return (list_empty(&conn->ibc_tx_queue) ||
973                         conn->ibc_credits == 0);
974         }
975
976         if (!list_empty(&conn->ibc_tx_noops) || /* NOOP already queued */
977             !list_empty(&conn->ibc_tx_queue_nocred) || /* piggyback NOOP */
978             conn->ibc_credits == 0)                    /* no credit */
979                 return 0;
980
981         if (conn->ibc_credits == 1 &&      /* last credit reserved for */
982             conn->ibc_outstanding_credits == 0) /* giving back credits */
983                 return 0;
984
985         /* No tx to piggyback NOOP onto or no credit to send a tx */
986         return (list_empty(&conn->ibc_tx_queue) || conn->ibc_credits == 1);
987 }
988
989 static inline void
990 kiblnd_abort_receives(struct kib_conn *conn)
991 {
992         ib_modify_qp(conn->ibc_cmid->qp,
993                      &kiblnd_data.kib_error_qpa, IB_QP_STATE);
994 }
995
996 static inline const char *
997 kiblnd_queue2str(struct kib_conn *conn, struct list_head *q)
998 {
999         if (q == &conn->ibc_tx_queue)
1000                 return "tx_queue";
1001
1002         if (q == &conn->ibc_tx_queue_rsrvd)
1003                 return "tx_queue_rsrvd";
1004
1005         if (q == &conn->ibc_tx_queue_nocred)
1006                 return "tx_queue_nocred";
1007
1008         if (q == &conn->ibc_active_txs)
1009                 return "active_txs";
1010
1011         LBUG();
1012         return NULL;
1013 }
1014
1015 /* CAVEAT EMPTOR: We rely on descriptor alignment to allow us to use the
1016  * lowest bits of the work request id to stash the work item type. */
1017
1018 #define IBLND_WID_INVAL 0
1019 #define IBLND_WID_TX    1
1020 #define IBLND_WID_RX    2
1021 #define IBLND_WID_RDMA  3
1022 #define IBLND_WID_MR    4
1023 #define IBLND_WID_MASK  7UL
1024
1025 static inline __u64
1026 kiblnd_ptr2wreqid (void *ptr, int type)
1027 {
1028         unsigned long lptr = (unsigned long)ptr;
1029
1030         LASSERT ((lptr & IBLND_WID_MASK) == 0);
1031         LASSERT ((type & ~IBLND_WID_MASK) == 0);
1032         return (__u64)(lptr | type);
1033 }
1034
1035 static inline void *
1036 kiblnd_wreqid2ptr (__u64 wreqid)
1037 {
1038         return (void *)(((unsigned long)wreqid) & ~IBLND_WID_MASK);
1039 }
1040
1041 static inline int
1042 kiblnd_wreqid2type (__u64 wreqid)
1043 {
1044         return (wreqid & IBLND_WID_MASK);
1045 }
1046
1047 static inline void
1048 kiblnd_set_conn_state(struct kib_conn *conn, int state)
1049 {
1050         conn->ibc_state = state;
1051         smp_mb();
1052 }
1053
1054 static inline void
1055 kiblnd_init_msg(struct kib_msg *msg, int type, int body_nob)
1056 {
1057         msg->ibm_type = type;
1058         msg->ibm_nob = offsetof(struct kib_msg, ibm_u) + body_nob;
1059 }
1060
1061 static inline int
1062 kiblnd_rd_size(struct kib_rdma_desc *rd)
1063 {
1064         int   i;
1065         int   size;
1066
1067         for (i = size = 0; i < rd->rd_nfrags; i++)
1068                 size += rd->rd_frags[i].rf_nob;
1069
1070         return size;
1071 }
1072
1073 static inline __u64
1074 kiblnd_rd_frag_addr(struct kib_rdma_desc *rd, int index)
1075 {
1076         return rd->rd_frags[index].rf_addr;
1077 }
1078
1079 static inline int
1080 kiblnd_rd_frag_size(struct kib_rdma_desc *rd, int index)
1081 {
1082         return rd->rd_frags[index].rf_nob;
1083 }
1084
1085 static inline __u32
1086 kiblnd_rd_frag_key(struct kib_rdma_desc *rd, int index)
1087 {
1088         return rd->rd_key;
1089 }
1090
1091 static inline int
1092 kiblnd_rd_consume_frag(struct kib_rdma_desc *rd, int index, __u32 nob)
1093 {
1094         if (nob < rd->rd_frags[index].rf_nob) {
1095                 rd->rd_frags[index].rf_addr += nob;
1096                 rd->rd_frags[index].rf_nob  -= nob;
1097         } else {
1098                 index ++;
1099         }
1100
1101         return index;
1102 }
1103
1104 static inline int
1105 kiblnd_rd_msg_size(struct kib_rdma_desc *rd, int msgtype, int n)
1106 {
1107         LASSERT (msgtype == IBLND_MSG_GET_REQ ||
1108                  msgtype == IBLND_MSG_PUT_ACK);
1109
1110         return msgtype == IBLND_MSG_GET_REQ ?
1111                offsetof(struct kib_get_msg, ibgm_rd.rd_frags[n]) :
1112                offsetof(struct kib_putack_msg, ibpam_rd.rd_frags[n]);
1113 }
1114
1115 static inline __u64
1116 kiblnd_dma_mapping_error(struct ib_device *dev, u64 dma_addr)
1117 {
1118         return ib_dma_mapping_error(dev, dma_addr);
1119 }
1120
1121 static inline __u64 kiblnd_dma_map_single(struct ib_device *dev,
1122                                           void *msg, size_t size,
1123                                           enum dma_data_direction direction)
1124 {
1125         return ib_dma_map_single(dev, msg, size, direction);
1126 }
1127
1128 static inline void kiblnd_dma_unmap_single(struct ib_device *dev,
1129                                            __u64 addr, size_t size,
1130                                           enum dma_data_direction direction)
1131 {
1132         ib_dma_unmap_single(dev, addr, size, direction);
1133 }
1134
1135 #define KIBLND_UNMAP_ADDR_SET(p, m, a)  do {} while (0)
1136 #define KIBLND_UNMAP_ADDR(p, m, a)      (a)
1137
1138 static inline int kiblnd_dma_map_sg(struct ib_device *dev,
1139                                     struct scatterlist *sg, int nents,
1140                                     enum dma_data_direction direction)
1141 {
1142         return ib_dma_map_sg(dev, sg, nents, direction);
1143 }
1144
1145 static inline void kiblnd_dma_unmap_sg(struct ib_device *dev,
1146                                        struct scatterlist *sg, int nents,
1147                                        enum dma_data_direction direction)
1148 {
1149         ib_dma_unmap_sg(dev, sg, nents, direction);
1150 }
1151
1152 #ifndef HAVE_IB_SG_DMA_ADDRESS
1153 #include <linux/scatterlist.h>
1154 #define ib_sg_dma_address(dev, sg)      sg_dma_address(sg)
1155 #define ib_sg_dma_len(dev, sg)          sg_dma_len(sg)
1156 #endif
1157
1158 static inline __u64 kiblnd_sg_dma_address(struct ib_device *dev,
1159                                           struct scatterlist *sg)
1160 {
1161         return ib_sg_dma_address(dev, sg);
1162 }
1163
1164 static inline unsigned int kiblnd_sg_dma_len(struct ib_device *dev,
1165                                              struct scatterlist *sg)
1166 {
1167         return ib_sg_dma_len(dev, sg);
1168 }
1169
1170 /* XXX We use KIBLND_CONN_PARAM(e) as writable buffer, it's not strictly
1171  * right because OFED1.2 defines it as const, to use it we have to add
1172  * (void *) cast to overcome "const" */
1173
1174 #define KIBLND_CONN_PARAM(e)            ((e)->param.conn.private_data)
1175 #define KIBLND_CONN_PARAM_LEN(e)        ((e)->param.conn.private_data_len)
1176
1177 void kiblnd_abort_txs(struct kib_conn *conn, struct list_head *txs);
1178 void kiblnd_map_rx_descs(struct kib_conn *conn);
1179 void kiblnd_unmap_rx_descs(struct kib_conn *conn);
1180 void kiblnd_pool_free_node(struct kib_pool *pool, struct list_head *node);
1181 struct list_head *kiblnd_pool_alloc_node(struct kib_poolset *ps);
1182
1183 int kiblnd_fmr_pool_map(struct kib_fmr_poolset *fps, struct kib_tx *tx,
1184                         struct kib_rdma_desc *rd, u32 nob, u64 iov,
1185                         struct kib_fmr *fmr);
1186 void kiblnd_fmr_pool_unmap(struct kib_fmr *fmr, int status);
1187
1188 int  kiblnd_tunables_setup(struct lnet_ni *ni);
1189 int  kiblnd_tunables_init(void);
1190
1191 int  kiblnd_connd (void *arg);
1192 int  kiblnd_scheduler(void *arg);
1193 int  kiblnd_thread_start(int (*fn)(void *arg), void *arg, char *name);
1194 int  kiblnd_failover_thread (void *arg);
1195
1196 int kiblnd_alloc_pages(struct kib_pages **pp, int cpt, int npages);
1197
1198 int  kiblnd_cm_callback(struct rdma_cm_id *cmid,
1199                         struct rdma_cm_event *event);
1200 int  kiblnd_translate_mtu(int value);
1201
1202 int  kiblnd_dev_failover(struct kib_dev *dev, struct net *ns);
1203 int kiblnd_create_peer(struct lnet_ni *ni, struct kib_peer_ni **peerp,
1204                        lnet_nid_t nid);
1205 void kiblnd_destroy_peer(struct kib_peer_ni *peer);
1206 bool kiblnd_reconnect_peer(struct kib_peer_ni *peer);
1207 void kiblnd_destroy_dev(struct kib_dev *dev);
1208 void kiblnd_unlink_peer_locked(struct kib_peer_ni *peer_ni);
1209 struct kib_peer_ni *kiblnd_find_peer_locked(struct lnet_ni *ni, lnet_nid_t nid);
1210 int  kiblnd_close_stale_conns_locked(struct kib_peer_ni *peer_ni,
1211                                      int version, u64 incarnation);
1212 int  kiblnd_close_peer_conns_locked(struct kib_peer_ni *peer_ni, int why);
1213
1214 struct kib_conn *kiblnd_create_conn(struct kib_peer_ni *peer_ni,
1215                                     struct rdma_cm_id *cmid,
1216                                     int state, int version);
1217 void kiblnd_destroy_conn(struct kib_conn *conn);
1218 void kiblnd_close_conn(struct kib_conn *conn, int error);
1219 void kiblnd_close_conn_locked(struct kib_conn *conn, int error);
1220
1221 void kiblnd_launch_tx(struct lnet_ni *ni, struct kib_tx *tx, lnet_nid_t nid);
1222 void kiblnd_txlist_done(struct list_head *txlist, int status,
1223                         enum lnet_msg_hstatus hstatus);
1224
1225 void kiblnd_qp_event(struct ib_event *event, void *arg);
1226 void kiblnd_cq_event(struct ib_event *event, void *arg);
1227 void kiblnd_cq_completion(struct ib_cq *cq, void *arg);
1228
1229 void kiblnd_pack_msg(struct lnet_ni *ni, struct kib_msg *msg, int version,
1230                      int credits, lnet_nid_t dstnid, __u64 dststamp);
1231 int kiblnd_unpack_msg(struct kib_msg *msg, int nob);
1232 int kiblnd_post_rx(struct kib_rx *rx, int credit);
1233
1234 int kiblnd_send(struct lnet_ni *ni, void *private, struct lnet_msg *lntmsg);
1235 int kiblnd_recv(struct lnet_ni *ni, void *private, struct lnet_msg *lntmsg,
1236                 int delayed, unsigned int niov,
1237                 struct bio_vec *kiov, unsigned int offset, unsigned int mlen,
1238                 unsigned int rlen);
1239