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