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