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