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