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