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