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