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