Whamcloud - gitweb
LU-6261 gnilnd: Hold shared MDD for gnilnd.
[fs/lustre-release.git] / lnet / klnds / o2iblnd / o2iblnd_cb.c
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) 2012, 2014, 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_cb.c
37  *
38  * Author: Eric Barton <eric@bartonsoftware.com>
39  */
40
41 #include "o2iblnd.h"
42
43 static void kiblnd_peer_alive(kib_peer_t *peer);
44 static void kiblnd_peer_connect_failed(kib_peer_t *peer, int active, int error);
45 static void kiblnd_check_sends(kib_conn_t *conn);
46 static void kiblnd_init_tx_msg(lnet_ni_t *ni, kib_tx_t *tx,
47                                int type, int body_nob);
48 static int kiblnd_init_rdma(kib_conn_t *conn, kib_tx_t *tx, int type,
49                             int resid, kib_rdma_desc_t *dstrd, __u64 dstcookie);
50 static void kiblnd_queue_tx_locked(kib_tx_t *tx, kib_conn_t *conn);
51 static void kiblnd_queue_tx(kib_tx_t *tx, kib_conn_t *conn);
52 static void kiblnd_unmap_tx(lnet_ni_t *ni, kib_tx_t *tx);
53
54 static void
55 kiblnd_tx_done (lnet_ni_t *ni, kib_tx_t *tx)
56 {
57         lnet_msg_t *lntmsg[2];
58         kib_net_t  *net = ni->ni_data;
59         int         rc;
60         int         i;
61
62         LASSERT (net != NULL);
63         LASSERT (!in_interrupt());
64         LASSERT (!tx->tx_queued);               /* mustn't be queued for sending */
65         LASSERT (tx->tx_sending == 0);          /* mustn't be awaiting sent callback */
66         LASSERT (!tx->tx_waiting);              /* mustn't be awaiting peer response */
67         LASSERT (tx->tx_pool != NULL);
68
69         kiblnd_unmap_tx(ni, tx);
70
71         /* tx may have up to 2 lnet msgs to finalise */
72         lntmsg[0] = tx->tx_lntmsg[0]; tx->tx_lntmsg[0] = NULL;
73         lntmsg[1] = tx->tx_lntmsg[1]; tx->tx_lntmsg[1] = NULL;
74         rc = tx->tx_status;
75
76         if (tx->tx_conn != NULL) {
77                 LASSERT (ni == tx->tx_conn->ibc_peer->ibp_ni);
78
79                 kiblnd_conn_decref(tx->tx_conn);
80                 tx->tx_conn = NULL;
81         }
82
83         tx->tx_nwrq = 0;
84         tx->tx_status = 0;
85
86         kiblnd_pool_free_node(&tx->tx_pool->tpo_pool, &tx->tx_list);
87
88         /* delay finalize until my descs have been freed */
89         for (i = 0; i < 2; i++) {
90                 if (lntmsg[i] == NULL)
91                         continue;
92
93                 lnet_finalize(ni, lntmsg[i], rc);
94         }
95 }
96
97 void
98 kiblnd_txlist_done(lnet_ni_t *ni, struct list_head *txlist, int status)
99 {
100         kib_tx_t *tx;
101
102         while (!list_empty(txlist)) {
103                 tx = list_entry(txlist->next, kib_tx_t, tx_list);
104
105                 list_del(&tx->tx_list);
106                 /* complete now */
107                 tx->tx_waiting = 0;
108                 tx->tx_status = status;
109                 kiblnd_tx_done(ni, tx);
110         }
111 }
112
113 static kib_tx_t *
114 kiblnd_get_idle_tx(lnet_ni_t *ni, lnet_nid_t target)
115 {
116         kib_net_t               *net = (kib_net_t *)ni->ni_data;
117         struct list_head        *node;
118         kib_tx_t                *tx;
119         kib_tx_poolset_t        *tps;
120
121         tps = net->ibn_tx_ps[lnet_cpt_of_nid(target)];
122         node = kiblnd_pool_alloc_node(&tps->tps_poolset);
123         if (node == NULL)
124                 return NULL;
125         tx = container_of(node, kib_tx_t, tx_list);
126
127         LASSERT (tx->tx_nwrq == 0);
128         LASSERT (!tx->tx_queued);
129         LASSERT (tx->tx_sending == 0);
130         LASSERT (!tx->tx_waiting);
131         LASSERT (tx->tx_status == 0);
132         LASSERT (tx->tx_conn == NULL);
133         LASSERT (tx->tx_lntmsg[0] == NULL);
134         LASSERT (tx->tx_lntmsg[1] == NULL);
135         LASSERT (tx->tx_u.pmr == NULL);
136         LASSERT (tx->tx_nfrags == 0);
137
138         return tx;
139 }
140
141 static void
142 kiblnd_drop_rx(kib_rx_t *rx)
143 {
144         kib_conn_t              *conn   = rx->rx_conn;
145         struct kib_sched_info   *sched  = conn->ibc_sched;
146         unsigned long           flags;
147
148         spin_lock_irqsave(&sched->ibs_lock, flags);
149         LASSERT(conn->ibc_nrx > 0);
150         conn->ibc_nrx--;
151         spin_unlock_irqrestore(&sched->ibs_lock, flags);
152
153         kiblnd_conn_decref(conn);
154 }
155
156 int
157 kiblnd_post_rx (kib_rx_t *rx, int credit)
158 {
159         kib_conn_t         *conn = rx->rx_conn;
160         kib_net_t          *net = conn->ibc_peer->ibp_ni->ni_data;
161         struct ib_recv_wr  *bad_wrq = NULL;
162         struct ib_mr       *mr;
163         int                 rc;
164
165         LASSERT (net != NULL);
166         LASSERT (!in_interrupt());
167         LASSERT (credit == IBLND_POSTRX_NO_CREDIT ||
168                  credit == IBLND_POSTRX_PEER_CREDIT ||
169                  credit == IBLND_POSTRX_RSRVD_CREDIT);
170
171         mr = kiblnd_find_dma_mr(conn->ibc_hdev, rx->rx_msgaddr, IBLND_MSG_SIZE);
172         LASSERT (mr != NULL);
173
174         rx->rx_sge.lkey   = mr->lkey;
175         rx->rx_sge.addr   = rx->rx_msgaddr;
176         rx->rx_sge.length = IBLND_MSG_SIZE;
177
178         rx->rx_wrq.next = NULL;
179         rx->rx_wrq.sg_list = &rx->rx_sge;
180         rx->rx_wrq.num_sge = 1;
181         rx->rx_wrq.wr_id = kiblnd_ptr2wreqid(rx, IBLND_WID_RX);
182
183         LASSERT (conn->ibc_state >= IBLND_CONN_INIT);
184         LASSERT (rx->rx_nob >= 0);              /* not posted */
185
186         if (conn->ibc_state > IBLND_CONN_ESTABLISHED) {
187                 kiblnd_drop_rx(rx);             /* No more posts for this rx */
188                 return 0;
189         }
190
191         rx->rx_nob = -1;                        /* flag posted */
192
193         /* NB: need an extra reference after ib_post_recv because we don't
194          * own this rx (and rx::rx_conn) anymore, LU-5678.
195          */
196         kiblnd_conn_addref(conn);
197         rc = ib_post_recv(conn->ibc_cmid->qp, &rx->rx_wrq, &bad_wrq);
198         if (unlikely(rc != 0)) {
199                 CERROR("Can't post rx for %s: %d, bad_wrq: %p\n",
200                        libcfs_nid2str(conn->ibc_peer->ibp_nid), rc, bad_wrq);
201                 rx->rx_nob = 0;
202         }
203
204         if (conn->ibc_state < IBLND_CONN_ESTABLISHED) /* Initial post */
205                 goto out;
206
207         if (unlikely(rc != 0)) {
208                 kiblnd_close_conn(conn, rc);
209                 kiblnd_drop_rx(rx);     /* No more posts for this rx */
210                 goto out;
211         }
212
213         if (credit == IBLND_POSTRX_NO_CREDIT)
214                 goto out;
215
216         spin_lock(&conn->ibc_lock);
217         if (credit == IBLND_POSTRX_PEER_CREDIT)
218                 conn->ibc_outstanding_credits++;
219         else
220                 conn->ibc_reserved_credits++;
221         spin_unlock(&conn->ibc_lock);
222
223         kiblnd_check_sends(conn);
224 out:
225         kiblnd_conn_decref(conn);
226         return rc;
227 }
228
229 static kib_tx_t *
230 kiblnd_find_waiting_tx_locked(kib_conn_t *conn, int txtype, __u64 cookie)
231 {
232         struct list_head *tmp;
233
234         list_for_each(tmp, &conn->ibc_active_txs) {
235                 kib_tx_t *tx = list_entry(tmp, kib_tx_t, tx_list);
236
237                 LASSERT(!tx->tx_queued);
238                 LASSERT(tx->tx_sending != 0 || tx->tx_waiting);
239
240                 if (tx->tx_cookie != cookie)
241                         continue;
242
243                 if (tx->tx_waiting &&
244                     tx->tx_msg->ibm_type == txtype)
245                         return tx;
246
247                 CWARN("Bad completion: %swaiting, type %x (wanted %x)\n",
248                       tx->tx_waiting ? "" : "NOT ",
249                       tx->tx_msg->ibm_type, txtype);
250         }
251         return NULL;
252 }
253
254 static void
255 kiblnd_handle_completion(kib_conn_t *conn, int txtype, int status, __u64 cookie)
256 {
257         kib_tx_t    *tx;
258         lnet_ni_t   *ni = conn->ibc_peer->ibp_ni;
259         int          idle;
260
261         spin_lock(&conn->ibc_lock);
262
263         tx = kiblnd_find_waiting_tx_locked(conn, txtype, cookie);
264         if (tx == NULL) {
265                 spin_unlock(&conn->ibc_lock);
266
267                 CWARN("Unmatched completion type %x cookie "LPX64" from %s\n",
268                       txtype, cookie, libcfs_nid2str(conn->ibc_peer->ibp_nid));
269                 kiblnd_close_conn(conn, -EPROTO);
270                 return;
271         }
272
273         if (tx->tx_status == 0) {               /* success so far */
274                 if (status < 0) {               /* failed? */
275                         tx->tx_status = status;
276                 } else if (txtype == IBLND_MSG_GET_REQ) {
277                         lnet_set_reply_msg_len(ni, tx->tx_lntmsg[1], status);
278                 }
279         }
280
281         tx->tx_waiting = 0;
282
283         idle = !tx->tx_queued && (tx->tx_sending == 0);
284         if (idle)
285                 list_del(&tx->tx_list);
286
287         spin_unlock(&conn->ibc_lock);
288
289         if (idle)
290                 kiblnd_tx_done(ni, tx);
291 }
292
293 static void
294 kiblnd_send_completion(kib_conn_t *conn, int type, int status, __u64 cookie)
295 {
296         lnet_ni_t   *ni = conn->ibc_peer->ibp_ni;
297         kib_tx_t    *tx = kiblnd_get_idle_tx(ni, conn->ibc_peer->ibp_nid);
298
299         if (tx == NULL) {
300                 CERROR("Can't get tx for completion %x for %s\n",
301                        type, libcfs_nid2str(conn->ibc_peer->ibp_nid));
302                 return;
303         }
304
305         tx->tx_msg->ibm_u.completion.ibcm_status = status;
306         tx->tx_msg->ibm_u.completion.ibcm_cookie = cookie;
307         kiblnd_init_tx_msg(ni, tx, type, sizeof(kib_completion_msg_t));
308
309         kiblnd_queue_tx(tx, conn);
310 }
311
312 static void
313 kiblnd_handle_rx (kib_rx_t *rx)
314 {
315         kib_msg_t    *msg = rx->rx_msg;
316         kib_conn_t   *conn = rx->rx_conn;
317         lnet_ni_t    *ni = conn->ibc_peer->ibp_ni;
318         int           credits = msg->ibm_credits;
319         kib_tx_t     *tx;
320         int           rc = 0;
321         int           rc2;
322         int           post_credit;
323
324         LASSERT (conn->ibc_state >= IBLND_CONN_ESTABLISHED);
325
326         CDEBUG (D_NET, "Received %x[%d] from %s\n",
327                 msg->ibm_type, credits,
328                 libcfs_nid2str(conn->ibc_peer->ibp_nid));
329
330         if (credits != 0) {
331                 /* Have I received credits that will let me send? */
332                 spin_lock(&conn->ibc_lock);
333
334                 if (conn->ibc_credits + credits >
335                     IBLND_MSG_QUEUE_SIZE(conn->ibc_version)) {
336                         rc2 = conn->ibc_credits;
337                         spin_unlock(&conn->ibc_lock);
338
339                         CERROR("Bad credits from %s: %d + %d > %d\n",
340                                libcfs_nid2str(conn->ibc_peer->ibp_nid),
341                                rc2, credits,
342                                IBLND_MSG_QUEUE_SIZE(conn->ibc_version));
343
344                         kiblnd_close_conn(conn, -EPROTO);
345                         kiblnd_post_rx(rx, IBLND_POSTRX_NO_CREDIT);
346                         return;
347                 }
348
349                 conn->ibc_credits += credits;
350
351                 /* This ensures the credit taken by NOOP can be returned */
352                 if (msg->ibm_type == IBLND_MSG_NOOP &&
353                     !IBLND_OOB_CAPABLE(conn->ibc_version)) /* v1 only */
354                         conn->ibc_outstanding_credits++;
355
356                 spin_unlock(&conn->ibc_lock);
357                 kiblnd_check_sends(conn);
358         }
359
360         switch (msg->ibm_type) {
361         default:
362                 CERROR("Bad IBLND message type %x from %s\n",
363                        msg->ibm_type, libcfs_nid2str(conn->ibc_peer->ibp_nid));
364                 post_credit = IBLND_POSTRX_NO_CREDIT;
365                 rc = -EPROTO;
366                 break;
367
368         case IBLND_MSG_NOOP:
369                 if (IBLND_OOB_CAPABLE(conn->ibc_version)) {
370                         post_credit = IBLND_POSTRX_NO_CREDIT;
371                         break;
372                 }
373
374                 if (credits != 0) /* credit already posted */
375                         post_credit = IBLND_POSTRX_NO_CREDIT;
376                 else              /* a keepalive NOOP */
377                         post_credit = IBLND_POSTRX_PEER_CREDIT;
378                 break;
379
380         case IBLND_MSG_IMMEDIATE:
381                 post_credit = IBLND_POSTRX_DONT_POST;
382                 rc = lnet_parse(ni, &msg->ibm_u.immediate.ibim_hdr,
383                                 msg->ibm_srcnid, rx, 0);
384                 if (rc < 0)                     /* repost on error */
385                         post_credit = IBLND_POSTRX_PEER_CREDIT;
386                 break;
387
388         case IBLND_MSG_PUT_REQ:
389                 post_credit = IBLND_POSTRX_DONT_POST;
390                 rc = lnet_parse(ni, &msg->ibm_u.putreq.ibprm_hdr,
391                                 msg->ibm_srcnid, rx, 1);
392                 if (rc < 0)                     /* repost on error */
393                         post_credit = IBLND_POSTRX_PEER_CREDIT;
394                 break;
395
396         case IBLND_MSG_PUT_NAK:
397                 CWARN ("PUT_NACK from %s\n",
398                        libcfs_nid2str(conn->ibc_peer->ibp_nid));
399                 post_credit = IBLND_POSTRX_RSRVD_CREDIT;
400                 kiblnd_handle_completion(conn, IBLND_MSG_PUT_REQ,
401                                          msg->ibm_u.completion.ibcm_status,
402                                          msg->ibm_u.completion.ibcm_cookie);
403                 break;
404
405         case IBLND_MSG_PUT_ACK:
406                 post_credit = IBLND_POSTRX_RSRVD_CREDIT;
407
408                 spin_lock(&conn->ibc_lock);
409                 tx = kiblnd_find_waiting_tx_locked(conn, IBLND_MSG_PUT_REQ,
410                                         msg->ibm_u.putack.ibpam_src_cookie);
411                 if (tx != NULL)
412                         list_del(&tx->tx_list);
413                 spin_unlock(&conn->ibc_lock);
414
415                 if (tx == NULL) {
416                         CERROR("Unmatched PUT_ACK from %s\n",
417                                libcfs_nid2str(conn->ibc_peer->ibp_nid));
418                         rc = -EPROTO;
419                         break;
420                 }
421
422                 LASSERT (tx->tx_waiting);
423                 /* CAVEAT EMPTOR: I could be racing with tx_complete, but...
424                  * (a) I can overwrite tx_msg since my peer has received it!
425                  * (b) tx_waiting set tells tx_complete() it's not done. */
426
427                 tx->tx_nwrq = 0;                /* overwrite PUT_REQ */
428
429                 rc2 = kiblnd_init_rdma(conn, tx, IBLND_MSG_PUT_DONE,
430                                        kiblnd_rd_size(&msg->ibm_u.putack.ibpam_rd),
431                                        &msg->ibm_u.putack.ibpam_rd,
432                                        msg->ibm_u.putack.ibpam_dst_cookie);
433                 if (rc2 < 0)
434                         CERROR("Can't setup rdma for PUT to %s: %d\n",
435                                libcfs_nid2str(conn->ibc_peer->ibp_nid), rc2);
436
437                 spin_lock(&conn->ibc_lock);
438                 tx->tx_waiting = 0;     /* clear waiting and queue atomically */
439                 kiblnd_queue_tx_locked(tx, conn);
440                 spin_unlock(&conn->ibc_lock);
441                 break;
442
443         case IBLND_MSG_PUT_DONE:
444                 post_credit = IBLND_POSTRX_PEER_CREDIT;
445                 kiblnd_handle_completion(conn, IBLND_MSG_PUT_ACK,
446                                          msg->ibm_u.completion.ibcm_status,
447                                          msg->ibm_u.completion.ibcm_cookie);
448                 break;
449
450         case IBLND_MSG_GET_REQ:
451                 post_credit = IBLND_POSTRX_DONT_POST;
452                 rc = lnet_parse(ni, &msg->ibm_u.get.ibgm_hdr,
453                                 msg->ibm_srcnid, rx, 1);
454                 if (rc < 0)                     /* repost on error */
455                         post_credit = IBLND_POSTRX_PEER_CREDIT;
456                 break;
457
458         case IBLND_MSG_GET_DONE:
459                 post_credit = IBLND_POSTRX_RSRVD_CREDIT;
460                 kiblnd_handle_completion(conn, IBLND_MSG_GET_REQ,
461                                          msg->ibm_u.completion.ibcm_status,
462                                          msg->ibm_u.completion.ibcm_cookie);
463                 break;
464         }
465
466         if (rc < 0)                             /* protocol error */
467                 kiblnd_close_conn(conn, rc);
468
469         if (post_credit != IBLND_POSTRX_DONT_POST)
470                 kiblnd_post_rx(rx, post_credit);
471 }
472
473 static void
474 kiblnd_rx_complete (kib_rx_t *rx, int status, int nob)
475 {
476         kib_msg_t    *msg = rx->rx_msg;
477         kib_conn_t   *conn = rx->rx_conn;
478         lnet_ni_t    *ni = conn->ibc_peer->ibp_ni;
479         kib_net_t    *net = ni->ni_data;
480         int           rc;
481         int           err = -EIO;
482
483         LASSERT (net != NULL);
484         LASSERT (rx->rx_nob < 0);               /* was posted */
485         rx->rx_nob = 0;                         /* isn't now */
486
487         if (conn->ibc_state > IBLND_CONN_ESTABLISHED)
488                 goto ignore;
489
490         if (status != IB_WC_SUCCESS) {
491                 CNETERR("Rx from %s failed: %d\n",
492                         libcfs_nid2str(conn->ibc_peer->ibp_nid), status);
493                 goto failed;
494         }
495
496         LASSERT (nob >= 0);
497         rx->rx_nob = nob;
498
499         rc = kiblnd_unpack_msg(msg, rx->rx_nob);
500         if (rc != 0) {
501                 CERROR ("Error %d unpacking rx from %s\n",
502                         rc, libcfs_nid2str(conn->ibc_peer->ibp_nid));
503                 goto failed;
504         }
505
506         if (msg->ibm_srcnid != conn->ibc_peer->ibp_nid ||
507             msg->ibm_dstnid != ni->ni_nid ||
508             msg->ibm_srcstamp != conn->ibc_incarnation ||
509             msg->ibm_dststamp != net->ibn_incarnation) {
510                 CERROR ("Stale rx from %s\n",
511                         libcfs_nid2str(conn->ibc_peer->ibp_nid));
512                 err = -ESTALE;
513                 goto failed;
514         }
515
516         /* set time last known alive */
517         kiblnd_peer_alive(conn->ibc_peer);
518
519         /* racing with connection establishment/teardown! */
520
521         if (conn->ibc_state < IBLND_CONN_ESTABLISHED) {
522                 rwlock_t  *g_lock = &kiblnd_data.kib_global_lock;
523                 unsigned long  flags;
524
525                 write_lock_irqsave(g_lock, flags);
526                 /* must check holding global lock to eliminate race */
527                 if (conn->ibc_state < IBLND_CONN_ESTABLISHED) {
528                         list_add_tail(&rx->rx_list, &conn->ibc_early_rxs);
529                         write_unlock_irqrestore(g_lock, flags);
530                         return;
531                 }
532                 write_unlock_irqrestore(g_lock, flags);
533         }
534         kiblnd_handle_rx(rx);
535         return;
536
537  failed:
538         CDEBUG(D_NET, "rx %p conn %p\n", rx, conn);
539         kiblnd_close_conn(conn, err);
540  ignore:
541         kiblnd_drop_rx(rx);                     /* Don't re-post rx. */
542 }
543
544 static struct page *
545 kiblnd_kvaddr_to_page (unsigned long vaddr)
546 {
547         struct page *page;
548
549         if (is_vmalloc_addr((void *)vaddr)) {
550                 page = vmalloc_to_page ((void *)vaddr);
551                 LASSERT (page != NULL);
552                 return page;
553         }
554 #ifdef CONFIG_HIGHMEM
555         if (vaddr >= PKMAP_BASE &&
556             vaddr < (PKMAP_BASE + LAST_PKMAP * PAGE_SIZE)) {
557                 /* No highmem pages only used for bulk (kiov) I/O */
558                 CERROR("find page for address in highmem\n");
559                 LBUG();
560         }
561 #endif
562         page = virt_to_page (vaddr);
563         LASSERT (page != NULL);
564         return page;
565 }
566
567 static int
568 kiblnd_fmr_map_tx(kib_net_t *net, kib_tx_t *tx, kib_rdma_desc_t *rd, int nob)
569 {
570         kib_hca_dev_t           *hdev;
571         __u64                   *pages = tx->tx_pages;
572         kib_fmr_poolset_t       *fps;
573         int                     npages;
574         int                     size;
575         int                     cpt;
576         int                     rc;
577         int                     i;
578
579         LASSERT(tx->tx_pool != NULL);
580         LASSERT(tx->tx_pool->tpo_pool.po_owner != NULL);
581
582         hdev  = tx->tx_pool->tpo_hdev;
583
584         for (i = 0, npages = 0; i < rd->rd_nfrags; i++) {
585                 for (size = 0; size <  rd->rd_frags[i].rf_nob;
586                                size += hdev->ibh_page_size) {
587                         pages[npages ++] = (rd->rd_frags[i].rf_addr &
588                                             hdev->ibh_page_mask) + size;
589                 }
590         }
591
592         cpt = tx->tx_pool->tpo_pool.po_owner->ps_cpt;
593
594         fps = net->ibn_fmr_ps[cpt];
595         rc = kiblnd_fmr_pool_map(fps, pages, npages, 0, &tx->tx_u.fmr);
596         if (rc != 0) {
597                 CERROR ("Can't map %d pages: %d\n", npages, rc);
598                 return rc;
599         }
600
601         /* If rd is not tx_rd, it's going to get sent to a peer, who will need
602          * the rkey */
603         rd->rd_key = (rd != tx->tx_rd) ? tx->tx_u.fmr.fmr_pfmr->fmr->rkey :
604                                          tx->tx_u.fmr.fmr_pfmr->fmr->lkey;
605         rd->rd_frags[0].rf_addr &= ~hdev->ibh_page_mask;
606         rd->rd_frags[0].rf_nob   = nob;
607         rd->rd_nfrags = 1;
608
609         return 0;
610 }
611
612 static int
613 kiblnd_pmr_map_tx(kib_net_t *net, kib_tx_t *tx, kib_rdma_desc_t *rd, int nob)
614 {
615         kib_hca_dev_t           *hdev;
616         kib_pmr_poolset_t       *pps;
617         __u64                   iova;
618         int                     cpt;
619         int                     rc;
620
621         LASSERT(tx->tx_pool != NULL);
622         LASSERT(tx->tx_pool->tpo_pool.po_owner != NULL);
623
624         hdev = tx->tx_pool->tpo_hdev;
625
626         iova = rd->rd_frags[0].rf_addr & ~hdev->ibh_page_mask;
627
628         cpt = tx->tx_pool->tpo_pool.po_owner->ps_cpt;
629
630         pps = net->ibn_pmr_ps[cpt];
631         rc = kiblnd_pmr_pool_map(pps, hdev, rd, &iova, &tx->tx_u.pmr);
632         if (rc != 0) {
633                 CERROR("Failed to create MR by phybuf: %d\n", rc);
634                 return rc;
635         }
636
637         /* If rd is not tx_rd, it's going to get sent to a peer, who will need
638          * the rkey */
639         rd->rd_key = (rd != tx->tx_rd) ? tx->tx_u.pmr->pmr_mr->rkey :
640                                          tx->tx_u.pmr->pmr_mr->lkey;
641         rd->rd_nfrags = 1;
642         rd->rd_frags[0].rf_addr = iova;
643         rd->rd_frags[0].rf_nob  = nob;
644
645         return 0;
646 }
647
648 static void
649 kiblnd_unmap_tx(lnet_ni_t *ni, kib_tx_t *tx)
650 {
651         kib_net_t  *net = ni->ni_data;
652
653         LASSERT(net != NULL);
654
655         if (net->ibn_fmr_ps != NULL && tx->tx_u.fmr.fmr_pfmr != NULL) {
656                 kiblnd_fmr_pool_unmap(&tx->tx_u.fmr, tx->tx_status);
657                 tx->tx_u.fmr.fmr_pfmr = NULL;
658
659         } else if (net->ibn_pmr_ps != NULL && tx->tx_u.pmr != NULL) {
660                 kiblnd_pmr_pool_unmap(tx->tx_u.pmr);
661                 tx->tx_u.pmr = NULL;
662         }
663
664         if (tx->tx_nfrags != 0) {
665                 kiblnd_dma_unmap_sg(tx->tx_pool->tpo_hdev->ibh_ibdev,
666                                     tx->tx_frags, tx->tx_nfrags, tx->tx_dmadir);
667                 tx->tx_nfrags = 0;
668         }
669 }
670
671 static int
672 kiblnd_map_tx(lnet_ni_t *ni, kib_tx_t *tx, kib_rdma_desc_t *rd, int nfrags)
673 {
674         kib_hca_dev_t *hdev  = tx->tx_pool->tpo_hdev;
675         kib_net_t     *net   = ni->ni_data;
676         struct ib_mr  *mr    = NULL;
677         __u32          nob;
678         int            i;
679
680         /* If rd is not tx_rd, it's going to get sent to a peer and I'm the
681          * RDMA sink */
682         tx->tx_dmadir = (rd != tx->tx_rd) ? DMA_FROM_DEVICE : DMA_TO_DEVICE;
683         tx->tx_nfrags = nfrags;
684
685         rd->rd_nfrags = kiblnd_dma_map_sg(hdev->ibh_ibdev, tx->tx_frags,
686                                           tx->tx_nfrags, tx->tx_dmadir);
687
688         for (i = 0, nob = 0; i < rd->rd_nfrags; i++) {
689                 rd->rd_frags[i].rf_nob  = kiblnd_sg_dma_len(
690                         hdev->ibh_ibdev, &tx->tx_frags[i]);
691                 rd->rd_frags[i].rf_addr = kiblnd_sg_dma_address(
692                         hdev->ibh_ibdev, &tx->tx_frags[i]);
693                 nob += rd->rd_frags[i].rf_nob;
694         }
695
696         /* looking for pre-mapping MR */
697         mr = kiblnd_find_rd_dma_mr(hdev, rd);
698         if (mr != NULL) {
699                 /* found pre-mapping MR */
700                 rd->rd_key = (rd != tx->tx_rd) ? mr->rkey : mr->lkey;
701                 return 0;
702         }
703
704         if (net->ibn_fmr_ps != NULL)
705                 return kiblnd_fmr_map_tx(net, tx, rd, nob);
706         else if (net->ibn_pmr_ps != NULL)
707                 return kiblnd_pmr_map_tx(net, tx, rd, nob);
708
709         return -EINVAL;
710 }
711
712
713 static int
714 kiblnd_setup_rd_iov(lnet_ni_t *ni, kib_tx_t *tx, kib_rdma_desc_t *rd,
715                     unsigned int niov, struct iovec *iov, int offset, int nob)
716 {
717         kib_net_t          *net = ni->ni_data;
718         struct page        *page;
719         struct scatterlist *sg;
720         unsigned long       vaddr;
721         int                 fragnob;
722         int                 page_offset;
723
724         LASSERT (nob > 0);
725         LASSERT (niov > 0);
726         LASSERT (net != NULL);
727
728         while (offset >= iov->iov_len) {
729                 offset -= iov->iov_len;
730                 niov--;
731                 iov++;
732                 LASSERT (niov > 0);
733         }
734
735         sg = tx->tx_frags;
736         do {
737                 LASSERT (niov > 0);
738
739                 vaddr = ((unsigned long)iov->iov_base) + offset;
740                 page_offset = vaddr & (PAGE_SIZE - 1);
741                 page = kiblnd_kvaddr_to_page(vaddr);
742                 if (page == NULL) {
743                         CERROR ("Can't find page\n");
744                         return -EFAULT;
745                 }
746
747                 fragnob = min((int)(iov->iov_len - offset), nob);
748                 fragnob = min(fragnob, (int)PAGE_SIZE - page_offset);
749
750                 sg_set_page(sg, page, fragnob, page_offset);
751                 sg++;
752
753                 if (offset + fragnob < iov->iov_len) {
754                         offset += fragnob;
755                 } else {
756                         offset = 0;
757                         iov++;
758                         niov--;
759                 }
760                 nob -= fragnob;
761         } while (nob > 0);
762
763         return kiblnd_map_tx(ni, tx, rd, sg - tx->tx_frags);
764 }
765
766 static int
767 kiblnd_setup_rd_kiov (lnet_ni_t *ni, kib_tx_t *tx, kib_rdma_desc_t *rd,
768                       int nkiov, lnet_kiov_t *kiov, int offset, int nob)
769 {
770         kib_net_t          *net = ni->ni_data;
771         struct scatterlist *sg;
772         int                 fragnob;
773
774         CDEBUG(D_NET, "niov %d offset %d nob %d\n", nkiov, offset, nob);
775
776         LASSERT (nob > 0);
777         LASSERT (nkiov > 0);
778         LASSERT (net != NULL);
779
780         while (offset >= kiov->kiov_len) {
781                 offset -= kiov->kiov_len;
782                 nkiov--;
783                 kiov++;
784                 LASSERT (nkiov > 0);
785         }
786
787         sg = tx->tx_frags;
788         do {
789                 LASSERT (nkiov > 0);
790
791                 fragnob = min((int)(kiov->kiov_len - offset), nob);
792
793                 sg_set_page(sg, kiov->kiov_page, fragnob,
794                             kiov->kiov_offset + offset);
795                 sg++;
796
797                 offset = 0;
798                 kiov++;
799                 nkiov--;
800                 nob -= fragnob;
801         } while (nob > 0);
802
803         return kiblnd_map_tx(ni, tx, rd, sg - tx->tx_frags);
804 }
805
806 static int
807 kiblnd_post_tx_locked (kib_conn_t *conn, kib_tx_t *tx, int credit)
808 __must_hold(&conn->ibc_lock)
809 {
810         kib_msg_t         *msg = tx->tx_msg;
811         kib_peer_t        *peer = conn->ibc_peer;
812         int                ver = conn->ibc_version;
813         int                rc;
814         int                done;
815         struct ib_send_wr *bad_wrq;
816
817         LASSERT (tx->tx_queued);
818         /* We rely on this for QP sizing */
819         LASSERT (tx->tx_nwrq > 0);
820         LASSERT (tx->tx_nwrq <= 1 + IBLND_RDMA_FRAGS(ver));
821
822         LASSERT (credit == 0 || credit == 1);
823         LASSERT (conn->ibc_outstanding_credits >= 0);
824         LASSERT (conn->ibc_outstanding_credits <= IBLND_MSG_QUEUE_SIZE(ver));
825         LASSERT (conn->ibc_credits >= 0);
826         LASSERT (conn->ibc_credits <= IBLND_MSG_QUEUE_SIZE(ver));
827
828         if (conn->ibc_nsends_posted == IBLND_CONCURRENT_SENDS(ver)) {
829                 /* tx completions outstanding... */
830                 CDEBUG(D_NET, "%s: posted enough\n",
831                        libcfs_nid2str(peer->ibp_nid));
832                 return -EAGAIN;
833         }
834
835         if (credit != 0 && conn->ibc_credits == 0) {   /* no credits */
836                 CDEBUG(D_NET, "%s: no credits\n",
837                        libcfs_nid2str(peer->ibp_nid));
838                 return -EAGAIN;
839         }
840
841         if (credit != 0 && !IBLND_OOB_CAPABLE(ver) &&
842             conn->ibc_credits == 1 &&   /* last credit reserved */
843             msg->ibm_type != IBLND_MSG_NOOP) {      /* for NOOP */
844                 CDEBUG(D_NET, "%s: not using last credit\n",
845                        libcfs_nid2str(peer->ibp_nid));
846                 return -EAGAIN;
847         }
848
849         /* NB don't drop ibc_lock before bumping tx_sending */
850         list_del(&tx->tx_list);
851         tx->tx_queued = 0;
852
853         if (msg->ibm_type == IBLND_MSG_NOOP &&
854             (!kiblnd_need_noop(conn) ||     /* redundant NOOP */
855              (IBLND_OOB_CAPABLE(ver) && /* posted enough NOOP */
856               conn->ibc_noops_posted == IBLND_OOB_MSGS(ver)))) {
857                 /* OK to drop when posted enough NOOPs, since
858                  * kiblnd_check_sends will queue NOOP again when
859                  * posted NOOPs complete */
860                 spin_unlock(&conn->ibc_lock);
861                 kiblnd_tx_done(peer->ibp_ni, tx);
862                 spin_lock(&conn->ibc_lock);
863                 CDEBUG(D_NET, "%s(%d): redundant or enough NOOP\n",
864                        libcfs_nid2str(peer->ibp_nid),
865                        conn->ibc_noops_posted);
866                 return 0;
867         }
868
869         kiblnd_pack_msg(peer->ibp_ni, msg, ver, conn->ibc_outstanding_credits,
870                         peer->ibp_nid, conn->ibc_incarnation);
871
872         conn->ibc_credits -= credit;
873         conn->ibc_outstanding_credits = 0;
874         conn->ibc_nsends_posted++;
875         if (msg->ibm_type == IBLND_MSG_NOOP)
876                 conn->ibc_noops_posted++;
877
878         /* CAVEAT EMPTOR!  This tx could be the PUT_DONE of an RDMA
879          * PUT.  If so, it was first queued here as a PUT_REQ, sent and
880          * stashed on ibc_active_txs, matched by an incoming PUT_ACK,
881          * and then re-queued here.  It's (just) possible that
882          * tx_sending is non-zero if we've not done the tx_complete()
883          * from the first send; hence the ++ rather than = below. */
884         tx->tx_sending++;
885         list_add(&tx->tx_list, &conn->ibc_active_txs);
886
887         /* I'm still holding ibc_lock! */
888         if (conn->ibc_state != IBLND_CONN_ESTABLISHED) {
889                 rc = -ECONNABORTED;
890         } else if (tx->tx_pool->tpo_pool.po_failed ||
891                  conn->ibc_hdev != tx->tx_pool->tpo_hdev) {
892                 /* close_conn will launch failover */
893                 rc = -ENETDOWN;
894         } else {
895                 rc = ib_post_send(conn->ibc_cmid->qp,
896                                   tx->tx_wrq, &bad_wrq);
897         }
898
899         conn->ibc_last_send = jiffies;
900
901         if (rc == 0)
902                 return 0;
903
904         /* NB credits are transferred in the actual
905          * message, which can only be the last work item */
906         conn->ibc_credits += credit;
907         conn->ibc_outstanding_credits += msg->ibm_credits;
908         conn->ibc_nsends_posted--;
909         if (msg->ibm_type == IBLND_MSG_NOOP)
910                 conn->ibc_noops_posted--;
911
912         tx->tx_status = rc;
913         tx->tx_waiting = 0;
914         tx->tx_sending--;
915
916         done = (tx->tx_sending == 0);
917         if (done)
918                 list_del(&tx->tx_list);
919
920         spin_unlock(&conn->ibc_lock);
921
922         if (conn->ibc_state == IBLND_CONN_ESTABLISHED)
923                 CERROR("Error %d posting transmit to %s\n",
924                        rc, libcfs_nid2str(peer->ibp_nid));
925         else
926                 CDEBUG(D_NET, "Error %d posting transmit to %s\n",
927                        rc, libcfs_nid2str(peer->ibp_nid));
928
929         kiblnd_close_conn(conn, rc);
930
931         if (done)
932                 kiblnd_tx_done(peer->ibp_ni, tx);
933
934         spin_lock(&conn->ibc_lock);
935
936         return -EIO;
937 }
938
939 static void
940 kiblnd_check_sends (kib_conn_t *conn)
941 {
942         int        ver = conn->ibc_version;
943         lnet_ni_t *ni = conn->ibc_peer->ibp_ni;
944         kib_tx_t  *tx;
945
946         /* Don't send anything until after the connection is established */
947         if (conn->ibc_state < IBLND_CONN_ESTABLISHED) {
948                 CDEBUG(D_NET, "%s too soon\n",
949                        libcfs_nid2str(conn->ibc_peer->ibp_nid));
950                 return;
951         }
952
953         spin_lock(&conn->ibc_lock);
954
955         LASSERT (conn->ibc_nsends_posted <= IBLND_CONCURRENT_SENDS(ver));
956         LASSERT (!IBLND_OOB_CAPABLE(ver) ||
957                  conn->ibc_noops_posted <= IBLND_OOB_MSGS(ver));
958         LASSERT (conn->ibc_reserved_credits >= 0);
959
960         while (conn->ibc_reserved_credits > 0 &&
961                !list_empty(&conn->ibc_tx_queue_rsrvd)) {
962                 tx = list_entry(conn->ibc_tx_queue_rsrvd.next,
963                                     kib_tx_t, tx_list);
964                 list_del(&tx->tx_list);
965                 list_add_tail(&tx->tx_list, &conn->ibc_tx_queue);
966                 conn->ibc_reserved_credits--;
967         }
968
969         if (kiblnd_need_noop(conn)) {
970                 spin_unlock(&conn->ibc_lock);
971
972                 tx = kiblnd_get_idle_tx(ni, conn->ibc_peer->ibp_nid);
973                 if (tx != NULL)
974                         kiblnd_init_tx_msg(ni, tx, IBLND_MSG_NOOP, 0);
975
976                 spin_lock(&conn->ibc_lock);
977                 if (tx != NULL)
978                         kiblnd_queue_tx_locked(tx, conn);
979         }
980
981         kiblnd_conn_addref(conn); /* 1 ref for me.... (see b21911) */
982
983         for (;;) {
984                 int credit;
985
986                 if (!list_empty(&conn->ibc_tx_queue_nocred)) {
987                         credit = 0;
988                         tx = list_entry(conn->ibc_tx_queue_nocred.next,
989                                             kib_tx_t, tx_list);
990                 } else if (!list_empty(&conn->ibc_tx_noops)) {
991                         LASSERT (!IBLND_OOB_CAPABLE(ver));
992                         credit = 1;
993                         tx = list_entry(conn->ibc_tx_noops.next,
994                                         kib_tx_t, tx_list);
995                 } else if (!list_empty(&conn->ibc_tx_queue)) {
996                         credit = 1;
997                         tx = list_entry(conn->ibc_tx_queue.next,
998                                             kib_tx_t, tx_list);
999                 } else
1000                         break;
1001
1002                 if (kiblnd_post_tx_locked(conn, tx, credit) != 0)
1003                         break;
1004         }
1005
1006         spin_unlock(&conn->ibc_lock);
1007
1008         kiblnd_conn_decref(conn); /* ...until here */
1009 }
1010
1011 static void
1012 kiblnd_tx_complete (kib_tx_t *tx, int status)
1013 {
1014         int           failed = (status != IB_WC_SUCCESS);
1015         kib_conn_t   *conn = tx->tx_conn;
1016         int           idle;
1017
1018         LASSERT (tx->tx_sending > 0);
1019
1020         if (failed) {
1021                 if (conn->ibc_state == IBLND_CONN_ESTABLISHED)
1022                         CNETERR("Tx -> %s cookie "LPX64
1023                                 " sending %d waiting %d: failed %d\n",
1024                                 libcfs_nid2str(conn->ibc_peer->ibp_nid),
1025                                 tx->tx_cookie, tx->tx_sending, tx->tx_waiting,
1026                                 status);
1027
1028                 kiblnd_close_conn(conn, -EIO);
1029         } else {
1030                 kiblnd_peer_alive(conn->ibc_peer);
1031         }
1032
1033         spin_lock(&conn->ibc_lock);
1034
1035         /* I could be racing with rdma completion.  Whoever makes 'tx' idle
1036          * gets to free it, which also drops its ref on 'conn'. */
1037
1038         tx->tx_sending--;
1039         conn->ibc_nsends_posted--;
1040         if (tx->tx_msg->ibm_type == IBLND_MSG_NOOP)
1041                 conn->ibc_noops_posted--;
1042
1043         if (failed) {
1044                 tx->tx_waiting = 0;             /* don't wait for peer */
1045                 tx->tx_status = -EIO;
1046         }
1047
1048         idle = (tx->tx_sending == 0) &&         /* This is the final callback */
1049                !tx->tx_waiting &&               /* Not waiting for peer */
1050                !tx->tx_queued;                  /* Not re-queued (PUT_DONE) */
1051         if (idle)
1052                 list_del(&tx->tx_list);
1053
1054         kiblnd_conn_addref(conn);               /* 1 ref for me.... */
1055
1056         spin_unlock(&conn->ibc_lock);
1057
1058         if (idle)
1059                 kiblnd_tx_done(conn->ibc_peer->ibp_ni, tx);
1060
1061         kiblnd_check_sends(conn);
1062
1063         kiblnd_conn_decref(conn);               /* ...until here */
1064 }
1065
1066 static void
1067 kiblnd_init_tx_msg (lnet_ni_t *ni, kib_tx_t *tx, int type, int body_nob)
1068 {
1069         kib_hca_dev_t     *hdev = tx->tx_pool->tpo_hdev;
1070         struct ib_sge     *sge = &tx->tx_sge[tx->tx_nwrq];
1071         struct ib_send_wr *wrq = &tx->tx_wrq[tx->tx_nwrq];
1072         int                nob = offsetof (kib_msg_t, ibm_u) + body_nob;
1073         struct ib_mr      *mr;
1074
1075         LASSERT (tx->tx_nwrq >= 0);
1076         LASSERT (tx->tx_nwrq < IBLND_MAX_RDMA_FRAGS + 1);
1077         LASSERT (nob <= IBLND_MSG_SIZE);
1078
1079         kiblnd_init_msg(tx->tx_msg, type, body_nob);
1080
1081         mr = kiblnd_find_dma_mr(hdev, tx->tx_msgaddr, nob);
1082         LASSERT (mr != NULL);
1083
1084         sge->lkey   = mr->lkey;
1085         sge->addr   = tx->tx_msgaddr;
1086         sge->length = nob;
1087
1088         memset(wrq, 0, sizeof(*wrq));
1089
1090         wrq->next       = NULL;
1091         wrq->wr_id      = kiblnd_ptr2wreqid(tx, IBLND_WID_TX);
1092         wrq->sg_list    = sge;
1093         wrq->num_sge    = 1;
1094         wrq->opcode     = IB_WR_SEND;
1095         wrq->send_flags = IB_SEND_SIGNALED;
1096
1097         tx->tx_nwrq++;
1098 }
1099
1100 static int
1101 kiblnd_init_rdma(kib_conn_t *conn, kib_tx_t *tx, int type,
1102                  int resid, kib_rdma_desc_t *dstrd, __u64 dstcookie)
1103 {
1104         kib_msg_t         *ibmsg = tx->tx_msg;
1105         kib_rdma_desc_t   *srcrd = tx->tx_rd;
1106         struct ib_sge     *sge = &tx->tx_sge[0];
1107         struct ib_send_wr *wrq = &tx->tx_wrq[0];
1108         int                rc  = resid;
1109         int                srcidx;
1110         int                dstidx;
1111         int                wrknob;
1112
1113         LASSERT (!in_interrupt());
1114         LASSERT (tx->tx_nwrq == 0);
1115         LASSERT (type == IBLND_MSG_GET_DONE ||
1116                  type == IBLND_MSG_PUT_DONE);
1117
1118         srcidx = dstidx = 0;
1119
1120         while (resid > 0) {
1121                 if (srcidx >= srcrd->rd_nfrags) {
1122                         CERROR("Src buffer exhausted: %d frags\n", srcidx);
1123                         rc = -EPROTO;
1124                         break;
1125                 }
1126
1127                 if (dstidx == dstrd->rd_nfrags) {
1128                         CERROR("Dst buffer exhausted: %d frags\n", dstidx);
1129                         rc = -EPROTO;
1130                         break;
1131                 }
1132
1133                 if (tx->tx_nwrq == IBLND_RDMA_FRAGS(conn->ibc_version)) {
1134                         CERROR("RDMA too fragmented for %s (%d): "
1135                                "%d/%d src %d/%d dst frags\n",
1136                                libcfs_nid2str(conn->ibc_peer->ibp_nid),
1137                                IBLND_RDMA_FRAGS(conn->ibc_version),
1138                                srcidx, srcrd->rd_nfrags,
1139                                dstidx, dstrd->rd_nfrags);
1140                         rc = -EMSGSIZE;
1141                         break;
1142                 }
1143
1144                 wrknob = MIN(MIN(kiblnd_rd_frag_size(srcrd, srcidx),
1145                                  kiblnd_rd_frag_size(dstrd, dstidx)), resid);
1146
1147                 sge = &tx->tx_sge[tx->tx_nwrq];
1148                 sge->addr   = kiblnd_rd_frag_addr(srcrd, srcidx);
1149                 sge->lkey   = kiblnd_rd_frag_key(srcrd, srcidx);
1150                 sge->length = wrknob;
1151
1152                 wrq = &tx->tx_wrq[tx->tx_nwrq];
1153
1154                 wrq->next       = wrq + 1;
1155                 wrq->wr_id      = kiblnd_ptr2wreqid(tx, IBLND_WID_RDMA);
1156                 wrq->sg_list    = sge;
1157                 wrq->num_sge    = 1;
1158                 wrq->opcode     = IB_WR_RDMA_WRITE;
1159                 wrq->send_flags = 0;
1160
1161                 wrq->wr.rdma.remote_addr = kiblnd_rd_frag_addr(dstrd, dstidx);
1162                 wrq->wr.rdma.rkey        = kiblnd_rd_frag_key(dstrd, dstidx);
1163
1164                 srcidx = kiblnd_rd_consume_frag(srcrd, srcidx, wrknob);
1165                 dstidx = kiblnd_rd_consume_frag(dstrd, dstidx, wrknob);
1166
1167                 resid -= wrknob;
1168
1169                 tx->tx_nwrq++;
1170                 wrq++;
1171                 sge++;
1172         }
1173
1174         if (rc < 0)                             /* no RDMA if completing with failure */
1175                 tx->tx_nwrq = 0;
1176
1177         ibmsg->ibm_u.completion.ibcm_status = rc;
1178         ibmsg->ibm_u.completion.ibcm_cookie = dstcookie;
1179         kiblnd_init_tx_msg(conn->ibc_peer->ibp_ni, tx,
1180                            type, sizeof (kib_completion_msg_t));
1181
1182         return rc;
1183 }
1184
1185 static void
1186 kiblnd_queue_tx_locked(kib_tx_t *tx, kib_conn_t *conn)
1187 {
1188         struct list_head *q;
1189
1190         LASSERT(tx->tx_nwrq > 0);       /* work items set up */
1191         LASSERT(!tx->tx_queued);        /* not queued for sending already */
1192         LASSERT(conn->ibc_state >= IBLND_CONN_ESTABLISHED);
1193
1194         tx->tx_queued = 1;
1195         tx->tx_deadline = jiffies +
1196                           msecs_to_jiffies(*kiblnd_tunables.kib_timeout *
1197                                            MSEC_PER_SEC);
1198
1199         if (tx->tx_conn == NULL) {
1200                 kiblnd_conn_addref(conn);
1201                 tx->tx_conn = conn;
1202                 LASSERT (tx->tx_msg->ibm_type != IBLND_MSG_PUT_DONE);
1203         } else {
1204                 /* PUT_DONE first attached to conn as a PUT_REQ */
1205                 LASSERT (tx->tx_conn == conn);
1206                 LASSERT (tx->tx_msg->ibm_type == IBLND_MSG_PUT_DONE);
1207         }
1208
1209         switch (tx->tx_msg->ibm_type) {
1210         default:
1211                 LBUG();
1212
1213         case IBLND_MSG_PUT_REQ:
1214         case IBLND_MSG_GET_REQ:
1215                 q = &conn->ibc_tx_queue_rsrvd;
1216                 break;
1217
1218         case IBLND_MSG_PUT_NAK:
1219         case IBLND_MSG_PUT_ACK:
1220         case IBLND_MSG_PUT_DONE:
1221         case IBLND_MSG_GET_DONE:
1222                 q = &conn->ibc_tx_queue_nocred;
1223                 break;
1224
1225         case IBLND_MSG_NOOP:
1226                 if (IBLND_OOB_CAPABLE(conn->ibc_version))
1227                         q = &conn->ibc_tx_queue_nocred;
1228                 else
1229                         q = &conn->ibc_tx_noops;
1230                 break;
1231
1232         case IBLND_MSG_IMMEDIATE:
1233                 q = &conn->ibc_tx_queue;
1234                 break;
1235         }
1236
1237         list_add_tail(&tx->tx_list, q);
1238 }
1239
1240 static void
1241 kiblnd_queue_tx (kib_tx_t *tx, kib_conn_t *conn)
1242 {
1243         spin_lock(&conn->ibc_lock);
1244         kiblnd_queue_tx_locked(tx, conn);
1245         spin_unlock(&conn->ibc_lock);
1246
1247         kiblnd_check_sends(conn);
1248 }
1249
1250 static int kiblnd_resolve_addr(struct rdma_cm_id *cmid,
1251                                struct sockaddr_in *srcaddr,
1252                                struct sockaddr_in *dstaddr,
1253                                int timeout_ms)
1254 {
1255         unsigned short port;
1256         int rc;
1257
1258 #ifdef HAVE_OFED_RDMA_SET_REUSEADDR
1259         /* allow the port to be reused */
1260         rc = rdma_set_reuseaddr(cmid, 1);
1261         if (rc != 0) {
1262                 CERROR("Unable to set reuse on cmid: %d\n", rc);
1263                 return rc;
1264         }
1265 #endif
1266
1267         /* look for a free privileged port */
1268         for (port = PROT_SOCK-1; port > 0; port--) {
1269                 srcaddr->sin_port = htons(port);
1270                 rc = rdma_resolve_addr(cmid,
1271                                        (struct sockaddr *)srcaddr,
1272                                        (struct sockaddr *)dstaddr,
1273                                        timeout_ms);
1274                 if (rc == 0) {
1275                         CDEBUG(D_NET, "bound to port %hu\n", port);
1276                         return 0;
1277                 } else if (rc == -EADDRINUSE || rc == -EADDRNOTAVAIL) {
1278                         CDEBUG(D_NET, "bind to port %hu failed: %d\n",
1279                                port, rc);
1280                 } else {
1281                         return rc;
1282                 }
1283         }
1284
1285         CERROR("Failed to bind to a free privileged port\n");
1286 #ifndef HAVE_OFED_RDMA_SET_REUSEADDR
1287         CERROR("You may need IB verbs that supports rdma_set_reuseaddr()\n");
1288 #endif
1289         return rc;
1290 }
1291
1292 static void
1293 kiblnd_connect_peer (kib_peer_t *peer)
1294 {
1295         struct rdma_cm_id *cmid;
1296         kib_dev_t         *dev;
1297         kib_net_t         *net = peer->ibp_ni->ni_data;
1298         struct sockaddr_in srcaddr;
1299         struct sockaddr_in dstaddr;
1300         int                rc;
1301
1302         LASSERT (net != NULL);
1303         LASSERT (peer->ibp_connecting > 0);
1304
1305         cmid = kiblnd_rdma_create_id(kiblnd_cm_callback, peer, RDMA_PS_TCP,
1306                                      IB_QPT_RC);
1307
1308         if (IS_ERR(cmid)) {
1309                 CERROR("Can't create CMID for %s: %ld\n",
1310                        libcfs_nid2str(peer->ibp_nid), PTR_ERR(cmid));
1311                 rc = PTR_ERR(cmid);
1312                 goto failed;
1313         }
1314
1315         dev = net->ibn_dev;
1316         memset(&srcaddr, 0, sizeof(srcaddr));
1317         srcaddr.sin_family = AF_INET;
1318         srcaddr.sin_addr.s_addr = htonl(dev->ibd_ifip);
1319
1320         memset(&dstaddr, 0, sizeof(dstaddr));
1321         dstaddr.sin_family = AF_INET;
1322         dstaddr.sin_port = htons(*kiblnd_tunables.kib_service);
1323         dstaddr.sin_addr.s_addr = htonl(LNET_NIDADDR(peer->ibp_nid));
1324
1325         kiblnd_peer_addref(peer);               /* cmid's ref */
1326
1327         if (*kiblnd_tunables.kib_use_priv_port) {
1328                 rc = kiblnd_resolve_addr(cmid, &srcaddr, &dstaddr,
1329                                          *kiblnd_tunables.kib_timeout * 1000);
1330         } else {
1331                 rc = rdma_resolve_addr(cmid,
1332                                        (struct sockaddr *)&srcaddr,
1333                                        (struct sockaddr *)&dstaddr,
1334                                        *kiblnd_tunables.kib_timeout * 1000);
1335         }
1336         if (rc != 0) {
1337                 /* Can't initiate address resolution:  */
1338                 CERROR("Can't resolve addr for %s: %d\n",
1339                        libcfs_nid2str(peer->ibp_nid), rc);
1340                 goto failed2;
1341         }
1342
1343         LASSERT (cmid->device != NULL);
1344         CDEBUG(D_NET, "%s: connection bound to %s:%pI4h:%s\n",
1345                libcfs_nid2str(peer->ibp_nid), dev->ibd_ifname,
1346                &dev->ibd_ifip, cmid->device->name);
1347
1348         return;
1349
1350  failed2:
1351         kiblnd_peer_decref(peer);               /* cmid's ref */
1352         rdma_destroy_id(cmid);
1353  failed:
1354         kiblnd_peer_connect_failed(peer, 1, rc);
1355 }
1356
1357 void
1358 kiblnd_launch_tx (lnet_ni_t *ni, kib_tx_t *tx, lnet_nid_t nid)
1359 {
1360         kib_peer_t        *peer;
1361         kib_peer_t        *peer2;
1362         kib_conn_t        *conn;
1363         rwlock_t        *g_lock = &kiblnd_data.kib_global_lock;
1364         unsigned long      flags;
1365         int                rc;
1366
1367         /* If I get here, I've committed to send, so I complete the tx with
1368          * failure on any problems */
1369
1370         LASSERT (tx == NULL || tx->tx_conn == NULL); /* only set when assigned a conn */
1371         LASSERT (tx == NULL || tx->tx_nwrq > 0);     /* work items have been set up */
1372
1373         /* First time, just use a read lock since I expect to find my peer
1374          * connected */
1375         read_lock_irqsave(g_lock, flags);
1376
1377         peer = kiblnd_find_peer_locked(nid);
1378         if (peer != NULL && !list_empty(&peer->ibp_conns)) {
1379                 /* Found a peer with an established connection */
1380                 conn = kiblnd_get_conn_locked(peer);
1381                 kiblnd_conn_addref(conn); /* 1 ref for me... */
1382
1383                 read_unlock_irqrestore(g_lock, flags);
1384
1385                 if (tx != NULL)
1386                         kiblnd_queue_tx(tx, conn);
1387                 kiblnd_conn_decref(conn); /* ...to here */
1388                 return;
1389         }
1390
1391         read_unlock(g_lock);
1392         /* Re-try with a write lock */
1393         write_lock(g_lock);
1394
1395         peer = kiblnd_find_peer_locked(nid);
1396         if (peer != NULL) {
1397                 if (list_empty(&peer->ibp_conns)) {
1398                         /* found a peer, but it's still connecting... */
1399                         LASSERT (peer->ibp_connecting != 0 ||
1400                                  peer->ibp_accepting != 0);
1401                         if (tx != NULL)
1402                                 list_add_tail(&tx->tx_list,
1403                                                   &peer->ibp_tx_queue);
1404                         write_unlock_irqrestore(g_lock, flags);
1405                 } else {
1406                         conn = kiblnd_get_conn_locked(peer);
1407                         kiblnd_conn_addref(conn); /* 1 ref for me... */
1408
1409                         write_unlock_irqrestore(g_lock, flags);
1410
1411                         if (tx != NULL)
1412                                 kiblnd_queue_tx(tx, conn);
1413                         kiblnd_conn_decref(conn); /* ...to here */
1414                 }
1415                 return;
1416         }
1417
1418         write_unlock_irqrestore(g_lock, flags);
1419
1420         /* Allocate a peer ready to add to the peer table and retry */
1421         rc = kiblnd_create_peer(ni, &peer, nid);
1422         if (rc != 0) {
1423                 CERROR("Can't create peer %s\n", libcfs_nid2str(nid));
1424                 if (tx != NULL) {
1425                         tx->tx_status = -EHOSTUNREACH;
1426                         tx->tx_waiting = 0;
1427                         kiblnd_tx_done(ni, tx);
1428                 }
1429                 return;
1430         }
1431
1432         write_lock_irqsave(g_lock, flags);
1433
1434         peer2 = kiblnd_find_peer_locked(nid);
1435         if (peer2 != NULL) {
1436                 if (list_empty(&peer2->ibp_conns)) {
1437                         /* found a peer, but it's still connecting... */
1438                         LASSERT (peer2->ibp_connecting != 0 ||
1439                                  peer2->ibp_accepting != 0);
1440                         if (tx != NULL)
1441                                 list_add_tail(&tx->tx_list,
1442                                                   &peer2->ibp_tx_queue);
1443                         write_unlock_irqrestore(g_lock, flags);
1444                 } else {
1445                         conn = kiblnd_get_conn_locked(peer2);
1446                         kiblnd_conn_addref(conn); /* 1 ref for me... */
1447
1448                         write_unlock_irqrestore(g_lock, flags);
1449
1450                         if (tx != NULL)
1451                                 kiblnd_queue_tx(tx, conn);
1452                         kiblnd_conn_decref(conn); /* ...to here */
1453                 }
1454
1455                 kiblnd_peer_decref(peer);
1456                 return;
1457         }
1458
1459         /* Brand new peer */
1460         LASSERT (peer->ibp_connecting == 0);
1461         peer->ibp_connecting = 1;
1462
1463         /* always called with a ref on ni, which prevents ni being shutdown */
1464         LASSERT (((kib_net_t *)ni->ni_data)->ibn_shutdown == 0);
1465
1466         if (tx != NULL)
1467                 list_add_tail(&tx->tx_list, &peer->ibp_tx_queue);
1468
1469         kiblnd_peer_addref(peer);
1470         list_add_tail(&peer->ibp_list, kiblnd_nid2peerlist(nid));
1471
1472         write_unlock_irqrestore(g_lock, flags);
1473
1474         kiblnd_connect_peer(peer);
1475         kiblnd_peer_decref(peer);
1476 }
1477
1478 int
1479 kiblnd_send (lnet_ni_t *ni, void *private, lnet_msg_t *lntmsg)
1480 {
1481         lnet_hdr_t       *hdr = &lntmsg->msg_hdr;
1482         int               type = lntmsg->msg_type;
1483         lnet_process_id_t target = lntmsg->msg_target;
1484         int               target_is_router = lntmsg->msg_target_is_router;
1485         int               routing = lntmsg->msg_routing;
1486         unsigned int      payload_niov = lntmsg->msg_niov;
1487         struct iovec     *payload_iov = lntmsg->msg_iov;
1488         lnet_kiov_t      *payload_kiov = lntmsg->msg_kiov;
1489         unsigned int      payload_offset = lntmsg->msg_offset;
1490         unsigned int      payload_nob = lntmsg->msg_len;
1491         kib_msg_t        *ibmsg;
1492         kib_rdma_desc_t  *rd;
1493         kib_tx_t         *tx;
1494         int               nob;
1495         int               rc;
1496
1497         /* NB 'private' is different depending on what we're sending.... */
1498
1499         CDEBUG(D_NET, "sending %d bytes in %d frags to %s\n",
1500                payload_nob, payload_niov, libcfs_id2str(target));
1501
1502         LASSERT (payload_nob == 0 || payload_niov > 0);
1503         LASSERT (payload_niov <= LNET_MAX_IOV);
1504
1505         /* Thread context */
1506         LASSERT (!in_interrupt());
1507         /* payload is either all vaddrs or all pages */
1508         LASSERT (!(payload_kiov != NULL && payload_iov != NULL));
1509
1510         switch (type) {
1511         default:
1512                 LBUG();
1513                 return (-EIO);
1514
1515         case LNET_MSG_ACK:
1516                 LASSERT (payload_nob == 0);
1517                 break;
1518
1519         case LNET_MSG_GET:
1520                 if (routing || target_is_router)
1521                         break;                  /* send IMMEDIATE */
1522
1523                 /* is the REPLY message too small for RDMA? */
1524                 nob = offsetof(kib_msg_t, ibm_u.immediate.ibim_payload[lntmsg->msg_md->md_length]);
1525                 if (nob <= IBLND_MSG_SIZE)
1526                         break;                  /* send IMMEDIATE */
1527
1528                 tx = kiblnd_get_idle_tx(ni, target.nid);
1529                 if (tx == NULL) {
1530                         CERROR("Can't allocate txd for GET to %s\n",
1531                                libcfs_nid2str(target.nid));
1532                         return -ENOMEM;
1533                 }
1534
1535                 ibmsg = tx->tx_msg;
1536                 rd = &ibmsg->ibm_u.get.ibgm_rd;
1537                 if ((lntmsg->msg_md->md_options & LNET_MD_KIOV) == 0)
1538                         rc = kiblnd_setup_rd_iov(ni, tx, rd,
1539                                                  lntmsg->msg_md->md_niov,
1540                                                  lntmsg->msg_md->md_iov.iov,
1541                                                  0, lntmsg->msg_md->md_length);
1542                 else
1543                         rc = kiblnd_setup_rd_kiov(ni, tx, rd,
1544                                                   lntmsg->msg_md->md_niov,
1545                                                   lntmsg->msg_md->md_iov.kiov,
1546                                                   0, lntmsg->msg_md->md_length);
1547                 if (rc != 0) {
1548                         CERROR("Can't setup GET sink for %s: %d\n",
1549                                libcfs_nid2str(target.nid), rc);
1550                         kiblnd_tx_done(ni, tx);
1551                         return -EIO;
1552                 }
1553
1554                 nob = offsetof(kib_get_msg_t, ibgm_rd.rd_frags[rd->rd_nfrags]);
1555                 ibmsg->ibm_u.get.ibgm_cookie = tx->tx_cookie;
1556                 ibmsg->ibm_u.get.ibgm_hdr = *hdr;
1557
1558                 kiblnd_init_tx_msg(ni, tx, IBLND_MSG_GET_REQ, nob);
1559
1560                 tx->tx_lntmsg[1] = lnet_create_reply_msg(ni, lntmsg);
1561                 if (tx->tx_lntmsg[1] == NULL) {
1562                         CERROR("Can't create reply for GET -> %s\n",
1563                                libcfs_nid2str(target.nid));
1564                         kiblnd_tx_done(ni, tx);
1565                         return -EIO;
1566                 }
1567
1568                 tx->tx_lntmsg[0] = lntmsg;      /* finalise lntmsg[0,1] on completion */
1569                 tx->tx_waiting = 1;             /* waiting for GET_DONE */
1570                 kiblnd_launch_tx(ni, tx, target.nid);
1571                 return 0;
1572
1573         case LNET_MSG_REPLY:
1574         case LNET_MSG_PUT:
1575                 /* Is the payload small enough not to need RDMA? */
1576                 nob = offsetof(kib_msg_t, ibm_u.immediate.ibim_payload[payload_nob]);
1577                 if (nob <= IBLND_MSG_SIZE)
1578                         break;                  /* send IMMEDIATE */
1579
1580                 tx = kiblnd_get_idle_tx(ni, target.nid);
1581                 if (tx == NULL) {
1582                         CERROR("Can't allocate %s txd for %s\n",
1583                                type == LNET_MSG_PUT ? "PUT" : "REPLY",
1584                                libcfs_nid2str(target.nid));
1585                         return -ENOMEM;
1586                 }
1587
1588                 if (payload_kiov == NULL)
1589                         rc = kiblnd_setup_rd_iov(ni, tx, tx->tx_rd,
1590                                                  payload_niov, payload_iov,
1591                                                  payload_offset, payload_nob);
1592                 else
1593                         rc = kiblnd_setup_rd_kiov(ni, tx, tx->tx_rd,
1594                                                   payload_niov, payload_kiov,
1595                                                   payload_offset, payload_nob);
1596                 if (rc != 0) {
1597                         CERROR("Can't setup PUT src for %s: %d\n",
1598                                libcfs_nid2str(target.nid), rc);
1599                         kiblnd_tx_done(ni, tx);
1600                         return -EIO;
1601                 }
1602
1603                 ibmsg = tx->tx_msg;
1604                 ibmsg->ibm_u.putreq.ibprm_hdr = *hdr;
1605                 ibmsg->ibm_u.putreq.ibprm_cookie = tx->tx_cookie;
1606                 kiblnd_init_tx_msg(ni, tx, IBLND_MSG_PUT_REQ, sizeof(kib_putreq_msg_t));
1607
1608                 tx->tx_lntmsg[0] = lntmsg;      /* finalise lntmsg on completion */
1609                 tx->tx_waiting = 1;             /* waiting for PUT_{ACK,NAK} */
1610                 kiblnd_launch_tx(ni, tx, target.nid);
1611                 return 0;
1612         }
1613
1614         /* send IMMEDIATE */
1615
1616         LASSERT (offsetof(kib_msg_t, ibm_u.immediate.ibim_payload[payload_nob])
1617                  <= IBLND_MSG_SIZE);
1618
1619         tx = kiblnd_get_idle_tx(ni, target.nid);
1620         if (tx == NULL) {
1621                 CERROR ("Can't send %d to %s: tx descs exhausted\n",
1622                         type, libcfs_nid2str(target.nid));
1623                 return -ENOMEM;
1624         }
1625
1626         ibmsg = tx->tx_msg;
1627         ibmsg->ibm_u.immediate.ibim_hdr = *hdr;
1628
1629         if (payload_kiov != NULL)
1630                 lnet_copy_kiov2flat(IBLND_MSG_SIZE, ibmsg,
1631                                     offsetof(kib_msg_t, ibm_u.immediate.ibim_payload),
1632                                     payload_niov, payload_kiov,
1633                                     payload_offset, payload_nob);
1634         else
1635                 lnet_copy_iov2flat(IBLND_MSG_SIZE, ibmsg,
1636                                    offsetof(kib_msg_t, ibm_u.immediate.ibim_payload),
1637                                    payload_niov, payload_iov,
1638                                    payload_offset, payload_nob);
1639
1640         nob = offsetof(kib_immediate_msg_t, ibim_payload[payload_nob]);
1641         kiblnd_init_tx_msg(ni, tx, IBLND_MSG_IMMEDIATE, nob);
1642
1643         tx->tx_lntmsg[0] = lntmsg;              /* finalise lntmsg on completion */
1644         kiblnd_launch_tx(ni, tx, target.nid);
1645         return 0;
1646 }
1647
1648 static void
1649 kiblnd_reply (lnet_ni_t *ni, kib_rx_t *rx, lnet_msg_t *lntmsg)
1650 {
1651         lnet_process_id_t target = lntmsg->msg_target;
1652         unsigned int      niov = lntmsg->msg_niov;
1653         struct iovec     *iov = lntmsg->msg_iov;
1654         lnet_kiov_t      *kiov = lntmsg->msg_kiov;
1655         unsigned int      offset = lntmsg->msg_offset;
1656         unsigned int      nob = lntmsg->msg_len;
1657         kib_tx_t         *tx;
1658         int               rc;
1659
1660         tx = kiblnd_get_idle_tx(ni, rx->rx_conn->ibc_peer->ibp_nid);
1661         if (tx == NULL) {
1662                 CERROR("Can't get tx for REPLY to %s\n",
1663                        libcfs_nid2str(target.nid));
1664                 goto failed_0;
1665         }
1666
1667         if (nob == 0)
1668                 rc = 0;
1669         else if (kiov == NULL)
1670                 rc = kiblnd_setup_rd_iov(ni, tx, tx->tx_rd,
1671                                          niov, iov, offset, nob);
1672         else
1673                 rc = kiblnd_setup_rd_kiov(ni, tx, tx->tx_rd,
1674                                           niov, kiov, offset, nob);
1675
1676         if (rc != 0) {
1677                 CERROR("Can't setup GET src for %s: %d\n",
1678                        libcfs_nid2str(target.nid), rc);
1679                 goto failed_1;
1680         }
1681
1682         rc = kiblnd_init_rdma(rx->rx_conn, tx,
1683                               IBLND_MSG_GET_DONE, nob,
1684                               &rx->rx_msg->ibm_u.get.ibgm_rd,
1685                               rx->rx_msg->ibm_u.get.ibgm_cookie);
1686         if (rc < 0) {
1687                 CERROR("Can't setup rdma for GET from %s: %d\n",
1688                        libcfs_nid2str(target.nid), rc);
1689                 goto failed_1;
1690         }
1691         
1692         if (nob == 0) {
1693                 /* No RDMA: local completion may happen now! */
1694                 lnet_finalize(ni, lntmsg, 0);
1695         } else {
1696                 /* RDMA: lnet_finalize(lntmsg) when it
1697                  * completes */
1698                 tx->tx_lntmsg[0] = lntmsg;
1699         }
1700
1701         kiblnd_queue_tx(tx, rx->rx_conn);
1702         return;
1703
1704  failed_1:
1705         kiblnd_tx_done(ni, tx);
1706  failed_0:
1707         lnet_finalize(ni, lntmsg, -EIO);
1708 }
1709
1710 int
1711 kiblnd_recv (lnet_ni_t *ni, void *private, lnet_msg_t *lntmsg, int delayed,
1712              unsigned int niov, struct iovec *iov, lnet_kiov_t *kiov,
1713              unsigned int offset, unsigned int mlen, unsigned int rlen)
1714 {
1715         kib_rx_t    *rx = private;
1716         kib_msg_t   *rxmsg = rx->rx_msg;
1717         kib_conn_t  *conn = rx->rx_conn;
1718         kib_tx_t    *tx;
1719         int          nob;
1720         int          post_credit = IBLND_POSTRX_PEER_CREDIT;
1721         int          rc = 0;
1722
1723         LASSERT (mlen <= rlen);
1724         LASSERT (!in_interrupt());
1725         /* Either all pages or all vaddrs */
1726         LASSERT (!(kiov != NULL && iov != NULL));
1727
1728         switch (rxmsg->ibm_type) {
1729         default:
1730                 LBUG();
1731
1732         case IBLND_MSG_IMMEDIATE:
1733                 nob = offsetof(kib_msg_t, ibm_u.immediate.ibim_payload[rlen]);
1734                 if (nob > rx->rx_nob) {
1735                         CERROR ("Immediate message from %s too big: %d(%d)\n",
1736                                 libcfs_nid2str(rxmsg->ibm_u.immediate.ibim_hdr.src_nid),
1737                                 nob, rx->rx_nob);
1738                         rc = -EPROTO;
1739                         break;
1740                 }
1741
1742                 if (kiov != NULL)
1743                         lnet_copy_flat2kiov(niov, kiov, offset,
1744                                             IBLND_MSG_SIZE, rxmsg,
1745                                             offsetof(kib_msg_t, ibm_u.immediate.ibim_payload),
1746                                             mlen);
1747                 else
1748                         lnet_copy_flat2iov(niov, iov, offset,
1749                                            IBLND_MSG_SIZE, rxmsg,
1750                                            offsetof(kib_msg_t, ibm_u.immediate.ibim_payload),
1751                                            mlen);
1752                 lnet_finalize (ni, lntmsg, 0);
1753                 break;
1754
1755         case IBLND_MSG_PUT_REQ: {
1756                 kib_msg_t       *txmsg;
1757                 kib_rdma_desc_t *rd;
1758
1759                 if (mlen == 0) {
1760                         lnet_finalize(ni, lntmsg, 0);
1761                         kiblnd_send_completion(rx->rx_conn, IBLND_MSG_PUT_NAK, 0,
1762                                                rxmsg->ibm_u.putreq.ibprm_cookie);
1763                         break;
1764                 }
1765
1766                 tx = kiblnd_get_idle_tx(ni, conn->ibc_peer->ibp_nid);
1767                 if (tx == NULL) {
1768                         CERROR("Can't allocate tx for %s\n",
1769                                libcfs_nid2str(conn->ibc_peer->ibp_nid));
1770                         /* Not replying will break the connection */
1771                         rc = -ENOMEM;
1772                         break;
1773                 }
1774
1775                 txmsg = tx->tx_msg;
1776                 rd = &txmsg->ibm_u.putack.ibpam_rd;
1777                 if (kiov == NULL)
1778                         rc = kiblnd_setup_rd_iov(ni, tx, rd,
1779                                                  niov, iov, offset, mlen);
1780                 else
1781                         rc = kiblnd_setup_rd_kiov(ni, tx, rd,
1782                                                   niov, kiov, offset, mlen);
1783                 if (rc != 0) {
1784                         CERROR("Can't setup PUT sink for %s: %d\n",
1785                                libcfs_nid2str(conn->ibc_peer->ibp_nid), rc);
1786                         kiblnd_tx_done(ni, tx);
1787                         /* tell peer it's over */
1788                         kiblnd_send_completion(rx->rx_conn, IBLND_MSG_PUT_NAK, rc,
1789                                                rxmsg->ibm_u.putreq.ibprm_cookie);
1790                         break;
1791                 }
1792
1793                 nob = offsetof(kib_putack_msg_t, ibpam_rd.rd_frags[rd->rd_nfrags]);
1794                 txmsg->ibm_u.putack.ibpam_src_cookie = rxmsg->ibm_u.putreq.ibprm_cookie;
1795                 txmsg->ibm_u.putack.ibpam_dst_cookie = tx->tx_cookie;
1796
1797                 kiblnd_init_tx_msg(ni, tx, IBLND_MSG_PUT_ACK, nob);
1798
1799                 tx->tx_lntmsg[0] = lntmsg;      /* finalise lntmsg on completion */
1800                 tx->tx_waiting = 1;             /* waiting for PUT_DONE */
1801                 kiblnd_queue_tx(tx, conn);
1802
1803                 /* reposted buffer reserved for PUT_DONE */
1804                 post_credit = IBLND_POSTRX_NO_CREDIT;
1805                 break;
1806                 }
1807
1808         case IBLND_MSG_GET_REQ:
1809                 if (lntmsg != NULL) {
1810                         /* Optimized GET; RDMA lntmsg's payload */
1811                         kiblnd_reply(ni, rx, lntmsg);
1812                 } else {
1813                         /* GET didn't match anything */
1814                         kiblnd_send_completion(rx->rx_conn, IBLND_MSG_GET_DONE,
1815                                                -ENODATA,
1816                                                rxmsg->ibm_u.get.ibgm_cookie);
1817                 }
1818                 break;
1819         }
1820
1821         kiblnd_post_rx(rx, post_credit);
1822         return rc;
1823 }
1824
1825 int
1826 kiblnd_thread_start(int (*fn)(void *arg), void *arg, char *name)
1827 {
1828         struct task_struct *task = kthread_run(fn, arg, name);
1829
1830         if (IS_ERR(task))
1831                 return PTR_ERR(task);
1832
1833         atomic_inc(&kiblnd_data.kib_nthreads);
1834         return 0;
1835 }
1836
1837 static void
1838 kiblnd_thread_fini (void)
1839 {
1840         atomic_dec (&kiblnd_data.kib_nthreads);
1841 }
1842
1843 static void
1844 kiblnd_peer_alive (kib_peer_t *peer)
1845 {
1846         /* This is racy, but everyone's only writing cfs_time_current() */
1847         peer->ibp_last_alive = cfs_time_current();
1848         smp_mb();
1849 }
1850
1851 static void
1852 kiblnd_peer_notify (kib_peer_t *peer)
1853 {
1854         int           error = 0;
1855         cfs_time_t    last_alive = 0;
1856         unsigned long flags;
1857
1858         read_lock_irqsave(&kiblnd_data.kib_global_lock, flags);
1859
1860         if (list_empty(&peer->ibp_conns) &&
1861             peer->ibp_accepting == 0 &&
1862             peer->ibp_connecting == 0 &&
1863             peer->ibp_error != 0) {
1864                 error = peer->ibp_error;
1865                 peer->ibp_error = 0;
1866
1867                 last_alive = peer->ibp_last_alive;
1868         }
1869
1870         read_unlock_irqrestore(&kiblnd_data.kib_global_lock, flags);
1871
1872         if (error != 0)
1873                 lnet_notify(peer->ibp_ni,
1874                             peer->ibp_nid, 0, last_alive);
1875 }
1876
1877 void
1878 kiblnd_close_conn_locked (kib_conn_t *conn, int error)
1879 {
1880         /* This just does the immediate housekeeping.  'error' is zero for a
1881          * normal shutdown which can happen only after the connection has been
1882          * established.  If the connection is established, schedule the
1883          * connection to be finished off by the connd.  Otherwise the connd is
1884          * already dealing with it (either to set it up or tear it down).
1885          * Caller holds kib_global_lock exclusively in irq context */
1886         kib_peer_t       *peer = conn->ibc_peer;
1887         kib_dev_t        *dev;
1888         unsigned long     flags;
1889
1890         LASSERT (error != 0 || conn->ibc_state >= IBLND_CONN_ESTABLISHED);
1891
1892         if (error != 0 && conn->ibc_comms_error == 0)
1893                 conn->ibc_comms_error = error;
1894
1895         if (conn->ibc_state != IBLND_CONN_ESTABLISHED)
1896                 return; /* already being handled  */
1897
1898         if (error == 0 &&
1899             list_empty(&conn->ibc_tx_noops) &&
1900             list_empty(&conn->ibc_tx_queue) &&
1901             list_empty(&conn->ibc_tx_queue_rsrvd) &&
1902             list_empty(&conn->ibc_tx_queue_nocred) &&
1903             list_empty(&conn->ibc_active_txs)) {
1904                 CDEBUG(D_NET, "closing conn to %s\n", 
1905                        libcfs_nid2str(peer->ibp_nid));
1906         } else {
1907                 CNETERR("Closing conn to %s: error %d%s%s%s%s%s\n",
1908                        libcfs_nid2str(peer->ibp_nid), error,
1909                        list_empty(&conn->ibc_tx_queue) ? "" : "(sending)",
1910                        list_empty(&conn->ibc_tx_noops) ? "" : "(sending_noops)",
1911                        list_empty(&conn->ibc_tx_queue_rsrvd) ?
1912                                                 "" : "(sending_rsrvd)",
1913                        list_empty(&conn->ibc_tx_queue_nocred) ?
1914                                                  "" : "(sending_nocred)",
1915                        list_empty(&conn->ibc_active_txs) ? "" : "(waiting)");
1916         }
1917
1918         dev = ((kib_net_t *)peer->ibp_ni->ni_data)->ibn_dev;
1919         list_del(&conn->ibc_list);
1920         /* connd (see below) takes over ibc_list's ref */
1921
1922         if (list_empty(&peer->ibp_conns) &&    /* no more conns */
1923             kiblnd_peer_active(peer)) {         /* still in peer table */
1924                 kiblnd_unlink_peer_locked(peer);
1925
1926                 /* set/clear error on last conn */
1927                 peer->ibp_error = conn->ibc_comms_error;
1928         }
1929
1930         kiblnd_set_conn_state(conn, IBLND_CONN_CLOSING);
1931
1932         if (error != 0 &&
1933             kiblnd_dev_can_failover(dev)) {
1934                 list_add_tail(&dev->ibd_fail_list,
1935                               &kiblnd_data.kib_failed_devs);
1936                 wake_up(&kiblnd_data.kib_failover_waitq);
1937         }
1938
1939         spin_lock_irqsave(&kiblnd_data.kib_connd_lock, flags);
1940
1941         list_add_tail(&conn->ibc_list, &kiblnd_data.kib_connd_conns);
1942         wake_up(&kiblnd_data.kib_connd_waitq);
1943
1944         spin_unlock_irqrestore(&kiblnd_data.kib_connd_lock, flags);
1945 }
1946
1947 void
1948 kiblnd_close_conn(kib_conn_t *conn, int error)
1949 {
1950         unsigned long flags;
1951
1952         write_lock_irqsave(&kiblnd_data.kib_global_lock, flags);
1953
1954         kiblnd_close_conn_locked(conn, error);
1955
1956         write_unlock_irqrestore(&kiblnd_data.kib_global_lock, flags);
1957 }
1958
1959 static void
1960 kiblnd_handle_early_rxs(kib_conn_t *conn)
1961 {
1962         unsigned long    flags;
1963         kib_rx_t        *rx;
1964
1965         LASSERT(!in_interrupt());
1966         LASSERT(conn->ibc_state >= IBLND_CONN_ESTABLISHED);
1967
1968         write_lock_irqsave(&kiblnd_data.kib_global_lock, flags);
1969         while (!list_empty(&conn->ibc_early_rxs)) {
1970                 rx = list_entry(conn->ibc_early_rxs.next,
1971                                     kib_rx_t, rx_list);
1972                 list_del(&rx->rx_list);
1973                 write_unlock_irqrestore(&kiblnd_data.kib_global_lock, flags);
1974
1975                 kiblnd_handle_rx(rx);
1976
1977                 write_lock_irqsave(&kiblnd_data.kib_global_lock, flags);
1978         }
1979         write_unlock_irqrestore(&kiblnd_data.kib_global_lock, flags);
1980 }
1981
1982 static void
1983 kiblnd_abort_txs(kib_conn_t *conn, struct list_head *txs)
1984 {
1985         struct list_head         zombies = LIST_HEAD_INIT(zombies);
1986         struct list_head        *tmp;
1987         struct list_head        *nxt;
1988         kib_tx_t                *tx;
1989
1990         spin_lock(&conn->ibc_lock);
1991
1992         list_for_each_safe(tmp, nxt, txs) {
1993                 tx = list_entry(tmp, kib_tx_t, tx_list);
1994
1995                 if (txs == &conn->ibc_active_txs) {
1996                         LASSERT(!tx->tx_queued);
1997                         LASSERT(tx->tx_waiting ||
1998                                 tx->tx_sending != 0);
1999                 } else {
2000                         LASSERT(tx->tx_queued);
2001                 }
2002
2003                 tx->tx_status = -ECONNABORTED;
2004                 tx->tx_waiting = 0;
2005
2006                 if (tx->tx_sending == 0) {
2007                         tx->tx_queued = 0;
2008                         list_del(&tx->tx_list);
2009                         list_add(&tx->tx_list, &zombies);
2010                 }
2011         }
2012
2013         spin_unlock(&conn->ibc_lock);
2014
2015         kiblnd_txlist_done(conn->ibc_peer->ibp_ni, &zombies, -ECONNABORTED);
2016 }
2017
2018 static void
2019 kiblnd_finalise_conn (kib_conn_t *conn)
2020 {
2021         LASSERT (!in_interrupt());
2022         LASSERT (conn->ibc_state > IBLND_CONN_INIT);
2023
2024         kiblnd_set_conn_state(conn, IBLND_CONN_DISCONNECTED);
2025
2026         /* abort_receives moves QP state to IB_QPS_ERR.  This is only required
2027          * for connections that didn't get as far as being connected, because
2028          * rdma_disconnect() does this for free. */
2029         kiblnd_abort_receives(conn);
2030
2031         /* Complete all tx descs not waiting for sends to complete.
2032          * NB we should be safe from RDMA now that the QP has changed state */
2033
2034         kiblnd_abort_txs(conn, &conn->ibc_tx_noops);
2035         kiblnd_abort_txs(conn, &conn->ibc_tx_queue);
2036         kiblnd_abort_txs(conn, &conn->ibc_tx_queue_rsrvd);
2037         kiblnd_abort_txs(conn, &conn->ibc_tx_queue_nocred);
2038         kiblnd_abort_txs(conn, &conn->ibc_active_txs);
2039
2040         kiblnd_handle_early_rxs(conn);
2041 }
2042
2043 static void
2044 kiblnd_peer_connect_failed(kib_peer_t *peer, int active, int error)
2045 {
2046         struct list_head zombies = LIST_HEAD_INIT(zombies);
2047         unsigned long   flags;
2048
2049         LASSERT (error != 0);
2050         LASSERT (!in_interrupt());
2051
2052         write_lock_irqsave(&kiblnd_data.kib_global_lock, flags);
2053
2054         if (active) {
2055                 LASSERT (peer->ibp_connecting > 0);
2056                 peer->ibp_connecting--;
2057         } else {
2058                 LASSERT (peer->ibp_accepting > 0);
2059                 peer->ibp_accepting--;
2060         }
2061
2062         if (peer->ibp_connecting != 0 ||
2063             peer->ibp_accepting != 0) {
2064                 /* another connection attempt under way... */
2065                 write_unlock_irqrestore(&kiblnd_data.kib_global_lock,
2066                                         flags);
2067                 return;
2068         }
2069
2070         if (list_empty(&peer->ibp_conns)) {
2071                 /* Take peer's blocked transmits to complete with error */
2072                 list_add(&zombies, &peer->ibp_tx_queue);
2073                 list_del_init(&peer->ibp_tx_queue);
2074
2075                 if (kiblnd_peer_active(peer))
2076                         kiblnd_unlink_peer_locked(peer);
2077
2078                 peer->ibp_error = error;
2079         } else {
2080                 /* Can't have blocked transmits if there are connections */
2081                 LASSERT(list_empty(&peer->ibp_tx_queue));
2082         }
2083
2084         write_unlock_irqrestore(&kiblnd_data.kib_global_lock, flags);
2085
2086         kiblnd_peer_notify(peer);
2087
2088         if (list_empty(&zombies))
2089                 return;
2090
2091         CNETERR("Deleting messages for %s: connection failed\n",
2092                 libcfs_nid2str(peer->ibp_nid));
2093
2094         kiblnd_txlist_done(peer->ibp_ni, &zombies, -EHOSTUNREACH);
2095 }
2096
2097 static void
2098 kiblnd_connreq_done(kib_conn_t *conn, int status)
2099 {
2100         kib_peer_t       *peer = conn->ibc_peer;
2101         kib_tx_t         *tx;
2102         struct list_head txs;
2103         unsigned long    flags;
2104         int              active;
2105
2106         active = (conn->ibc_state == IBLND_CONN_ACTIVE_CONNECT);
2107
2108         CDEBUG(D_NET,"%s: active(%d), version(%x), status(%d)\n",
2109                libcfs_nid2str(peer->ibp_nid), active,
2110                conn->ibc_version, status);
2111
2112         LASSERT (!in_interrupt());
2113         LASSERT ((conn->ibc_state == IBLND_CONN_ACTIVE_CONNECT &&
2114                   peer->ibp_connecting > 0) ||
2115                  (conn->ibc_state == IBLND_CONN_PASSIVE_WAIT &&
2116                   peer->ibp_accepting > 0));
2117
2118         LIBCFS_FREE(conn->ibc_connvars, sizeof(*conn->ibc_connvars));
2119         conn->ibc_connvars = NULL;
2120
2121         if (status != 0) {
2122                 /* failed to establish connection */
2123                 kiblnd_peer_connect_failed(peer, active, status);
2124                 kiblnd_finalise_conn(conn);
2125                 return;
2126         }
2127
2128         /* connection established */
2129         write_lock_irqsave(&kiblnd_data.kib_global_lock, flags);
2130
2131         conn->ibc_last_send = jiffies;
2132         kiblnd_set_conn_state(conn, IBLND_CONN_ESTABLISHED);
2133         kiblnd_peer_alive(peer);
2134
2135         /* Add conn to peer's list and nuke any dangling conns from a different
2136          * peer instance... */
2137         kiblnd_conn_addref(conn);       /* +1 ref for ibc_list */
2138         list_add(&conn->ibc_list, &peer->ibp_conns);
2139         if (active)
2140                 peer->ibp_connecting--;
2141         else
2142                 peer->ibp_accepting--;
2143
2144         if (peer->ibp_version == 0) {
2145                 peer->ibp_version     = conn->ibc_version;
2146                 peer->ibp_incarnation = conn->ibc_incarnation;
2147         }
2148
2149         if (peer->ibp_version     != conn->ibc_version ||
2150             peer->ibp_incarnation != conn->ibc_incarnation) {
2151                 kiblnd_close_stale_conns_locked(peer, conn->ibc_version,
2152                                                 conn->ibc_incarnation);
2153                 peer->ibp_version     = conn->ibc_version;
2154                 peer->ibp_incarnation = conn->ibc_incarnation;
2155         }
2156
2157         /* grab pending txs while I have the lock */
2158         list_add(&txs, &peer->ibp_tx_queue);
2159         list_del_init(&peer->ibp_tx_queue);
2160
2161         if (!kiblnd_peer_active(peer) ||        /* peer has been deleted */
2162             conn->ibc_comms_error != 0) {       /* error has happened already */
2163                 lnet_ni_t *ni = peer->ibp_ni;
2164
2165                 /* start to shut down connection */
2166                 kiblnd_close_conn_locked(conn, -ECONNABORTED);
2167                 write_unlock_irqrestore(&kiblnd_data.kib_global_lock, flags);
2168
2169                 kiblnd_txlist_done(ni, &txs, -ECONNABORTED);
2170
2171                 return;
2172         }
2173
2174         write_unlock_irqrestore(&kiblnd_data.kib_global_lock, flags);
2175
2176         /* Schedule blocked txs */
2177         spin_lock(&conn->ibc_lock);
2178         while (!list_empty(&txs)) {
2179                 tx = list_entry(txs.next, kib_tx_t, tx_list);
2180                 list_del(&tx->tx_list);
2181
2182                 kiblnd_queue_tx_locked(tx, conn);
2183         }
2184         spin_unlock(&conn->ibc_lock);
2185
2186         kiblnd_check_sends(conn);
2187
2188         /* schedule blocked rxs */
2189         kiblnd_handle_early_rxs(conn);
2190 }
2191
2192 static void
2193 kiblnd_reject(struct rdma_cm_id *cmid, kib_rej_t *rej)
2194 {
2195         int          rc;
2196
2197         rc = rdma_reject(cmid, rej, sizeof(*rej));
2198
2199         if (rc != 0)
2200                 CWARN("Error %d sending reject\n", rc);
2201 }
2202
2203 static int
2204 kiblnd_passive_connect(struct rdma_cm_id *cmid, void *priv, int priv_nob)
2205 {
2206         rwlock_t                *g_lock = &kiblnd_data.kib_global_lock;
2207         kib_msg_t             *reqmsg = priv;
2208         kib_msg_t             *ackmsg;
2209         kib_dev_t             *ibdev;
2210         kib_peer_t            *peer;
2211         kib_peer_t            *peer2;
2212         kib_conn_t            *conn;
2213         lnet_ni_t             *ni  = NULL;
2214         kib_net_t             *net = NULL;
2215         lnet_nid_t             nid;
2216         struct rdma_conn_param cp;
2217         kib_rej_t              rej;
2218         int                    version = IBLND_MSG_VERSION;
2219         unsigned long          flags;
2220         int                    rc;
2221         struct sockaddr_in    *peer_addr;
2222         LASSERT (!in_interrupt());
2223
2224         /* cmid inherits 'context' from the corresponding listener id */
2225         ibdev = (kib_dev_t *)cmid->context;
2226         LASSERT (ibdev != NULL);
2227
2228         memset(&rej, 0, sizeof(rej));
2229         rej.ibr_magic                = IBLND_MSG_MAGIC;
2230         rej.ibr_why                  = IBLND_REJECT_FATAL;
2231         rej.ibr_cp.ibcp_max_msg_size = IBLND_MSG_SIZE;
2232
2233         peer_addr = (struct sockaddr_in *)&(cmid->route.addr.dst_addr);
2234         if (*kiblnd_tunables.kib_require_priv_port &&
2235             ntohs(peer_addr->sin_port) >= PROT_SOCK) {
2236                 __u32 ip = ntohl(peer_addr->sin_addr.s_addr);
2237                 CERROR("Peer's port (%pI4h:%hu) is not privileged\n",
2238                        &ip, ntohs(peer_addr->sin_port));
2239                 goto failed;
2240         }
2241
2242         if (priv_nob < offsetof(kib_msg_t, ibm_type)) {
2243                 CERROR("Short connection request\n");
2244                 goto failed;
2245         }
2246
2247         /* Future protocol version compatibility support!  If the
2248          * o2iblnd-specific protocol changes, or when LNET unifies
2249          * protocols over all LNDs, the initial connection will
2250          * negotiate a protocol version.  I trap this here to avoid
2251          * console errors; the reject tells the peer which protocol I
2252          * speak. */
2253         if (reqmsg->ibm_magic == LNET_PROTO_MAGIC ||
2254             reqmsg->ibm_magic == __swab32(LNET_PROTO_MAGIC))
2255                 goto failed;
2256         if (reqmsg->ibm_magic == IBLND_MSG_MAGIC &&
2257             reqmsg->ibm_version != IBLND_MSG_VERSION &&
2258             reqmsg->ibm_version != IBLND_MSG_VERSION_1)
2259                 goto failed;
2260         if (reqmsg->ibm_magic == __swab32(IBLND_MSG_MAGIC) &&
2261             reqmsg->ibm_version != __swab16(IBLND_MSG_VERSION) &&
2262             reqmsg->ibm_version != __swab16(IBLND_MSG_VERSION_1))
2263                 goto failed;
2264
2265         rc = kiblnd_unpack_msg(reqmsg, priv_nob);
2266         if (rc != 0) {
2267                 CERROR("Can't parse connection request: %d\n", rc);
2268                 goto failed;
2269         }
2270
2271         nid = reqmsg->ibm_srcnid;
2272         ni  = lnet_net2ni(LNET_NIDNET(reqmsg->ibm_dstnid));
2273
2274         if (ni != NULL) {
2275                 net = (kib_net_t *)ni->ni_data;
2276                 rej.ibr_incarnation = net->ibn_incarnation;
2277         }
2278
2279         if (ni == NULL ||                         /* no matching net */
2280             ni->ni_nid != reqmsg->ibm_dstnid ||   /* right NET, wrong NID! */
2281             net->ibn_dev != ibdev) {              /* wrong device */
2282                 CERROR("Can't accept %s on %s (%s:%d:%pI4h): "
2283                        "bad dst nid %s\n", libcfs_nid2str(nid),
2284                        ni == NULL ? "NA" : libcfs_nid2str(ni->ni_nid),
2285                        ibdev->ibd_ifname, ibdev->ibd_nnets,
2286                         &ibdev->ibd_ifip,
2287                        libcfs_nid2str(reqmsg->ibm_dstnid));
2288
2289                 goto failed;
2290         }
2291
2292        /* check time stamp as soon as possible */
2293         if (reqmsg->ibm_dststamp != 0 &&
2294             reqmsg->ibm_dststamp != net->ibn_incarnation) {
2295                 CWARN("Stale connection request\n");
2296                 rej.ibr_why = IBLND_REJECT_CONN_STALE;
2297                 goto failed;
2298         }
2299
2300         /* I can accept peer's version */
2301         version = reqmsg->ibm_version;
2302
2303         if (reqmsg->ibm_type != IBLND_MSG_CONNREQ) {
2304                 CERROR("Unexpected connreq msg type: %x from %s\n",
2305                        reqmsg->ibm_type, libcfs_nid2str(nid));
2306                 goto failed;
2307         }
2308
2309         if (reqmsg->ibm_u.connparams.ibcp_queue_depth !=
2310             IBLND_MSG_QUEUE_SIZE(version)) {
2311                 CERROR("Can't accept %s: incompatible queue depth %d (%d wanted)\n",
2312                        libcfs_nid2str(nid), reqmsg->ibm_u.connparams.ibcp_queue_depth,
2313                        IBLND_MSG_QUEUE_SIZE(version));
2314
2315                 if (version == IBLND_MSG_VERSION)
2316                         rej.ibr_why = IBLND_REJECT_MSG_QUEUE_SIZE;
2317
2318                 goto failed;
2319         }
2320
2321         if (reqmsg->ibm_u.connparams.ibcp_max_frags !=
2322             IBLND_RDMA_FRAGS(version)) {
2323                 CERROR("Can't accept %s(version %x): "
2324                        "incompatible max_frags %d (%d wanted)\n",
2325                        libcfs_nid2str(nid), version,
2326                        reqmsg->ibm_u.connparams.ibcp_max_frags,
2327                        IBLND_RDMA_FRAGS(version));
2328
2329                 if (version == IBLND_MSG_VERSION)
2330                         rej.ibr_why = IBLND_REJECT_RDMA_FRAGS;
2331
2332                 goto failed;
2333
2334         }
2335
2336         if (reqmsg->ibm_u.connparams.ibcp_max_msg_size > IBLND_MSG_SIZE) {
2337                 CERROR("Can't accept %s: message size %d too big (%d max)\n",
2338                        libcfs_nid2str(nid),
2339                        reqmsg->ibm_u.connparams.ibcp_max_msg_size,
2340                        IBLND_MSG_SIZE);
2341                 goto failed;
2342         }
2343
2344         /* assume 'nid' is a new peer; create  */
2345         rc = kiblnd_create_peer(ni, &peer, nid);
2346         if (rc != 0) {
2347                 CERROR("Can't create peer for %s\n", libcfs_nid2str(nid));
2348                 rej.ibr_why = IBLND_REJECT_NO_RESOURCES;
2349                 goto failed;
2350         }
2351
2352         write_lock_irqsave(g_lock, flags);
2353
2354         peer2 = kiblnd_find_peer_locked(nid);
2355         if (peer2 != NULL) {
2356                 if (peer2->ibp_version == 0) {
2357                         peer2->ibp_version     = version;
2358                         peer2->ibp_incarnation = reqmsg->ibm_srcstamp;
2359                 }
2360
2361                 /* not the guy I've talked with */
2362                 if (peer2->ibp_incarnation != reqmsg->ibm_srcstamp ||
2363                     peer2->ibp_version     != version) {
2364                         kiblnd_close_peer_conns_locked(peer2, -ESTALE);
2365                         write_unlock_irqrestore(g_lock, flags);
2366
2367                         CWARN("Conn stale %s [old ver: %x, new ver: %x]\n",
2368                               libcfs_nid2str(nid), peer2->ibp_version, version);
2369
2370                         kiblnd_peer_decref(peer);
2371                         rej.ibr_why = IBLND_REJECT_CONN_STALE;
2372                         goto failed;
2373                 }
2374
2375                 /* tie-break connection race in favour of the higher NID */
2376                 if (peer2->ibp_connecting != 0 &&
2377                     nid < ni->ni_nid) {
2378                         write_unlock_irqrestore(g_lock, flags);
2379
2380                         CWARN("Conn race %s\n", libcfs_nid2str(peer2->ibp_nid));
2381
2382                         kiblnd_peer_decref(peer);
2383                         rej.ibr_why = IBLND_REJECT_CONN_RACE;
2384                         goto failed;
2385                 }
2386
2387                 peer2->ibp_accepting++;
2388                 kiblnd_peer_addref(peer2);
2389
2390                 write_unlock_irqrestore(g_lock, flags);
2391                 kiblnd_peer_decref(peer);
2392                 peer = peer2;
2393         } else {
2394                 /* Brand new peer */
2395                 LASSERT (peer->ibp_accepting == 0);
2396                 LASSERT (peer->ibp_version == 0 &&
2397                          peer->ibp_incarnation == 0);
2398
2399                 peer->ibp_accepting   = 1;
2400                 peer->ibp_version     = version;
2401                 peer->ibp_incarnation = reqmsg->ibm_srcstamp;
2402
2403                 /* I have a ref on ni that prevents it being shutdown */
2404                 LASSERT (net->ibn_shutdown == 0);
2405
2406                 kiblnd_peer_addref(peer);
2407                 list_add_tail(&peer->ibp_list, kiblnd_nid2peerlist(nid));
2408
2409                 write_unlock_irqrestore(g_lock, flags);
2410         }
2411
2412         conn = kiblnd_create_conn(peer, cmid, IBLND_CONN_PASSIVE_WAIT, version);
2413         if (conn == NULL) {
2414                 kiblnd_peer_connect_failed(peer, 0, -ENOMEM);
2415                 kiblnd_peer_decref(peer);
2416                 rej.ibr_why = IBLND_REJECT_NO_RESOURCES;
2417                 goto failed;
2418         }
2419
2420         /* conn now "owns" cmid, so I return success from here on to ensure the
2421          * CM callback doesn't destroy cmid. */
2422
2423         conn->ibc_incarnation      = reqmsg->ibm_srcstamp;
2424         conn->ibc_credits          = IBLND_MSG_QUEUE_SIZE(version);
2425         conn->ibc_reserved_credits = IBLND_MSG_QUEUE_SIZE(version);
2426         LASSERT (conn->ibc_credits + conn->ibc_reserved_credits + IBLND_OOB_MSGS(version)
2427                  <= IBLND_RX_MSGS(version));
2428
2429         ackmsg = &conn->ibc_connvars->cv_msg;
2430         memset(ackmsg, 0, sizeof(*ackmsg));
2431
2432         kiblnd_init_msg(ackmsg, IBLND_MSG_CONNACK,
2433                         sizeof(ackmsg->ibm_u.connparams));
2434         ackmsg->ibm_u.connparams.ibcp_queue_depth  = IBLND_MSG_QUEUE_SIZE(version);
2435         ackmsg->ibm_u.connparams.ibcp_max_msg_size = IBLND_MSG_SIZE;
2436         ackmsg->ibm_u.connparams.ibcp_max_frags    = IBLND_RDMA_FRAGS(version);
2437
2438         kiblnd_pack_msg(ni, ackmsg, version, 0, nid, reqmsg->ibm_srcstamp);
2439
2440         memset(&cp, 0, sizeof(cp));
2441         cp.private_data        = ackmsg;
2442         cp.private_data_len    = ackmsg->ibm_nob;
2443         cp.responder_resources = 0;             /* No atomic ops or RDMA reads */
2444         cp.initiator_depth     = 0;
2445         cp.flow_control        = 1;
2446         cp.retry_count         = *kiblnd_tunables.kib_retry_count;
2447         cp.rnr_retry_count     = *kiblnd_tunables.kib_rnr_retry_count;
2448
2449         CDEBUG(D_NET, "Accept %s\n", libcfs_nid2str(nid));
2450
2451         rc = rdma_accept(cmid, &cp);
2452         if (rc != 0) {
2453                 CERROR("Can't accept %s: %d\n", libcfs_nid2str(nid), rc);
2454                 rej.ibr_version = version;
2455                 rej.ibr_why     = IBLND_REJECT_FATAL;
2456
2457                 kiblnd_reject(cmid, &rej);
2458                 kiblnd_connreq_done(conn, rc);
2459                 kiblnd_conn_decref(conn);
2460         }
2461
2462         lnet_ni_decref(ni);
2463         return 0;
2464
2465  failed:
2466         if (ni != NULL)
2467                 lnet_ni_decref(ni);
2468
2469         rej.ibr_version = version;
2470         rej.ibr_cp.ibcp_queue_depth = IBLND_MSG_QUEUE_SIZE(version);
2471         rej.ibr_cp.ibcp_max_frags   = IBLND_RDMA_FRAGS(version);
2472         kiblnd_reject(cmid, &rej);
2473
2474         return -ECONNREFUSED;
2475 }
2476
2477 static void
2478 kiblnd_reconnect (kib_conn_t *conn, int version,
2479                   __u64 incarnation, int why, kib_connparams_t *cp)
2480 {
2481         kib_peer_t    *peer = conn->ibc_peer;
2482         char          *reason;
2483         int            retry = 0;
2484         unsigned long  flags;
2485
2486         LASSERT (conn->ibc_state == IBLND_CONN_ACTIVE_CONNECT);
2487         LASSERT (peer->ibp_connecting > 0);     /* 'conn' at least */
2488
2489         write_lock_irqsave(&kiblnd_data.kib_global_lock, flags);
2490
2491         /* retry connection if it's still needed and no other connection
2492          * attempts (active or passive) are in progress
2493          * NB: reconnect is still needed even when ibp_tx_queue is
2494          * empty if ibp_version != version because reconnect may be
2495          * initiated by kiblnd_query() */
2496         if ((!list_empty(&peer->ibp_tx_queue) ||
2497              peer->ibp_version != version) &&
2498             peer->ibp_connecting == 1 &&
2499             peer->ibp_accepting == 0) {
2500                 retry = 1;
2501                 peer->ibp_connecting++;
2502
2503                 peer->ibp_version     = version;
2504                 peer->ibp_incarnation = incarnation;
2505         }
2506
2507         write_unlock_irqrestore(&kiblnd_data.kib_global_lock, flags);
2508
2509         if (!retry)
2510                 return;
2511
2512         switch (why) {
2513         default:
2514                 reason = "Unknown";
2515                 break;
2516
2517         case IBLND_REJECT_CONN_STALE:
2518                 reason = "stale";
2519                 break;
2520
2521         case IBLND_REJECT_CONN_RACE:
2522                 reason = "conn race";
2523                 break;
2524
2525         case IBLND_REJECT_CONN_UNCOMPAT:
2526                 reason = "version negotiation";
2527                 break;
2528         }
2529
2530         CNETERR("%s: retrying (%s), %x, %x, "
2531                 "queue_dep: %d, max_frag: %d, msg_size: %d\n",
2532                 libcfs_nid2str(peer->ibp_nid),
2533                 reason, IBLND_MSG_VERSION, version,
2534                 cp != NULL? cp->ibcp_queue_depth :IBLND_MSG_QUEUE_SIZE(version),
2535                 cp != NULL? cp->ibcp_max_frags   : IBLND_RDMA_FRAGS(version),
2536                 cp != NULL? cp->ibcp_max_msg_size: IBLND_MSG_SIZE);
2537
2538         kiblnd_connect_peer(peer);
2539 }
2540
2541 static void
2542 kiblnd_rejected (kib_conn_t *conn, int reason, void *priv, int priv_nob)
2543 {
2544         kib_peer_t    *peer = conn->ibc_peer;
2545
2546         LASSERT (!in_interrupt());
2547         LASSERT (conn->ibc_state == IBLND_CONN_ACTIVE_CONNECT);
2548
2549         switch (reason) {
2550         case IB_CM_REJ_STALE_CONN:
2551                 kiblnd_reconnect(conn, IBLND_MSG_VERSION, 0,
2552                                  IBLND_REJECT_CONN_STALE, NULL);
2553                 break;
2554
2555         case IB_CM_REJ_INVALID_SERVICE_ID:
2556                 CNETERR("%s rejected: no listener at %d\n",
2557                         libcfs_nid2str(peer->ibp_nid),
2558                         *kiblnd_tunables.kib_service);
2559                 break;
2560
2561         case IB_CM_REJ_CONSUMER_DEFINED:
2562                 if (priv_nob >= offsetof(kib_rej_t, ibr_padding)) {
2563                         kib_rej_t        *rej         = priv;
2564                         kib_connparams_t *cp          = NULL;
2565                         int               flip        = 0;
2566                         __u64             incarnation = -1;
2567
2568                         /* NB. default incarnation is -1 because:
2569                          * a) V1 will ignore dst incarnation in connreq.
2570                          * b) V2 will provide incarnation while rejecting me,
2571                          *    -1 will be overwrote.
2572                          *
2573                          * if I try to connect to a V1 peer with V2 protocol,
2574                          * it rejected me then upgrade to V2, I have no idea
2575                          * about the upgrading and try to reconnect with V1,
2576                          * in this case upgraded V2 can find out I'm trying to
2577                          * talk to the old guy and reject me(incarnation is -1). 
2578                          */
2579
2580                         if (rej->ibr_magic == __swab32(IBLND_MSG_MAGIC) ||
2581                             rej->ibr_magic == __swab32(LNET_PROTO_MAGIC)) {
2582                                 __swab32s(&rej->ibr_magic);
2583                                 __swab16s(&rej->ibr_version);
2584                                 flip = 1;
2585                         }
2586
2587                         if (priv_nob >= sizeof(kib_rej_t) &&
2588                             rej->ibr_version > IBLND_MSG_VERSION_1) {
2589                                 /* priv_nob is always 148 in current version
2590                                  * of OFED, so we still need to check version.
2591                                  * (define of IB_CM_REJ_PRIVATE_DATA_SIZE) */
2592                                 cp = &rej->ibr_cp;
2593
2594                                 if (flip) {
2595                                         __swab64s(&rej->ibr_incarnation);
2596                                         __swab16s(&cp->ibcp_queue_depth);
2597                                         __swab16s(&cp->ibcp_max_frags);
2598                                         __swab32s(&cp->ibcp_max_msg_size);
2599                                 }
2600
2601                                 incarnation = rej->ibr_incarnation;
2602                         }
2603
2604                         if (rej->ibr_magic != IBLND_MSG_MAGIC &&
2605                             rej->ibr_magic != LNET_PROTO_MAGIC) {
2606                                 CERROR("%s rejected: consumer defined fatal error\n",
2607                                        libcfs_nid2str(peer->ibp_nid));
2608                                 break;
2609                         }
2610
2611                         if (rej->ibr_version != IBLND_MSG_VERSION &&
2612                             rej->ibr_version != IBLND_MSG_VERSION_1) {
2613                                 CERROR("%s rejected: o2iblnd version %x error\n",
2614                                        libcfs_nid2str(peer->ibp_nid),
2615                                        rej->ibr_version);
2616                                 break;
2617                         }
2618
2619                         if (rej->ibr_why     == IBLND_REJECT_FATAL &&
2620                             rej->ibr_version == IBLND_MSG_VERSION_1) {
2621                                 CDEBUG(D_NET, "rejected by old version peer %s: %x\n",
2622                                        libcfs_nid2str(peer->ibp_nid), rej->ibr_version);
2623
2624                                 if (conn->ibc_version != IBLND_MSG_VERSION_1)
2625                                         rej->ibr_why = IBLND_REJECT_CONN_UNCOMPAT;
2626                         }
2627
2628                         switch (rej->ibr_why) {
2629                         case IBLND_REJECT_CONN_RACE:
2630                         case IBLND_REJECT_CONN_STALE:
2631                         case IBLND_REJECT_CONN_UNCOMPAT:
2632                                 kiblnd_reconnect(conn, rej->ibr_version,
2633                                                  incarnation, rej->ibr_why, cp);
2634                                 break;
2635
2636                         case IBLND_REJECT_MSG_QUEUE_SIZE:
2637                                 CERROR("%s rejected: incompatible message queue depth %d, %d\n",
2638                                        libcfs_nid2str(peer->ibp_nid),
2639                                        cp != NULL ? cp->ibcp_queue_depth :
2640                                        IBLND_MSG_QUEUE_SIZE(rej->ibr_version),
2641                                        IBLND_MSG_QUEUE_SIZE(conn->ibc_version));
2642                                 break;
2643
2644                         case IBLND_REJECT_RDMA_FRAGS:
2645                                 CERROR("%s rejected: incompatible # of RDMA fragments %d, %d\n",
2646                                        libcfs_nid2str(peer->ibp_nid),
2647                                        cp != NULL ? cp->ibcp_max_frags :
2648                                        IBLND_RDMA_FRAGS(rej->ibr_version),
2649                                        IBLND_RDMA_FRAGS(conn->ibc_version));
2650                                 break;
2651
2652                         case IBLND_REJECT_NO_RESOURCES:
2653                                 CERROR("%s rejected: o2iblnd no resources\n",
2654                                        libcfs_nid2str(peer->ibp_nid));
2655                                 break;
2656
2657                         case IBLND_REJECT_FATAL:
2658                                 CERROR("%s rejected: o2iblnd fatal error\n",
2659                                        libcfs_nid2str(peer->ibp_nid));
2660                                 break;
2661
2662                         default:
2663                                 CERROR("%s rejected: o2iblnd reason %d\n",
2664                                        libcfs_nid2str(peer->ibp_nid),
2665                                        rej->ibr_why);
2666                                 break;
2667                         }
2668                         break;
2669                 }
2670                 /* fall through */
2671         default:
2672                 CNETERR("%s rejected: reason %d, size %d\n",
2673                         libcfs_nid2str(peer->ibp_nid), reason, priv_nob);
2674                 break;
2675         }
2676
2677         kiblnd_connreq_done(conn, -ECONNREFUSED);
2678 }
2679
2680 static void
2681 kiblnd_check_connreply (kib_conn_t *conn, void *priv, int priv_nob)
2682 {
2683         kib_peer_t    *peer = conn->ibc_peer;
2684         lnet_ni_t     *ni   = peer->ibp_ni;
2685         kib_net_t     *net  = ni->ni_data;
2686         kib_msg_t     *msg  = priv;
2687         int            ver  = conn->ibc_version;
2688         int            rc   = kiblnd_unpack_msg(msg, priv_nob);
2689         unsigned long  flags;
2690
2691         LASSERT (net != NULL);
2692
2693         if (rc != 0) {
2694                 CERROR("Can't unpack connack from %s: %d\n",
2695                        libcfs_nid2str(peer->ibp_nid), rc);
2696                 goto failed;
2697         }
2698
2699         if (msg->ibm_type != IBLND_MSG_CONNACK) {
2700                 CERROR("Unexpected message %d from %s\n",
2701                        msg->ibm_type, libcfs_nid2str(peer->ibp_nid));
2702                 rc = -EPROTO;
2703                 goto failed;
2704         }
2705
2706         if (ver != msg->ibm_version) {
2707                 CERROR("%s replied version %x is different with "
2708                        "requested version %x\n",
2709                        libcfs_nid2str(peer->ibp_nid), msg->ibm_version, ver);
2710                 rc = -EPROTO;
2711                 goto failed;
2712         }
2713
2714         if (msg->ibm_u.connparams.ibcp_queue_depth !=
2715             IBLND_MSG_QUEUE_SIZE(ver)) {
2716                 CERROR("%s has incompatible queue depth %d(%d wanted)\n",
2717                        libcfs_nid2str(peer->ibp_nid),
2718                        msg->ibm_u.connparams.ibcp_queue_depth,
2719                        IBLND_MSG_QUEUE_SIZE(ver));
2720                 rc = -EPROTO;
2721                 goto failed;
2722         }
2723
2724         if (msg->ibm_u.connparams.ibcp_max_frags !=
2725             IBLND_RDMA_FRAGS(ver)) {
2726                 CERROR("%s has incompatible max_frags %d (%d wanted)\n",
2727                        libcfs_nid2str(peer->ibp_nid),
2728                        msg->ibm_u.connparams.ibcp_max_frags,
2729                        IBLND_RDMA_FRAGS(ver));
2730                 rc = -EPROTO;
2731                 goto failed;
2732         }
2733
2734         if (msg->ibm_u.connparams.ibcp_max_msg_size > IBLND_MSG_SIZE) {
2735                 CERROR("%s max message size %d too big (%d max)\n",
2736                        libcfs_nid2str(peer->ibp_nid),
2737                        msg->ibm_u.connparams.ibcp_max_msg_size,
2738                        IBLND_MSG_SIZE);
2739                 rc = -EPROTO;
2740                 goto failed;
2741         }
2742
2743         read_lock_irqsave(&kiblnd_data.kib_global_lock, flags);
2744         if (msg->ibm_dstnid == ni->ni_nid &&
2745             msg->ibm_dststamp == net->ibn_incarnation)
2746                 rc = 0;
2747         else
2748                 rc = -ESTALE;
2749         read_unlock_irqrestore(&kiblnd_data.kib_global_lock, flags);
2750
2751         if (rc != 0) {
2752                 CERROR("Bad connection reply from %s, rc = %d, "
2753                        "version: %x max_frags: %d\n",
2754                        libcfs_nid2str(peer->ibp_nid), rc,
2755                        msg->ibm_version, msg->ibm_u.connparams.ibcp_max_frags);
2756                 goto failed;
2757         }
2758
2759         conn->ibc_incarnation      = msg->ibm_srcstamp;
2760         conn->ibc_credits          =
2761         conn->ibc_reserved_credits = IBLND_MSG_QUEUE_SIZE(ver);
2762         LASSERT (conn->ibc_credits + conn->ibc_reserved_credits + IBLND_OOB_MSGS(ver)
2763                  <= IBLND_RX_MSGS(ver));
2764
2765         kiblnd_connreq_done(conn, 0);
2766         return;
2767
2768  failed:
2769         /* NB My QP has already established itself, so I handle anything going
2770          * wrong here by setting ibc_comms_error.
2771          * kiblnd_connreq_done(0) moves the conn state to ESTABLISHED, but then
2772          * immediately tears it down. */
2773
2774         LASSERT (rc != 0);
2775         conn->ibc_comms_error = rc;
2776         kiblnd_connreq_done(conn, 0);
2777 }
2778
2779 static int
2780 kiblnd_active_connect (struct rdma_cm_id *cmid)
2781 {
2782         kib_peer_t              *peer = (kib_peer_t *)cmid->context;
2783         kib_conn_t              *conn;
2784         kib_msg_t               *msg;
2785         struct rdma_conn_param   cp;
2786         int                      version;
2787         __u64                    incarnation;
2788         unsigned long            flags;
2789         int                      rc;
2790
2791         read_lock_irqsave(&kiblnd_data.kib_global_lock, flags);
2792
2793         incarnation = peer->ibp_incarnation;
2794         version     = (peer->ibp_version == 0) ? IBLND_MSG_VERSION :
2795                                                  peer->ibp_version;
2796
2797         read_unlock_irqrestore(&kiblnd_data.kib_global_lock, flags);
2798
2799         conn = kiblnd_create_conn(peer, cmid, IBLND_CONN_ACTIVE_CONNECT, version);
2800         if (conn == NULL) {
2801                 kiblnd_peer_connect_failed(peer, 1, -ENOMEM);
2802                 kiblnd_peer_decref(peer); /* lose cmid's ref */
2803                 return -ENOMEM;
2804         }
2805
2806         /* conn "owns" cmid now, so I return success from here on to ensure the
2807          * CM callback doesn't destroy cmid. conn also takes over cmid's ref
2808          * on peer */
2809
2810         msg = &conn->ibc_connvars->cv_msg;
2811
2812         memset(msg, 0, sizeof(*msg));
2813         kiblnd_init_msg(msg, IBLND_MSG_CONNREQ, sizeof(msg->ibm_u.connparams));
2814         msg->ibm_u.connparams.ibcp_queue_depth  = IBLND_MSG_QUEUE_SIZE(version);
2815         msg->ibm_u.connparams.ibcp_max_frags    = IBLND_RDMA_FRAGS(version);
2816         msg->ibm_u.connparams.ibcp_max_msg_size = IBLND_MSG_SIZE;
2817
2818         kiblnd_pack_msg(peer->ibp_ni, msg, version,
2819                         0, peer->ibp_nid, incarnation);
2820
2821         memset(&cp, 0, sizeof(cp));
2822         cp.private_data        = msg;
2823         cp.private_data_len    = msg->ibm_nob;
2824         cp.responder_resources = 0;             /* No atomic ops or RDMA reads */
2825         cp.initiator_depth     = 0;
2826         cp.flow_control        = 1;
2827         cp.retry_count         = *kiblnd_tunables.kib_retry_count;
2828         cp.rnr_retry_count     = *kiblnd_tunables.kib_rnr_retry_count;
2829
2830         LASSERT(cmid->context == (void *)conn);
2831         LASSERT(conn->ibc_cmid == cmid);
2832
2833         rc = rdma_connect(cmid, &cp);
2834         if (rc != 0) {
2835                 CERROR("Can't connect to %s: %d\n",
2836                        libcfs_nid2str(peer->ibp_nid), rc);
2837                 kiblnd_connreq_done(conn, rc);
2838                 kiblnd_conn_decref(conn);
2839         }
2840
2841         return 0;
2842 }
2843
2844 int
2845 kiblnd_cm_callback(struct rdma_cm_id *cmid, struct rdma_cm_event *event)
2846 {
2847         kib_peer_t  *peer;
2848         kib_conn_t  *conn;
2849         int          rc;
2850
2851         switch (event->event) {
2852         default:
2853                 CERROR("Unexpected event: %d, status: %d\n",
2854                        event->event, event->status);
2855                 LBUG();
2856
2857         case RDMA_CM_EVENT_CONNECT_REQUEST:
2858                 /* destroy cmid on failure */
2859                 rc = kiblnd_passive_connect(cmid, 
2860                                             (void *)KIBLND_CONN_PARAM(event),
2861                                             KIBLND_CONN_PARAM_LEN(event));
2862                 CDEBUG(D_NET, "connreq: %d\n", rc);
2863                 return rc;
2864                 
2865         case RDMA_CM_EVENT_ADDR_ERROR:
2866                 peer = (kib_peer_t *)cmid->context;
2867                 CNETERR("%s: ADDR ERROR %d\n",
2868                        libcfs_nid2str(peer->ibp_nid), event->status);
2869                 kiblnd_peer_connect_failed(peer, 1, -EHOSTUNREACH);
2870                 kiblnd_peer_decref(peer);
2871                 return -EHOSTUNREACH;      /* rc != 0 destroys cmid */
2872
2873         case RDMA_CM_EVENT_ADDR_RESOLVED:
2874                 peer = (kib_peer_t *)cmid->context;
2875
2876                 CDEBUG(D_NET,"%s Addr resolved: %d\n",
2877                        libcfs_nid2str(peer->ibp_nid), event->status);
2878
2879                 if (event->status != 0) {
2880                         CNETERR("Can't resolve address for %s: %d\n",
2881                                 libcfs_nid2str(peer->ibp_nid), event->status);
2882                         rc = event->status;
2883                 } else {
2884                         rc = rdma_resolve_route(
2885                                 cmid, *kiblnd_tunables.kib_timeout * 1000);
2886                         if (rc == 0)
2887                                 return 0;
2888                         /* Can't initiate route resolution */
2889                         CERROR("Can't resolve route for %s: %d\n",
2890                                libcfs_nid2str(peer->ibp_nid), rc);
2891                 }
2892                 kiblnd_peer_connect_failed(peer, 1, rc);
2893                 kiblnd_peer_decref(peer);
2894                 return rc;                      /* rc != 0 destroys cmid */
2895
2896         case RDMA_CM_EVENT_ROUTE_ERROR:
2897                 peer = (kib_peer_t *)cmid->context;
2898                 CNETERR("%s: ROUTE ERROR %d\n",
2899                         libcfs_nid2str(peer->ibp_nid), event->status);
2900                 kiblnd_peer_connect_failed(peer, 1, -EHOSTUNREACH);
2901                 kiblnd_peer_decref(peer);
2902                 return -EHOSTUNREACH;           /* rc != 0 destroys cmid */
2903
2904         case RDMA_CM_EVENT_ROUTE_RESOLVED:
2905                 peer = (kib_peer_t *)cmid->context;
2906                 CDEBUG(D_NET,"%s Route resolved: %d\n",
2907                        libcfs_nid2str(peer->ibp_nid), event->status);
2908
2909                 if (event->status == 0)
2910                         return kiblnd_active_connect(cmid);
2911
2912                 CNETERR("Can't resolve route for %s: %d\n",
2913                        libcfs_nid2str(peer->ibp_nid), event->status);
2914                 kiblnd_peer_connect_failed(peer, 1, event->status);
2915                 kiblnd_peer_decref(peer);
2916                 return event->status;           /* rc != 0 destroys cmid */
2917                 
2918         case RDMA_CM_EVENT_UNREACHABLE:
2919                 conn = (kib_conn_t *)cmid->context;
2920                 LASSERT(conn->ibc_state == IBLND_CONN_ACTIVE_CONNECT ||
2921                         conn->ibc_state == IBLND_CONN_PASSIVE_WAIT);
2922                 CNETERR("%s: UNREACHABLE %d\n",
2923                        libcfs_nid2str(conn->ibc_peer->ibp_nid), event->status);
2924                 kiblnd_connreq_done(conn, -ENETDOWN);
2925                 kiblnd_conn_decref(conn);
2926                 return 0;
2927
2928         case RDMA_CM_EVENT_CONNECT_ERROR:
2929                 conn = (kib_conn_t *)cmid->context;
2930                 LASSERT(conn->ibc_state == IBLND_CONN_ACTIVE_CONNECT ||
2931                         conn->ibc_state == IBLND_CONN_PASSIVE_WAIT);
2932                 CNETERR("%s: CONNECT ERROR %d\n",
2933                         libcfs_nid2str(conn->ibc_peer->ibp_nid), event->status);
2934                 kiblnd_connreq_done(conn, -ENOTCONN);
2935                 kiblnd_conn_decref(conn);
2936                 return 0;
2937
2938         case RDMA_CM_EVENT_REJECTED:
2939                 conn = (kib_conn_t *)cmid->context;
2940                 switch (conn->ibc_state) {
2941                 default:
2942                         LBUG();
2943
2944                 case IBLND_CONN_PASSIVE_WAIT:
2945                         CERROR ("%s: REJECTED %d\n",
2946                                 libcfs_nid2str(conn->ibc_peer->ibp_nid),
2947                                 event->status);
2948                         kiblnd_connreq_done(conn, -ECONNRESET);
2949                         break;
2950
2951                 case IBLND_CONN_ACTIVE_CONNECT:
2952                         kiblnd_rejected(conn, event->status,
2953                                         (void *)KIBLND_CONN_PARAM(event),
2954                                         KIBLND_CONN_PARAM_LEN(event));
2955                         break;
2956                 }
2957                 kiblnd_conn_decref(conn);
2958                 return 0;
2959
2960         case RDMA_CM_EVENT_ESTABLISHED:
2961                 conn = (kib_conn_t *)cmid->context;
2962                 switch (conn->ibc_state) {
2963                 default:
2964                         LBUG();
2965
2966                 case IBLND_CONN_PASSIVE_WAIT:
2967                         CDEBUG(D_NET, "ESTABLISHED (passive): %s\n",
2968                                libcfs_nid2str(conn->ibc_peer->ibp_nid));
2969                         kiblnd_connreq_done(conn, 0);
2970                         break;
2971
2972                 case IBLND_CONN_ACTIVE_CONNECT:
2973                         CDEBUG(D_NET, "ESTABLISHED(active): %s\n",
2974                                libcfs_nid2str(conn->ibc_peer->ibp_nid));
2975                         kiblnd_check_connreply(conn,
2976                                                (void *)KIBLND_CONN_PARAM(event),
2977                                                KIBLND_CONN_PARAM_LEN(event));
2978                         break;
2979                 }
2980                 /* net keeps its ref on conn! */
2981                 return 0;
2982
2983 #ifdef HAVE_OFED_RDMA_CMEV_TIMEWAIT_EXIT
2984         case RDMA_CM_EVENT_TIMEWAIT_EXIT:
2985                 CDEBUG(D_NET, "Ignore TIMEWAIT_EXIT event\n");
2986                 return 0;
2987 #endif
2988         case RDMA_CM_EVENT_DISCONNECTED:
2989                 conn = (kib_conn_t *)cmid->context;
2990                 if (conn->ibc_state < IBLND_CONN_ESTABLISHED) {
2991                         CERROR("%s DISCONNECTED\n",
2992                                libcfs_nid2str(conn->ibc_peer->ibp_nid));
2993                         kiblnd_connreq_done(conn, -ECONNRESET);
2994                 } else {
2995                         kiblnd_close_conn(conn, 0);
2996                 }
2997                 kiblnd_conn_decref(conn);
2998                 cmid->context = NULL;
2999                 return 0;
3000
3001         case RDMA_CM_EVENT_DEVICE_REMOVAL:
3002                 LCONSOLE_ERROR_MSG(0x131,
3003                                    "Received notification of device removal\n"
3004                                    "Please shutdown LNET to allow this to proceed\n");
3005                 /* Can't remove network from underneath LNET for now, so I have
3006                  * to ignore this */
3007                 return 0;
3008
3009 #ifdef HAVE_OFED_RDMA_CMEV_ADDRCHANGE
3010         case RDMA_CM_EVENT_ADDR_CHANGE:
3011                 LCONSOLE_INFO("Physical link changed (eg hca/port)\n");
3012                 return 0;
3013 #endif
3014         }
3015 }
3016
3017 static int
3018 kiblnd_check_txs_locked(kib_conn_t *conn, struct list_head *txs)
3019 {
3020         kib_tx_t         *tx;
3021         struct list_head *ttmp;
3022
3023         list_for_each(ttmp, txs) {
3024                 tx = list_entry(ttmp, kib_tx_t, tx_list);
3025
3026                 if (txs != &conn->ibc_active_txs) {
3027                         LASSERT(tx->tx_queued);
3028                 } else {
3029                         LASSERT(!tx->tx_queued);
3030                         LASSERT(tx->tx_waiting || tx->tx_sending != 0);
3031                 }
3032
3033                 if (cfs_time_aftereq(jiffies, tx->tx_deadline)) {
3034                         CERROR("Timed out tx: %s, %lu seconds\n",
3035                                kiblnd_queue2str(conn, txs),
3036                                cfs_duration_sec(jiffies - tx->tx_deadline));
3037                         return 1;
3038                 }
3039         }
3040
3041         return 0;
3042 }
3043
3044 static int
3045 kiblnd_conn_timed_out_locked(kib_conn_t *conn)
3046 {
3047         return  kiblnd_check_txs_locked(conn, &conn->ibc_tx_queue) ||
3048                 kiblnd_check_txs_locked(conn, &conn->ibc_tx_noops) ||
3049                 kiblnd_check_txs_locked(conn, &conn->ibc_tx_queue_rsrvd) ||
3050                 kiblnd_check_txs_locked(conn, &conn->ibc_tx_queue_nocred) ||
3051                 kiblnd_check_txs_locked(conn, &conn->ibc_active_txs);
3052 }
3053
3054 static void
3055 kiblnd_check_conns (int idx)
3056 {
3057         struct list_head  closes = LIST_HEAD_INIT(closes);
3058         struct list_head  checksends = LIST_HEAD_INIT(checksends);
3059         struct list_head *peers = &kiblnd_data.kib_peers[idx];
3060         struct list_head *ptmp;
3061         kib_peer_t       *peer;
3062         kib_conn_t       *conn;
3063         struct list_head *ctmp;
3064         unsigned long     flags;
3065
3066         /* NB. We expect to have a look at all the peers and not find any
3067          * RDMAs to time out, so we just use a shared lock while we
3068          * take a look... */
3069         read_lock_irqsave(&kiblnd_data.kib_global_lock, flags);
3070
3071         list_for_each(ptmp, peers) {
3072                 peer = list_entry(ptmp, kib_peer_t, ibp_list);
3073
3074                 list_for_each(ctmp, &peer->ibp_conns) {
3075                         int timedout;
3076                         int sendnoop;
3077
3078                         conn = list_entry(ctmp, kib_conn_t, ibc_list);
3079
3080                         LASSERT(conn->ibc_state == IBLND_CONN_ESTABLISHED);
3081
3082                         spin_lock(&conn->ibc_lock);
3083
3084                         sendnoop = kiblnd_need_noop(conn);
3085                         timedout = kiblnd_conn_timed_out_locked(conn);
3086                         if (!sendnoop && !timedout) {
3087                                 spin_unlock(&conn->ibc_lock);
3088                                 continue;
3089                         }
3090
3091                         if (timedout) {
3092                                 CERROR("Timed out RDMA with %s (%lu): "
3093                                        "c: %u, oc: %u, rc: %u\n",
3094                                        libcfs_nid2str(peer->ibp_nid),
3095                                        cfs_duration_sec(cfs_time_current() -
3096                                                         peer->ibp_last_alive),
3097                                        conn->ibc_credits,
3098                                        conn->ibc_outstanding_credits,
3099                                        conn->ibc_reserved_credits);
3100                                 list_add(&conn->ibc_connd_list, &closes);
3101                         } else {
3102                                 list_add(&conn->ibc_connd_list, &checksends);
3103                         }
3104                         /* +ref for 'closes' or 'checksends' */
3105                         kiblnd_conn_addref(conn);
3106
3107                         spin_unlock(&conn->ibc_lock);
3108                 }
3109         }
3110
3111         read_unlock_irqrestore(&kiblnd_data.kib_global_lock, flags);
3112
3113         /* Handle timeout by closing the whole
3114          * connection. We can only be sure RDMA activity
3115          * has ceased once the QP has been modified. */
3116         while (!list_empty(&closes)) {
3117                 conn = list_entry(closes.next,
3118                                   kib_conn_t, ibc_connd_list);
3119                 list_del(&conn->ibc_connd_list);
3120                 kiblnd_close_conn(conn, -ETIMEDOUT);
3121                 kiblnd_conn_decref(conn);
3122         }
3123
3124         /* In case we have enough credits to return via a
3125          * NOOP, but there were no non-blocking tx descs
3126          * free to do it last time... */
3127         while (!list_empty(&checksends)) {
3128                 conn = list_entry(checksends.next,
3129                                   kib_conn_t, ibc_connd_list);
3130                 list_del(&conn->ibc_connd_list);
3131                 kiblnd_check_sends(conn);
3132                 kiblnd_conn_decref(conn);
3133         }
3134 }
3135
3136 static void
3137 kiblnd_disconnect_conn (kib_conn_t *conn)
3138 {
3139         LASSERT (!in_interrupt());
3140         LASSERT (current == kiblnd_data.kib_connd);
3141         LASSERT (conn->ibc_state == IBLND_CONN_CLOSING);
3142
3143         rdma_disconnect(conn->ibc_cmid);
3144         kiblnd_finalise_conn(conn);
3145
3146         kiblnd_peer_notify(conn->ibc_peer);
3147 }
3148
3149 int
3150 kiblnd_connd (void *arg)
3151 {
3152         wait_queue_t     wait;
3153         unsigned long      flags;
3154         kib_conn_t        *conn;
3155         int                timeout;
3156         int                i;
3157         int                dropped_lock;
3158         int                peer_index = 0;
3159         unsigned long      deadline = jiffies;
3160
3161         cfs_block_allsigs();
3162
3163         init_waitqueue_entry(&wait, current);
3164         kiblnd_data.kib_connd = current;
3165
3166         spin_lock_irqsave(&kiblnd_data.kib_connd_lock, flags);
3167
3168         while (!kiblnd_data.kib_shutdown) {
3169
3170                 dropped_lock = 0;
3171
3172                 if (!list_empty(&kiblnd_data.kib_connd_zombies)) {
3173                         conn = list_entry(kiblnd_data. \
3174                                               kib_connd_zombies.next,
3175                                               kib_conn_t, ibc_list);
3176                         list_del(&conn->ibc_list);
3177
3178                         spin_unlock_irqrestore(&kiblnd_data.kib_connd_lock,
3179                                                flags);
3180                         dropped_lock = 1;
3181
3182                         kiblnd_destroy_conn(conn);
3183
3184                         spin_lock_irqsave(&kiblnd_data.kib_connd_lock, flags);
3185                 }
3186
3187                 if (!list_empty(&kiblnd_data.kib_connd_conns)) {
3188                         conn = list_entry(kiblnd_data.kib_connd_conns.next,
3189                                               kib_conn_t, ibc_list);
3190                         list_del(&conn->ibc_list);
3191
3192                         spin_unlock_irqrestore(&kiblnd_data.kib_connd_lock,
3193                                                flags);
3194                         dropped_lock = 1;
3195
3196                         kiblnd_disconnect_conn(conn);
3197                         kiblnd_conn_decref(conn);
3198
3199                         spin_lock_irqsave(&kiblnd_data.kib_connd_lock, flags);
3200                 }
3201
3202                 /* careful with the jiffy wrap... */
3203                 timeout = (int)(deadline - jiffies);
3204                 if (timeout <= 0) {
3205                         const int n = 4;
3206                         const int p = 1;
3207                         int       chunk = kiblnd_data.kib_peer_hash_size;
3208
3209                         spin_unlock_irqrestore(&kiblnd_data.kib_connd_lock, flags);
3210                         dropped_lock = 1;
3211
3212                         /* Time to check for RDMA timeouts on a few more
3213                          * peers: I do checks every 'p' seconds on a
3214                          * proportion of the peer table and I need to check
3215                          * every connection 'n' times within a timeout
3216                          * interval, to ensure I detect a timeout on any
3217                          * connection within (n+1)/n times the timeout
3218                          * interval. */
3219
3220                         if (*kiblnd_tunables.kib_timeout > n * p)
3221                                 chunk = (chunk * n * p) /
3222                                         *kiblnd_tunables.kib_timeout;
3223                         if (chunk == 0)
3224                                 chunk = 1;
3225
3226                         for (i = 0; i < chunk; i++) {
3227                                 kiblnd_check_conns(peer_index);
3228                                 peer_index = (peer_index + 1) %
3229                                              kiblnd_data.kib_peer_hash_size;
3230                         }
3231
3232                         deadline += msecs_to_jiffies(p * MSEC_PER_SEC);
3233                         spin_lock_irqsave(&kiblnd_data.kib_connd_lock, flags);
3234                 }
3235
3236                 if (dropped_lock)
3237                         continue;
3238
3239                 /* Nothing to do for 'timeout'  */
3240                 set_current_state(TASK_INTERRUPTIBLE);
3241                 add_wait_queue(&kiblnd_data.kib_connd_waitq, &wait);
3242                 spin_unlock_irqrestore(&kiblnd_data.kib_connd_lock, flags);
3243
3244                 schedule_timeout(timeout);
3245
3246                 set_current_state(TASK_RUNNING);
3247                 remove_wait_queue(&kiblnd_data.kib_connd_waitq, &wait);
3248                 spin_lock_irqsave(&kiblnd_data.kib_connd_lock, flags);
3249         }
3250
3251         spin_unlock_irqrestore(&kiblnd_data.kib_connd_lock, flags);
3252
3253         kiblnd_thread_fini();
3254         return 0;
3255 }
3256
3257 void
3258 kiblnd_qp_event(struct ib_event *event, void *arg)
3259 {
3260         kib_conn_t *conn = arg;
3261
3262         switch (event->event) {
3263         case IB_EVENT_COMM_EST:
3264                 CDEBUG(D_NET, "%s established\n",
3265                        libcfs_nid2str(conn->ibc_peer->ibp_nid));
3266                 return;
3267
3268         default:
3269                 CERROR("%s: Async QP event type %d\n",
3270                        libcfs_nid2str(conn->ibc_peer->ibp_nid), event->event);
3271                 return;
3272         }
3273 }
3274
3275 static void
3276 kiblnd_complete (struct ib_wc *wc)
3277 {
3278         switch (kiblnd_wreqid2type(wc->wr_id)) {
3279         default:
3280                 LBUG();
3281
3282         case IBLND_WID_RDMA:
3283                 /* We only get RDMA completion notification if it fails.  All
3284                  * subsequent work items, including the final SEND will fail
3285                  * too.  However we can't print out any more info about the
3286                  * failing RDMA because 'tx' might be back on the idle list or
3287                  * even reused already if we didn't manage to post all our work
3288                  * items */
3289                 CNETERR("RDMA (tx: %p) failed: %d\n",
3290                         kiblnd_wreqid2ptr(wc->wr_id), wc->status);
3291                 return;
3292
3293         case IBLND_WID_TX:
3294                 kiblnd_tx_complete(kiblnd_wreqid2ptr(wc->wr_id), wc->status);
3295                 return;
3296
3297         case IBLND_WID_RX:
3298                 kiblnd_rx_complete(kiblnd_wreqid2ptr(wc->wr_id), wc->status,
3299                                    wc->byte_len);
3300                 return;
3301         }
3302 }
3303
3304 void
3305 kiblnd_cq_completion(struct ib_cq *cq, void *arg)
3306 {
3307         /* NB I'm not allowed to schedule this conn once its refcount has
3308          * reached 0.  Since fundamentally I'm racing with scheduler threads
3309          * consuming my CQ I could be called after all completions have
3310          * occurred.  But in this case, ibc_nrx == 0 && ibc_nsends_posted == 0
3311          * and this CQ is about to be destroyed so I NOOP. */
3312         kib_conn_t              *conn = (kib_conn_t *)arg;
3313         struct kib_sched_info   *sched = conn->ibc_sched;
3314         unsigned long           flags;
3315
3316         LASSERT(cq == conn->ibc_cq);
3317
3318         spin_lock_irqsave(&sched->ibs_lock, flags);
3319
3320         conn->ibc_ready = 1;
3321
3322         if (!conn->ibc_scheduled &&
3323             (conn->ibc_nrx > 0 ||
3324              conn->ibc_nsends_posted > 0)) {
3325                 kiblnd_conn_addref(conn); /* +1 ref for sched_conns */
3326                 conn->ibc_scheduled = 1;
3327                 list_add_tail(&conn->ibc_sched_list, &sched->ibs_conns);
3328
3329                 if (waitqueue_active(&sched->ibs_waitq))
3330                         wake_up(&sched->ibs_waitq);
3331         }
3332
3333         spin_unlock_irqrestore(&sched->ibs_lock, flags);
3334 }
3335
3336 void
3337 kiblnd_cq_event(struct ib_event *event, void *arg)
3338 {
3339         kib_conn_t *conn = arg;
3340
3341         CERROR("%s: async CQ event type %d\n",
3342                libcfs_nid2str(conn->ibc_peer->ibp_nid), event->event);
3343 }
3344
3345 int
3346 kiblnd_scheduler(void *arg)
3347 {
3348         long                    id = (long)arg;
3349         struct kib_sched_info   *sched;
3350         kib_conn_t              *conn;
3351         wait_queue_t            wait;
3352         unsigned long           flags;
3353         struct ib_wc            wc;
3354         int                     did_something;
3355         int                     busy_loops = 0;
3356         int                     rc;
3357
3358         cfs_block_allsigs();
3359
3360         init_waitqueue_entry(&wait, current);
3361
3362         sched = kiblnd_data.kib_scheds[KIB_THREAD_CPT(id)];
3363
3364         rc = cfs_cpt_bind(lnet_cpt_table(), sched->ibs_cpt);
3365         if (rc != 0) {
3366                 CWARN("Failed to bind on CPT %d, please verify whether "
3367                       "all CPUs are healthy and reload modules if necessary, "
3368                       "otherwise your system might under risk of low "
3369                       "performance\n", sched->ibs_cpt);
3370         }
3371
3372         spin_lock_irqsave(&sched->ibs_lock, flags);
3373
3374         while (!kiblnd_data.kib_shutdown) {
3375                 if (busy_loops++ >= IBLND_RESCHED) {
3376                         spin_unlock_irqrestore(&sched->ibs_lock, flags);
3377
3378                         cond_resched();
3379                         busy_loops = 0;
3380
3381                         spin_lock_irqsave(&sched->ibs_lock, flags);
3382                 }
3383
3384                 did_something = 0;
3385
3386                 if (!list_empty(&sched->ibs_conns)) {
3387                         conn = list_entry(sched->ibs_conns.next,
3388                                               kib_conn_t, ibc_sched_list);
3389                         /* take over kib_sched_conns' ref on conn... */
3390                         LASSERT(conn->ibc_scheduled);
3391                         list_del(&conn->ibc_sched_list);
3392                         conn->ibc_ready = 0;
3393
3394                         spin_unlock_irqrestore(&sched->ibs_lock, flags);
3395
3396                         rc = ib_poll_cq(conn->ibc_cq, 1, &wc);
3397                         if (rc == 0) {
3398                                 rc = ib_req_notify_cq(conn->ibc_cq,
3399                                                       IB_CQ_NEXT_COMP);
3400                                 if (rc < 0) {
3401                                         CWARN("%s: ib_req_notify_cq failed: %d, "
3402                                               "closing connection\n",
3403                                               libcfs_nid2str(conn->ibc_peer->ibp_nid), rc);
3404                                         kiblnd_close_conn(conn, -EIO);
3405                                         kiblnd_conn_decref(conn);
3406                                         spin_lock_irqsave(&sched->ibs_lock,
3407                                                               flags);
3408                                         continue;
3409                                 }
3410
3411                                 rc = ib_poll_cq(conn->ibc_cq, 1, &wc);
3412                         }
3413
3414                         if (rc < 0) {
3415                                 CWARN("%s: ib_poll_cq failed: %d, "
3416                                       "closing connection\n",
3417                                       libcfs_nid2str(conn->ibc_peer->ibp_nid),
3418                                       rc);
3419                                 kiblnd_close_conn(conn, -EIO);
3420                                 kiblnd_conn_decref(conn);
3421                                 spin_lock_irqsave(&sched->ibs_lock, flags);
3422                                 continue;
3423                         }
3424
3425                         spin_lock_irqsave(&sched->ibs_lock, flags);
3426
3427                         if (rc != 0 || conn->ibc_ready) {
3428                                 /* There may be another completion waiting; get
3429                                  * another scheduler to check while I handle
3430                                  * this one... */
3431                                 /* +1 ref for sched_conns */
3432                                 kiblnd_conn_addref(conn);
3433                                 list_add_tail(&conn->ibc_sched_list,
3434                                                   &sched->ibs_conns);
3435                                 if (waitqueue_active(&sched->ibs_waitq))
3436                                         wake_up(&sched->ibs_waitq);
3437                         } else {
3438                                 conn->ibc_scheduled = 0;
3439                         }
3440
3441                         if (rc != 0) {
3442                                 spin_unlock_irqrestore(&sched->ibs_lock, flags);
3443                                 kiblnd_complete(&wc);
3444
3445                                 spin_lock_irqsave(&sched->ibs_lock, flags);
3446                         }
3447
3448                         kiblnd_conn_decref(conn); /* ...drop my ref from above */
3449                         did_something = 1;
3450                 }
3451
3452                 if (did_something)
3453                         continue;
3454
3455                 set_current_state(TASK_INTERRUPTIBLE);
3456                 add_wait_queue_exclusive(&sched->ibs_waitq, &wait);
3457                 spin_unlock_irqrestore(&sched->ibs_lock, flags);
3458
3459                 schedule();
3460                 busy_loops = 0;
3461
3462                 remove_wait_queue(&sched->ibs_waitq, &wait);
3463                 set_current_state(TASK_RUNNING);
3464                 spin_lock_irqsave(&sched->ibs_lock, flags);
3465         }
3466
3467         spin_unlock_irqrestore(&sched->ibs_lock, flags);
3468
3469         kiblnd_thread_fini();
3470         return 0;
3471 }
3472
3473 int
3474 kiblnd_failover_thread(void *arg)
3475 {
3476         rwlock_t                *glock = &kiblnd_data.kib_global_lock;
3477         kib_dev_t               *dev;
3478         wait_queue_t            wait;
3479         unsigned long           flags;
3480         int                     rc;
3481
3482         LASSERT(*kiblnd_tunables.kib_dev_failover != 0);
3483
3484         cfs_block_allsigs();
3485
3486         init_waitqueue_entry(&wait, current);
3487         write_lock_irqsave(glock, flags);
3488
3489         while (!kiblnd_data.kib_shutdown) {
3490                 int     do_failover = 0;
3491                 int     long_sleep;
3492
3493                 list_for_each_entry(dev, &kiblnd_data.kib_failed_devs,
3494                                     ibd_fail_list) {
3495                         if (cfs_time_before(cfs_time_current(),
3496                                             dev->ibd_next_failover))
3497                                 continue;
3498                         do_failover = 1;
3499                         break;
3500                 }
3501
3502                 if (do_failover) {
3503                         list_del_init(&dev->ibd_fail_list);
3504                         dev->ibd_failover = 1;
3505                         write_unlock_irqrestore(glock, flags);
3506
3507                         rc = kiblnd_dev_failover(dev);
3508
3509                         write_lock_irqsave(glock, flags);
3510
3511                         LASSERT (dev->ibd_failover);
3512                         dev->ibd_failover = 0;
3513                         if (rc >= 0) { /* Device is OK or failover succeed */
3514                                 dev->ibd_next_failover = cfs_time_shift(3);
3515                                 continue;
3516                         }
3517
3518                         /* failed to failover, retry later */
3519                         dev->ibd_next_failover =
3520                                 cfs_time_shift(min(dev->ibd_failed_failover, 10));
3521                         if (kiblnd_dev_can_failover(dev)) {
3522                                 list_add_tail(&dev->ibd_fail_list,
3523                                               &kiblnd_data.kib_failed_devs);
3524                         }
3525
3526                         continue;
3527                 }
3528
3529                 /* long sleep if no more pending failover */
3530                 long_sleep = list_empty(&kiblnd_data.kib_failed_devs);
3531
3532                 set_current_state(TASK_INTERRUPTIBLE);
3533                 add_wait_queue(&kiblnd_data.kib_failover_waitq, &wait);
3534                 write_unlock_irqrestore(glock, flags);
3535
3536                 rc = schedule_timeout(long_sleep ? cfs_time_seconds(10) :
3537                                                    cfs_time_seconds(1));
3538                 set_current_state(TASK_RUNNING);
3539                 remove_wait_queue(&kiblnd_data.kib_failover_waitq, &wait);
3540                 write_lock_irqsave(glock, flags);
3541
3542                 if (!long_sleep || rc != 0)
3543                         continue;
3544
3545                 /* have a long sleep, routine check all active devices,
3546                  * we need checking like this because if there is not active
3547                  * connection on the dev and no SEND from local, we may listen
3548                  * on wrong HCA for ever while there is a bonding failover */
3549                 list_for_each_entry(dev, &kiblnd_data.kib_devs, ibd_list) {
3550                         if (kiblnd_dev_can_failover(dev)) {
3551                                 list_add_tail(&dev->ibd_fail_list,
3552                                               &kiblnd_data.kib_failed_devs);
3553                         }
3554                 }
3555         }
3556
3557         write_unlock_irqrestore(glock, flags);
3558
3559         kiblnd_thread_fini();
3560         return 0;
3561 }