Whamcloud - gitweb
LU-6215 o2iblnd: port to new fast reg API introduced in 4.4
[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 struct kib_fast_reg_descriptor { /* For fast registration */
314         struct list_head                 frd_list;
315         struct ib_send_wr                frd_inv_wr;
316 #ifdef HAVE_IB_MAP_MR_SG
317         struct ib_reg_wr                 frd_fastreg_wr;
318 #else
319         struct ib_send_wr                frd_fastreg_wr;
320         struct ib_fast_reg_page_list    *frd_frpl;
321 #endif
322         struct ib_mr                    *frd_mr;
323         bool                             frd_valid;
324 };
325
326 typedef struct
327 {
328         struct list_head        fpo_list;       /* chain on pool list */
329         struct kib_hca_dev     *fpo_hdev;       /* device for this pool */
330         kib_fmr_poolset_t      *fpo_owner;      /* owner of this pool */
331         union {
332                 struct {
333                         struct ib_fmr_pool *fpo_fmr_pool; /* IB FMR pool */
334                 } fmr;
335                 struct { /* For fast registration */
336                         struct list_head  fpo_pool_list;
337                         int               fpo_pool_size;
338                 } fast_reg;
339         };
340         cfs_time_t              fpo_deadline;   /* deadline of this pool */
341         int                     fpo_failed;     /* fmr pool is failed */
342         int                     fpo_map_count;  /* # of mapped FMR */
343         int                     fpo_is_fmr;
344 } kib_fmr_pool_t;
345
346 typedef struct {
347         kib_fmr_pool_t                  *fmr_pool;      /* pool of FMR */
348         struct ib_pool_fmr              *fmr_pfmr;      /* IB pool fmr */
349         struct kib_fast_reg_descriptor  *fmr_frd;
350         u32                              fmr_key;
351 } kib_fmr_t;
352
353 typedef struct kib_net
354 {
355         /* chain on kib_dev_t::ibd_nets */
356         struct list_head        ibn_list;
357         __u64                   ibn_incarnation;/* my epoch */
358         int                     ibn_init;       /* initialisation state */
359         int                     ibn_shutdown;   /* shutting down? */
360
361         atomic_t                ibn_npeers;     /* # peers extant */
362         atomic_t                ibn_nconns;     /* # connections extant */
363
364         kib_tx_poolset_t        **ibn_tx_ps;    /* tx pool-set */
365         kib_fmr_poolset_t       **ibn_fmr_ps;   /* fmr pool-set */
366
367         kib_dev_t               *ibn_dev;       /* underlying IB device */
368 } kib_net_t;
369
370 #define KIB_THREAD_SHIFT                16
371 #define KIB_THREAD_ID(cpt, tid)         ((cpt) << KIB_THREAD_SHIFT | (tid))
372 #define KIB_THREAD_CPT(id)              ((id) >> KIB_THREAD_SHIFT)
373 #define KIB_THREAD_TID(id)              ((id) & ((1UL << KIB_THREAD_SHIFT) - 1))
374
375 struct kib_sched_info {
376         /* serialise */
377         spinlock_t              ibs_lock;
378         /* schedulers sleep here */
379         wait_queue_head_t       ibs_waitq;
380         /* conns to check for rx completions */
381         struct list_head        ibs_conns;
382         /* number of scheduler threads */
383         int                     ibs_nthreads;
384         /* max allowed scheduler threads */
385         int                     ibs_nthreads_max;
386         int                     ibs_cpt;        /* CPT id */
387 };
388
389 typedef struct
390 {
391         int                     kib_init;       /* initialisation state */
392         int                     kib_shutdown;   /* shut down? */
393         struct list_head        kib_devs;       /* IB devices extant */
394         /* list head of failed devices */
395         struct list_head        kib_failed_devs;
396         /* schedulers sleep here */
397         wait_queue_head_t       kib_failover_waitq;
398         atomic_t                kib_nthreads;   /* # live threads */
399         /* stabilize net/dev/peer/conn ops */
400         rwlock_t                kib_global_lock;
401         /* hash table of all my known peers */
402         struct list_head        *kib_peers;
403         /* size of kib_peers */
404         int                     kib_peer_hash_size;
405         /* the connd task (serialisation assertions) */
406         void                    *kib_connd;
407         /* connections to setup/teardown */
408         struct list_head        kib_connd_conns;
409         /* connections with zero refcount */
410         struct list_head        kib_connd_zombies;
411         /* connections to reconnect */
412         struct list_head        kib_reconn_list;
413         /* peers wait for reconnection */
414         struct list_head        kib_reconn_wait;
415         /*
416          * The second that peers are pulled out from \a kib_reconn_wait
417          * for reconnection.
418          */
419         unsigned int            kib_reconn_sec;
420         /* connection daemon sleeps here */
421         wait_queue_head_t       kib_connd_waitq;
422         spinlock_t              kib_connd_lock; /* serialise */
423         struct ib_qp_attr       kib_error_qpa;  /* QP->ERROR */
424         /* percpt data for schedulers */
425         struct kib_sched_info   **kib_scheds;
426 } kib_data_t;
427
428 #define IBLND_INIT_NOTHING         0
429 #define IBLND_INIT_DATA            1
430 #define IBLND_INIT_ALL             2
431
432 /************************************************************************
433  * IB Wire message format.
434  * These are sent in sender's byte order (i.e. receiver flips).
435  */
436
437 typedef struct kib_connparams
438 {
439         __u16             ibcp_queue_depth;
440         __u16             ibcp_max_frags;
441         __u32             ibcp_max_msg_size;
442 } WIRE_ATTR kib_connparams_t;
443
444 typedef struct
445 {
446         lnet_hdr_t        ibim_hdr;             /* portals header */
447         char              ibim_payload[0];      /* piggy-backed payload */
448 } WIRE_ATTR kib_immediate_msg_t;
449
450 typedef struct
451 {
452         __u32             rf_nob;               /* # bytes this frag */
453         __u64             rf_addr;              /* CAVEAT EMPTOR: misaligned!! */
454 } WIRE_ATTR kib_rdma_frag_t;
455
456 typedef struct
457 {
458         __u32             rd_key;               /* local/remote key */
459         __u32             rd_nfrags;            /* # fragments */
460         kib_rdma_frag_t   rd_frags[0];          /* buffer frags */
461 } WIRE_ATTR kib_rdma_desc_t;
462
463 typedef struct
464 {
465         lnet_hdr_t        ibprm_hdr;            /* portals header */
466         __u64             ibprm_cookie;         /* opaque completion cookie */
467 } WIRE_ATTR kib_putreq_msg_t;
468
469 typedef struct
470 {
471         __u64             ibpam_src_cookie;     /* reflected completion cookie */
472         __u64             ibpam_dst_cookie;     /* opaque completion cookie */
473         kib_rdma_desc_t   ibpam_rd;             /* sender's sink buffer */
474 } WIRE_ATTR kib_putack_msg_t;
475
476 typedef struct
477 {
478         lnet_hdr_t        ibgm_hdr;             /* portals header */
479         __u64             ibgm_cookie;          /* opaque completion cookie */
480         kib_rdma_desc_t   ibgm_rd;              /* rdma descriptor */
481 } WIRE_ATTR kib_get_msg_t;
482
483 typedef struct
484 {
485         __u64             ibcm_cookie;          /* opaque completion cookie */
486         __s32             ibcm_status;          /* < 0 failure: >= 0 length */
487 } WIRE_ATTR kib_completion_msg_t;
488
489 typedef struct
490 {
491         /* First 2 fields fixed FOR ALL TIME */
492         __u32             ibm_magic;            /* I'm an ibnal message */
493         __u16             ibm_version;          /* this is my version number */
494
495         __u8              ibm_type;             /* msg type */
496         __u8              ibm_credits;          /* returned credits */
497         __u32             ibm_nob;              /* # bytes in whole message */
498         __u32             ibm_cksum;            /* checksum (0 == no checksum) */
499         __u64             ibm_srcnid;           /* sender's NID */
500         __u64             ibm_srcstamp;         /* sender's incarnation */
501         __u64             ibm_dstnid;           /* destination's NID */
502         __u64             ibm_dststamp;         /* destination's incarnation */
503
504         union {
505                 kib_connparams_t      connparams;
506                 kib_immediate_msg_t   immediate;
507                 kib_putreq_msg_t      putreq;
508                 kib_putack_msg_t      putack;
509                 kib_get_msg_t         get;
510                 kib_completion_msg_t  completion;
511         } WIRE_ATTR ibm_u;
512 } WIRE_ATTR kib_msg_t;
513
514 #define IBLND_MSG_MAGIC LNET_PROTO_IB_MAGIC     /* unique magic */
515
516 #define IBLND_MSG_VERSION_1         0x11
517 #define IBLND_MSG_VERSION_2         0x12
518 #define IBLND_MSG_VERSION           IBLND_MSG_VERSION_2
519
520 #define IBLND_MSG_CONNREQ           0xc0        /* connection request */
521 #define IBLND_MSG_CONNACK           0xc1        /* connection acknowledge */
522 #define IBLND_MSG_NOOP              0xd0        /* nothing (just credits) */
523 #define IBLND_MSG_IMMEDIATE         0xd1        /* immediate */
524 #define IBLND_MSG_PUT_REQ           0xd2        /* putreq (src->sink) */
525 #define IBLND_MSG_PUT_NAK           0xd3        /* completion (sink->src) */
526 #define IBLND_MSG_PUT_ACK           0xd4        /* putack (sink->src) */
527 #define IBLND_MSG_PUT_DONE          0xd5        /* completion (src->sink) */
528 #define IBLND_MSG_GET_REQ           0xd6        /* getreq (sink->src) */
529 #define IBLND_MSG_GET_DONE          0xd7        /* completion (src->sink: all OK) */
530
531 typedef struct {
532         __u32            ibr_magic;             /* sender's magic */
533         __u16            ibr_version;           /* sender's version */
534         __u8             ibr_why;               /* reject reason */
535         __u8             ibr_padding;           /* padding */
536         __u64            ibr_incarnation;       /* incarnation of peer */
537         kib_connparams_t ibr_cp;                /* connection parameters */
538 } WIRE_ATTR kib_rej_t;
539
540 /* connection rejection reasons */
541 #define IBLND_REJECT_CONN_RACE       1          /* You lost connection race */
542 #define IBLND_REJECT_NO_RESOURCES    2          /* Out of memory/conns etc */
543 #define IBLND_REJECT_FATAL           3          /* Anything else */
544
545 #define IBLND_REJECT_CONN_UNCOMPAT   4          /* incompatible version peer */
546 #define IBLND_REJECT_CONN_STALE      5          /* stale peer */
547
548 /* peer's rdma frags doesn't match mine */
549 #define IBLND_REJECT_RDMA_FRAGS      6
550 /* peer's msg queue size doesn't match mine */
551 #define IBLND_REJECT_MSG_QUEUE_SIZE  7
552
553 /***********************************************************************/
554
555 typedef struct kib_rx                           /* receive message */
556 {
557         /* queue for attention */
558         struct list_head        rx_list;
559         /* owning conn */
560         struct kib_conn        *rx_conn;
561         /* # bytes received (-1 while posted) */
562         int                     rx_nob;
563         /* completion status */
564         enum ib_wc_status       rx_status;
565         /* message buffer (host vaddr) */
566         kib_msg_t              *rx_msg;
567         /* message buffer (I/O addr) */
568         __u64                   rx_msgaddr;
569         /* for dma_unmap_single() */
570         DECLARE_PCI_UNMAP_ADDR(rx_msgunmap);
571         /* receive work item... */
572         struct ib_recv_wr       rx_wrq;
573         /* ...and its memory */
574         struct ib_sge           rx_sge;
575 } kib_rx_t;
576
577 #define IBLND_POSTRX_DONT_POST    0             /* don't post */
578 #define IBLND_POSTRX_NO_CREDIT    1             /* post: no credits */
579 #define IBLND_POSTRX_PEER_CREDIT  2             /* post: give peer back 1 credit */
580 #define IBLND_POSTRX_RSRVD_CREDIT 3             /* post: give myself back 1 reserved credit */
581
582 typedef struct kib_tx                           /* transmit message */
583 {
584         /* queue on idle_txs ibc_tx_queue etc. */
585         struct list_head        tx_list;
586         /* pool I'm from */
587         kib_tx_pool_t           *tx_pool;
588         /* owning conn */
589         struct kib_conn         *tx_conn;
590         /* # tx callbacks outstanding */
591         short                   tx_sending;
592         /* queued for sending */
593         short                   tx_queued;
594         /* waiting for peer */
595         short                   tx_waiting;
596         /* LNET completion status */
597         int                     tx_status;
598         /* completion deadline */
599         unsigned long           tx_deadline;
600         /* completion cookie */
601         __u64                   tx_cookie;
602         /* lnet msgs to finalize on completion */
603         lnet_msg_t              *tx_lntmsg[2];
604         /* message buffer (host vaddr) */
605         kib_msg_t               *tx_msg;
606         /* message buffer (I/O addr) */
607         __u64                   tx_msgaddr;
608         /* for dma_unmap_single() */
609         DECLARE_PCI_UNMAP_ADDR(tx_msgunmap);
610         /* # send work items */
611         int                     tx_nwrq;
612         /* send work items... */
613         struct ib_send_wr       *tx_wrq;
614         /* ...and their memory */
615         struct ib_sge           *tx_sge;
616         /* rdma descriptor */
617         kib_rdma_desc_t         *tx_rd;
618         /* # entries in... */
619         int                     tx_nfrags;
620         /* dma_map_sg descriptor */
621         struct scatterlist      *tx_frags;
622         /* rdma phys page addrs */
623         __u64                   *tx_pages;
624         /* FMR */
625         kib_fmr_t               fmr;
626                                 /* dma direction */
627         int                     tx_dmadir;
628 } kib_tx_t;
629
630 typedef struct kib_connvars
631 {
632         /* connection-in-progress variables */
633         kib_msg_t                 cv_msg;
634 } kib_connvars_t;
635
636 typedef struct kib_conn
637 {
638         /* scheduler information */
639         struct kib_sched_info   *ibc_sched;
640         /* owning peer */
641         struct kib_peer         *ibc_peer;
642         /* HCA bound on */
643         kib_hca_dev_t           *ibc_hdev;
644         /* stash on peer's conn list */
645         struct list_head        ibc_list;
646         /* schedule for attention */
647         struct list_head        ibc_sched_list;
648         /* version of connection */
649         __u16                   ibc_version;
650         /* reconnect later */
651         __u16                   ibc_reconnect:1;
652         /* which instance of the peer */
653         __u64                   ibc_incarnation;
654         /* # users */
655         atomic_t                ibc_refcount;
656         /* what's happening */
657         int                     ibc_state;
658         /* # uncompleted sends */
659         int                     ibc_nsends_posted;
660         /* # uncompleted NOOPs */
661         int                     ibc_noops_posted;
662         /* # credits I have */
663         int                     ibc_credits;
664         /* # credits to return */
665         int                     ibc_outstanding_credits;
666         /* # ACK/DONE msg credits */
667         int                     ibc_reserved_credits;
668         /* set on comms error */
669         int                     ibc_comms_error;
670         /* connections queue depth */
671         __u16                   ibc_queue_depth;
672         /* connections max frags */
673         __u16                   ibc_max_frags;
674         /* receive buffers owned */
675         unsigned int            ibc_nrx:16;
676         /* scheduled for attention */
677         unsigned int            ibc_scheduled:1;
678         /* CQ callback fired */
679         unsigned int            ibc_ready:1;
680         /* time of last send */
681         unsigned long           ibc_last_send;
682         /** link chain for kiblnd_check_conns only */
683         struct list_head        ibc_connd_list;
684         /** rxs completed before ESTABLISHED */
685         struct list_head        ibc_early_rxs;
686         /** IBLND_MSG_NOOPs for IBLND_MSG_VERSION_1 */
687         struct list_head        ibc_tx_noops;
688         /* sends that need a credit */
689         struct list_head        ibc_tx_queue;
690         /* sends that don't need a credit */
691         struct list_head        ibc_tx_queue_nocred;
692         /* sends that need to reserve an ACK/DONE msg */
693         struct list_head        ibc_tx_queue_rsrvd;
694         /* active tx awaiting completion */
695         struct list_head        ibc_active_txs;
696         /* serialise */
697         spinlock_t              ibc_lock;
698         /* the rx descs */
699         kib_rx_t                *ibc_rxs;
700         /* premapped rx msg pages */
701         kib_pages_t             *ibc_rx_pages;
702
703         /* CM id */
704         struct rdma_cm_id       *ibc_cmid;
705         /* completion queue */
706         struct ib_cq            *ibc_cq;
707
708         /* in-progress connection state */
709         kib_connvars_t          *ibc_connvars;
710 } kib_conn_t;
711
712 #define IBLND_CONN_INIT               0         /* being initialised */
713 #define IBLND_CONN_ACTIVE_CONNECT     1         /* active sending req */
714 #define IBLND_CONN_PASSIVE_WAIT       2         /* passive waiting for rtu */
715 #define IBLND_CONN_ESTABLISHED        3         /* connection established */
716 #define IBLND_CONN_CLOSING            4         /* being closed */
717 #define IBLND_CONN_DISCONNECTED       5         /* disconnected */
718
719 typedef struct kib_peer
720 {
721         /* stash on global peer list */
722         struct list_head        ibp_list;
723         /* who's on the other end(s) */
724         lnet_nid_t              ibp_nid;
725         /* LNet interface */
726         lnet_ni_t               *ibp_ni;
727         /* all active connections */
728         struct list_head        ibp_conns;
729         /* msgs waiting for a conn */
730         struct list_head        ibp_tx_queue;
731         /* incarnation of peer */
732         __u64                   ibp_incarnation;
733         /* when (in jiffies) I was last alive */
734         cfs_time_t              ibp_last_alive;
735         /* # users */
736         atomic_t                ibp_refcount;
737         /* version of peer */
738         __u16                   ibp_version;
739         /* current passive connection attempts */
740         unsigned short          ibp_accepting;
741         /* current active connection attempts */
742         unsigned short          ibp_connecting;
743         /* reconnect this peer later */
744         unsigned short          ibp_reconnecting:1;
745         /* # consecutive reconnection attempts to this peer */
746         unsigned int            ibp_reconnected;
747         /* errno on closing this peer */
748         int                     ibp_error;
749         /* max map_on_demand */
750         __u16                   ibp_max_frags;
751         /* max_peer_credits */
752         __u16                   ibp_queue_depth;
753 } kib_peer_t;
754
755 #ifndef HAVE_IB_INC_RKEY
756 /**
757  * ib_inc_rkey - increments the key portion of the given rkey. Can be used
758  * for calculating a new rkey for type 2 memory windows.
759  * @rkey - the rkey to increment.
760  */
761 static inline u32 ib_inc_rkey(u32 rkey)
762 {
763         const u32 mask = 0x000000ff;
764         return ((rkey + 1) & mask) | (rkey & ~mask);
765 }
766 #endif
767
768 extern kib_data_t      kiblnd_data;
769
770 extern void kiblnd_hdev_destroy(kib_hca_dev_t *hdev);
771
772 int kiblnd_msg_queue_size(int version, struct lnet_ni *ni);
773
774 /* max # of fragments configured by user */
775 static inline int
776 kiblnd_cfg_rdma_frags(struct lnet_ni *ni)
777 {
778         struct lnet_ioctl_config_o2iblnd_tunables *tunables;
779         int mod;
780
781         tunables = &ni->ni_lnd_tunables->lt_tun_u.lt_o2ib;
782         mod = tunables->lnd_map_on_demand;
783         return mod != 0 ? mod : IBLND_MAX_RDMA_FRAGS;
784 }
785
786 static inline int
787 kiblnd_rdma_frags(int version, struct lnet_ni *ni)
788 {
789         return version == IBLND_MSG_VERSION_1 ?
790           IBLND_MAX_RDMA_FRAGS :
791           kiblnd_cfg_rdma_frags(ni);
792 }
793
794 static inline int
795 kiblnd_concurrent_sends(int version, struct lnet_ni *ni)
796 {
797         struct lnet_ioctl_config_o2iblnd_tunables *tunables;
798         int concurrent_sends;
799
800         tunables = &ni->ni_lnd_tunables->lt_tun_u.lt_o2ib;
801         concurrent_sends = tunables->lnd_concurrent_sends;
802
803         if (version == IBLND_MSG_VERSION_1) {
804                 if (concurrent_sends > IBLND_MSG_QUEUE_SIZE_V1 * 2)
805                         return IBLND_MSG_QUEUE_SIZE_V1 * 2;
806
807                 if (concurrent_sends < IBLND_MSG_QUEUE_SIZE_V1 / 2)
808                         return IBLND_MSG_QUEUE_SIZE_V1 / 2;
809         }
810
811         return concurrent_sends;
812 }
813
814 static inline void
815 kiblnd_hdev_addref_locked(kib_hca_dev_t *hdev)
816 {
817         LASSERT(atomic_read(&hdev->ibh_ref) > 0);
818         atomic_inc(&hdev->ibh_ref);
819 }
820
821 static inline void
822 kiblnd_hdev_decref(kib_hca_dev_t *hdev)
823 {
824         LASSERT(atomic_read(&hdev->ibh_ref) > 0);
825         if (atomic_dec_and_test(&hdev->ibh_ref))
826                 kiblnd_hdev_destroy(hdev);
827 }
828
829 static inline int
830 kiblnd_dev_can_failover(kib_dev_t *dev)
831 {
832         if (!list_empty(&dev->ibd_fail_list)) /* already scheduled */
833                 return 0;
834
835         if (*kiblnd_tunables.kib_dev_failover == 0) /* disabled */
836                 return 0;
837
838         if (*kiblnd_tunables.kib_dev_failover > 1) /* force failover */
839                 return 1;
840
841         return dev->ibd_can_failover;
842 }
843
844 #define kiblnd_conn_addref(conn)                                \
845 do {                                                            \
846         CDEBUG(D_NET, "conn[%p] (%d)++\n",                      \
847                (conn), atomic_read(&(conn)->ibc_refcount)); \
848         atomic_inc(&(conn)->ibc_refcount);                  \
849 } while (0)
850
851 #define kiblnd_conn_decref(conn)                                        \
852 do {                                                                    \
853         unsigned long flags;                                            \
854                                                                         \
855         CDEBUG(D_NET, "conn[%p] (%d)--\n",                              \
856                (conn), atomic_read(&(conn)->ibc_refcount));             \
857         LASSERT_ATOMIC_POS(&(conn)->ibc_refcount);                      \
858         if (atomic_dec_and_test(&(conn)->ibc_refcount)) {               \
859                 spin_lock_irqsave(&kiblnd_data.kib_connd_lock, flags);  \
860                 list_add_tail(&(conn)->ibc_list,                        \
861                                   &kiblnd_data.kib_connd_zombies);      \
862                 wake_up(&kiblnd_data.kib_connd_waitq);          \
863                 spin_unlock_irqrestore(&kiblnd_data.kib_connd_lock, flags);\
864         }                                                               \
865 } while (0)
866
867 #define kiblnd_peer_addref(peer)                                \
868 do {                                                            \
869         CDEBUG(D_NET, "peer[%p] -> %s (%d)++\n",                \
870                (peer), libcfs_nid2str((peer)->ibp_nid),         \
871                atomic_read (&(peer)->ibp_refcount));            \
872         atomic_inc(&(peer)->ibp_refcount);                      \
873 } while (0)
874
875 #define kiblnd_peer_decref(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         LASSERT_ATOMIC_POS(&(peer)->ibp_refcount);              \
881         if (atomic_dec_and_test(&(peer)->ibp_refcount))         \
882                 kiblnd_destroy_peer(peer);                      \
883 } while (0)
884
885 static inline bool
886 kiblnd_peer_connecting(kib_peer_t *peer)
887 {
888         return peer->ibp_connecting != 0 ||
889                peer->ibp_reconnecting != 0 ||
890                peer->ibp_accepting != 0;
891 }
892
893 static inline bool
894 kiblnd_peer_idle(kib_peer_t *peer)
895 {
896         return !kiblnd_peer_connecting(peer) && list_empty(&peer->ibp_conns);
897 }
898
899 static inline struct list_head *
900 kiblnd_nid2peerlist (lnet_nid_t nid)
901 {
902         unsigned int hash =
903                 ((unsigned int)nid) % kiblnd_data.kib_peer_hash_size;
904
905         return &kiblnd_data.kib_peers[hash];
906 }
907
908 static inline int
909 kiblnd_peer_active (kib_peer_t *peer)
910 {
911         /* Am I in the peer hash table? */
912         return !list_empty(&peer->ibp_list);
913 }
914
915 static inline kib_conn_t *
916 kiblnd_get_conn_locked (kib_peer_t *peer)
917 {
918         LASSERT(!list_empty(&peer->ibp_conns));
919
920         /* just return the first connection */
921         return list_entry(peer->ibp_conns.next, kib_conn_t, ibc_list);
922 }
923
924 static inline int
925 kiblnd_send_keepalive(kib_conn_t *conn)
926 {
927         return (*kiblnd_tunables.kib_keepalive > 0) &&
928                 cfs_time_after(jiffies, conn->ibc_last_send +
929                                msecs_to_jiffies(*kiblnd_tunables.kib_keepalive *
930                                                 MSEC_PER_SEC));
931 }
932
933 static inline int
934 kiblnd_need_noop(kib_conn_t *conn)
935 {
936         lnet_ni_t *ni = conn->ibc_peer->ibp_ni;
937         struct lnet_ioctl_config_o2iblnd_tunables *tunables;
938
939         LASSERT(conn->ibc_state >= IBLND_CONN_ESTABLISHED);
940         tunables = &ni->ni_lnd_tunables->lt_tun_u.lt_o2ib;
941
942         if (conn->ibc_outstanding_credits <
943             IBLND_CREDITS_HIGHWATER(tunables, conn->ibc_version) &&
944             !kiblnd_send_keepalive(conn))
945                 return 0; /* No need to send NOOP */
946
947         if (IBLND_OOB_CAPABLE(conn->ibc_version)) {
948                 if (!list_empty(&conn->ibc_tx_queue_nocred))
949                         return 0; /* NOOP can be piggybacked */
950
951                 /* No tx to piggyback NOOP onto or no credit to send a tx */
952                 return (list_empty(&conn->ibc_tx_queue) ||
953                         conn->ibc_credits == 0);
954         }
955
956         if (!list_empty(&conn->ibc_tx_noops) || /* NOOP already queued */
957             !list_empty(&conn->ibc_tx_queue_nocred) || /* piggyback NOOP */
958             conn->ibc_credits == 0)                    /* no credit */
959                 return 0;
960
961         if (conn->ibc_credits == 1 &&      /* last credit reserved for */
962             conn->ibc_outstanding_credits == 0) /* giving back credits */
963                 return 0;
964
965         /* No tx to piggyback NOOP onto or no credit to send a tx */
966         return (list_empty(&conn->ibc_tx_queue) || conn->ibc_credits == 1);
967 }
968
969 static inline void
970 kiblnd_abort_receives(kib_conn_t *conn)
971 {
972         ib_modify_qp(conn->ibc_cmid->qp,
973                      &kiblnd_data.kib_error_qpa, IB_QP_STATE);
974 }
975
976 static inline const char *
977 kiblnd_queue2str(kib_conn_t *conn, struct list_head *q)
978 {
979         if (q == &conn->ibc_tx_queue)
980                 return "tx_queue";
981
982         if (q == &conn->ibc_tx_queue_rsrvd)
983                 return "tx_queue_rsrvd";
984
985         if (q == &conn->ibc_tx_queue_nocred)
986                 return "tx_queue_nocred";
987
988         if (q == &conn->ibc_active_txs)
989                 return "active_txs";
990
991         LBUG();
992         return NULL;
993 }
994
995 /* CAVEAT EMPTOR: We rely on descriptor alignment to allow us to use the
996  * lowest bits of the work request id to stash the work item type. */
997
998 #define IBLND_WID_INVAL 0
999 #define IBLND_WID_TX    1
1000 #define IBLND_WID_RX    2
1001 #define IBLND_WID_RDMA  3
1002 #define IBLND_WID_MR    4
1003 #define IBLND_WID_MASK  7UL
1004
1005 static inline __u64
1006 kiblnd_ptr2wreqid (void *ptr, int type)
1007 {
1008         unsigned long lptr = (unsigned long)ptr;
1009
1010         LASSERT ((lptr & IBLND_WID_MASK) == 0);
1011         LASSERT ((type & ~IBLND_WID_MASK) == 0);
1012         return (__u64)(lptr | type);
1013 }
1014
1015 static inline void *
1016 kiblnd_wreqid2ptr (__u64 wreqid)
1017 {
1018         return (void *)(((unsigned long)wreqid) & ~IBLND_WID_MASK);
1019 }
1020
1021 static inline int
1022 kiblnd_wreqid2type (__u64 wreqid)
1023 {
1024         return (wreqid & IBLND_WID_MASK);
1025 }
1026
1027 static inline void
1028 kiblnd_set_conn_state (kib_conn_t *conn, int state)
1029 {
1030         conn->ibc_state = state;
1031         smp_mb();
1032 }
1033
1034 static inline void
1035 kiblnd_init_msg (kib_msg_t *msg, int type, int body_nob)
1036 {
1037         msg->ibm_type = type;
1038         msg->ibm_nob  = offsetof(kib_msg_t, ibm_u) + body_nob;
1039 }
1040
1041 static inline int
1042 kiblnd_rd_size (kib_rdma_desc_t *rd)
1043 {
1044         int   i;
1045         int   size;
1046
1047         for (i = size = 0; i < rd->rd_nfrags; i++)
1048                 size += rd->rd_frags[i].rf_nob;
1049
1050         return size;
1051 }
1052
1053 static inline __u64
1054 kiblnd_rd_frag_addr(kib_rdma_desc_t *rd, int index)
1055 {
1056         return rd->rd_frags[index].rf_addr;
1057 }
1058
1059 static inline __u32
1060 kiblnd_rd_frag_size(kib_rdma_desc_t *rd, int index)
1061 {
1062         return rd->rd_frags[index].rf_nob;
1063 }
1064
1065 static inline __u32
1066 kiblnd_rd_frag_key(kib_rdma_desc_t *rd, int index)
1067 {
1068         return rd->rd_key;
1069 }
1070
1071 static inline int
1072 kiblnd_rd_consume_frag(kib_rdma_desc_t *rd, int index, __u32 nob)
1073 {
1074         if (nob < rd->rd_frags[index].rf_nob) {
1075                 rd->rd_frags[index].rf_addr += nob;
1076                 rd->rd_frags[index].rf_nob  -= nob;
1077         } else {
1078                 index ++;
1079         }
1080
1081         return index;
1082 }
1083
1084 static inline int
1085 kiblnd_rd_msg_size(kib_rdma_desc_t *rd, int msgtype, int n)
1086 {
1087         LASSERT (msgtype == IBLND_MSG_GET_REQ ||
1088                  msgtype == IBLND_MSG_PUT_ACK);
1089
1090         return msgtype == IBLND_MSG_GET_REQ ?
1091                offsetof(kib_get_msg_t, ibgm_rd.rd_frags[n]) :
1092                offsetof(kib_putack_msg_t, ibpam_rd.rd_frags[n]);
1093 }
1094
1095 static inline __u64
1096 kiblnd_dma_mapping_error(struct ib_device *dev, u64 dma_addr)
1097 {
1098         return ib_dma_mapping_error(dev, dma_addr);
1099 }
1100
1101 static inline __u64 kiblnd_dma_map_single(struct ib_device *dev,
1102                                           void *msg, size_t size,
1103                                           enum dma_data_direction direction)
1104 {
1105         return ib_dma_map_single(dev, msg, size, direction);
1106 }
1107
1108 static inline void kiblnd_dma_unmap_single(struct ib_device *dev,
1109                                            __u64 addr, size_t size,
1110                                           enum dma_data_direction direction)
1111 {
1112         ib_dma_unmap_single(dev, addr, size, direction);
1113 }
1114
1115 #define KIBLND_UNMAP_ADDR_SET(p, m, a)  do {} while (0)
1116 #define KIBLND_UNMAP_ADDR(p, m, a)      (a)
1117
1118 static inline int kiblnd_dma_map_sg(struct ib_device *dev,
1119                                     struct scatterlist *sg, int nents,
1120                                     enum dma_data_direction direction)
1121 {
1122         return ib_dma_map_sg(dev, sg, nents, direction);
1123 }
1124
1125 static inline void kiblnd_dma_unmap_sg(struct ib_device *dev,
1126                                        struct scatterlist *sg, int nents,
1127                                        enum dma_data_direction direction)
1128 {
1129         ib_dma_unmap_sg(dev, sg, nents, direction);
1130 }
1131
1132 static inline __u64 kiblnd_sg_dma_address(struct ib_device *dev,
1133                                           struct scatterlist *sg)
1134 {
1135         return ib_sg_dma_address(dev, sg);
1136 }
1137
1138 static inline unsigned int kiblnd_sg_dma_len(struct ib_device *dev,
1139                                              struct scatterlist *sg)
1140 {
1141         return ib_sg_dma_len(dev, sg);
1142 }
1143
1144 /* XXX We use KIBLND_CONN_PARAM(e) as writable buffer, it's not strictly
1145  * right because OFED1.2 defines it as const, to use it we have to add
1146  * (void *) cast to overcome "const" */
1147
1148 #define KIBLND_CONN_PARAM(e)            ((e)->param.conn.private_data)
1149 #define KIBLND_CONN_PARAM_LEN(e)        ((e)->param.conn.private_data_len)
1150
1151 struct ib_mr *kiblnd_find_rd_dma_mr(struct lnet_ni *ni, kib_rdma_desc_t *rd,
1152                                     int negotiated_nfrags);
1153 void kiblnd_map_rx_descs(kib_conn_t *conn);
1154 void kiblnd_unmap_rx_descs(kib_conn_t *conn);
1155 void kiblnd_pool_free_node(kib_pool_t *pool, struct list_head *node);
1156 struct list_head *kiblnd_pool_alloc_node(kib_poolset_t *ps);
1157
1158 int  kiblnd_fmr_pool_map(kib_fmr_poolset_t *fps, kib_tx_t *tx,
1159                          kib_rdma_desc_t *rd, __u32 nob, __u64 iov,
1160                          kib_fmr_t *fmr);
1161 void kiblnd_fmr_pool_unmap(kib_fmr_t *fmr, int status);
1162
1163 int  kiblnd_tunables_setup(struct lnet_ni *ni);
1164 int  kiblnd_tunables_init(void);
1165
1166 int  kiblnd_connd (void *arg);
1167 int  kiblnd_scheduler(void *arg);
1168 int  kiblnd_thread_start(int (*fn)(void *arg), void *arg, char *name);
1169 int  kiblnd_failover_thread (void *arg);
1170
1171 int  kiblnd_alloc_pages(kib_pages_t **pp, int cpt, int npages);
1172
1173 int  kiblnd_cm_callback(struct rdma_cm_id *cmid,
1174                         struct rdma_cm_event *event);
1175 int  kiblnd_translate_mtu(int value);
1176
1177 int  kiblnd_dev_failover(kib_dev_t *dev);
1178 int  kiblnd_create_peer(lnet_ni_t *ni, kib_peer_t **peerp, lnet_nid_t nid);
1179 void kiblnd_destroy_peer (kib_peer_t *peer);
1180 bool kiblnd_reconnect_peer(kib_peer_t *peer);
1181 void kiblnd_destroy_dev (kib_dev_t *dev);
1182 void kiblnd_unlink_peer_locked (kib_peer_t *peer);
1183 kib_peer_t *kiblnd_find_peer_locked (lnet_nid_t nid);
1184 int  kiblnd_close_stale_conns_locked (kib_peer_t *peer,
1185                                       int version, __u64 incarnation);
1186 int  kiblnd_close_peer_conns_locked (kib_peer_t *peer, int why);
1187
1188 kib_conn_t *kiblnd_create_conn(kib_peer_t *peer, struct rdma_cm_id *cmid,
1189                                int state, int version);
1190 void kiblnd_destroy_conn(kib_conn_t *conn, bool free_conn);
1191 void kiblnd_close_conn (kib_conn_t *conn, int error);
1192 void kiblnd_close_conn_locked (kib_conn_t *conn, int error);
1193
1194 void kiblnd_launch_tx (lnet_ni_t *ni, kib_tx_t *tx, lnet_nid_t nid);
1195 void kiblnd_txlist_done(lnet_ni_t *ni, struct list_head *txlist, int status);
1196
1197 void kiblnd_qp_event(struct ib_event *event, void *arg);
1198 void kiblnd_cq_event(struct ib_event *event, void *arg);
1199 void kiblnd_cq_completion(struct ib_cq *cq, void *arg);
1200
1201 void kiblnd_pack_msg (lnet_ni_t *ni, kib_msg_t *msg, int version,
1202                       int credits, lnet_nid_t dstnid, __u64 dststamp);
1203 int  kiblnd_unpack_msg(kib_msg_t *msg, int nob);
1204 int  kiblnd_post_rx (kib_rx_t *rx, int credit);
1205
1206 int  kiblnd_send(lnet_ni_t *ni, void *private, lnet_msg_t *lntmsg);
1207 int  kiblnd_recv(lnet_ni_t *ni, void *private, lnet_msg_t *lntmsg, int delayed,
1208                  unsigned int niov, struct kvec *iov, lnet_kiov_t *kiov,
1209                  unsigned int offset, unsigned int mlen, unsigned int rlen);
1210