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