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