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