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