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