Whamcloud - gitweb
5c7746e6639938db94db2a85bebaa5dc17e22fc1
[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         /* completion deadline */
594         ktime_t                 tx_deadline;
595         /* completion cookie */
596         __u64                   tx_cookie;
597         /* lnet msgs to finalize on completion */
598         struct lnet_msg         *tx_lntmsg[2];
599         /* message buffer (host vaddr) */
600         struct kib_msg          *tx_msg;
601         /* message buffer (I/O addr) */
602         __u64                   tx_msgaddr;
603         /* for dma_unmap_single() */
604         DECLARE_PCI_UNMAP_ADDR(tx_msgunmap);
605         /** sge for tx_msgaddr */
606         struct ib_sge           tx_msgsge;
607         /* # send work items */
608         int                     tx_nwrq;
609         /* # used scatter/gather elements */
610         int                     tx_nsge;
611         /* send work items... */
612         struct ib_rdma_wr       *tx_wrq;
613         /* ...and their memory */
614         struct ib_sge           *tx_sge;
615         /* rdma descriptor */
616         struct kib_rdma_desc    *tx_rd;
617         /* # entries in... */
618         int                     tx_nfrags;
619         /* dma_map_sg descriptor */
620         struct scatterlist      *tx_frags;
621         /* rdma phys page addrs */
622         __u64                   *tx_pages;
623         /* gaps in fragments */
624         bool                    tx_gaps;
625         /* FMR */
626         struct kib_fmr          tx_fmr;
627                                 /* dma direction */
628         int                     tx_dmadir;
629 };
630
631 struct kib_connvars {
632         /* connection-in-progress variables */
633         struct kib_msg          cv_msg;
634 };
635
636 struct kib_conn {
637         /* scheduler information */
638         struct kib_sched_info   *ibc_sched;
639         /* owning peer_ni */
640         struct kib_peer_ni      *ibc_peer;
641         /* HCA bound on */
642         struct kib_hca_dev      *ibc_hdev;
643         /* stash on peer_ni's conn list */
644         struct list_head        ibc_list;
645         /* schedule for attention */
646         struct list_head        ibc_sched_list;
647         /* version of connection */
648         __u16                   ibc_version;
649         /* reconnect later */
650         __u16                   ibc_reconnect:1;
651         /* which instance of the peer */
652         __u64                   ibc_incarnation;
653         /* # users */
654         atomic_t                ibc_refcount;
655         /* what's happening */
656         int                     ibc_state;
657         /* # uncompleted sends */
658         int                     ibc_nsends_posted;
659         /* # uncompleted NOOPs */
660         int                     ibc_noops_posted;
661         /* # credits I have */
662         int                     ibc_credits;
663         /* # credits to return */
664         int                     ibc_outstanding_credits;
665         /* # ACK/DONE msg credits */
666         int                     ibc_reserved_credits;
667         /* set on comms error */
668         int                     ibc_comms_error;
669         /* connections queue depth */
670         __u16                   ibc_queue_depth;
671         /* connections max frags */
672         __u16                   ibc_max_frags;
673         /* receive buffers owned */
674         unsigned int            ibc_nrx:16;
675         /* scheduled for attention */
676         unsigned int            ibc_scheduled:1;
677         /* CQ callback fired */
678         unsigned int            ibc_ready:1;
679         /* time of last send */
680         ktime_t                 ibc_last_send;
681         /** link chain for kiblnd_check_conns only */
682         struct list_head        ibc_connd_list;
683         /** rxs completed before ESTABLISHED */
684         struct list_head        ibc_early_rxs;
685         /** IBLND_MSG_NOOPs for IBLND_MSG_VERSION_1 */
686         struct list_head        ibc_tx_noops;
687         /* sends that need a credit */
688         struct list_head        ibc_tx_queue;
689         /* sends that don't need a credit */
690         struct list_head        ibc_tx_queue_nocred;
691         /* sends that need to reserve an ACK/DONE msg */
692         struct list_head        ibc_tx_queue_rsrvd;
693         /* active tx awaiting completion */
694         struct list_head        ibc_active_txs;
695         /* serialise */
696         spinlock_t              ibc_lock;
697         /* the rx descs */
698         struct kib_rx           *ibc_rxs;
699         /* premapped rx msg pages */
700         struct kib_pages        *ibc_rx_pages;
701
702         /* CM id */
703         struct rdma_cm_id       *ibc_cmid;
704         /* completion queue */
705         struct ib_cq            *ibc_cq;
706
707         /* in-progress connection state */
708         struct kib_connvars     *ibc_connvars;
709 };
710
711 #define IBLND_CONN_INIT               0         /* being initialised */
712 #define IBLND_CONN_ACTIVE_CONNECT     1         /* active sending req */
713 #define IBLND_CONN_PASSIVE_WAIT       2         /* passive waiting for rtu */
714 #define IBLND_CONN_ESTABLISHED        3         /* connection established */
715 #define IBLND_CONN_CLOSING            4         /* being closed */
716 #define IBLND_CONN_DISCONNECTED       5         /* disconnected */
717
718 struct kib_peer_ni {
719         /* stash on global peer_ni list */
720         struct list_head        ibp_list;
721         /* who's on the other end(s) */
722         lnet_nid_t              ibp_nid;
723         /* LNet interface */
724         struct lnet_ni          *ibp_ni;
725         /* all active connections */
726         struct list_head        ibp_conns;
727         /* next connection to send on for round robin */
728         struct kib_conn         *ibp_next_conn;
729         /* msgs waiting for a conn */
730         struct list_head        ibp_tx_queue;
731         /* incarnation of peer_ni */
732         __u64                   ibp_incarnation;
733         /* when (in seconds) I was last alive */
734         time64_t                ibp_last_alive;
735         /* # users */
736         atomic_t                ibp_refcount;
737         /* version of peer_ni */
738         __u16                   ibp_version;
739         /* current passive connection attempts */
740         unsigned short          ibp_accepting;
741         /* current active connection attempts */
742         unsigned short          ibp_connecting;
743         /* reconnect this peer_ni later */
744         unsigned char           ibp_reconnecting;
745         /* counter of how many times we triggered a conn race */
746         unsigned char           ibp_races;
747         /* # consecutive reconnection attempts to this peer */
748         unsigned int            ibp_reconnected;
749         /* errno on closing this peer_ni */
750         int                     ibp_error;
751         /* max map_on_demand */
752         __u16                   ibp_max_frags;
753         /* max_peer_credits */
754         __u16                   ibp_queue_depth;
755 };
756
757 #ifndef HAVE_IB_INC_RKEY
758 /**
759  * ib_inc_rkey - increments the key portion of the given rkey. Can be used
760  * for calculating a new rkey for type 2 memory windows.
761  * @rkey - the rkey to increment.
762  */
763 static inline u32 ib_inc_rkey(u32 rkey)
764 {
765         const u32 mask = 0x000000ff;
766         return ((rkey + 1) & mask) | (rkey & ~mask);
767 }
768 #endif
769
770 extern struct kib_data kiblnd_data;
771
772 extern void kiblnd_hdev_destroy(struct kib_hca_dev *hdev);
773
774 int kiblnd_msg_queue_size(int version, struct lnet_ni *ni);
775
776 static inline void
777 kiblnd_hdev_addref_locked(struct kib_hca_dev *hdev)
778 {
779         LASSERT(atomic_read(&hdev->ibh_ref) > 0);
780         atomic_inc(&hdev->ibh_ref);
781 }
782
783 static inline void
784 kiblnd_hdev_decref(struct kib_hca_dev *hdev)
785 {
786         LASSERT(atomic_read(&hdev->ibh_ref) > 0);
787         if (atomic_dec_and_test(&hdev->ibh_ref))
788                 kiblnd_hdev_destroy(hdev);
789 }
790
791 static inline int
792 kiblnd_dev_can_failover(struct kib_dev *dev)
793 {
794         if (!list_empty(&dev->ibd_fail_list)) /* already scheduled */
795                 return 0;
796
797         if (*kiblnd_tunables.kib_dev_failover == 0) /* disabled */
798                 return 0;
799
800         if (*kiblnd_tunables.kib_dev_failover > 1) /* force failover */
801                 return 1;
802
803         return dev->ibd_can_failover;
804 }
805
806 #define kiblnd_conn_addref(conn)                                \
807 do {                                                            \
808         CDEBUG(D_NET, "conn[%p] (%d)++\n",                      \
809                (conn), atomic_read(&(conn)->ibc_refcount)); \
810         atomic_inc(&(conn)->ibc_refcount);                  \
811 } while (0)
812
813 #define kiblnd_conn_decref(conn)                                        \
814 do {                                                                    \
815         unsigned long flags;                                            \
816                                                                         \
817         CDEBUG(D_NET, "conn[%p] (%d)--\n",                              \
818                (conn), atomic_read(&(conn)->ibc_refcount));             \
819         LASSERT_ATOMIC_POS(&(conn)->ibc_refcount);                      \
820         if (atomic_dec_and_test(&(conn)->ibc_refcount)) {               \
821                 spin_lock_irqsave(&kiblnd_data.kib_connd_lock, flags);  \
822                 list_add_tail(&(conn)->ibc_list,                        \
823                                   &kiblnd_data.kib_connd_zombies);      \
824                 wake_up(&kiblnd_data.kib_connd_waitq);          \
825                 spin_unlock_irqrestore(&kiblnd_data.kib_connd_lock, flags);\
826         }                                                               \
827 } while (0)
828
829 #define kiblnd_peer_addref(peer_ni)                                \
830 do {                                                            \
831         CDEBUG(D_NET, "peer_ni[%p] -> %s (%d)++\n",                \
832                (peer_ni), libcfs_nid2str((peer_ni)->ibp_nid),         \
833                atomic_read (&(peer_ni)->ibp_refcount));         \
834         atomic_inc(&(peer_ni)->ibp_refcount);                   \
835 } while (0)
836
837 #define kiblnd_peer_decref(peer_ni)                                \
838 do {                                                            \
839         CDEBUG(D_NET, "peer_ni[%p] -> %s (%d)--\n",                \
840                (peer_ni), libcfs_nid2str((peer_ni)->ibp_nid),         \
841                atomic_read (&(peer_ni)->ibp_refcount));         \
842         LASSERT_ATOMIC_POS(&(peer_ni)->ibp_refcount);              \
843         if (atomic_dec_and_test(&(peer_ni)->ibp_refcount))      \
844                 kiblnd_destroy_peer(peer_ni);                      \
845 } while (0)
846
847 static inline bool
848 kiblnd_peer_connecting(struct kib_peer_ni *peer_ni)
849 {
850         return peer_ni->ibp_connecting != 0 ||
851                peer_ni->ibp_reconnecting != 0 ||
852                peer_ni->ibp_accepting != 0;
853 }
854
855 static inline bool
856 kiblnd_peer_idle(struct kib_peer_ni *peer_ni)
857 {
858         return !kiblnd_peer_connecting(peer_ni) && list_empty(&peer_ni->ibp_conns);
859 }
860
861 static inline struct list_head *
862 kiblnd_nid2peerlist (lnet_nid_t nid)
863 {
864         unsigned int hash =
865                 ((unsigned int)nid) % kiblnd_data.kib_peer_hash_size;
866
867         return &kiblnd_data.kib_peers[hash];
868 }
869
870 static inline int
871 kiblnd_peer_active(struct kib_peer_ni *peer_ni)
872 {
873         /* Am I in the peer_ni hash table? */
874         return !list_empty(&peer_ni->ibp_list);
875 }
876
877 static inline struct kib_conn *
878 kiblnd_get_conn_locked(struct kib_peer_ni *peer_ni)
879 {
880         struct list_head *next;
881
882         LASSERT(!list_empty(&peer_ni->ibp_conns));
883
884         /* Advance to next connection, be sure to skip the head node */
885         if (!peer_ni->ibp_next_conn ||
886             peer_ni->ibp_next_conn->ibc_list.next == &peer_ni->ibp_conns)
887                 next = peer_ni->ibp_conns.next;
888         else
889                 next = peer_ni->ibp_next_conn->ibc_list.next;
890         peer_ni->ibp_next_conn = list_entry(next, struct kib_conn, ibc_list);
891
892         return peer_ni->ibp_next_conn;
893 }
894
895 static inline int
896 kiblnd_send_keepalive(struct kib_conn *conn)
897 {
898         s64 keepalive_ns = *kiblnd_tunables.kib_keepalive * NSEC_PER_SEC;
899
900         return (*kiblnd_tunables.kib_keepalive > 0) &&
901                 ktime_after(ktime_get(),
902                             ktime_add_ns(conn->ibc_last_send, keepalive_ns));
903 }
904
905 static inline int
906 kiblnd_need_noop(struct kib_conn *conn)
907 {
908         struct lnet_ni *ni = conn->ibc_peer->ibp_ni;
909         struct lnet_ioctl_config_o2iblnd_tunables *tunables;
910
911         LASSERT(conn->ibc_state >= IBLND_CONN_ESTABLISHED);
912         tunables = &ni->ni_lnd_tunables.lnd_tun_u.lnd_o2ib;
913
914         if (conn->ibc_outstanding_credits <
915             IBLND_CREDITS_HIGHWATER(tunables, conn->ibc_version) &&
916             !kiblnd_send_keepalive(conn))
917                 return 0; /* No need to send NOOP */
918
919         if (IBLND_OOB_CAPABLE(conn->ibc_version)) {
920                 if (!list_empty(&conn->ibc_tx_queue_nocred))
921                         return 0; /* NOOP can be piggybacked */
922
923                 /* No tx to piggyback NOOP onto or no credit to send a tx */
924                 return (list_empty(&conn->ibc_tx_queue) ||
925                         conn->ibc_credits == 0);
926         }
927
928         if (!list_empty(&conn->ibc_tx_noops) || /* NOOP already queued */
929             !list_empty(&conn->ibc_tx_queue_nocred) || /* piggyback NOOP */
930             conn->ibc_credits == 0)                    /* no credit */
931                 return 0;
932
933         if (conn->ibc_credits == 1 &&      /* last credit reserved for */
934             conn->ibc_outstanding_credits == 0) /* giving back credits */
935                 return 0;
936
937         /* No tx to piggyback NOOP onto or no credit to send a tx */
938         return (list_empty(&conn->ibc_tx_queue) || conn->ibc_credits == 1);
939 }
940
941 static inline void
942 kiblnd_abort_receives(struct kib_conn *conn)
943 {
944         ib_modify_qp(conn->ibc_cmid->qp,
945                      &kiblnd_data.kib_error_qpa, IB_QP_STATE);
946 }
947
948 static inline const char *
949 kiblnd_queue2str(struct kib_conn *conn, struct list_head *q)
950 {
951         if (q == &conn->ibc_tx_queue)
952                 return "tx_queue";
953
954         if (q == &conn->ibc_tx_queue_rsrvd)
955                 return "tx_queue_rsrvd";
956
957         if (q == &conn->ibc_tx_queue_nocred)
958                 return "tx_queue_nocred";
959
960         if (q == &conn->ibc_active_txs)
961                 return "active_txs";
962
963         LBUG();
964         return NULL;
965 }
966
967 /* CAVEAT EMPTOR: We rely on descriptor alignment to allow us to use the
968  * lowest bits of the work request id to stash the work item type. */
969
970 #define IBLND_WID_INVAL 0
971 #define IBLND_WID_TX    1
972 #define IBLND_WID_RX    2
973 #define IBLND_WID_RDMA  3
974 #define IBLND_WID_MR    4
975 #define IBLND_WID_MASK  7UL
976
977 static inline __u64
978 kiblnd_ptr2wreqid (void *ptr, int type)
979 {
980         unsigned long lptr = (unsigned long)ptr;
981
982         LASSERT ((lptr & IBLND_WID_MASK) == 0);
983         LASSERT ((type & ~IBLND_WID_MASK) == 0);
984         return (__u64)(lptr | type);
985 }
986
987 static inline void *
988 kiblnd_wreqid2ptr (__u64 wreqid)
989 {
990         return (void *)(((unsigned long)wreqid) & ~IBLND_WID_MASK);
991 }
992
993 static inline int
994 kiblnd_wreqid2type (__u64 wreqid)
995 {
996         return (wreqid & IBLND_WID_MASK);
997 }
998
999 static inline void
1000 kiblnd_set_conn_state(struct kib_conn *conn, int state)
1001 {
1002         conn->ibc_state = state;
1003         smp_mb();
1004 }
1005
1006 static inline void
1007 kiblnd_init_msg(struct kib_msg *msg, int type, int body_nob)
1008 {
1009         msg->ibm_type = type;
1010         msg->ibm_nob = offsetof(struct kib_msg, ibm_u) + body_nob;
1011 }
1012
1013 static inline int
1014 kiblnd_rd_size(struct kib_rdma_desc *rd)
1015 {
1016         int   i;
1017         int   size;
1018
1019         for (i = size = 0; i < rd->rd_nfrags; i++)
1020                 size += rd->rd_frags[i].rf_nob;
1021
1022         return size;
1023 }
1024
1025 static inline __u64
1026 kiblnd_rd_frag_addr(struct kib_rdma_desc *rd, int index)
1027 {
1028         return rd->rd_frags[index].rf_addr;
1029 }
1030
1031 static inline __u32
1032 kiblnd_rd_frag_size(struct kib_rdma_desc *rd, int index)
1033 {
1034         return rd->rd_frags[index].rf_nob;
1035 }
1036
1037 static inline __u32
1038 kiblnd_rd_frag_key(struct kib_rdma_desc *rd, int index)
1039 {
1040         return rd->rd_key;
1041 }
1042
1043 static inline int
1044 kiblnd_rd_consume_frag(struct kib_rdma_desc *rd, int index, __u32 nob)
1045 {
1046         if (nob < rd->rd_frags[index].rf_nob) {
1047                 rd->rd_frags[index].rf_addr += nob;
1048                 rd->rd_frags[index].rf_nob  -= nob;
1049         } else {
1050                 index ++;
1051         }
1052
1053         return index;
1054 }
1055
1056 static inline int
1057 kiblnd_rd_msg_size(struct kib_rdma_desc *rd, int msgtype, int n)
1058 {
1059         LASSERT (msgtype == IBLND_MSG_GET_REQ ||
1060                  msgtype == IBLND_MSG_PUT_ACK);
1061
1062         return msgtype == IBLND_MSG_GET_REQ ?
1063                offsetof(struct kib_get_msg, ibgm_rd.rd_frags[n]) :
1064                offsetof(struct kib_putack_msg, ibpam_rd.rd_frags[n]);
1065 }
1066
1067 static inline __u64
1068 kiblnd_dma_mapping_error(struct ib_device *dev, u64 dma_addr)
1069 {
1070         return ib_dma_mapping_error(dev, dma_addr);
1071 }
1072
1073 static inline __u64 kiblnd_dma_map_single(struct ib_device *dev,
1074                                           void *msg, size_t size,
1075                                           enum dma_data_direction direction)
1076 {
1077         return ib_dma_map_single(dev, msg, size, direction);
1078 }
1079
1080 static inline void kiblnd_dma_unmap_single(struct ib_device *dev,
1081                                            __u64 addr, size_t size,
1082                                           enum dma_data_direction direction)
1083 {
1084         ib_dma_unmap_single(dev, addr, size, direction);
1085 }
1086
1087 #define KIBLND_UNMAP_ADDR_SET(p, m, a)  do {} while (0)
1088 #define KIBLND_UNMAP_ADDR(p, m, a)      (a)
1089
1090 static inline int kiblnd_dma_map_sg(struct ib_device *dev,
1091                                     struct scatterlist *sg, int nents,
1092                                     enum dma_data_direction direction)
1093 {
1094         return ib_dma_map_sg(dev, sg, nents, direction);
1095 }
1096
1097 static inline void kiblnd_dma_unmap_sg(struct ib_device *dev,
1098                                        struct scatterlist *sg, int nents,
1099                                        enum dma_data_direction direction)
1100 {
1101         ib_dma_unmap_sg(dev, sg, nents, direction);
1102 }
1103
1104 static inline __u64 kiblnd_sg_dma_address(struct ib_device *dev,
1105                                           struct scatterlist *sg)
1106 {
1107         return ib_sg_dma_address(dev, sg);
1108 }
1109
1110 static inline unsigned int kiblnd_sg_dma_len(struct ib_device *dev,
1111                                              struct scatterlist *sg)
1112 {
1113         return ib_sg_dma_len(dev, sg);
1114 }
1115
1116 /* XXX We use KIBLND_CONN_PARAM(e) as writable buffer, it's not strictly
1117  * right because OFED1.2 defines it as const, to use it we have to add
1118  * (void *) cast to overcome "const" */
1119
1120 #define KIBLND_CONN_PARAM(e)            ((e)->param.conn.private_data)
1121 #define KIBLND_CONN_PARAM_LEN(e)        ((e)->param.conn.private_data_len)
1122
1123 void kiblnd_map_rx_descs(struct kib_conn *conn);
1124 void kiblnd_unmap_rx_descs(struct kib_conn *conn);
1125 void kiblnd_pool_free_node(struct kib_pool *pool, struct list_head *node);
1126 struct list_head *kiblnd_pool_alloc_node(struct kib_poolset *ps);
1127
1128 int kiblnd_fmr_pool_map(struct kib_fmr_poolset *fps, struct kib_tx *tx,
1129                         struct kib_rdma_desc *rd, u32 nob, u64 iov,
1130                         struct kib_fmr *fmr);
1131 void kiblnd_fmr_pool_unmap(struct kib_fmr *fmr, int status);
1132
1133 int  kiblnd_tunables_setup(struct lnet_ni *ni);
1134 int  kiblnd_tunables_init(void);
1135
1136 int  kiblnd_connd (void *arg);
1137 int  kiblnd_scheduler(void *arg);
1138 int  kiblnd_thread_start(int (*fn)(void *arg), void *arg, char *name);
1139 int  kiblnd_failover_thread (void *arg);
1140
1141 int kiblnd_alloc_pages(struct kib_pages **pp, int cpt, int npages);
1142
1143 int  kiblnd_cm_callback(struct rdma_cm_id *cmid,
1144                         struct rdma_cm_event *event);
1145 int  kiblnd_translate_mtu(int value);
1146
1147 int  kiblnd_dev_failover(struct kib_dev *dev);
1148 int kiblnd_create_peer(struct lnet_ni *ni, struct kib_peer_ni **peerp,
1149                        lnet_nid_t nid);
1150 void kiblnd_destroy_peer(struct kib_peer_ni *peer);
1151 bool kiblnd_reconnect_peer(struct kib_peer_ni *peer);
1152 void kiblnd_destroy_dev(struct kib_dev *dev);
1153 void kiblnd_unlink_peer_locked(struct kib_peer_ni *peer_ni);
1154 struct kib_peer_ni *kiblnd_find_peer_locked(struct lnet_ni *ni, lnet_nid_t nid);
1155 int  kiblnd_close_stale_conns_locked(struct kib_peer_ni *peer_ni,
1156                                      int version, u64 incarnation);
1157 int  kiblnd_close_peer_conns_locked(struct kib_peer_ni *peer_ni, int why);
1158
1159 struct kib_conn *kiblnd_create_conn(struct kib_peer_ni *peer_ni,
1160                                     struct rdma_cm_id *cmid,
1161                                     int state, int version);
1162 void kiblnd_destroy_conn(struct kib_conn *conn);
1163 void kiblnd_close_conn(struct kib_conn *conn, int error);
1164 void kiblnd_close_conn_locked(struct kib_conn *conn, int error);
1165
1166 void kiblnd_launch_tx(struct lnet_ni *ni, struct kib_tx *tx, lnet_nid_t nid);
1167 void kiblnd_txlist_done(struct list_head *txlist, int status);
1168
1169 void kiblnd_qp_event(struct ib_event *event, void *arg);
1170 void kiblnd_cq_event(struct ib_event *event, void *arg);
1171 void kiblnd_cq_completion(struct ib_cq *cq, void *arg);
1172
1173 void kiblnd_pack_msg(struct lnet_ni *ni, struct kib_msg *msg, int version,
1174                      int credits, lnet_nid_t dstnid, __u64 dststamp);
1175 int kiblnd_unpack_msg(struct kib_msg *msg, int nob);
1176 int kiblnd_post_rx(struct kib_rx *rx, int credit);
1177
1178 int kiblnd_send(struct lnet_ni *ni, void *private, struct lnet_msg *lntmsg);
1179 int kiblnd_recv(struct lnet_ni *ni, void *private, struct lnet_msg *lntmsg,
1180                 int delayed, unsigned int niov, struct kvec *iov,
1181                 lnet_kiov_t *kiov, unsigned int offset, unsigned int mlen,
1182                 unsigned int rlen);
1183