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