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