Whamcloud - gitweb
Landing b_hd_newconfig on HEAD
[fs/lustre-release.git] / lnet / klnds / viblnd / viblnd_cb.c
1 /* -*- mode: c; c-basic-offset: 8; indent-tabs-mode: nil; -*-
2  * vim:expandtab:shiftwidth=8:tabstop=8:
3  *
4  * Copyright (C) 2004 Cluster File Systems, Inc.
5  *   Author: Eric Barton <eric@bartonsoftware.com>
6  *   Author: Frank Zago <fzago@systemfabricworks.com>
7  *
8  *   This file is part of Lustre, http://www.lustre.org.
9  *
10  *   Lustre is free software; you can redistribute it and/or
11  *   modify it under the terms of version 2 of the GNU General Public
12  *   License as published by the Free Software Foundation.
13  *
14  *   Lustre is distributed in the hope that it will be useful,
15  *   but WITHOUT ANY WARRANTY; without even the implied warranty of
16  *   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
17  *   GNU General Public License for more details.
18  *
19  *   You should have received a copy of the GNU General Public License
20  *   along with Lustre; if not, write to the Free Software
21  *   Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
22  *
23  */
24
25 #include "viblnd.h"
26
27 void
28 kibnal_tx_done (kib_tx_t *tx)
29 {
30         lnet_msg_t *lntmsg[2];
31         int         rc = tx->tx_status;
32         int         i;
33
34         LASSERT (!in_interrupt());
35         LASSERT (!tx->tx_queued);               /* mustn't be queued for sending */
36         LASSERT (tx->tx_sending == 0);          /* mustn't be awaiting sent callback */
37         LASSERT (!tx->tx_waiting);              /* mustn't be awaiting peer response */
38
39 #if IBNAL_USE_FMR
40         if (tx->tx_md.md_fmrcount == 0 ||
41             (rc != 0 && tx->tx_md.md_active)) {
42                 vv_return_t      vvrc;
43
44                 /* mapping must be active (it dropped fmrcount to 0) */
45                 LASSERT (tx->tx_md.md_active); 
46
47                 vvrc = vv_unmap_fmr(kibnal_data.kib_hca,
48                                     1, &tx->tx_md.md_fmrhandle);
49                 LASSERT (vvrc == vv_return_ok);
50
51                 tx->tx_md.md_fmrcount = *kibnal_tunables.kib_fmr_remaps;
52         }
53         tx->tx_md.md_active = 0;
54 #endif
55
56         /* tx may have up to 2 lnet msgs to finalise */
57         lntmsg[0] = tx->tx_lntmsg[0]; tx->tx_lntmsg[0] = NULL;
58         lntmsg[1] = tx->tx_lntmsg[1]; tx->tx_lntmsg[1] = NULL;
59         
60         if (tx->tx_conn != NULL) {
61                 kibnal_conn_decref(tx->tx_conn);
62                 tx->tx_conn = NULL;
63         }
64
65         tx->tx_nwrq = 0;
66         tx->tx_status = 0;
67
68         spin_lock(&kibnal_data.kib_tx_lock);
69
70         list_add (&tx->tx_list, &kibnal_data.kib_idle_txs);
71
72         spin_unlock(&kibnal_data.kib_tx_lock);
73
74         /* delay finalize until my descs have been freed */
75         for (i = 0; i < 2; i++) {
76                 if (lntmsg[i] == NULL)
77                         continue;
78
79                 lnet_finalize (kibnal_data.kib_ni, lntmsg[i], rc);
80         }
81 }
82
83 void
84 kibnal_txlist_done (struct list_head *txlist, int status)
85 {
86         kib_tx_t *tx;
87
88         while (!list_empty (txlist)) {
89                 tx = list_entry (txlist->next, kib_tx_t, tx_list);
90
91                 list_del (&tx->tx_list);
92                 /* complete now */
93                 tx->tx_waiting = 0;
94                 tx->tx_status = status;
95                 kibnal_tx_done (tx);
96         }
97 }
98
99 kib_tx_t *
100 kibnal_get_idle_tx (void) 
101 {
102         kib_tx_t      *tx;
103         
104         spin_lock(&kibnal_data.kib_tx_lock);
105
106         if (list_empty (&kibnal_data.kib_idle_txs)) {
107                 spin_unlock(&kibnal_data.kib_tx_lock);
108                 return NULL;
109         }
110
111         tx = list_entry (kibnal_data.kib_idle_txs.next, kib_tx_t, tx_list);
112         list_del (&tx->tx_list);
113
114         /* Allocate a new completion cookie.  It might not be needed,
115          * but we've got a lock right now and we're unlikely to
116          * wrap... */
117         tx->tx_cookie = kibnal_data.kib_next_tx_cookie++;
118
119         spin_unlock(&kibnal_data.kib_tx_lock);
120
121         LASSERT (tx->tx_nwrq == 0);
122         LASSERT (!tx->tx_queued);
123         LASSERT (tx->tx_sending == 0);
124         LASSERT (!tx->tx_waiting);
125         LASSERT (tx->tx_status == 0);
126         LASSERT (tx->tx_conn == NULL);
127         LASSERT (tx->tx_lntmsg[0] == NULL);
128         LASSERT (tx->tx_lntmsg[1] == NULL);
129         
130         return tx;
131 }
132
133 int
134 kibnal_post_rx (kib_rx_t *rx, int credit, int rsrvd_credit)
135 {
136         kib_conn_t   *conn = rx->rx_conn;
137         int           rc = 0;
138         __u64         addr = (__u64)((unsigned long)((rx)->rx_msg));
139         vv_return_t   vvrc;
140
141         LASSERT (!in_interrupt());
142         /* old peers don't reserve rxs for RDMA replies */
143         LASSERT (!rsrvd_credit ||
144                  conn->ibc_version != IBNAL_MSG_VERSION_RDMAREPLYNOTRSRVD);
145         
146         rx->rx_gl = (vv_scatgat_t) {
147                 .v_address = KIBNAL_ADDR2SG(addr),
148                 .l_key     = rx->rx_lkey,
149                 .length    = IBNAL_MSG_SIZE,
150         };
151
152         rx->rx_wrq = (vv_wr_t) {
153                 .wr_id                   = kibnal_ptr2wreqid(rx, IBNAL_WID_RX),
154                 .completion_notification = 1,
155                 .scatgat_list            = &rx->rx_gl,
156                 .num_of_data_segments    = 1,
157                 .wr_type                 = vv_wr_receive,
158         };
159
160         LASSERT (conn->ibc_state >= IBNAL_CONN_INIT);
161         LASSERT (rx->rx_nob >= 0);              /* not posted */
162
163         CDEBUG(D_NET, "posting rx [%d %x "LPX64"]\n", 
164                rx->rx_wrq.scatgat_list->length,
165                rx->rx_wrq.scatgat_list->l_key,
166                KIBNAL_SG2ADDR(rx->rx_wrq.scatgat_list->v_address));
167
168         if (conn->ibc_state > IBNAL_CONN_ESTABLISHED) {
169                 /* No more posts for this rx; so lose its ref */
170                 kibnal_conn_decref(conn);
171                 return 0;
172         }
173         
174         rx->rx_nob = -1;                        /* flag posted */
175         
176         spin_lock(&conn->ibc_lock);
177         /* Serialise vv_post_receive; it's not re-entrant on the same QP */
178         vvrc = vv_post_receive(kibnal_data.kib_hca,
179                                conn->ibc_qp, &rx->rx_wrq);
180
181         if (vvrc == vv_return_ok) {
182                 if (credit)
183                         conn->ibc_outstanding_credits++;
184                 if (rsrvd_credit)
185                         conn->ibc_reserved_credits++;
186
187                 spin_unlock(&conn->ibc_lock);
188
189                 if (credit || rsrvd_credit)
190                         kibnal_check_sends(conn);
191
192                 return 0;
193         }
194         
195         spin_unlock(&conn->ibc_lock);
196
197         CERROR ("post rx -> %s failed %d\n", 
198                 libcfs_nid2str(conn->ibc_peer->ibp_nid), vvrc);
199         rc = -EIO;
200         kibnal_close_conn(rx->rx_conn, rc);
201         /* No more posts for this rx; so lose its ref */
202         kibnal_conn_decref(conn);
203         return rc;
204 }
205
206 int
207 kibnal_post_receives (kib_conn_t *conn)
208 {
209         int    i;
210         int    rc;
211
212         LASSERT (conn->ibc_state < IBNAL_CONN_ESTABLISHED);
213         LASSERT (conn->ibc_comms_error == 0);
214
215         for (i = 0; i < IBNAL_RX_MSGS; i++) {
216                 /* +1 ref for rx desc.  This ref remains until kibnal_post_rx
217                  * fails (i.e. actual failure or we're disconnecting) */
218                 kibnal_conn_addref(conn);
219                 rc = kibnal_post_rx (&conn->ibc_rxs[i], 0, 0);
220                 if (rc != 0)
221                         return rc;
222         }
223
224         return 0;
225 }
226
227 kib_tx_t *
228 kibnal_find_waiting_tx_locked(kib_conn_t *conn, int txtype, __u64 cookie)
229 {
230         struct list_head   *tmp;
231         
232         list_for_each(tmp, &conn->ibc_active_txs) {
233                 kib_tx_t *tx = list_entry(tmp, kib_tx_t, tx_list);
234                 
235                 LASSERT (!tx->tx_queued);
236                 LASSERT (tx->tx_sending != 0 || tx->tx_waiting);
237
238                 if (tx->tx_cookie != cookie)
239                         continue;
240
241                 if (tx->tx_waiting &&
242                     tx->tx_msg->ibm_type == txtype)
243                         return tx;
244
245                 CWARN("Bad completion: %swaiting, type %x (wanted %x)\n",
246                       tx->tx_waiting ? "" : "NOT ",
247                       tx->tx_msg->ibm_type, txtype);
248         }
249         return NULL;
250 }
251
252 void
253 kibnal_handle_completion(kib_conn_t *conn, int txtype, int status, __u64 cookie)
254 {
255         kib_tx_t    *tx;
256         int          idle;
257
258         spin_lock(&conn->ibc_lock);
259
260         tx = kibnal_find_waiting_tx_locked(conn, txtype, cookie);
261         if (tx == NULL) {
262                 spin_unlock(&conn->ibc_lock);
263
264                 CWARN("Unmatched completion type %x cookie "LPX64" from %s\n",
265                       txtype, cookie, libcfs_nid2str(conn->ibc_peer->ibp_nid));
266                 kibnal_close_conn (conn, -EPROTO);
267                 return;
268         }
269
270         if (tx->tx_status == 0) {               /* success so far */
271                 if (status < 0) {               /* failed? */
272                         tx->tx_status = status;
273                 } else if (txtype == IBNAL_MSG_GET_REQ) { 
274                         lnet_set_reply_msg_len(kibnal_data.kib_ni,
275                                                tx->tx_lntmsg[1], status);
276                 }
277         }
278         
279         tx->tx_waiting = 0;
280
281         idle = !tx->tx_queued && (tx->tx_sending == 0);
282         if (idle)
283                 list_del(&tx->tx_list);
284
285         spin_unlock(&conn->ibc_lock);
286         
287         if (idle)
288                 kibnal_tx_done(tx);
289 }
290
291 void
292 kibnal_send_completion (kib_conn_t *conn, int type, int status, __u64 cookie) 
293 {
294         kib_tx_t    *tx = kibnal_get_idle_tx();
295         
296         if (tx == NULL) {
297                 CERROR("Can't get tx for completion %x for %s\n",
298                        type, libcfs_nid2str(conn->ibc_peer->ibp_nid));
299                 return;
300         }
301         
302         tx->tx_msg->ibm_u.completion.ibcm_status = status;
303         tx->tx_msg->ibm_u.completion.ibcm_cookie = cookie;
304         kibnal_init_tx_msg(tx, type, sizeof(kib_completion_msg_t));
305         
306         kibnal_queue_tx(tx, conn);
307 }
308
309 void
310 kibnal_handle_rx (kib_rx_t *rx)
311 {
312         kib_msg_t    *msg = rx->rx_msg;
313         kib_conn_t   *conn = rx->rx_conn;
314         int           credits = msg->ibm_credits;
315         kib_tx_t     *tx;
316         int           rc = 0;
317         int           repost = 1;
318         int           rsrvd_credit = 0;
319         int           rc2;
320
321         LASSERT (conn->ibc_state >= IBNAL_CONN_ESTABLISHED);
322
323         CDEBUG (D_NET, "Received %x[%d] from %s\n",
324                 msg->ibm_type, credits, libcfs_nid2str(conn->ibc_peer->ibp_nid));
325         
326         if (credits != 0) {
327                 /* Have I received credits that will let me send? */
328                 spin_lock(&conn->ibc_lock);
329                 conn->ibc_credits += credits;
330                 spin_unlock(&conn->ibc_lock);
331
332                 kibnal_check_sends(conn);
333         }
334
335         switch (msg->ibm_type) {
336         default:
337                 CERROR("Bad IBNAL message type %x from %s\n",
338                        msg->ibm_type, libcfs_nid2str(conn->ibc_peer->ibp_nid));
339                 rc = -EPROTO;
340                 break;
341
342         case IBNAL_MSG_NOOP:
343                 break;
344
345         case IBNAL_MSG_IMMEDIATE:
346                 rc = lnet_parse(kibnal_data.kib_ni, &msg->ibm_u.immediate.ibim_hdr,
347                                 msg->ibm_srcnid, rx, 0);
348                 repost = rc < 0;                /* repost on error */
349                 break;
350                 
351         case IBNAL_MSG_PUT_REQ:
352                 rc = lnet_parse(kibnal_data.kib_ni, &msg->ibm_u.putreq.ibprm_hdr,
353                                 msg->ibm_srcnid, rx, 1);
354                 repost = rc < 0;                /* repost on error */
355                 break;
356
357         case IBNAL_MSG_PUT_NAK:
358                 rsrvd_credit = 1;               /* rdma reply (was pre-reserved) */
359                 
360                 CWARN ("PUT_NACK from %s\n", libcfs_nid2str(conn->ibc_peer->ibp_nid));
361                 kibnal_handle_completion(conn, IBNAL_MSG_PUT_REQ, 
362                                          msg->ibm_u.completion.ibcm_status,
363                                          msg->ibm_u.completion.ibcm_cookie);
364                 break;
365
366         case IBNAL_MSG_PUT_ACK:
367                 rsrvd_credit = 1;               /* rdma reply (was pre-reserved) */
368
369                 spin_lock(&conn->ibc_lock);
370                 tx = kibnal_find_waiting_tx_locked(conn, IBNAL_MSG_PUT_REQ,
371                                                    msg->ibm_u.putack.ibpam_src_cookie);
372                 if (tx != NULL)
373                         list_del(&tx->tx_list);
374                 spin_unlock(&conn->ibc_lock);
375
376                 if (tx == NULL) {
377                         CERROR("Unmatched PUT_ACK from %s\n",
378                                libcfs_nid2str(conn->ibc_peer->ibp_nid));
379                         rc = -EPROTO;
380                         break;
381                 }
382
383                 LASSERT (tx->tx_waiting);
384                 /* CAVEAT EMPTOR: I could be racing with tx_complete, but...
385                  * (a) I can overwrite tx_msg since my peer has received it!
386                  * (b) tx_waiting set tells tx_complete() it's not done. */
387
388                 tx->tx_nwrq = 0;                /* overwrite PUT_REQ */
389
390                 rc2 = kibnal_init_rdma(tx, IBNAL_MSG_PUT_DONE, 
391                                        kibnal_rd_size(&msg->ibm_u.putack.ibpam_rd),
392                                        &msg->ibm_u.putack.ibpam_rd,
393                                        msg->ibm_u.putack.ibpam_dst_cookie);
394                 if (rc2 < 0)
395                         CERROR("Can't setup rdma for PUT to %s: %d\n",
396                                libcfs_nid2str(conn->ibc_peer->ibp_nid), rc2);
397
398                 spin_lock(&conn->ibc_lock);
399                 if (tx->tx_status == 0 && rc2 < 0)
400                         tx->tx_status = rc2;
401                 tx->tx_waiting = 0;             /* clear waiting and queue atomically */
402                 kibnal_queue_tx_locked(tx, conn);
403                 spin_unlock(&conn->ibc_lock);
404                 break;
405                 
406         case IBNAL_MSG_PUT_DONE:
407                 /* This buffer was pre-reserved by not returning the credit
408                  * when the PUT_REQ's buffer was reposted, so I just return it
409                  * now */
410                 kibnal_handle_completion(conn, IBNAL_MSG_PUT_ACK,
411                                          msg->ibm_u.completion.ibcm_status,
412                                          msg->ibm_u.completion.ibcm_cookie);
413                 break;
414
415         case IBNAL_MSG_GET_REQ:
416                 rc = lnet_parse(kibnal_data.kib_ni, &msg->ibm_u.get.ibgm_hdr,
417                                 msg->ibm_srcnid, rx, 1);
418                 repost = rc < 0;                /* repost on error */
419                 break;
420
421         case IBNAL_MSG_GET_DONE:
422                 rsrvd_credit = 1;               /* rdma reply (was pre-reserved) */
423                 
424                 kibnal_handle_completion(conn, IBNAL_MSG_GET_REQ,
425                                          msg->ibm_u.completion.ibcm_status,
426                                          msg->ibm_u.completion.ibcm_cookie);
427                 break;
428         }
429
430         if (rc < 0)                             /* protocol error */
431                 kibnal_close_conn(conn, rc);
432
433         if (repost) {
434                 if (conn->ibc_version == IBNAL_MSG_VERSION_RDMAREPLYNOTRSRVD)
435                         rsrvd_credit = 0;       /* peer isn't pre-reserving */
436
437                 kibnal_post_rx(rx, !rsrvd_credit, rsrvd_credit);
438         }
439 }
440
441 void
442 kibnal_rx_complete (kib_rx_t *rx, vv_comp_status_t vvrc, int nob, __u64 rxseq)
443 {
444         kib_msg_t    *msg = rx->rx_msg;
445         kib_conn_t   *conn = rx->rx_conn;
446         unsigned long flags;
447         int           rc;
448
449         CDEBUG(D_NET, "rx %p conn %p\n", rx, conn);
450         LASSERT (rx->rx_nob < 0);               /* was posted */
451         rx->rx_nob = 0;                         /* isn't now */
452
453         if (conn->ibc_state > IBNAL_CONN_ESTABLISHED)
454                 goto ignore;
455
456         if (vvrc != vv_comp_status_success) {
457                 CERROR("Rx from %s failed: %d\n", 
458                        libcfs_nid2str(conn->ibc_peer->ibp_nid), vvrc);
459                 goto failed;
460         }
461
462         rc = kibnal_unpack_msg(msg, conn->ibc_version, nob);
463         if (rc != 0) {
464                 CERROR ("Error %d unpacking rx from %s\n",
465                         rc, libcfs_nid2str(conn->ibc_peer->ibp_nid));
466                 goto failed;
467         }
468
469         rx->rx_nob = nob;                       /* Can trust 'nob' now */
470
471         if (!lnet_ptlcompat_matchnid(conn->ibc_peer->ibp_nid,
472                                      msg->ibm_srcnid) ||
473             !lnet_ptlcompat_matchnid(kibnal_data.kib_ni->ni_nid, 
474                                      msg->ibm_dstnid) ||
475             msg->ibm_srcstamp != conn->ibc_incarnation ||
476             msg->ibm_dststamp != kibnal_data.kib_incarnation) {
477                 CERROR ("Stale rx from %s\n",
478                         libcfs_nid2str(conn->ibc_peer->ibp_nid));
479                 goto failed;
480         }
481
482         if (msg->ibm_seq != rxseq) {
483                 CERROR ("Out-of-sequence rx from %s"
484                         ": got "LPD64" but expected "LPD64"\n",
485                         libcfs_nid2str(conn->ibc_peer->ibp_nid),
486                         msg->ibm_seq, rxseq);
487                 goto failed;
488         }
489
490         /* set time last known alive */
491         kibnal_peer_alive(conn->ibc_peer);
492
493         /* racing with connection establishment/teardown! */
494
495         if (conn->ibc_state < IBNAL_CONN_ESTABLISHED) {
496                 write_lock_irqsave(&kibnal_data.kib_global_lock, flags);
497                 /* must check holding global lock to eliminate race */
498                 if (conn->ibc_state < IBNAL_CONN_ESTABLISHED) {
499                         list_add_tail(&rx->rx_list, &conn->ibc_early_rxs);
500                         write_unlock_irqrestore(&kibnal_data.kib_global_lock, 
501                                                 flags);
502                         return;
503                 }
504                 write_unlock_irqrestore(&kibnal_data.kib_global_lock, 
505                                         flags);
506         }
507         kibnal_handle_rx(rx);
508         return;
509         
510  failed:
511         CDEBUG(D_NET, "rx %p conn %p\n", rx, conn);
512         kibnal_close_conn(conn, -EIO);
513  ignore:
514         /* Don't re-post rx & drop its ref on conn */
515         kibnal_conn_decref(conn);
516 }
517
518 struct page *
519 kibnal_kvaddr_to_page (unsigned long vaddr)
520 {
521         struct page *page;
522
523         if (vaddr >= VMALLOC_START &&
524             vaddr < VMALLOC_END) {
525                 page = vmalloc_to_page ((void *)vaddr);
526                 LASSERT (page != NULL);
527                 return page;
528         }
529 #if CONFIG_HIGHMEM
530         if (vaddr >= PKMAP_BASE &&
531             vaddr < (PKMAP_BASE + LAST_PKMAP * PAGE_SIZE)) {
532                 /* No highmem pages only used for bulk (kiov) I/O */
533                 CERROR("find page for address in highmem\n");
534                 LBUG();
535         }
536 #endif
537         page = virt_to_page (vaddr);
538         LASSERT (page != NULL);
539         return page;
540 }
541
542 #if !IBNAL_USE_FMR
543 int
544 kibnal_append_rdfrag(kib_rdma_desc_t *rd, int active, struct page *page, 
545                      unsigned long page_offset, unsigned long len)
546 {
547         kib_rdma_frag_t *frag = &rd->rd_frags[rd->rd_nfrag];
548         vv_l_key_t       l_key;
549         vv_r_key_t       r_key;
550         __u64            addr;
551         __u64            frag_addr;
552         vv_mem_reg_h_t   mem_h;
553         vv_return_t      vvrc;
554
555         if (rd->rd_nfrag >= IBNAL_MAX_RDMA_FRAGS) {
556                 CERROR ("Too many RDMA fragments\n");
557                 return -EMSGSIZE;
558         }
559
560         /* Try to create an address that adaptor-tavor will munge into a valid
561          * network address, given how it maps all phys mem into 1 region */
562         addr = lnet_page2phys(page) + page_offset + PAGE_OFFSET;
563
564         /* NB this relies entirely on there being a single region for the whole
565          * of memory, since "high" memory will wrap in the (void *) cast! */
566         vvrc = vv_get_gen_mr_attrib(kibnal_data.kib_hca, 
567                                     (void *)((unsigned long)addr),
568                                     len, &mem_h, &l_key, &r_key);
569         LASSERT (vvrc == vv_return_ok);
570
571         if (active) {
572                 if (rd->rd_nfrag == 0) {
573                         rd->rd_key = l_key;
574                 } else if (l_key != rd->rd_key) {
575                         CERROR ("> 1 key for single RDMA desc\n");
576                         return -EINVAL;
577                 }
578                 frag_addr = addr;
579         } else {
580                 if (rd->rd_nfrag == 0) {
581                         rd->rd_key = r_key;
582                 } else if (r_key != rd->rd_key) {
583                         CERROR ("> 1 key for single RDMA desc\n");
584                         return -EINVAL;
585                 }
586
587                 frag_addr = kibnal_addr2net(addr);
588         }
589
590         kibnal_rf_set(frag, frag_addr, len);
591
592         CDEBUG(D_NET,"map frag [%d][%d %x %08x%08x] "LPX64"\n", 
593                rd->rd_nfrag, frag->rf_nob, rd->rd_key, 
594                frag->rf_addr_hi, frag->rf_addr_lo, frag_addr);
595
596         rd->rd_nfrag++;
597         return 0;
598 }
599
600 int
601 kibnal_setup_rd_iov(kib_tx_t *tx, kib_rdma_desc_t *rd, 
602                     vv_access_con_bit_mask_t access,
603                     unsigned int niov, struct iovec *iov, int offset, int nob)
604                  
605 {
606         /* active if I'm sending */
607         int           active = ((access & vv_acc_r_mem_write) == 0);
608         int           fragnob;
609         int           rc;
610         unsigned long vaddr;
611         struct page  *page;
612         int           page_offset;
613
614         LASSERT (nob > 0);
615         LASSERT (niov > 0);
616         LASSERT ((rd != tx->tx_rd) == !active);
617
618         while (offset >= iov->iov_len) {
619                 offset -= iov->iov_len;
620                 niov--;
621                 iov++;
622                 LASSERT (niov > 0);
623         }
624
625         rd->rd_nfrag = 0;
626         do {
627                 LASSERT (niov > 0);
628
629                 vaddr = ((unsigned long)iov->iov_base) + offset;
630                 page_offset = vaddr & (PAGE_SIZE - 1);
631                 page = kibnal_kvaddr_to_page(vaddr);
632                 if (page == NULL) {
633                         CERROR ("Can't find page\n");
634                         return -EFAULT;
635                 }
636
637                 fragnob = min((int)(iov->iov_len - offset), nob);
638                 fragnob = min(fragnob, (int)PAGE_SIZE - page_offset);
639
640                 rc = kibnal_append_rdfrag(rd, active, page, 
641                                           page_offset, fragnob);
642                 if (rc != 0)
643                         return rc;
644
645                 if (offset + fragnob < iov->iov_len) {
646                         offset += fragnob;
647                 } else {
648                         offset = 0;
649                         iov++;
650                         niov--;
651                 }
652                 nob -= fragnob;
653         } while (nob > 0);
654         
655         return 0;
656 }
657
658 int
659 kibnal_setup_rd_kiov (kib_tx_t *tx, kib_rdma_desc_t *rd, 
660                       vv_access_con_bit_mask_t access,
661                       int nkiov, lnet_kiov_t *kiov, int offset, int nob)
662 {
663         /* active if I'm sending */
664         int            active = ((access & vv_acc_r_mem_write) == 0);
665         int            fragnob;
666         int            rc;
667
668         CDEBUG(D_NET, "niov %d offset %d nob %d\n", nkiov, offset, nob);
669
670         LASSERT (nob > 0);
671         LASSERT (nkiov > 0);
672         LASSERT ((rd != tx->tx_rd) == !active);
673
674         while (offset >= kiov->kiov_len) {
675                 offset -= kiov->kiov_len;
676                 nkiov--;
677                 kiov++;
678                 LASSERT (nkiov > 0);
679         }
680
681         rd->rd_nfrag = 0;
682         do {
683                 LASSERT (nkiov > 0);
684                 fragnob = min((int)(kiov->kiov_len - offset), nob);
685                 
686                 rc = kibnal_append_rdfrag(rd, active, kiov->kiov_page,
687                                           kiov->kiov_offset + offset,
688                                           fragnob);
689                 if (rc != 0)
690                         return rc;
691
692                 offset = 0;
693                 kiov++;
694                 nkiov--;
695                 nob -= fragnob;
696         } while (nob > 0);
697
698         return 0;
699 }
700 #else
701 int
702 kibnal_map_tx (kib_tx_t *tx, kib_rdma_desc_t *rd, int active,
703                int npages, unsigned long page_offset, int nob)
704 {
705         vv_return_t   vvrc;
706         vv_fmr_map_t  map_props;
707
708         LASSERT ((rd != tx->tx_rd) == !active);
709         LASSERT (!tx->tx_md.md_active);
710         LASSERT (tx->tx_md.md_fmrcount > 0);
711         LASSERT (page_offset < PAGE_SIZE);
712         LASSERT (npages >= (1 + ((page_offset + nob - 1)>>PAGE_SHIFT)));
713         LASSERT (npages <= LNET_MAX_IOV);
714
715         memset(&map_props, 0, sizeof(map_props));
716
717         map_props.start          = (void *)page_offset;
718         map_props.size           = nob;
719         map_props.page_array_len = npages;
720         map_props.page_array     = tx->tx_pages;
721
722         vvrc = vv_map_fmr(kibnal_data.kib_hca, tx->tx_md.md_fmrhandle,
723                           &map_props, &tx->tx_md.md_lkey, &tx->tx_md.md_rkey);
724         if (vvrc != vv_return_ok) {
725                 CERROR ("Can't map vaddr %p for %d in %d pages: %d\n", 
726                         map_props.start, nob, npages, vvrc);
727                 return -EFAULT;
728         }
729
730         tx->tx_md.md_addr = (unsigned long)map_props.start;
731         tx->tx_md.md_active = 1;
732         tx->tx_md.md_fmrcount--;
733
734         rd->rd_key = active ? tx->tx_md.md_lkey : tx->tx_md.md_rkey;
735         rd->rd_nob = nob;
736         rd->rd_addr = tx->tx_md.md_addr;
737
738         /* Compensate for adaptor-tavor's munging of gatherlist addresses */
739         if (active)
740                 rd->rd_addr += PAGE_OFFSET;
741
742         return 0;
743 }
744
745 int
746 kibnal_setup_rd_iov (kib_tx_t *tx, kib_rdma_desc_t *rd,
747                      vv_access_con_bit_mask_t access,
748                      unsigned int niov, struct iovec *iov, int offset, int nob)
749                  
750 {
751         /* active if I'm sending */
752         int           active = ((access & vv_acc_r_mem_write) == 0);
753         int           resid;
754         int           fragnob;
755         struct page  *page;
756         int           npages;
757         unsigned long page_offset;
758         unsigned long vaddr;
759
760         LASSERT (nob > 0);
761         LASSERT (niov > 0);
762
763         while (offset >= iov->iov_len) {
764                 offset -= iov->iov_len;
765                 niov--;
766                 iov++;
767                 LASSERT (niov > 0);
768         }
769
770         if (nob > iov->iov_len - offset) {
771                 CERROR ("Can't map multiple vaddr fragments\n");
772                 return (-EMSGSIZE);
773         }
774
775         vaddr = ((unsigned long)iov->iov_base) + offset;
776         
777         page_offset = vaddr & (PAGE_SIZE - 1);
778         resid = nob;
779         npages = 0;
780
781         do {
782                 LASSERT (npages < LNET_MAX_IOV);
783
784                 page = kibnal_kvaddr_to_page(vaddr);
785                 if (page == NULL) {
786                         CERROR("Can't find page for %lu\n", vaddr);
787                         return -EFAULT;
788                 }
789
790                 tx->tx_pages[npages++] = lnet_page2phys(page);
791
792                 fragnob = PAGE_SIZE - (vaddr & (PAGE_SIZE - 1));
793                 vaddr += fragnob;
794                 resid -= fragnob;
795
796         } while (resid > 0);
797
798         return kibnal_map_tx(tx, rd, active, npages, page_offset, nob);
799 }
800
801 int
802 kibnal_setup_rd_kiov (kib_tx_t *tx, kib_rdma_desc_t *rd,
803                       vv_access_con_bit_mask_t access,
804                       int nkiov, lnet_kiov_t *kiov, int offset, int nob)
805 {
806         /* active if I'm sending */
807         int            active = ((access & vv_acc_r_mem_write) == 0);
808         int            resid;
809         int            npages;
810         unsigned long  page_offset;
811         
812         CDEBUG(D_NET, "niov %d offset %d nob %d\n", nkiov, offset, nob);
813
814         LASSERT (nob > 0);
815         LASSERT (nkiov > 0);
816         LASSERT (nkiov <= LNET_MAX_IOV);
817         LASSERT (!tx->tx_md.md_active);
818         LASSERT ((rd != tx->tx_rd) == !active);
819
820         while (offset >= kiov->kiov_len) {
821                 offset -= kiov->kiov_len;
822                 nkiov--;
823                 kiov++;
824                 LASSERT (nkiov > 0);
825         }
826
827         page_offset = kiov->kiov_offset + offset;
828         
829         resid = offset + nob;
830         npages = 0;
831
832         do {
833                 LASSERT (npages < LNET_MAX_IOV);
834                 LASSERT (nkiov > 0);
835
836                 if ((npages > 0 && kiov->kiov_offset != 0) ||
837                     (resid > kiov->kiov_len && 
838                      (kiov->kiov_offset + kiov->kiov_len) != PAGE_SIZE)) {
839                         /* Can't have gaps */
840                         CERROR ("Can't make payload contiguous in I/O VM:"
841                                 "page %d, offset %d, len %d \n",
842                                 npages, kiov->kiov_offset, kiov->kiov_len);
843                         
844                         return -EINVAL;
845                 }
846
847                 tx->tx_pages[npages++] = lnet_page2phys(kiov->kiov_page);
848                 resid -= kiov->kiov_len;
849                 kiov++;
850                 nkiov--;
851         } while (resid > 0);
852
853         return kibnal_map_tx(tx, rd, active, npages, page_offset, nob);
854 }
855 #endif
856
857 kib_conn_t *
858 kibnal_find_conn_locked (kib_peer_t *peer)
859 {
860         struct list_head *tmp;
861
862         /* just return the first connection */
863         list_for_each (tmp, &peer->ibp_conns) {
864                 return (list_entry(tmp, kib_conn_t, ibc_list));
865         }
866
867         return (NULL);
868 }
869
870 void
871 kibnal_check_sends (kib_conn_t *conn)
872 {
873         kib_tx_t       *tx;
874         vv_return_t     vvrc;
875         int             rc;
876         int             consume_cred;
877         int             done;
878
879         /* Don't send anything until after the connection is established */
880         if (conn->ibc_state < IBNAL_CONN_ESTABLISHED) {
881                 CDEBUG(D_NET, "%s too soon\n",
882                        libcfs_nid2str(conn->ibc_peer->ibp_nid));
883                 return;
884         }
885         
886         spin_lock(&conn->ibc_lock);
887
888         LASSERT (conn->ibc_nsends_posted <=
889                  *kibnal_tunables.kib_concurrent_sends);
890         LASSERT (conn->ibc_reserved_credits >= 0);
891         
892         while (conn->ibc_reserved_credits > 0 &&
893                !list_empty(&conn->ibc_tx_queue_rsrvd)) {
894                 LASSERT (conn->ibc_version != 
895                          IBNAL_MSG_VERSION_RDMAREPLYNOTRSRVD);
896                 tx = list_entry(conn->ibc_tx_queue_rsrvd.next,
897                                 kib_tx_t, tx_list);
898                 list_del(&tx->tx_list);
899                 list_add_tail(&tx->tx_list, &conn->ibc_tx_queue);
900                 conn->ibc_reserved_credits--;
901         }
902         
903         if (list_empty(&conn->ibc_tx_queue) &&
904             list_empty(&conn->ibc_tx_queue_nocred) &&
905             (conn->ibc_outstanding_credits >= IBNAL_CREDIT_HIGHWATER ||
906              kibnal_send_keepalive(conn))) {
907                 spin_unlock(&conn->ibc_lock);
908                 
909                 tx = kibnal_get_idle_tx();
910                 if (tx != NULL)
911                         kibnal_init_tx_msg(tx, IBNAL_MSG_NOOP, 0);
912
913                 spin_lock(&conn->ibc_lock);
914                 
915                 if (tx != NULL)
916                         kibnal_queue_tx_locked(tx, conn);
917         }
918
919         for (;;) {
920                 if (!list_empty(&conn->ibc_tx_queue_nocred)) {
921                         LASSERT (conn->ibc_version != 
922                                  IBNAL_MSG_VERSION_RDMAREPLYNOTRSRVD);
923                         tx = list_entry (conn->ibc_tx_queue_nocred.next, 
924                                          kib_tx_t, tx_list);
925                         consume_cred = 0;
926                 } else if (!list_empty (&conn->ibc_tx_queue)) {
927                         tx = list_entry (conn->ibc_tx_queue.next, 
928                                          kib_tx_t, tx_list);
929                         consume_cred = 1;
930                 } else {
931                         /* nothing waiting */
932                         break;
933                 }
934                 
935                 LASSERT (tx->tx_queued);
936                 /* We rely on this for QP sizing */
937                 LASSERT (tx->tx_nwrq > 0 && tx->tx_nwrq <= 1 + IBNAL_MAX_RDMA_FRAGS);
938
939                 LASSERT (conn->ibc_outstanding_credits >= 0);
940                 LASSERT (conn->ibc_outstanding_credits <= IBNAL_MSG_QUEUE_SIZE);
941                 LASSERT (conn->ibc_credits >= 0);
942                 LASSERT (conn->ibc_credits <= IBNAL_MSG_QUEUE_SIZE);
943
944                 if (conn->ibc_nsends_posted ==
945                     *kibnal_tunables.kib_concurrent_sends) {
946                         /* We've got some tx completions outstanding... */
947                         CDEBUG(D_NET, "%s: posted enough\n",
948                                libcfs_nid2str(conn->ibc_peer->ibp_nid));
949                         break;
950                 }
951                 
952                 if (consume_cred) {
953                         if (conn->ibc_credits == 0) {   /* no credits */
954                                 CDEBUG(D_NET, "%s: no credits\n",
955                                        libcfs_nid2str(conn->ibc_peer->ibp_nid));
956                                 break;
957                         }
958                         
959                         if (conn->ibc_credits == 1 &&   /* last credit reserved for */
960                             conn->ibc_outstanding_credits == 0) { /* giving back credits */
961                                 CDEBUG(D_NET, "%s: not using last credit\n",
962                                        libcfs_nid2str(conn->ibc_peer->ibp_nid));
963                                 break;
964                         }
965                 }
966                 
967                 list_del (&tx->tx_list);
968                 tx->tx_queued = 0;
969
970                 /* NB don't drop ibc_lock before bumping tx_sending */
971
972                 if (tx->tx_msg->ibm_type == IBNAL_MSG_NOOP &&
973                     (!list_empty(&conn->ibc_tx_queue) ||
974                      !list_empty(&conn->ibc_tx_queue_nocred) ||
975                      (conn->ibc_outstanding_credits < IBNAL_CREDIT_HIGHWATER &&
976                       !kibnal_send_keepalive(conn)))) {
977                         /* redundant NOOP */
978                         spin_unlock(&conn->ibc_lock);
979                         kibnal_tx_done(tx);
980                         spin_lock(&conn->ibc_lock);
981                         CDEBUG(D_NET, "%s: redundant noop\n",
982                                libcfs_nid2str(conn->ibc_peer->ibp_nid));
983                         continue;
984                 }
985
986                 kibnal_pack_msg(tx->tx_msg, conn->ibc_version,
987                                 conn->ibc_outstanding_credits,
988                                 conn->ibc_peer->ibp_nid, conn->ibc_incarnation,
989                                 conn->ibc_txseq);
990
991                 conn->ibc_txseq++;
992                 conn->ibc_outstanding_credits = 0;
993                 conn->ibc_nsends_posted++;
994                 if (consume_cred)
995                         conn->ibc_credits--;
996
997                 /* CAVEAT EMPTOR!  This tx could be the PUT_DONE of an RDMA
998                  * PUT.  If so, it was first queued here as a PUT_REQ, sent and
999                  * stashed on ibc_active_txs, matched by an incoming PUT_ACK,
1000                  * and then re-queued here.  It's (just) possible that
1001                  * tx_sending is non-zero if we've not done the tx_complete() from
1002                  * the first send; hence the ++ rather than = below. */
1003                 tx->tx_sending++;
1004
1005                 list_add (&tx->tx_list, &conn->ibc_active_txs);
1006
1007                 /* Keep holding ibc_lock while posting sends on this
1008                  * connection; vv_post_send() isn't re-entrant on the same
1009                  * QP!! */
1010
1011                 LASSERT (tx->tx_nwrq > 0);
1012 #if 0
1013                 if (tx->tx_wrq[0].wr_type == vv_wr_rdma_write) 
1014                         CDEBUG(D_NET, "WORK[0]: RDMA gl %p for %d k %x -> "LPX64" k %x\n",
1015                                tx->tx_wrq[0].scatgat_list->v_address,
1016                                tx->tx_wrq[0].scatgat_list->length,
1017                                tx->tx_wrq[0].scatgat_list->l_key,
1018                                tx->tx_wrq[0].type.send.send_qp_type.rc_type.r_addr,
1019                                tx->tx_wrq[0].type.send.send_qp_type.rc_type.r_r_key);
1020                 else
1021                         CDEBUG(D_NET, "WORK[0]: %s gl %p for %d k %x\n",
1022                                tx->tx_wrq[0].wr_type == vv_wr_send ? "SEND" : "????",
1023                                tx->tx_wrq[0].scatgat_list->v_address,
1024                                tx->tx_wrq[0].scatgat_list->length,
1025                                tx->tx_wrq[0].scatgat_list->l_key);
1026
1027                 if (tx->tx_nwrq > 1) {
1028                         if (tx->tx_wrq[1].wr_type == vv_wr_rdma_write) 
1029                                 CDEBUG(D_NET, "WORK[1]: RDMA gl %p for %d k %x -> "LPX64" k %x\n",
1030                                        tx->tx_wrq[1].scatgat_list->v_address,
1031                                        tx->tx_wrq[1].scatgat_list->length,
1032                                        tx->tx_wrq[1].scatgat_list->l_key,
1033                                        tx->tx_wrq[1].type.send.send_qp_type.rc_type.r_addr,
1034                                        tx->tx_wrq[1].type.send.send_qp_type.rc_type.r_r_key);
1035                         else
1036                                 CDEBUG(D_NET, "WORK[1]: %s gl %p for %d k %x\n",
1037                                        tx->tx_wrq[1].wr_type == vv_wr_send ? "SEND" : "????",
1038                                        tx->tx_wrq[1].scatgat_list->v_address,
1039                                        tx->tx_wrq[1].scatgat_list->length,
1040                                        tx->tx_wrq[1].scatgat_list->l_key);
1041                 }
1042 #endif           
1043                 rc = -ECONNABORTED;
1044                 vvrc = vv_return_ok;
1045                 if (conn->ibc_state == IBNAL_CONN_ESTABLISHED) {
1046                         tx->tx_status = 0;
1047                         vvrc = vv_post_send_list(kibnal_data.kib_hca,
1048                                                  conn->ibc_qp,
1049                                                  tx->tx_nwrq,
1050                                                  tx->tx_wrq,
1051                                                  vv_operation_type_send_rc);
1052                         rc = (vvrc == vv_return_ok) ? 0 : -EIO;
1053                 }
1054
1055                 conn->ibc_last_send = jiffies;
1056
1057                 if (rc != 0) {
1058                         /* NB credits are transferred in the actual
1059                          * message, which can only be the last work item */
1060                         conn->ibc_outstanding_credits += tx->tx_msg->ibm_credits;
1061                         if (consume_cred)
1062                                 conn->ibc_credits++;
1063                         conn->ibc_nsends_posted--;
1064
1065                         tx->tx_status = rc;
1066                         tx->tx_waiting = 0;
1067                         tx->tx_sending--;
1068                         
1069                         done = (tx->tx_sending == 0);
1070                         if (done)
1071                                 list_del (&tx->tx_list);
1072                         
1073                         spin_unlock(&conn->ibc_lock);
1074                         
1075                         if (conn->ibc_state == IBNAL_CONN_ESTABLISHED)
1076                                 CERROR ("Error %d posting transmit to %s\n", 
1077                                         vvrc, libcfs_nid2str(conn->ibc_peer->ibp_nid));
1078                         else
1079                                 CDEBUG (D_NET, "Error %d posting transmit to %s\n",
1080                                         rc, libcfs_nid2str(conn->ibc_peer->ibp_nid));
1081
1082                         kibnal_close_conn (conn, rc);
1083
1084                         if (done)
1085                                 kibnal_tx_done (tx);
1086                         return;
1087                 }
1088         }
1089
1090         spin_unlock(&conn->ibc_lock);
1091 }
1092
1093 void
1094 kibnal_tx_complete (kib_tx_t *tx, vv_comp_status_t vvrc)
1095 {
1096         kib_conn_t   *conn = tx->tx_conn;
1097         int           failed = (vvrc != vv_comp_status_success);
1098         int           idle;
1099
1100         CDEBUG(D_NET, "tx %p conn %p sending %d nwrq %d vvrc %d\n", 
1101                tx, conn, tx->tx_sending, tx->tx_nwrq, vvrc);
1102
1103         LASSERT (tx->tx_sending > 0);
1104
1105         if (failed &&
1106             tx->tx_status == 0 &&
1107             conn->ibc_state == IBNAL_CONN_ESTABLISHED)
1108                 CDEBUG(D_NETERROR, "tx -> %s type %x cookie "LPX64
1109                        "sending %d waiting %d: failed %d\n", 
1110                        libcfs_nid2str(conn->ibc_peer->ibp_nid),
1111                        tx->tx_msg->ibm_type, tx->tx_cookie,
1112                        tx->tx_sending, tx->tx_waiting, vvrc);
1113
1114         spin_lock(&conn->ibc_lock);
1115
1116         /* I could be racing with rdma completion.  Whoever makes 'tx' idle
1117          * gets to free it, which also drops its ref on 'conn'. */
1118
1119         tx->tx_sending--;
1120         conn->ibc_nsends_posted--;
1121
1122         if (failed) {
1123                 tx->tx_waiting = 0;
1124                 tx->tx_status = -EIO;
1125         }
1126         
1127         idle = (tx->tx_sending == 0) &&         /* This is the final callback */
1128                !tx->tx_waiting &&               /* Not waiting for peer */
1129                !tx->tx_queued;                  /* Not re-queued (PUT_DONE) */
1130         if (idle)
1131                 list_del(&tx->tx_list);
1132
1133         kibnal_conn_addref(conn);               /* 1 ref for me.... */
1134
1135         spin_unlock(&conn->ibc_lock);
1136
1137         if (idle)
1138                 kibnal_tx_done (tx);
1139
1140         if (failed) {
1141                 kibnal_close_conn (conn, -EIO);
1142         } else {
1143                 kibnal_peer_alive(conn->ibc_peer);
1144                 kibnal_check_sends(conn);
1145         }
1146
1147         kibnal_conn_decref(conn);               /* ...until here */
1148 }
1149
1150 void
1151 kibnal_init_tx_msg (kib_tx_t *tx, int type, int body_nob)
1152 {
1153         vv_scatgat_t *gl = &tx->tx_gl[tx->tx_nwrq];
1154         vv_wr_t      *wrq = &tx->tx_wrq[tx->tx_nwrq];
1155         int           nob = offsetof (kib_msg_t, ibm_u) + body_nob;
1156         __u64         addr = (__u64)((unsigned long)((tx)->tx_msg));
1157
1158         LASSERT (tx->tx_nwrq >= 0 && 
1159                  tx->tx_nwrq < (1 + IBNAL_MAX_RDMA_FRAGS));
1160         LASSERT (nob <= IBNAL_MSG_SIZE);
1161
1162         kibnal_init_msg(tx->tx_msg, type, body_nob);
1163
1164         *gl = (vv_scatgat_t) {
1165                 .v_address = KIBNAL_ADDR2SG(addr),
1166                 .l_key     = tx->tx_lkey,
1167                 .length    = nob,
1168         };
1169
1170         memset(wrq, 0, sizeof(*wrq));
1171
1172         wrq->wr_id = kibnal_ptr2wreqid(tx, IBNAL_WID_TX);
1173         wrq->wr_type = vv_wr_send;
1174         wrq->scatgat_list = gl;
1175         wrq->num_of_data_segments = 1;
1176         wrq->completion_notification = 1;
1177         wrq->type.send.solicited_event = 1;
1178         wrq->type.send.immidiate_data_indicator = 0;
1179         wrq->type.send.send_qp_type.rc_type.fance_indicator = 0;
1180         
1181         tx->tx_nwrq++;
1182 }
1183
1184 int
1185 kibnal_init_rdma (kib_tx_t *tx, int type, int nob,
1186                   kib_rdma_desc_t *dstrd, __u64 dstcookie)
1187 {
1188         kib_msg_t       *ibmsg = tx->tx_msg;
1189         kib_rdma_desc_t *srcrd = tx->tx_rd;
1190         vv_scatgat_t    *gl;
1191         vv_wr_t         *wrq;
1192         int              rc;
1193
1194 #if IBNAL_USE_FMR
1195         LASSERT (tx->tx_nwrq == 0);
1196
1197         gl = &tx->tx_gl[0];
1198         gl->length    = nob;
1199         gl->v_address = KIBNAL_ADDR2SG(srcrd->rd_addr);
1200         gl->l_key     = srcrd->rd_key;
1201
1202         wrq = &tx->tx_wrq[0];
1203
1204         wrq->wr_id = kibnal_ptr2wreqid(tx, IBNAL_WID_RDMA);
1205         wrq->completion_notification = 0;
1206         wrq->scatgat_list = gl;
1207         wrq->num_of_data_segments = 1;
1208         wrq->wr_type = vv_wr_rdma_write;
1209         wrq->type.send.solicited_event = 0;
1210         wrq->type.send.send_qp_type.rc_type.fance_indicator = 0;
1211         wrq->type.send.send_qp_type.rc_type.r_addr = dstrd->rd_addr;
1212         wrq->type.send.send_qp_type.rc_type.r_r_key = dstrd->rd_key;
1213
1214         tx->tx_nwrq = 1;
1215         rc = nob;
1216 #else
1217         /* CAVEAT EMPTOR: this 'consumes' the frags in 'dstrd' */
1218         int              resid = nob;
1219         kib_rdma_frag_t *srcfrag;
1220         int              srcidx;
1221         kib_rdma_frag_t *dstfrag;
1222         int              dstidx;
1223         int              wrknob;
1224
1225         /* Called by scheduler */
1226         LASSERT (!in_interrupt());
1227
1228         LASSERT (type == IBNAL_MSG_GET_DONE ||
1229                  type == IBNAL_MSG_PUT_DONE);
1230
1231         srcidx = dstidx = 0;
1232         srcfrag = &srcrd->rd_frags[0];
1233         dstfrag = &dstrd->rd_frags[0];
1234         rc = resid;
1235
1236         while (resid > 0) {
1237                 if (srcidx >= srcrd->rd_nfrag) {
1238                         CERROR("Src buffer exhausted: %d frags\n", srcidx);
1239                         rc = -EPROTO;
1240                         break;
1241                 }
1242                 
1243                 if (dstidx == dstrd->rd_nfrag) {
1244                         CERROR("Dst buffer exhausted: %d frags\n", dstidx);
1245                         rc = -EPROTO;
1246                         break;
1247                 }
1248
1249                 if (tx->tx_nwrq == IBNAL_MAX_RDMA_FRAGS) {
1250                         CERROR("RDMA too fragmented: %d/%d src %d/%d dst frags\n",
1251                                srcidx, srcrd->rd_nfrag,
1252                                dstidx, dstrd->rd_nfrag);
1253                         rc = -EMSGSIZE;
1254                         break;
1255                 }
1256
1257                 wrknob = MIN(MIN(srcfrag->rf_nob, dstfrag->rf_nob), resid);
1258
1259                 gl = &tx->tx_gl[tx->tx_nwrq];
1260                 gl->v_address = KIBNAL_ADDR2SG(kibnal_rf_addr(srcfrag));
1261                 gl->length    = wrknob;
1262                 gl->l_key     = srcrd->rd_key;
1263
1264                 wrq = &tx->tx_wrq[tx->tx_nwrq];
1265
1266                 wrq->wr_id = kibnal_ptr2wreqid(tx, IBNAL_WID_RDMA);
1267                 wrq->completion_notification = 0;
1268                 wrq->scatgat_list = gl;
1269                 wrq->num_of_data_segments = 1;
1270                 wrq->wr_type = vv_wr_rdma_write;
1271                 wrq->type.send.solicited_event = 0;
1272                 wrq->type.send.send_qp_type.rc_type.fance_indicator = 0;
1273                 wrq->type.send.send_qp_type.rc_type.r_addr = kibnal_rf_addr(dstfrag);
1274                 wrq->type.send.send_qp_type.rc_type.r_r_key = dstrd->rd_key;
1275
1276                 resid -= wrknob;
1277                 if (wrknob < srcfrag->rf_nob) {
1278                         kibnal_rf_set(srcfrag, 
1279                                       kibnal_rf_addr(srcfrag) + wrknob, 
1280                                       srcfrag->rf_nob - wrknob);
1281                 } else {
1282                         srcfrag++;
1283                         srcidx++;
1284                 }
1285                 
1286                 if (wrknob < dstfrag->rf_nob) {
1287                         kibnal_rf_set(dstfrag,
1288                                       kibnal_rf_addr(dstfrag) + wrknob,
1289                                       dstfrag->rf_nob - wrknob);
1290                 } else {
1291                         dstfrag++;
1292                         dstidx++;
1293                 }
1294                 
1295                 tx->tx_nwrq++;
1296         }
1297
1298         if (rc < 0)                             /* no RDMA if completing with failure */
1299                 tx->tx_nwrq = 0;
1300 #endif
1301         
1302         ibmsg->ibm_u.completion.ibcm_status = rc;
1303         ibmsg->ibm_u.completion.ibcm_cookie = dstcookie;
1304         kibnal_init_tx_msg(tx, type, sizeof (kib_completion_msg_t));
1305
1306         return rc;
1307 }
1308
1309 void
1310 kibnal_queue_tx (kib_tx_t *tx, kib_conn_t *conn)
1311 {
1312         spin_lock(&conn->ibc_lock);
1313         kibnal_queue_tx_locked (tx, conn);
1314         spin_unlock(&conn->ibc_lock);
1315         
1316         kibnal_check_sends(conn);
1317 }
1318
1319 void
1320 kibnal_schedule_peer_arp (kib_peer_t *peer)
1321 {
1322         unsigned long flags;
1323
1324         LASSERT (peer->ibp_connecting != 0);
1325         LASSERT (peer->ibp_arp_count > 0);
1326
1327         kibnal_peer_addref(peer); /* extra ref for connd */
1328
1329         spin_lock_irqsave(&kibnal_data.kib_connd_lock, flags);
1330
1331         list_add_tail (&peer->ibp_connd_list, &kibnal_data.kib_connd_peers);
1332         wake_up (&kibnal_data.kib_connd_waitq);
1333
1334         spin_unlock_irqrestore(&kibnal_data.kib_connd_lock, flags);
1335 }
1336
1337 void
1338 kibnal_launch_tx (kib_tx_t *tx, lnet_nid_t nid)
1339 {
1340         kib_peer_t      *peer;
1341         kib_conn_t      *conn;
1342         unsigned long    flags;
1343         rwlock_t        *g_lock = &kibnal_data.kib_global_lock;
1344         int              retry;
1345         int              rc;
1346
1347         /* If I get here, I've committed to send, so I complete the tx with
1348          * failure on any problems */
1349         
1350         LASSERT (tx->tx_conn == NULL);          /* only set when assigned a conn */
1351         LASSERT (tx->tx_nwrq > 0);              /* work items have been set up */
1352
1353         for (retry = 0; ; retry = 1) {
1354                 read_lock_irqsave(g_lock, flags);
1355         
1356                 peer = kibnal_find_peer_locked (nid);
1357                 if (peer != NULL) {
1358                         conn = kibnal_find_conn_locked (peer);
1359                         if (conn != NULL) {
1360                                 kibnal_conn_addref(conn); /* 1 ref for me... */
1361                                 read_unlock_irqrestore(g_lock, flags);
1362
1363                                 kibnal_queue_tx (tx, conn);
1364                                 kibnal_conn_decref(conn); /* ...to here */
1365                                 return;
1366                         }
1367                 }
1368                 
1369                 /* Making one or more connections; I'll need a write lock... */
1370                 read_unlock(g_lock);
1371                 write_lock(g_lock);
1372
1373                 peer = kibnal_find_peer_locked (nid);
1374                 if (peer != NULL)
1375                         break;
1376
1377                 write_unlock_irqrestore(g_lock, flags);
1378
1379                 if (retry) {
1380                         CERROR("Can't find peer %s\n", libcfs_nid2str(nid));
1381
1382                         tx->tx_status = -EHOSTUNREACH;
1383                         tx->tx_waiting = 0;
1384                         kibnal_tx_done (tx);
1385                         return;
1386                 }
1387
1388                 rc = kibnal_add_persistent_peer(nid, LNET_NIDADDR(nid));
1389                 if (rc != 0) {
1390                         CERROR("Can't add peer %s: %d\n",
1391                                libcfs_nid2str(nid), rc);
1392                         
1393                         tx->tx_status = -EHOSTUNREACH;
1394                         tx->tx_waiting = 0;
1395                         kibnal_tx_done (tx);
1396                         return;
1397                 }
1398         }
1399
1400         conn = kibnal_find_conn_locked (peer);
1401         if (conn != NULL) {
1402                 /* Connection exists; queue message on it */
1403                 kibnal_conn_addref(conn);       /* 1 ref for me... */
1404                 write_unlock_irqrestore(g_lock, flags);
1405                 
1406                 kibnal_queue_tx (tx, conn);
1407                 kibnal_conn_decref(conn);       /* ...until here */
1408                 return;
1409         }
1410
1411         if (peer->ibp_connecting == 0 &&
1412             peer->ibp_accepting == 0) {
1413                 if (!(peer->ibp_reconnect_interval == 0 || /* first attempt */
1414                       time_after_eq(jiffies, peer->ibp_reconnect_time))) {
1415                         write_unlock_irqrestore(g_lock, flags);
1416                         tx->tx_status = -EHOSTUNREACH;
1417                         tx->tx_waiting = 0;
1418                         kibnal_tx_done (tx);
1419                         return;
1420                 }
1421
1422                 peer->ibp_connecting = 1;
1423                 peer->ibp_arp_count = 1 + *kibnal_tunables.kib_arp_retries;
1424                 kibnal_schedule_peer_arp(peer);
1425         }
1426         
1427         /* A connection is being established; queue the message... */
1428         list_add_tail (&tx->tx_list, &peer->ibp_tx_queue);
1429
1430         write_unlock_irqrestore(g_lock, flags);
1431 }
1432
1433 int
1434 kibnal_send(lnet_ni_t *ni, void *private, lnet_msg_t *lntmsg)
1435 {
1436         lnet_hdr_t       *hdr = &lntmsg->msg_hdr; 
1437         int               type = lntmsg->msg_type; 
1438         lnet_process_id_t target = lntmsg->msg_target;
1439         int               target_is_router = lntmsg->msg_target_is_router;
1440         int               routing = lntmsg->msg_routing;
1441         unsigned int      payload_niov = lntmsg->msg_niov; 
1442         struct iovec     *payload_iov = lntmsg->msg_iov; 
1443         lnet_kiov_t      *payload_kiov = lntmsg->msg_kiov;
1444         unsigned int      payload_offset = lntmsg->msg_offset;
1445         unsigned int      payload_nob = lntmsg->msg_len;
1446         kib_msg_t        *ibmsg;
1447         kib_tx_t         *tx;
1448         int               nob;
1449         int               rc;
1450
1451         /* NB 'private' is different depending on what we're sending.... */
1452
1453         CDEBUG(D_NET, "sending %d bytes in %d frags to %s\n",
1454                payload_nob, payload_niov, libcfs_id2str(target));
1455
1456         LASSERT (payload_nob == 0 || payload_niov > 0);
1457         LASSERT (payload_niov <= LNET_MAX_IOV);
1458
1459         /* Thread context */
1460         LASSERT (!in_interrupt());
1461         /* payload is either all vaddrs or all pages */
1462         LASSERT (!(payload_kiov != NULL && payload_iov != NULL));
1463
1464         switch (type) {
1465         default:
1466                 LBUG();
1467                 return (-EIO);
1468                 
1469         case LNET_MSG_ACK:
1470                 LASSERT (payload_nob == 0);
1471                 break;
1472
1473         case LNET_MSG_GET:
1474                 if (routing || target_is_router)
1475                         break;                  /* send IMMEDIATE */
1476                 
1477                 /* is the REPLY message too small for RDMA? */
1478                 nob = offsetof(kib_msg_t, ibm_u.immediate.ibim_payload[lntmsg->msg_md->md_length]);
1479                 if (nob <= IBNAL_MSG_SIZE)
1480                         break;                  /* send IMMEDIATE */
1481
1482                 tx = kibnal_get_idle_tx();
1483                 if (tx == NULL) {
1484                         CERROR("Can allocate txd for GET to %s: \n",
1485                                libcfs_nid2str(target.nid));
1486                         return -ENOMEM;
1487                 }
1488                 
1489                 ibmsg = tx->tx_msg;
1490                 ibmsg->ibm_u.get.ibgm_hdr = *hdr;
1491                 ibmsg->ibm_u.get.ibgm_cookie = tx->tx_cookie;
1492
1493                 if ((lntmsg->msg_md->md_options & LNET_MD_KIOV) == 0)
1494                         rc = kibnal_setup_rd_iov(tx, &ibmsg->ibm_u.get.ibgm_rd,
1495                                                  vv_acc_r_mem_write,
1496                                                  lntmsg->msg_md->md_niov,
1497                                                  lntmsg->msg_md->md_iov.iov,
1498                                                  0, lntmsg->msg_md->md_length);
1499                 else
1500                         rc = kibnal_setup_rd_kiov(tx, &ibmsg->ibm_u.get.ibgm_rd,
1501                                                   vv_acc_r_mem_write,
1502                                                   lntmsg->msg_md->md_niov,
1503                                                   lntmsg->msg_md->md_iov.kiov,
1504                                                   0, lntmsg->msg_md->md_length);
1505                 if (rc != 0) {
1506                         CERROR("Can't setup GET sink for %s: %d\n",
1507                                libcfs_nid2str(target.nid), rc);
1508                         kibnal_tx_done(tx);
1509                         return -EIO;
1510                 }
1511
1512 #if IBNAL_USE_FMR
1513                 nob = sizeof(kib_get_msg_t);
1514 #else
1515                 {
1516                         int n = ibmsg->ibm_u.get.ibgm_rd.rd_nfrag;
1517                         
1518                         nob = offsetof(kib_get_msg_t, ibgm_rd.rd_frags[n]);
1519                 }
1520 #endif
1521                 kibnal_init_tx_msg(tx, IBNAL_MSG_GET_REQ, nob);
1522
1523                 tx->tx_lntmsg[1] = lnet_create_reply_msg(kibnal_data.kib_ni,
1524                                                          lntmsg);
1525                 if (tx->tx_lntmsg[1] == NULL) {
1526                         CERROR("Can't create reply for GET -> %s\n",
1527                                libcfs_nid2str(target.nid));
1528                         kibnal_tx_done(tx);
1529                         return -EIO;
1530                 }
1531
1532                 tx->tx_lntmsg[0] = lntmsg;      /* finalise lntmsg[0,1] on completion */
1533                 tx->tx_waiting = 1;             /* waiting for GET_DONE */
1534                 kibnal_launch_tx(tx, target.nid);
1535                 return 0;
1536
1537         case LNET_MSG_REPLY:
1538         case LNET_MSG_PUT:
1539                 /* Is the payload small enough not to need RDMA? */
1540                 nob = offsetof(kib_msg_t, ibm_u.immediate.ibim_payload[payload_nob]);
1541                 if (nob <= IBNAL_MSG_SIZE)
1542                         break;                  /* send IMMEDIATE */
1543
1544                 tx = kibnal_get_idle_tx();
1545                 if (tx == NULL) {
1546                         CERROR("Can't allocate %s txd for %s\n",
1547                                type == LNET_MSG_PUT ? "PUT" : "REPLY",
1548                                libcfs_nid2str(target.nid));
1549                         return -ENOMEM;
1550                 }
1551
1552                 if (payload_kiov == NULL)
1553                         rc = kibnal_setup_rd_iov(tx, tx->tx_rd, 0,
1554                                                  payload_niov, payload_iov,
1555                                                  payload_offset, payload_nob);
1556                 else
1557                         rc = kibnal_setup_rd_kiov(tx, tx->tx_rd, 0,
1558                                                   payload_niov, payload_kiov,
1559                                                   payload_offset, payload_nob);
1560                 if (rc != 0) {
1561                         CERROR("Can't setup PUT src for %s: %d\n",
1562                                libcfs_nid2str(target.nid), rc);
1563                         kibnal_tx_done(tx);
1564                         return -EIO;
1565                 }
1566
1567                 ibmsg = tx->tx_msg;
1568                 ibmsg->ibm_u.putreq.ibprm_hdr = *hdr;
1569                 ibmsg->ibm_u.putreq.ibprm_cookie = tx->tx_cookie;
1570                 kibnal_init_tx_msg(tx, IBNAL_MSG_PUT_REQ, sizeof(kib_putreq_msg_t));
1571
1572                 tx->tx_lntmsg[0] = lntmsg;      /* finalise lntmsg on completion */
1573                 tx->tx_waiting = 1;             /* waiting for PUT_{ACK,NAK} */
1574                 kibnal_launch_tx(tx, target.nid);
1575                 return 0;
1576         }
1577
1578         /* send IMMEDIATE */
1579
1580         LASSERT (offsetof(kib_msg_t, ibm_u.immediate.ibim_payload[payload_nob])
1581                  <= IBNAL_MSG_SIZE);
1582
1583         tx = kibnal_get_idle_tx();
1584         if (tx == NULL) {
1585                 CERROR ("Can't send %d to %s: tx descs exhausted\n",
1586                         type, libcfs_nid2str(target.nid));
1587                 return -ENOMEM;
1588         }
1589
1590         ibmsg = tx->tx_msg;
1591         ibmsg->ibm_u.immediate.ibim_hdr = *hdr;
1592
1593         if (payload_kiov != NULL)
1594                 lnet_copy_kiov2flat(IBNAL_MSG_SIZE, ibmsg,
1595                                     offsetof(kib_msg_t, ibm_u.immediate.ibim_payload),
1596                                     payload_niov, payload_kiov,
1597                                     payload_offset, payload_nob);
1598         else
1599                 lnet_copy_iov2flat(IBNAL_MSG_SIZE, ibmsg,
1600                                    offsetof(kib_msg_t, ibm_u.immediate.ibim_payload),
1601                                    payload_niov, payload_iov,
1602                                    payload_offset, payload_nob);
1603
1604         nob = offsetof(kib_immediate_msg_t, ibim_payload[payload_nob]);
1605         kibnal_init_tx_msg (tx, IBNAL_MSG_IMMEDIATE, nob);
1606
1607         tx->tx_lntmsg[0] = lntmsg;              /* finalise lntmsg on completion */
1608         kibnal_launch_tx(tx, target.nid);
1609         return 0;
1610 }
1611
1612 void
1613 kibnal_reply (lnet_ni_t *ni, kib_rx_t *rx, lnet_msg_t *lntmsg)
1614 {
1615         lnet_process_id_t target = lntmsg->msg_target;
1616         unsigned int      niov = lntmsg->msg_niov; 
1617         struct iovec     *iov = lntmsg->msg_iov; 
1618         lnet_kiov_t      *kiov = lntmsg->msg_kiov;
1619         unsigned int      offset = lntmsg->msg_offset;
1620         unsigned int      nob = lntmsg->msg_len;
1621         kib_tx_t         *tx;
1622         int               rc;
1623         
1624         tx = kibnal_get_idle_tx();
1625         if (tx == NULL) {
1626                 CERROR("Can't get tx for REPLY to %s\n",
1627                        libcfs_nid2str(target.nid));
1628                 goto failed_0;
1629         }
1630
1631         if (nob == 0)
1632                 rc = 0;
1633         else if (kiov == NULL)
1634                 rc = kibnal_setup_rd_iov(tx, tx->tx_rd, 0, 
1635                                          niov, iov, offset, nob);
1636         else
1637                 rc = kibnal_setup_rd_kiov(tx, tx->tx_rd, 0,
1638                                           niov, kiov, offset, nob);
1639
1640         if (rc != 0) {
1641                 CERROR("Can't setup GET src for %s: %d\n",
1642                        libcfs_nid2str(target.nid), rc);
1643                 goto failed_1;
1644         }
1645         
1646         rc = kibnal_init_rdma(tx, IBNAL_MSG_GET_DONE, nob,
1647                               &rx->rx_msg->ibm_u.get.ibgm_rd,
1648                               rx->rx_msg->ibm_u.get.ibgm_cookie);
1649         if (rc < 0) {
1650                 CERROR("Can't setup rdma for GET from %s: %d\n", 
1651                        libcfs_nid2str(target.nid), rc);
1652                 goto failed_1;
1653         }
1654         
1655         if (rc == 0) {
1656                 /* No RDMA: local completion may happen now! */
1657                 lnet_finalize(ni, lntmsg, 0);
1658         } else {
1659                 /* RDMA: lnet_finalize(lntmsg) when it
1660                  * completes */
1661                 tx->tx_lntmsg[0] = lntmsg;
1662         }
1663         
1664         kibnal_queue_tx(tx, rx->rx_conn);
1665         return;
1666         
1667  failed_1:
1668         kibnal_tx_done(tx);
1669  failed_0:
1670         lnet_finalize(ni, lntmsg, -EIO);
1671 }
1672
1673 int
1674 kibnal_eager_recv (lnet_ni_t *ni, void *private, lnet_msg_t *lntmsg,
1675                    void **new_private)
1676 {
1677         kib_rx_t    *rx = private;
1678         kib_conn_t  *conn = rx->rx_conn;
1679
1680         if (conn->ibc_version == IBNAL_MSG_VERSION_RDMAREPLYNOTRSRVD) {
1681                 /* Can't block if RDMA completions need normal credits */
1682                 LCONSOLE_ERROR("Dropping message from %s: no buffers free. "
1683                                "%s is running an old version of LNET that may "
1684                                "deadlock if messages wait for buffers)\n",
1685                                libcfs_nid2str(conn->ibc_peer->ibp_nid),
1686                                libcfs_nid2str(conn->ibc_peer->ibp_nid));
1687                 return -EDEADLK;
1688         }
1689         
1690         *new_private = private;
1691         return 0;
1692 }
1693
1694 int
1695 kibnal_recv (lnet_ni_t *ni, void *private, lnet_msg_t *lntmsg, int delayed,
1696              unsigned int niov, struct iovec *iov, lnet_kiov_t *kiov,
1697              unsigned int offset, unsigned int mlen, unsigned int rlen)
1698 {
1699         kib_rx_t    *rx = private;
1700         kib_msg_t   *rxmsg = rx->rx_msg;
1701         kib_conn_t  *conn = rx->rx_conn;
1702         kib_tx_t    *tx;
1703         kib_msg_t   *txmsg;
1704         int          nob;
1705         int          post_cred = 1;
1706         int          rc = 0;
1707         
1708         LASSERT (mlen <= rlen);
1709         LASSERT (!in_interrupt());
1710         /* Either all pages or all vaddrs */
1711         LASSERT (!(kiov != NULL && iov != NULL));
1712
1713         switch (rxmsg->ibm_type) {
1714         default:
1715                 LBUG();
1716                 
1717         case IBNAL_MSG_IMMEDIATE:
1718                 nob = offsetof(kib_msg_t, ibm_u.immediate.ibim_payload[rlen]);
1719                 if (nob > rx->rx_nob) {
1720                         CERROR ("Immediate message from %s too big: %d(%d)\n",
1721                                 libcfs_nid2str(rxmsg->ibm_u.immediate.ibim_hdr.src_nid),
1722                                 nob, rx->rx_nob);
1723                         rc = -EPROTO;
1724                         break;
1725                 }
1726
1727                 if (kiov != NULL)
1728                         lnet_copy_flat2kiov(niov, kiov, offset,
1729                                             IBNAL_MSG_SIZE, rxmsg,
1730                                             offsetof(kib_msg_t, ibm_u.immediate.ibim_payload),
1731                                             mlen);
1732                 else
1733                         lnet_copy_flat2iov(niov, iov, offset,
1734                                            IBNAL_MSG_SIZE, rxmsg,
1735                                            offsetof(kib_msg_t, ibm_u.immediate.ibim_payload),
1736                                            mlen);
1737                 lnet_finalize (ni, lntmsg, 0);
1738                 break;
1739
1740         case IBNAL_MSG_PUT_REQ:
1741                 if (mlen == 0) {
1742                         lnet_finalize(ni, lntmsg, 0);
1743                         kibnal_send_completion(rx->rx_conn, IBNAL_MSG_PUT_NAK, 0,
1744                                                rxmsg->ibm_u.putreq.ibprm_cookie);
1745                         break;
1746                 }
1747                 
1748                 tx = kibnal_get_idle_tx();
1749                 if (tx == NULL) {
1750                         CERROR("Can't allocate tx for %s\n",
1751                                libcfs_nid2str(conn->ibc_peer->ibp_nid));
1752                         /* Not replying will break the connection */
1753                         rc = -ENOMEM;
1754                         break;
1755                 }
1756
1757                 txmsg = tx->tx_msg;
1758                 if (kiov == NULL)
1759                         rc = kibnal_setup_rd_iov(tx, 
1760                                                  &txmsg->ibm_u.putack.ibpam_rd,
1761                                                  vv_acc_r_mem_write,
1762                                                  niov, iov, offset, mlen);
1763                 else
1764                         rc = kibnal_setup_rd_kiov(tx,
1765                                                   &txmsg->ibm_u.putack.ibpam_rd,
1766                                                   vv_acc_r_mem_write,
1767                                                   niov, kiov, offset, mlen);
1768                 if (rc != 0) {
1769                         CERROR("Can't setup PUT sink for %s: %d\n",
1770                                libcfs_nid2str(conn->ibc_peer->ibp_nid), rc);
1771                         kibnal_tx_done(tx);
1772                         /* tell peer it's over */
1773                         kibnal_send_completion(rx->rx_conn, IBNAL_MSG_PUT_NAK, rc,
1774                                                rxmsg->ibm_u.putreq.ibprm_cookie);
1775                         break;
1776                 }
1777
1778                 txmsg->ibm_u.putack.ibpam_src_cookie = rxmsg->ibm_u.putreq.ibprm_cookie;
1779                 txmsg->ibm_u.putack.ibpam_dst_cookie = tx->tx_cookie;
1780 #if IBNAL_USE_FMR
1781                 nob = sizeof(kib_putack_msg_t);
1782 #else
1783                 {
1784                         int n = tx->tx_msg->ibm_u.putack.ibpam_rd.rd_nfrag;
1785
1786                         nob = offsetof(kib_putack_msg_t, ibpam_rd.rd_frags[n]);
1787                 }
1788 #endif
1789                 kibnal_init_tx_msg(tx, IBNAL_MSG_PUT_ACK, nob);
1790
1791                 tx->tx_lntmsg[0] = lntmsg;      /* finalise lntmsg on completion */
1792                 tx->tx_waiting = 1;             /* waiting for PUT_DONE */
1793                 kibnal_queue_tx(tx, conn);
1794
1795                 if (conn->ibc_version != IBNAL_MSG_VERSION_RDMAREPLYNOTRSRVD)
1796                         post_cred = 0; /* peer still owns 'rx' for sending PUT_DONE */
1797                 break;
1798
1799         case IBNAL_MSG_GET_REQ:
1800                 if (lntmsg != NULL) {
1801                         /* Optimized GET; RDMA lntmsg's payload */
1802                         kibnal_reply(ni, rx, lntmsg);
1803                 } else {
1804                         /* GET didn't match anything */
1805                         kibnal_send_completion(rx->rx_conn, IBNAL_MSG_GET_DONE, 
1806                                                -ENODATA,
1807                                                rxmsg->ibm_u.get.ibgm_cookie);
1808                 }
1809                 break;
1810         }
1811
1812         kibnal_post_rx(rx, post_cred, 0);
1813         return rc;
1814 }
1815
1816 int
1817 kibnal_thread_start (int (*fn)(void *arg), void *arg)
1818 {
1819         long    pid = kernel_thread (fn, arg, 0);
1820
1821         if (pid < 0)
1822                 return ((int)pid);
1823
1824         atomic_inc (&kibnal_data.kib_nthreads);
1825         return (0);
1826 }
1827
1828 void
1829 kibnal_thread_fini (void)
1830 {
1831         atomic_dec (&kibnal_data.kib_nthreads);
1832 }
1833
1834 void
1835 kibnal_peer_alive (kib_peer_t *peer)
1836 {
1837         /* This is racy, but everyone's only writing cfs_time_current() */
1838         peer->ibp_last_alive = cfs_time_current();
1839         mb();
1840 }
1841
1842 void
1843 kibnal_peer_notify (kib_peer_t *peer)
1844 {
1845         time_t        last_alive = 0;
1846         int           error = 0;
1847         unsigned long flags;
1848         
1849         read_lock_irqsave(&kibnal_data.kib_global_lock, flags);
1850
1851         if (list_empty(&peer->ibp_conns) &&
1852             peer->ibp_accepting == 0 &&
1853             peer->ibp_connecting == 0 &&
1854             peer->ibp_error != 0) {
1855                 error = peer->ibp_error;
1856                 peer->ibp_error = 0;
1857                 
1858                 last_alive = cfs_time_current_sec() -
1859                              cfs_duration_sec(cfs_time_current() -
1860                                               peer->ibp_last_alive);
1861         }
1862         
1863         read_unlock_irqrestore(&kibnal_data.kib_global_lock, flags);
1864         
1865         if (error != 0)
1866                 lnet_notify(kibnal_data.kib_ni, peer->ibp_nid, 0, last_alive);
1867 }
1868
1869 void
1870 kibnal_schedule_conn (kib_conn_t *conn)
1871 {
1872         unsigned long flags;
1873
1874         kibnal_conn_addref(conn);               /* ++ref for connd */
1875         
1876         spin_lock_irqsave(&kibnal_data.kib_connd_lock, flags);
1877
1878         list_add_tail (&conn->ibc_list, &kibnal_data.kib_connd_conns);
1879         wake_up (&kibnal_data.kib_connd_waitq);
1880                 
1881         spin_unlock_irqrestore(&kibnal_data.kib_connd_lock, flags);
1882 }
1883
1884 void
1885 kibnal_close_conn_locked (kib_conn_t *conn, int error)
1886 {
1887         /* This just does the immediate housekeeping.  'error' is zero for a
1888          * normal shutdown which can happen only after the connection has been
1889          * established.  If the connection is established, schedule the
1890          * connection to be finished off by the connd.  Otherwise the connd is
1891          * already dealing with it (either to set it up or tear it down).
1892          * Caller holds kib_global_lock exclusively in irq context */
1893         kib_peer_t       *peer = conn->ibc_peer;
1894         
1895         LASSERT (error != 0 || conn->ibc_state >= IBNAL_CONN_ESTABLISHED);
1896
1897         if (error != 0 && conn->ibc_comms_error == 0)
1898                 conn->ibc_comms_error = error;
1899
1900         if (conn->ibc_state != IBNAL_CONN_ESTABLISHED)
1901                 return; /* already being handled  */
1902         
1903         /* NB Can't take ibc_lock here (could be in IRQ context), without
1904          * risking deadlock, so access to ibc_{tx_queue,active_txs} is racey */
1905
1906         if (error == 0 &&
1907             list_empty(&conn->ibc_tx_queue) &&
1908             list_empty(&conn->ibc_tx_queue_rsrvd) &&
1909             list_empty(&conn->ibc_tx_queue_nocred) &&
1910             list_empty(&conn->ibc_active_txs)) {
1911                 CDEBUG(D_NET, "closing conn to %s"
1912                        " rx# "LPD64" tx# "LPD64"\n", 
1913                        libcfs_nid2str(peer->ibp_nid),
1914                        conn->ibc_txseq, conn->ibc_rxseq);
1915         } else {
1916                 CDEBUG(D_NETERROR, "Closing conn to %s: error %d%s%s%s%s"
1917                        " rx# "LPD64" tx# "LPD64"\n",
1918                        libcfs_nid2str(peer->ibp_nid), error,
1919                        list_empty(&conn->ibc_tx_queue) ? "" : "(sending)",
1920                        list_empty(&conn->ibc_tx_queue_rsrvd) ? "" : "(sending_rsrvd)",
1921                        list_empty(&conn->ibc_tx_queue_nocred) ? "" : "(sending_nocred)",
1922                        list_empty(&conn->ibc_active_txs) ? "" : "(waiting)",
1923                        conn->ibc_txseq, conn->ibc_rxseq);
1924         }
1925
1926         list_del (&conn->ibc_list);
1927
1928         if (list_empty (&peer->ibp_conns)) {   /* no more conns */
1929                 if (peer->ibp_persistence == 0 && /* non-persistent peer */
1930                     kibnal_peer_active(peer))     /* still in peer table */
1931                         kibnal_unlink_peer_locked (peer);
1932
1933                 /* set/clear error on last conn */
1934                 peer->ibp_error = conn->ibc_comms_error;
1935         }
1936
1937         kibnal_set_conn_state(conn, IBNAL_CONN_DISCONNECT1);
1938
1939         kibnal_schedule_conn(conn);
1940         kibnal_conn_decref(conn);               /* lose ibc_list's ref */
1941 }
1942
1943 void
1944 kibnal_close_conn (kib_conn_t *conn, int error)
1945 {
1946         unsigned long flags;
1947         
1948         write_lock_irqsave(&kibnal_data.kib_global_lock, flags);
1949
1950         kibnal_close_conn_locked (conn, error);
1951         
1952         write_unlock_irqrestore(&kibnal_data.kib_global_lock, flags);
1953 }
1954
1955 void
1956 kibnal_handle_early_rxs(kib_conn_t *conn)
1957 {
1958         unsigned long    flags;
1959         kib_rx_t        *rx;
1960
1961         LASSERT (!in_interrupt());
1962         LASSERT (conn->ibc_state >= IBNAL_CONN_ESTABLISHED);
1963         
1964         write_lock_irqsave(&kibnal_data.kib_global_lock, flags);
1965         while (!list_empty(&conn->ibc_early_rxs)) {
1966                 rx = list_entry(conn->ibc_early_rxs.next,
1967                                 kib_rx_t, rx_list);
1968                 list_del(&rx->rx_list);
1969                 write_unlock_irqrestore(&kibnal_data.kib_global_lock, flags);
1970                 
1971                 kibnal_handle_rx(rx);
1972                 
1973                 write_lock_irqsave(&kibnal_data.kib_global_lock, flags);
1974         }
1975         write_unlock_irqrestore(&kibnal_data.kib_global_lock, flags);
1976 }
1977
1978 void
1979 kibnal_abort_txs(kib_conn_t *conn, struct list_head *txs)
1980 {
1981         LIST_HEAD           (zombies); 
1982         struct list_head    *tmp;
1983         struct list_head    *nxt;
1984         kib_tx_t            *tx;
1985
1986         spin_lock(&conn->ibc_lock);
1987
1988         list_for_each_safe (tmp, nxt, txs) {
1989                 tx = list_entry (tmp, kib_tx_t, tx_list);
1990
1991                 if (txs == &conn->ibc_active_txs) {
1992                         LASSERT (!tx->tx_queued);
1993                         LASSERT (tx->tx_waiting || tx->tx_sending != 0);
1994                 } else {
1995                         LASSERT (tx->tx_queued);
1996                 }
1997                 
1998                 tx->tx_status = -ECONNABORTED;
1999                 tx->tx_queued = 0;
2000                 tx->tx_waiting = 0;
2001                 
2002                 if (tx->tx_sending == 0) {
2003                         list_del (&tx->tx_list);
2004                         list_add (&tx->tx_list, &zombies);
2005                 }
2006         }
2007
2008         spin_unlock(&conn->ibc_lock);
2009
2010         kibnal_txlist_done(&zombies, -ECONNABORTED);
2011 }
2012
2013 void
2014 kibnal_conn_disconnected(kib_conn_t *conn)
2015 {
2016         /* I'm the connd */
2017         LASSERT (!in_interrupt());
2018         LASSERT (current == kibnal_data.kib_connd);
2019         LASSERT (conn->ibc_state >= IBNAL_CONN_INIT);
2020         
2021         kibnal_set_conn_state(conn, IBNAL_CONN_DISCONNECTED);
2022
2023         /* move QP to error state to make posted work items complete */
2024         kibnal_set_qp_state(conn, vv_qp_state_error);
2025
2026         /* Complete all tx descs not waiting for sends to complete.
2027          * NB we should be safe from RDMA now that the QP has changed state */
2028
2029         kibnal_abort_txs(conn, &conn->ibc_tx_queue);
2030         kibnal_abort_txs(conn, &conn->ibc_tx_queue_rsrvd);
2031         kibnal_abort_txs(conn, &conn->ibc_tx_queue_nocred);
2032         kibnal_abort_txs(conn, &conn->ibc_active_txs);
2033
2034         kibnal_handle_early_rxs(conn);
2035
2036         kibnal_peer_notify(conn->ibc_peer);
2037 }
2038
2039 void
2040 kibnal_peer_connect_failed (kib_peer_t *peer, int active, int error)
2041 {
2042         LIST_HEAD        (zombies);
2043         unsigned long     flags;
2044
2045         /* Only the connd creates conns => single threaded */
2046         LASSERT (error != 0);
2047         LASSERT (!in_interrupt());
2048         LASSERT (current == kibnal_data.kib_connd);
2049
2050         write_lock_irqsave(&kibnal_data.kib_global_lock, flags);
2051
2052         if (active) {
2053                 LASSERT (peer->ibp_connecting != 0);
2054                 peer->ibp_connecting--;
2055         } else {
2056                 LASSERT (peer->ibp_accepting != 0);
2057                 peer->ibp_accepting--;
2058         }
2059         
2060         if (peer->ibp_connecting != 0 ||
2061             peer->ibp_accepting != 0) {
2062                 /* another connection attempt under way (loopback?)... */
2063                 write_unlock_irqrestore(&kibnal_data.kib_global_lock, flags);
2064                 return;
2065         }
2066
2067         if (list_empty(&peer->ibp_conns)) {
2068                 /* Say when active connection can be re-attempted */
2069                 peer->ibp_reconnect_interval *= 2;
2070                 peer->ibp_reconnect_interval =
2071                         MAX(peer->ibp_reconnect_interval,
2072                             *kibnal_tunables.kib_min_reconnect_interval);
2073                 peer->ibp_reconnect_interval =
2074                         MIN(peer->ibp_reconnect_interval,
2075                             *kibnal_tunables.kib_max_reconnect_interval);
2076                 
2077                 peer->ibp_reconnect_time = jiffies + 
2078                                            peer->ibp_reconnect_interval * HZ;
2079
2080                 /* Take peer's blocked transmits to complete with error */
2081                 list_add(&zombies, &peer->ibp_tx_queue);
2082                 list_del_init(&peer->ibp_tx_queue);
2083                 
2084                 if (kibnal_peer_active(peer) &&
2085                     (peer->ibp_persistence == 0)) {
2086                         /* failed connection attempt on non-persistent peer */
2087                         kibnal_unlink_peer_locked (peer);
2088                 }
2089
2090                 peer->ibp_error = error;
2091         } else {
2092                 /* Can't have blocked transmits if there are connections */
2093                 LASSERT (list_empty(&peer->ibp_tx_queue));
2094         }
2095         
2096         write_unlock_irqrestore(&kibnal_data.kib_global_lock, flags);
2097
2098         kibnal_peer_notify(peer);
2099
2100         if (list_empty (&zombies)) 
2101                 return;
2102         
2103         CDEBUG (D_NETERROR, "Deleting messages for %s: connection failed\n",
2104                 libcfs_nid2str(peer->ibp_nid));
2105
2106         kibnal_txlist_done(&zombies, -EHOSTUNREACH);
2107 }
2108
2109 void
2110 kibnal_reject(cm_cep_handle_t cep, int why)
2111 {
2112         static cm_reject_data_t   rejs[3];
2113         cm_reject_data_t         *rej = &rejs[why];
2114
2115         LASSERT (why >= 0 && why < sizeof(rejs)/sizeof(rejs[0]));
2116
2117         /* If I wasn't so lazy, I'd initialise this only once; it's effective
2118          * read-only */
2119         rej->reason = cm_rej_code_usr_rej;
2120         rej->priv_data[0] = (IBNAL_MSG_MAGIC) & 0xff;
2121         rej->priv_data[1] = (IBNAL_MSG_MAGIC >> 8) & 0xff;
2122         rej->priv_data[2] = (IBNAL_MSG_MAGIC >> 16) & 0xff;
2123         rej->priv_data[3] = (IBNAL_MSG_MAGIC >> 24) & 0xff;
2124         rej->priv_data[4] = (IBNAL_MSG_VERSION) & 0xff;
2125         rej->priv_data[5] = (IBNAL_MSG_VERSION >> 8) & 0xff;
2126         rej->priv_data[6] = why;
2127
2128         cm_reject(cep, rej);
2129 }
2130
2131 void
2132 kibnal_connreq_done(kib_conn_t *conn, int active, int status)
2133 {
2134         struct list_head   txs;
2135         kib_peer_t        *peer = conn->ibc_peer;
2136         unsigned long      flags;
2137         kib_tx_t          *tx;
2138
2139         CDEBUG(D_NET,"%d\n", status);
2140
2141         /* Only the connd creates conns => single threaded */
2142         LASSERT (!in_interrupt());
2143         LASSERT (current == kibnal_data.kib_connd);
2144         LASSERT (conn->ibc_state < IBNAL_CONN_ESTABLISHED);
2145
2146         if (active) {
2147                 LASSERT (peer->ibp_connecting > 0);
2148         } else {
2149                 LASSERT (peer->ibp_accepting > 0);
2150         }
2151         
2152         LIBCFS_FREE(conn->ibc_connvars, sizeof(*conn->ibc_connvars));
2153         conn->ibc_connvars = NULL;
2154
2155         if (status != 0) {
2156                 /* failed to establish connection */
2157                 switch (conn->ibc_state) {
2158                 default:
2159                         LBUG();
2160
2161                 case IBNAL_CONN_ACTIVE_CHECK_REPLY:
2162                         /* got a connection reply but failed checks */
2163                         LASSERT (active);
2164                         kibnal_reject(conn->ibc_cep, IBNAL_REJECT_FATAL);
2165                         break;
2166
2167                 case IBNAL_CONN_ACTIVE_CONNECT:
2168                         LASSERT (active);
2169                         cm_cancel(conn->ibc_cep);
2170                         cfs_pause(cfs_time_seconds(1)/10);
2171                         /* cm_connect() failed immediately or
2172                          * callback returned failure */
2173                         break;
2174
2175                 case IBNAL_CONN_ACTIVE_ARP:
2176                         LASSERT (active);
2177                         /* ibat_get_ib_data() failed immediately 
2178                          * or callback returned failure */
2179                         break;
2180
2181                 case IBNAL_CONN_INIT:
2182                         break;
2183
2184                 case IBNAL_CONN_PASSIVE_WAIT:
2185                         LASSERT (!active);
2186                         /* cm_accept callback returned failure */
2187                         break;
2188                 }
2189
2190                 kibnal_peer_connect_failed(conn->ibc_peer, active, status);
2191                 kibnal_conn_disconnected(conn);
2192                 return;
2193         }
2194
2195         /* connection established */
2196         write_lock_irqsave(&kibnal_data.kib_global_lock, flags);
2197
2198         if (active) {
2199                 LASSERT(conn->ibc_state == IBNAL_CONN_ACTIVE_RTU);
2200         } else {
2201                 LASSERT(conn->ibc_state == IBNAL_CONN_PASSIVE_WAIT);
2202         }
2203         
2204         conn->ibc_last_send = jiffies;
2205         kibnal_set_conn_state(conn, IBNAL_CONN_ESTABLISHED);
2206         kibnal_peer_alive(peer);
2207
2208         /* Add conn to peer's list and nuke any dangling conns from a different
2209          * peer instance... */
2210         kibnal_conn_addref(conn);               /* +1 ref for ibc_list */
2211         list_add(&conn->ibc_list, &peer->ibp_conns);
2212         kibnal_close_stale_conns_locked (conn->ibc_peer,
2213                                          conn->ibc_incarnation);
2214
2215         if (!kibnal_peer_active(peer) ||        /* peer has been deleted */
2216             conn->ibc_comms_error != 0 ||       /* comms error */
2217             conn->ibc_disconnect) {             /* need to disconnect */
2218                 
2219                 /* start to shut down connection */
2220                 kibnal_close_conn_locked(conn, -ECONNABORTED);
2221
2222                 write_unlock_irqrestore(&kibnal_data.kib_global_lock, flags);
2223                 kibnal_peer_connect_failed(peer, active, -ECONNABORTED);
2224                 return;
2225         }
2226
2227         if (active)
2228                 peer->ibp_connecting--;
2229         else
2230                 peer->ibp_accepting--;
2231
2232         /* grab pending txs while I have the lock */
2233         list_add(&txs, &peer->ibp_tx_queue);
2234         list_del_init(&peer->ibp_tx_queue);
2235         
2236         peer->ibp_reconnect_interval = 0;       /* OK to reconnect at any time */
2237
2238         write_unlock_irqrestore(&kibnal_data.kib_global_lock, flags);
2239
2240         /* Schedule blocked txs */
2241         spin_lock (&conn->ibc_lock);
2242         while (!list_empty (&txs)) {
2243                 tx = list_entry (txs.next, kib_tx_t, tx_list);
2244                 list_del (&tx->tx_list);
2245
2246                 kibnal_queue_tx_locked (tx, conn);
2247         }
2248         spin_unlock (&conn->ibc_lock);
2249         kibnal_check_sends (conn);
2250
2251         /* schedule blocked rxs */
2252         kibnal_handle_early_rxs(conn);
2253 }
2254
2255 void
2256 kibnal_cm_callback(cm_cep_handle_t cep, cm_conn_data_t *cmdata, void *arg)
2257 {
2258         static cm_dreply_data_t drep;           /* just zeroed space */
2259         
2260         kib_conn_t             *conn = (kib_conn_t *)arg;
2261         unsigned long           flags;
2262         
2263         /* CAVEAT EMPTOR: tasklet context */
2264
2265         switch (cmdata->status) {
2266         default:
2267                 LBUG();
2268                 
2269         case cm_event_disconn_request:
2270                 /* IBNAL_CONN_ACTIVE_RTU:  gets closed in kibnal_connreq_done
2271                  * IBNAL_CONN_ESTABLISHED: I start it closing
2272                  * otherwise:              it's closing anyway */
2273                 cm_disconnect(conn->ibc_cep, NULL, &drep);
2274                 cm_cancel(conn->ibc_cep);
2275
2276                 write_lock_irqsave(&kibnal_data.kib_global_lock, flags);
2277                 LASSERT (!conn->ibc_disconnect);
2278                 conn->ibc_disconnect = 1;
2279
2280                 switch (conn->ibc_state) {
2281                 default:
2282                         LBUG();
2283
2284                 case IBNAL_CONN_ACTIVE_RTU:
2285                         /* kibnal_connreq_done is getting there; It'll see
2286                          * ibc_disconnect set... */
2287                         break;
2288
2289                 case IBNAL_CONN_ESTABLISHED:
2290                         /* kibnal_connreq_done got there already; get
2291                          * disconnect going... */
2292                         kibnal_close_conn_locked(conn, 0);
2293                         break;
2294
2295                 case IBNAL_CONN_DISCONNECT1:
2296                         /* kibnal_disconnect_conn is getting there; It'll see
2297                          * ibc_disconnect set... */
2298                         break;
2299
2300                 case IBNAL_CONN_DISCONNECT2:
2301                         /* kibnal_disconnect_conn got there already; complete
2302                          * the disconnect. */
2303                         kibnal_schedule_conn(conn);
2304                         break;
2305                 }
2306                 write_unlock_irqrestore(&kibnal_data.kib_global_lock, flags);
2307                 break;
2308                 
2309         case cm_event_disconn_timeout:
2310         case cm_event_disconn_reply:
2311                 write_lock_irqsave(&kibnal_data.kib_global_lock, flags);
2312                 LASSERT (conn->ibc_state == IBNAL_CONN_DISCONNECT2);
2313                 LASSERT (!conn->ibc_disconnect);
2314                 conn->ibc_disconnect = 1;
2315
2316                 /* kibnal_disconnect_conn sent the disconnect request. */
2317                 kibnal_schedule_conn(conn);
2318
2319                 write_unlock_irqrestore(&kibnal_data.kib_global_lock, flags);
2320                 break;
2321                 
2322         case cm_event_connected:
2323         case cm_event_conn_timeout:
2324         case cm_event_conn_reject:
2325                 LASSERT (conn->ibc_state == IBNAL_CONN_PASSIVE_WAIT);
2326                 conn->ibc_connvars->cv_conndata = *cmdata;
2327
2328                 kibnal_schedule_conn(conn);
2329                 break;
2330         }
2331
2332         kibnal_conn_decref(conn); /* lose my ref */
2333 }
2334
2335 void
2336 kibnal_check_passive_wait(kib_conn_t *conn)
2337 {
2338         int     rc;
2339
2340         switch (conn->ibc_connvars->cv_conndata.status) {
2341         default:
2342                 LBUG();
2343                 
2344         case cm_event_connected:
2345                 kibnal_conn_addref(conn); /* ++ ref for CM callback */
2346                 rc = kibnal_set_qp_state(conn, vv_qp_state_rts);
2347                 if (rc != 0)
2348                         conn->ibc_comms_error = rc;
2349                 /* connection _has_ been established; it's just that we've had
2350                  * an error immediately... */
2351                 kibnal_connreq_done(conn, 0, 0);
2352                 break;
2353                 
2354         case cm_event_conn_timeout:
2355                 kibnal_connreq_done(conn, 0, -ETIMEDOUT);
2356                 break;
2357                 
2358         case cm_event_conn_reject:
2359                 kibnal_connreq_done(conn, 0, -ECONNRESET);
2360                 break;
2361         }
2362 }
2363
2364 void
2365 kibnal_recv_connreq(cm_cep_handle_t *cep, cm_request_data_t *cmreq)
2366 {
2367         static kib_msg_t        txmsg;
2368         static kib_msg_t        rxmsg;
2369         static cm_reply_data_t  reply;
2370
2371         kib_conn_t         *conn = NULL;
2372         int                 rc = 0;
2373         int                 reason;
2374         int                 rxmsgnob;
2375         rwlock_t           *g_lock = &kibnal_data.kib_global_lock;
2376         kib_peer_t         *peer;
2377         kib_peer_t         *peer2;
2378         unsigned long       flags;
2379         kib_connvars_t     *cv;
2380         cm_return_t         cmrc;
2381         vv_return_t         vvrc;
2382         
2383         /* I'm the connd executing in thread context
2384          * No concurrency problems with static data! */
2385         LASSERT (!in_interrupt());
2386         LASSERT (current == kibnal_data.kib_connd);
2387
2388         if (cmreq->sid != (__u64)(*kibnal_tunables.kib_service_number)) {
2389                 CERROR(LPX64" != IBNAL_SERVICE_NUMBER("LPX64")\n",
2390                        cmreq->sid, (__u64)(*kibnal_tunables.kib_service_number));
2391                 reason = IBNAL_REJECT_FATAL;
2392                 goto reject;
2393         }
2394
2395         /* copy into rxmsg to avoid alignment issues */
2396         rxmsgnob = MIN(cm_REQ_priv_data_len, sizeof(rxmsg));
2397         memcpy(&rxmsg, cmreq->priv_data, rxmsgnob);
2398
2399         rc = kibnal_unpack_msg(&rxmsg, 0, rxmsgnob);
2400         if (rc != 0) {
2401                 /* SILENT! kibnal_unpack_msg() complains if required */
2402                 reason = IBNAL_REJECT_FATAL;
2403                 goto reject;
2404         }
2405
2406         if (rxmsg.ibm_version != IBNAL_MSG_VERSION)
2407                 CWARN("Connection from %s: old protocol version 0x%x\n",
2408                       libcfs_nid2str(rxmsg.ibm_srcnid), rxmsg.ibm_version);
2409
2410         if (rxmsg.ibm_type != IBNAL_MSG_CONNREQ) {
2411                 CERROR("Unexpected connreq msg type: %x from %s\n",
2412                        rxmsg.ibm_type, libcfs_nid2str(rxmsg.ibm_srcnid));
2413                 reason = IBNAL_REJECT_FATAL;
2414                 goto reject;
2415         }
2416
2417         if (!lnet_ptlcompat_matchnid(kibnal_data.kib_ni->ni_nid,
2418                                      rxmsg.ibm_dstnid)) {
2419                 CERROR("Can't accept %s: bad dst nid %s\n",
2420                        libcfs_nid2str(rxmsg.ibm_srcnid), 
2421                        libcfs_nid2str(rxmsg.ibm_dstnid));
2422                 reason = IBNAL_REJECT_FATAL;
2423                 goto reject;
2424         }
2425
2426         if (rxmsg.ibm_u.connparams.ibcp_queue_depth != IBNAL_MSG_QUEUE_SIZE) {
2427                 CERROR("Can't accept %s: incompatible queue depth %d (%d wanted)\n",
2428                        libcfs_nid2str(rxmsg.ibm_srcnid), 
2429                        rxmsg.ibm_u.connparams.ibcp_queue_depth, 
2430                        IBNAL_MSG_QUEUE_SIZE);
2431                 reason = IBNAL_REJECT_FATAL;
2432                 goto reject;
2433         }
2434
2435         if (rxmsg.ibm_u.connparams.ibcp_max_msg_size > IBNAL_MSG_SIZE) {
2436                 CERROR("Can't accept %s: message size %d too big (%d max)\n",
2437                        libcfs_nid2str(rxmsg.ibm_srcnid), 
2438                        rxmsg.ibm_u.connparams.ibcp_max_msg_size, 
2439                        IBNAL_MSG_SIZE);
2440                 reason = IBNAL_REJECT_FATAL;
2441                 goto reject;
2442         }
2443                 
2444         if (rxmsg.ibm_u.connparams.ibcp_max_frags > IBNAL_MAX_RDMA_FRAGS) {
2445                 CERROR("Can't accept %s: max frags %d too big (%d max)\n",
2446                        libcfs_nid2str(rxmsg.ibm_srcnid), 
2447                        rxmsg.ibm_u.connparams.ibcp_max_frags, 
2448                        IBNAL_MAX_RDMA_FRAGS);
2449                 reason = IBNAL_REJECT_FATAL;
2450                 goto reject;
2451         }
2452         
2453         /* assume 'rxmsg.ibm_srcnid' is a new peer; create */
2454         rc = kibnal_create_peer (&peer, rxmsg.ibm_srcnid);
2455         if (rc != 0) {
2456                 CERROR("Can't create peer for %s\n",
2457                        libcfs_nid2str(rxmsg.ibm_srcnid));
2458                 reason = IBNAL_REJECT_NO_RESOURCES;
2459                 goto reject;
2460         }
2461
2462         write_lock_irqsave(g_lock, flags);
2463
2464         peer2 = kibnal_find_peer_locked(rxmsg.ibm_srcnid);
2465         if (peer2 != NULL) {
2466                 /* tie-break connection race in favour of the higher NID */                
2467                 if (peer2->ibp_connecting != 0 &&
2468                     rxmsg.ibm_srcnid < kibnal_data.kib_ni->ni_nid) {
2469                         write_unlock_irqrestore(g_lock, flags);
2470
2471                         CWARN("Conn race %s\n",
2472                               libcfs_nid2str(peer2->ibp_nid));
2473
2474                         kibnal_peer_decref(peer);
2475                         reason = IBNAL_REJECT_CONN_RACE;
2476                         goto reject;
2477                 }
2478
2479                 peer2->ibp_accepting++;
2480                 kibnal_peer_addref(peer2);
2481
2482                 write_unlock_irqrestore(g_lock, flags);
2483                 kibnal_peer_decref(peer);
2484                 peer = peer2;
2485         } else {
2486                 /* Brand new peer */
2487                 LASSERT (peer->ibp_accepting == 0);
2488                 peer->ibp_accepting = 1;
2489
2490                 kibnal_peer_addref(peer);
2491                 list_add_tail(&peer->ibp_list, kibnal_nid2peerlist(rxmsg.ibm_srcnid));
2492
2493                 write_unlock_irqrestore(g_lock, flags);
2494         }
2495                 
2496         conn = kibnal_create_conn(cep);
2497         if (conn == NULL) {
2498                 CERROR("Can't create conn for %s\n",
2499                        libcfs_nid2str(rxmsg.ibm_srcnid));
2500                 kibnal_peer_connect_failed(peer, 0, -ENOMEM);
2501                 kibnal_peer_decref(peer);
2502                 reason = IBNAL_REJECT_NO_RESOURCES;
2503                 goto reject;
2504         }
2505
2506         conn->ibc_version = rxmsg.ibm_version;
2507
2508         conn->ibc_peer = peer;              /* conn takes over my ref */
2509         conn->ibc_incarnation = rxmsg.ibm_srcstamp;
2510         conn->ibc_credits = IBNAL_MSG_QUEUE_SIZE;
2511         conn->ibc_reserved_credits = IBNAL_MSG_QUEUE_SIZE;
2512         LASSERT (conn->ibc_credits + conn->ibc_reserved_credits
2513                  <= IBNAL_RX_MSGS);
2514
2515         cv = conn->ibc_connvars;
2516
2517         cv->cv_txpsn          = cmreq->cep_data.start_psn;
2518         cv->cv_remote_qpn     = cmreq->cep_data.qpn;
2519         cv->cv_path           = cmreq->path_data.path;
2520         cv->cv_rnr_count      = cmreq->cep_data.rtr_retry_cnt;
2521         // XXX                  cmreq->cep_data.retry_cnt;
2522         cv->cv_port           = cmreq->cep_data.local_port_num;
2523
2524         vvrc = gid2gid_index(kibnal_data.kib_hca, cv->cv_port,
2525                              &cv->cv_path.sgid, &cv->cv_sgid_index);
2526         if (vvrc != vv_return_ok) {
2527                 CERROR("gid2gid_index failed for %s: %d\n",
2528                        libcfs_nid2str(rxmsg.ibm_srcnid), vvrc);
2529                 rc = -EIO;
2530                 reason = IBNAL_REJECT_FATAL;
2531                 goto reject;
2532         }
2533         
2534         vvrc = pkey2pkey_index(kibnal_data.kib_hca, cv->cv_port,
2535                                cv->cv_path.pkey, &cv->cv_pkey_index);
2536         if (vvrc != vv_return_ok) {
2537                 CERROR("pkey2pkey_index failed for %s: %d\n",
2538                        libcfs_nid2str(rxmsg.ibm_srcnid), vvrc);
2539                 rc = -EIO;
2540                 reason = IBNAL_REJECT_FATAL;
2541                 goto reject;
2542         }
2543
2544         rc = kibnal_set_qp_state(conn, vv_qp_state_init);
2545         if (rc != 0) {
2546                 reason = IBNAL_REJECT_FATAL;
2547                 goto reject;
2548         }
2549
2550         rc = kibnal_post_receives(conn);
2551         if (rc != 0) {
2552                 CERROR("Can't post receives for %s\n", 
2553                        libcfs_nid2str(rxmsg.ibm_srcnid));
2554                 reason = IBNAL_REJECT_FATAL;
2555                 goto reject;
2556         }
2557
2558         rc = kibnal_set_qp_state(conn, vv_qp_state_rtr);
2559         if (rc != 0) {
2560                 reason = IBNAL_REJECT_FATAL;
2561                 goto reject;
2562         }
2563         
2564         memset(&reply, 0, sizeof(reply));
2565         reply.qpn                 = cv->cv_local_qpn;
2566         reply.qkey                = IBNAL_QKEY;
2567         reply.start_psn           = cv->cv_rxpsn;
2568         reply.arb_initiator_depth = IBNAL_ARB_INITIATOR_DEPTH;
2569         reply.arb_resp_res        = IBNAL_ARB_RESP_RES;
2570         reply.failover_accepted   = IBNAL_FAILOVER_ACCEPTED;
2571         reply.rnr_retry_count     = cv->cv_rnr_count;
2572         reply.targ_ack_delay      = kibnal_data.kib_hca_attrs.ack_delay;
2573         
2574         /* setup txmsg... */
2575         memset(&txmsg, 0, sizeof(txmsg));
2576         kibnal_init_msg(&txmsg, IBNAL_MSG_CONNACK, 
2577                         sizeof(txmsg.ibm_u.connparams));
2578         LASSERT (txmsg.ibm_nob <= cm_REP_priv_data_len);
2579         txmsg.ibm_u.connparams.ibcp_queue_depth = IBNAL_MSG_QUEUE_SIZE;
2580         txmsg.ibm_u.connparams.ibcp_max_msg_size = IBNAL_MSG_SIZE;
2581         txmsg.ibm_u.connparams.ibcp_max_frags = IBNAL_MAX_RDMA_FRAGS;
2582         kibnal_pack_msg(&txmsg, conn->ibc_version,
2583                         0, rxmsg.ibm_srcnid, rxmsg.ibm_srcstamp, 0);
2584
2585         /* ...and copy into reply to avoid alignment issues */
2586         memcpy(&reply.priv_data, &txmsg, txmsg.ibm_nob);
2587
2588         kibnal_set_conn_state(conn, IBNAL_CONN_PASSIVE_WAIT);
2589         
2590         cmrc = cm_accept(conn->ibc_cep, &reply, NULL,
2591                          kibnal_cm_callback, conn);
2592
2593         if (cmrc == cm_stat_success)
2594                 return;                         /* callback has got my ref on conn */
2595
2596         /* back out state change (no callback happening) */
2597         kibnal_set_conn_state(conn, IBNAL_CONN_INIT);
2598         rc = -EIO;
2599         reason = IBNAL_REJECT_FATAL;
2600                 
2601  reject:
2602         CDEBUG(D_NET, "Rejecting connreq from %s\n",
2603                libcfs_nid2str(rxmsg.ibm_srcnid));
2604
2605         kibnal_reject(cep, reason);
2606
2607         if (conn != NULL) {
2608                 LASSERT (rc != 0);
2609                 kibnal_connreq_done(conn, 0, rc);
2610         } else {
2611                 cm_destroy_cep(cep);
2612         }
2613 }
2614
2615 void
2616 kibnal_listen_callback(cm_cep_handle_t cep, cm_conn_data_t *data, void *arg)
2617 {
2618         cm_request_data_t  *cmreq = &data->data.request;
2619         kib_pcreq_t        *pcr;
2620         unsigned long       flags;
2621         
2622         LASSERT (arg == NULL);
2623
2624         if (data->status != cm_event_conn_request) {
2625                 CERROR("status %d is not cm_event_conn_request\n",
2626                        data->status);
2627                 return;
2628         }
2629
2630         LIBCFS_ALLOC_ATOMIC(pcr, sizeof(*pcr));
2631         if (pcr == NULL) {
2632                 CERROR("Can't allocate passive connreq\n");
2633
2634                 kibnal_reject(cep, IBNAL_REJECT_NO_RESOURCES);
2635                 cm_destroy_cep(cep);
2636                 return;
2637         }
2638
2639         pcr->pcr_cep = cep;
2640         pcr->pcr_cmreq = *cmreq;
2641         
2642         spin_lock_irqsave(&kibnal_data.kib_connd_lock, flags);
2643
2644         list_add_tail(&pcr->pcr_list, &kibnal_data.kib_connd_pcreqs);
2645         wake_up(&kibnal_data.kib_connd_waitq);
2646         
2647         spin_unlock_irqrestore(&kibnal_data.kib_connd_lock, flags);
2648 }
2649
2650
2651 void
2652 kibnal_active_connect_callback (cm_cep_handle_t cep, cm_conn_data_t *cd, 
2653                                 void *arg)
2654 {
2655         /* CAVEAT EMPTOR: tasklet context */
2656         kib_conn_t       *conn = (kib_conn_t *)arg;
2657         kib_connvars_t   *cv = conn->ibc_connvars;
2658
2659         LASSERT (conn->ibc_state == IBNAL_CONN_ACTIVE_CONNECT);
2660         cv->cv_conndata = *cd;
2661
2662         kibnal_schedule_conn(conn);
2663         kibnal_conn_decref(conn);
2664 }
2665
2666 void
2667 kibnal_connect_conn (kib_conn_t *conn)
2668 {
2669         static cm_request_data_t  cmreq;
2670         static kib_msg_t          msg;
2671         
2672         kib_connvars_t           *cv = conn->ibc_connvars;
2673         kib_peer_t               *peer = conn->ibc_peer;
2674         cm_return_t               cmrc;
2675
2676         /* Only called by connd => statics OK */
2677         LASSERT (!in_interrupt());
2678         LASSERT (current == kibnal_data.kib_connd);
2679         LASSERT (conn->ibc_state == IBNAL_CONN_ACTIVE_ARP);
2680
2681         memset(&cmreq, 0, sizeof(cmreq));
2682         
2683         cmreq.sid = (__u64)(*kibnal_tunables.kib_service_number);
2684
2685         cmreq.cep_data.ca_guid              = kibnal_data.kib_hca_attrs.guid;
2686         cmreq.cep_data.qpn                  = cv->cv_local_qpn;
2687         cmreq.cep_data.retry_cnt            = *kibnal_tunables.kib_retry_cnt;
2688         cmreq.cep_data.rtr_retry_cnt        = *kibnal_tunables.kib_rnr_cnt;
2689         cmreq.cep_data.start_psn            = cv->cv_rxpsn;
2690         cmreq.cep_data.end_to_end_flow_ctrl = IBNAL_EE_FLOW_CNT;
2691         // XXX ack_timeout?
2692         // offered_resp_res
2693         // offered_initiator_depth
2694
2695         cmreq.path_data.subn_local  = IBNAL_LOCAL_SUB;
2696         cmreq.path_data.path        = cv->cv_path;
2697         
2698         /* setup msg... */
2699         memset(&msg, 0, sizeof(msg));
2700         kibnal_init_msg(&msg, IBNAL_MSG_CONNREQ, sizeof(msg.ibm_u.connparams));
2701         LASSERT(msg.ibm_nob <= cm_REQ_priv_data_len);
2702         msg.ibm_u.connparams.ibcp_queue_depth = IBNAL_MSG_QUEUE_SIZE;
2703         msg.ibm_u.connparams.ibcp_max_msg_size = IBNAL_MSG_SIZE;
2704         msg.ibm_u.connparams.ibcp_max_frags = IBNAL_MAX_RDMA_FRAGS;
2705         kibnal_pack_msg(&msg, conn->ibc_version, 0, peer->ibp_nid, 0, 0);
2706
2707         if (the_lnet.ln_testprotocompat != 0) {
2708                 /* single-shot proto check */
2709                 LNET_LOCK();
2710                 if ((the_lnet.ln_testprotocompat & 1) != 0) {
2711                         msg.ibm_version++;
2712                         the_lnet.ln_testprotocompat &= ~1;
2713                 }
2714                 if ((the_lnet.ln_testprotocompat & 2) != 0) {
2715                         msg.ibm_magic = LNET_PROTO_MAGIC;
2716                         the_lnet.ln_testprotocompat &= ~2;
2717                 }
2718                 LNET_UNLOCK();
2719         }
2720
2721         /* ...and copy into cmreq to avoid alignment issues */
2722         memcpy(&cmreq.priv_data, &msg, msg.ibm_nob);
2723         
2724         CDEBUG(D_NET, "Connecting %p to %s\n", conn,
2725                libcfs_nid2str(peer->ibp_nid));
2726
2727         kibnal_conn_addref(conn);               /* ++ref for CM callback */
2728         kibnal_set_conn_state(conn, IBNAL_CONN_ACTIVE_CONNECT);
2729
2730         cmrc = cm_connect(conn->ibc_cep, &cmreq, 
2731                           kibnal_active_connect_callback, conn);
2732         if (cmrc == cm_stat_success) {
2733                 CDEBUG(D_NET, "connection REQ sent to %s\n",
2734                        libcfs_nid2str(peer->ibp_nid));
2735                 return;
2736         }
2737
2738         CERROR ("Connect %s failed: %d\n", libcfs_nid2str(peer->ibp_nid), cmrc);
2739         kibnal_conn_decref(conn);       /* drop callback's ref */
2740         kibnal_connreq_done(conn, 1, -EHOSTUNREACH);
2741 }
2742
2743 void
2744 kibnal_reconnect (kib_conn_t *conn, int why)
2745 {
2746         kib_peer_t      *peer = conn->ibc_peer;
2747         int              retry;
2748         unsigned long    flags;
2749         cm_return_t      cmrc;
2750         cm_cep_handle_t  cep;
2751         
2752         LASSERT (conn->ibc_state == IBNAL_CONN_ACTIVE_CONNECT);
2753
2754         read_lock_irqsave(&kibnal_data.kib_global_lock, flags);
2755
2756         LASSERT (peer->ibp_connecting > 0);          /* 'conn' at least */
2757
2758         /* retry connection if it's still needed and no other connection
2759          * attempts (active or passive) are in progress.
2760          * Immediate reconnect is required, so I don't even look at the
2761          * reconnection timeout etc */
2762
2763         retry = (!list_empty(&peer->ibp_tx_queue) &&
2764                  peer->ibp_connecting == 1 &&
2765                  peer->ibp_accepting == 0);
2766         
2767         read_unlock_irqrestore(&kibnal_data.kib_global_lock, flags);
2768
2769         if (!retry) {
2770                 kibnal_connreq_done(conn, 1, why);
2771                 return;
2772         }
2773
2774         cep = cm_create_cep(cm_cep_transp_rc);
2775         if (cep == NULL) {
2776                 CERROR("Can't create new CEP\n");
2777                 kibnal_connreq_done(conn, 1, -ENOMEM);
2778                 return;
2779         }
2780
2781         cmrc = cm_cancel(conn->ibc_cep);
2782         LASSERT (cmrc == cm_stat_success);
2783         cmrc = cm_destroy_cep(conn->ibc_cep);
2784         LASSERT (cmrc == cm_stat_success);
2785
2786         conn->ibc_cep = cep;
2787
2788         /* reuse conn; no need to peer->ibp_connecting++ */
2789         kibnal_set_conn_state(conn, IBNAL_CONN_ACTIVE_ARP);
2790         kibnal_connect_conn(conn);
2791 }
2792
2793 void
2794 kibnal_check_connreply (kib_conn_t *conn)
2795 {
2796         static cm_rtu_data_t  rtu;
2797         static kib_msg_t      msg;
2798
2799         kib_connvars_t   *cv = conn->ibc_connvars;
2800         cm_reply_data_t  *reply = &cv->cv_conndata.data.reply;
2801         kib_peer_t       *peer = conn->ibc_peer;
2802         int               msgnob;
2803         cm_return_t       cmrc;
2804         unsigned long     flags;
2805         int               rc;
2806
2807         /* Only called by connd => statics OK */
2808         LASSERT (!in_interrupt());
2809         LASSERT (current == kibnal_data.kib_connd);
2810         LASSERT (conn->ibc_state == IBNAL_CONN_ACTIVE_CONNECT);
2811
2812         if (cv->cv_conndata.status == cm_event_conn_reply) {
2813                 cv->cv_remote_qpn = reply->qpn;
2814                 cv->cv_txpsn      = reply->start_psn;
2815                 // XXX              reply->targ_ack_delay;
2816                 cv->cv_rnr_count  = reply->rnr_retry_count;
2817
2818                 kibnal_set_conn_state(conn, IBNAL_CONN_ACTIVE_CHECK_REPLY);
2819
2820                 /* copy into msg to avoid alignment issues */
2821                 msgnob = MIN(cm_REP_priv_data_len, sizeof(msg));
2822                 memcpy(&msg, &reply->priv_data, msgnob);
2823
2824                 rc = kibnal_unpack_msg(&msg, conn->ibc_version, msgnob);
2825                 if (rc != 0) {
2826                         CERROR("Can't unpack reply from %s\n",
2827                                libcfs_nid2str(peer->ibp_nid));
2828                         kibnal_connreq_done(conn, 1, rc);
2829                         return;
2830                 }
2831
2832                 if (msg.ibm_type != IBNAL_MSG_CONNACK ) {
2833                         CERROR("Unexpected message type %d from %s\n",
2834                                msg.ibm_type, libcfs_nid2str(peer->ibp_nid));
2835                         kibnal_connreq_done(conn, 1, -EPROTO);
2836                         return;
2837                 }
2838
2839                 if (msg.ibm_u.connparams.ibcp_queue_depth != IBNAL_MSG_QUEUE_SIZE) {
2840                         CERROR("%s has incompatible queue depth %d(%d wanted)\n",
2841                                libcfs_nid2str(peer->ibp_nid), 
2842                                msg.ibm_u.connparams.ibcp_queue_depth,
2843                                IBNAL_MSG_QUEUE_SIZE);
2844                         kibnal_connreq_done(conn, 1, -EPROTO);
2845                         return;
2846                 }
2847                 
2848                 if (msg.ibm_u.connparams.ibcp_max_msg_size > IBNAL_MSG_SIZE) {
2849                         CERROR("%s max message size %d too big (%d max)\n",
2850                                libcfs_nid2str(peer->ibp_nid), 
2851                                msg.ibm_u.connparams.ibcp_max_msg_size, 
2852                                IBNAL_MSG_SIZE);
2853                         kibnal_connreq_done(conn, 1, -EPROTO);
2854                         return;
2855                 }
2856
2857                 if (msg.ibm_u.connparams.ibcp_max_frags > IBNAL_MAX_RDMA_FRAGS) {
2858                         CERROR("%s max frags %d too big (%d max)\n",
2859                                libcfs_nid2str(peer->ibp_nid),
2860                                msg.ibm_u.connparams.ibcp_max_frags, 
2861                                IBNAL_MAX_RDMA_FRAGS);
2862                         kibnal_connreq_done(conn, 1, -EPROTO);
2863                         return;
2864                 }
2865                 
2866                 read_lock_irqsave(&kibnal_data.kib_global_lock, flags);
2867                 if (lnet_ptlcompat_matchnid(kibnal_data.kib_ni->ni_nid,
2868                                             msg.ibm_dstnid) &&
2869                     msg.ibm_dststamp == kibnal_data.kib_incarnation)
2870                         rc = 0;
2871                 else
2872                         rc = -ESTALE;
2873                 read_unlock_irqrestore(&kibnal_data.kib_global_lock, flags);
2874                 if (rc != 0) {
2875                         CERROR("Stale connection reply from %s\n",
2876                                libcfs_nid2str(peer->ibp_nid));
2877                         kibnal_connreq_done(conn, 1, rc);
2878                         return;
2879                 }
2880
2881                 conn->ibc_incarnation = msg.ibm_srcstamp;
2882                 conn->ibc_credits = IBNAL_MSG_QUEUE_SIZE;
2883                 conn->ibc_reserved_credits = IBNAL_MSG_QUEUE_SIZE;
2884                 LASSERT (conn->ibc_credits + conn->ibc_reserved_credits
2885                          <= IBNAL_RX_MSGS);
2886                 
2887                 rc = kibnal_post_receives(conn);
2888                 if (rc != 0) {
2889                         CERROR("Can't post receives for %s\n",
2890                                libcfs_nid2str(peer->ibp_nid));
2891                         kibnal_connreq_done(conn, 1, rc);
2892                         return;
2893                 }
2894                 
2895                 rc = kibnal_set_qp_state(conn, vv_qp_state_rtr);
2896                 if (rc != 0) {
2897                         kibnal_connreq_done(conn, 1, rc);
2898                         return;
2899                 }
2900                 
2901                 rc = kibnal_set_qp_state(conn, vv_qp_state_rts);
2902                 if (rc != 0) {
2903                         kibnal_connreq_done(conn, 1, rc);
2904                         return;
2905                 }
2906                 
2907                 kibnal_set_conn_state(conn, IBNAL_CONN_ACTIVE_RTU);
2908                 kibnal_conn_addref(conn);       /* ++for CM callback */
2909                 
2910                 memset(&rtu, 0, sizeof(rtu));
2911                 cmrc = cm_accept(conn->ibc_cep, NULL, &rtu,
2912                                  kibnal_cm_callback, conn);
2913                 if (cmrc == cm_stat_success) {
2914                         /* Now I'm racing with disconnect signalled by
2915                          * kibnal_cm_callback */
2916                         kibnal_connreq_done(conn, 1, 0);
2917                         return;
2918                 }
2919
2920                 CERROR("cm_accept %s failed: %d\n", 
2921                        libcfs_nid2str(peer->ibp_nid), cmrc);
2922                 /* Back out of RTU: no callback coming */
2923                 kibnal_set_conn_state(conn, IBNAL_CONN_ACTIVE_CHECK_REPLY);
2924                 kibnal_conn_decref(conn);
2925                 kibnal_connreq_done(conn, 1, -EIO);
2926                 return;
2927         }
2928
2929         if (cv->cv_conndata.status == cm_event_conn_reject) {
2930
2931                 if (cv->cv_conndata.data.reject.reason == cm_rej_code_usr_rej) {
2932                         unsigned char *bytes =
2933                                 cv->cv_conndata.data.reject.priv_data;
2934                         int   magic   = (bytes[0]) |
2935                                         (bytes[1] << 8) |
2936                                         (bytes[2] << 16) |
2937                                         (bytes[3] << 24);
2938                         int   version = (bytes[4]) |
2939                                         (bytes[5] << 8);
2940                         int   why     = (bytes[6]);
2941
2942                         /* Expected proto/version: she just doesn't like me (or
2943                          * ran out of resources) */
2944                         if (magic == IBNAL_MSG_MAGIC &&
2945                             version == conn->ibc_version) {
2946                                 CERROR("conn -> %s rejected: fatal error %d\n",
2947                                        libcfs_nid2str(peer->ibp_nid), why);
2948
2949                                 if (why == IBNAL_REJECT_CONN_RACE) 
2950                                         kibnal_reconnect(conn, -EALREADY);
2951                                 else
2952                                         kibnal_connreq_done(conn, 1, -ECONNREFUSED);
2953                                 return;
2954                         }
2955                         
2956                         /* Fail unless it's worth retrying with an old proto
2957                          * version */
2958                         if (!(magic == IBNAL_MSG_MAGIC &&
2959                               version == IBNAL_MSG_VERSION_RDMAREPLYNOTRSRVD &&
2960                               conn->ibc_version == IBNAL_MSG_VERSION)) {
2961                                 CERROR("conn -> %s rejected: bad protocol "
2962                                        "magic/ver %08x/%x why %d\n",
2963                                        libcfs_nid2str(peer->ibp_nid),
2964                                        magic, version, why);
2965
2966                                 kibnal_connreq_done(conn, 1, -ECONNREFUSED);
2967                                 return;
2968                         }
2969
2970                         conn->ibc_version = version;
2971                         CWARN ("Connection to %s refused: "
2972                                "retrying with old protocol version 0x%x\n", 
2973                                libcfs_nid2str(peer->ibp_nid), version);
2974
2975                         kibnal_reconnect(conn, -ECONNREFUSED);
2976                         return;
2977                 } else if (cv->cv_conndata.data.reject.reason == 
2978                            cm_rej_code_stale_conn) {
2979                         
2980                         CWARN ("conn -> %s stale: retrying\n", 
2981                                libcfs_nid2str(peer->ibp_nid));
2982
2983                         kibnal_reconnect(conn, -ESTALE);
2984                         return;
2985                 } else {
2986                         CDEBUG(D_NETERROR, "conn -> %s rejected: reason %d\n",
2987                                libcfs_nid2str(peer->ibp_nid),
2988                                cv->cv_conndata.data.reject.reason);
2989                         kibnal_connreq_done(conn, 1, -ECONNREFUSED);
2990                         return;
2991                 }
2992                 /* NOT REACHED */
2993         }
2994
2995         CDEBUG(D_NETERROR, "conn -> %s failed: %d\n", 
2996                libcfs_nid2str(peer->ibp_nid), cv->cv_conndata.status);
2997         kibnal_connreq_done(conn, 1, -ECONNABORTED);
2998 }
2999
3000 void
3001 kibnal_arp_done (kib_conn_t *conn)
3002 {
3003         kib_peer_t           *peer = conn->ibc_peer;
3004         kib_connvars_t       *cv = conn->ibc_connvars;
3005         ibat_arp_data_t      *arp = &cv->cv_arp;
3006         ib_path_record_v2_t  *path = &cv->cv_path;
3007         vv_return_t           vvrc;
3008         int                   rc;
3009         unsigned long         flags;
3010
3011         LASSERT (!in_interrupt());
3012         LASSERT (current == kibnal_data.kib_connd);
3013         LASSERT (conn->ibc_state == IBNAL_CONN_ACTIVE_ARP);
3014         LASSERT (peer->ibp_arp_count > 0);
3015         
3016         if (cv->cv_arprc != ibat_stat_ok) {
3017                 CDEBUG(D_NETERROR, "Arp %s @ %u.%u.%u.%u failed: %d\n", 
3018                        libcfs_nid2str(peer->ibp_nid), HIPQUAD(peer->ibp_ip),
3019                        cv->cv_arprc);
3020                 goto failed;
3021         }
3022
3023         if ((arp->mask & IBAT_PRI_PATH_VALID) != 0) {
3024                 CDEBUG(D_NET, "Got valid path for %s\n",
3025                        libcfs_nid2str(peer->ibp_nid));
3026
3027                 *path = *arp->primary_path;
3028
3029                 vvrc = base_gid2port_num(kibnal_data.kib_hca, &path->sgid,
3030                                          &cv->cv_port);
3031                 if (vvrc != vv_return_ok) {
3032                         CWARN("base_gid2port_num failed for %s @ %u.%u.%u.%u: %d\n", 
3033                               libcfs_nid2str(peer->ibp_nid),
3034                               HIPQUAD(peer->ibp_ip), vvrc);
3035                         goto failed;
3036                 }
3037
3038                 vvrc = gid2gid_index(kibnal_data.kib_hca, cv->cv_port,
3039                                      &path->sgid, &cv->cv_sgid_index);
3040                 if (vvrc != vv_return_ok) {
3041                         CWARN("gid2gid_index failed for %s @ %u.%u.%u.%u: %d\n", 
3042                               libcfs_nid2str(peer->ibp_nid),
3043                               HIPQUAD(peer->ibp_ip), vvrc);
3044                         goto failed;
3045                 }
3046
3047                 vvrc = pkey2pkey_index(kibnal_data.kib_hca, cv->cv_port,
3048                                        path->pkey, &cv->cv_pkey_index);
3049                 if (vvrc != vv_return_ok) {
3050                         CWARN("pkey2pkey_index failed for %s @ %u.%u.%u.%u: %d\n", 
3051                               libcfs_nid2str(peer->ibp_nid), 
3052                               HIPQUAD(peer->ibp_ip), vvrc);
3053                         goto failed;
3054                 }
3055
3056                 path->mtu = IBNAL_IB_MTU;
3057
3058         } else if ((arp->mask & IBAT_LID_VALID) != 0) {
3059                 CWARN("Creating new path record for %s @ %u.%u.%u.%u\n",
3060                       libcfs_nid2str(peer->ibp_nid), HIPQUAD(peer->ibp_ip));
3061
3062                 cv->cv_pkey_index = IBNAL_PKEY_IDX;
3063                 cv->cv_sgid_index = IBNAL_SGID_IDX;
3064                 cv->cv_port = arp->local_port_num;
3065
3066                 memset(path, 0, sizeof(*path));
3067
3068                 vvrc = port_num2base_gid(kibnal_data.kib_hca, cv->cv_port,
3069                                          &path->sgid);
3070                 if (vvrc != vv_return_ok) {
3071                         CWARN("port_num2base_gid failed for %s @ %u.%u.%u.%u: %d\n", 
3072                               libcfs_nid2str(peer->ibp_ip),
3073                               HIPQUAD(peer->ibp_ip), vvrc);
3074                         goto failed;
3075                 }
3076
3077                 vvrc = port_num2base_lid(kibnal_data.kib_hca, cv->cv_port,
3078                                          &path->slid);
3079                 if (vvrc != vv_return_ok) {
3080                         CWARN("port_num2base_lid failed for %s @ %u.%u.%u.%u: %d\n", 
3081                               libcfs_nid2str(peer->ibp_ip), 
3082                               HIPQUAD(peer->ibp_ip), vvrc);
3083                         goto failed;
3084                 }
3085
3086                 path->dgid          = arp->gid;
3087                 path->sl            = IBNAL_SERVICE_LEVEL;
3088                 path->dlid          = arp->lid;
3089                 path->mtu           = IBNAL_IB_MTU;
3090                 path->rate          = IBNAL_STATIC_RATE;
3091                 path->pkt_life_time = IBNAL_PKT_LIFETIME;
3092                 path->pkey          = IBNAL_PKEY;
3093                 path->traffic_class = IBNAL_TRAFFIC_CLASS;
3094         } else {
3095                 CWARN("Arp for %s @ %u.%u.%u.%u returned neither PATH nor LID\n",
3096                       libcfs_nid2str(peer->ibp_nid), HIPQUAD(peer->ibp_ip));
3097                 goto failed;
3098         }
3099
3100         rc = kibnal_set_qp_state(conn, vv_qp_state_init);
3101         if (rc != 0) {
3102                 kibnal_connreq_done(conn, 1, rc);
3103         }
3104
3105         /* do the actual connection request */
3106         kibnal_connect_conn(conn);
3107         return;
3108
3109  failed:
3110         write_lock_irqsave(&kibnal_data.kib_global_lock, flags);
3111         peer->ibp_arp_count--;
3112         if (peer->ibp_arp_count == 0) {
3113                 /* final ARP attempt failed */
3114                 write_unlock_irqrestore(&kibnal_data.kib_global_lock, 
3115                                         flags);
3116                 CDEBUG(D_NETERROR, "Arp %s @ %u.%u.%u.%u failed (final attempt)\n", 
3117                        libcfs_nid2str(peer->ibp_nid), HIPQUAD(peer->ibp_ip));
3118         } else {
3119                 /* Retry ARP: ibp_connecting++ so terminating conn
3120                  * doesn't end peer's connection attempt */
3121                 peer->ibp_connecting++;
3122                 write_unlock_irqrestore(&kibnal_data.kib_global_lock, 
3123                                         flags);
3124                 CDEBUG(D_NETERROR, "Arp %s @ %u.%u.%u.%u failed (%d attempts left)\n",
3125                        libcfs_nid2str(peer->ibp_nid), HIPQUAD(peer->ibp_ip), 
3126                        peer->ibp_arp_count);
3127                 
3128                 kibnal_schedule_peer_arp(peer);
3129         }
3130         kibnal_connreq_done(conn, 1, -ENETUNREACH);
3131 }
3132
3133 void
3134 kibnal_arp_callback (ibat_stat_t arprc, ibat_arp_data_t *arp_data, void *arg)
3135 {
3136         /* CAVEAT EMPTOR: tasklet context */
3137         kib_peer_t *peer;
3138         kib_conn_t *conn = (kib_conn_t *)arg;
3139
3140         LASSERT (conn != NULL);
3141         LASSERT (conn->ibc_state == IBNAL_CONN_ACTIVE_ARP);
3142
3143         peer = conn->ibc_peer;
3144
3145         if (arprc != ibat_stat_ok)
3146                 CDEBUG(D_NETERROR, "Arp %s at %u.%u.%u.%u failed: %d\n",
3147                        libcfs_nid2str(peer->ibp_nid), HIPQUAD(peer->ibp_ip), arprc);
3148         else
3149                 CDEBUG(D_NET, "Arp %s at %u.%u.%u.%u OK: LID %s PATH %s\n",
3150                        libcfs_nid2str(peer->ibp_nid), HIPQUAD(peer->ibp_ip), 
3151                        (arp_data->mask & IBAT_LID_VALID) == 0 ? "invalid" : "valid",
3152                        (arp_data->mask & IBAT_PRI_PATH_VALID) == 0 ? "invalid" : "valid");
3153
3154         conn->ibc_connvars->cv_arprc = arprc;
3155         if (arprc == ibat_stat_ok)
3156                 conn->ibc_connvars->cv_arp = *arp_data;
3157         
3158         kibnal_schedule_conn(conn);
3159         kibnal_conn_decref(conn);
3160 }
3161
3162 void
3163 kibnal_arp_peer (kib_peer_t *peer)
3164 {
3165         cm_cep_handle_t  cep;
3166         kib_conn_t      *conn;
3167         int              ibatrc;
3168
3169         /* Only the connd does this (i.e. single threaded) */
3170         LASSERT (current == kibnal_data.kib_connd);
3171         LASSERT (peer->ibp_connecting != 0);
3172         LASSERT (peer->ibp_arp_count > 0);
3173
3174         cep = cm_create_cep(cm_cep_transp_rc);
3175         if (cep == NULL) {
3176                 CERROR ("Can't create cep for conn->%s\n",
3177                         libcfs_nid2str(peer->ibp_nid));
3178                 kibnal_peer_connect_failed(peer, 1, -ENOMEM);
3179                 return;
3180         }
3181
3182         conn = kibnal_create_conn(cep);
3183         if (conn == NULL) {
3184                 CERROR ("Can't allocate conn->%s\n",
3185                         libcfs_nid2str(peer->ibp_nid));
3186                 cm_destroy_cep(cep);
3187                 kibnal_peer_connect_failed(peer, 1, -ENOMEM);
3188                 return;
3189         }
3190
3191         conn->ibc_peer = peer;
3192         kibnal_peer_addref(peer);
3193
3194         kibnal_set_conn_state(conn, IBNAL_CONN_ACTIVE_ARP);
3195
3196         ibatrc = ibat_get_ib_data(htonl(peer->ibp_ip), INADDR_ANY, 
3197                                   ibat_paths_primary,
3198                                   &conn->ibc_connvars->cv_arp, 
3199                                   kibnal_arp_callback, conn, 0);
3200         CDEBUG(D_NET,"ibatrc %d\n", ibatrc);
3201         switch (ibatrc) {
3202         default:
3203                 LBUG();
3204                 
3205         case ibat_stat_pending:
3206                 /* NB callback has my ref on conn */
3207                 break;
3208                 
3209         case ibat_stat_ok:
3210         case ibat_stat_error:
3211         case ibat_stat_timeout:
3212         case ibat_stat_not_found:
3213                 /* Immediate return (ARP cache hit or failure) == no callback. 
3214                  * Do the next stage directly... */
3215                 conn->ibc_connvars->cv_arprc = ibatrc;
3216                 kibnal_arp_done(conn);
3217                 kibnal_conn_decref(conn);
3218                 break;
3219         }
3220 }
3221
3222 int
3223 kibnal_check_txs (kib_conn_t *conn, struct list_head *txs)
3224 {
3225         kib_tx_t          *tx;
3226         struct list_head  *ttmp;
3227         int                timed_out = 0;
3228
3229         spin_lock(&conn->ibc_lock);
3230
3231         list_for_each (ttmp, txs) {
3232                 tx = list_entry (ttmp, kib_tx_t, tx_list);
3233
3234                 if (txs == &conn->ibc_active_txs) {
3235                         LASSERT (!tx->tx_queued);
3236                         LASSERT (tx->tx_waiting || tx->tx_sending != 0);
3237                 } else {
3238                         LASSERT (tx->tx_queued);
3239                 }
3240
3241                 if (time_after_eq (jiffies, tx->tx_deadline)) {
3242                         timed_out = 1;
3243                         break;
3244                 }
3245         }
3246
3247         spin_unlock(&conn->ibc_lock);
3248         return timed_out;
3249 }
3250
3251 int
3252 kibnal_conn_timed_out (kib_conn_t *conn)
3253 {
3254         return  kibnal_check_txs(conn, &conn->ibc_tx_queue) ||
3255                 kibnal_check_txs(conn, &conn->ibc_tx_queue_rsrvd) ||
3256                 kibnal_check_txs(conn, &conn->ibc_tx_queue_nocred) ||
3257                 kibnal_check_txs(conn, &conn->ibc_active_txs);
3258 }
3259
3260 void
3261 kibnal_check_conns (int idx)
3262 {
3263         struct list_head  *peers = &kibnal_data.kib_peers[idx];
3264         struct list_head  *ptmp;
3265         kib_peer_t        *peer;
3266         kib_conn_t        *conn;
3267         struct list_head  *ctmp;
3268         unsigned long      flags;
3269
3270  again:
3271         /* NB. We expect to have a look at all the peers and not find any
3272          * rdmas to time out, so we just use a shared lock while we
3273          * take a look... */
3274         read_lock_irqsave(&kibnal_data.kib_global_lock, flags);
3275
3276         list_for_each (ptmp, peers) {
3277                 peer = list_entry (ptmp, kib_peer_t, ibp_list);
3278
3279                 list_for_each (ctmp, &peer->ibp_conns) {
3280                         conn = list_entry (ctmp, kib_conn_t, ibc_list);
3281
3282                         LASSERT (conn->ibc_state == IBNAL_CONN_ESTABLISHED);
3283
3284                         /* In case we have enough credits to return via a
3285                          * NOOP, but there were no non-blocking tx descs
3286                          * free to do it last time... */
3287                         kibnal_check_sends(conn);
3288
3289                         if (!kibnal_conn_timed_out(conn))
3290                                 continue;
3291
3292                         /* Handle timeout by closing the whole connection.  We
3293                          * can only be sure RDMA activity has ceased once the
3294                          * QP has been modified. */
3295                         
3296                         kibnal_conn_addref(conn); /* 1 ref for me... */
3297
3298                         read_unlock_irqrestore(&kibnal_data.kib_global_lock,
3299                                                flags);
3300
3301                         CERROR("Timed out RDMA with %s\n",
3302                                libcfs_nid2str(peer->ibp_nid));
3303
3304                         kibnal_close_conn (conn, -ETIMEDOUT);
3305                         kibnal_conn_decref(conn); /* ...until here */
3306
3307                         /* start again now I've dropped the lock */
3308                         goto again;
3309                 }
3310         }
3311
3312         read_unlock_irqrestore(&kibnal_data.kib_global_lock, flags);
3313 }
3314
3315 void
3316 kibnal_disconnect_conn (kib_conn_t *conn)
3317 {
3318         static cm_drequest_data_t dreq;         /* just for the space */
3319         
3320         cm_return_t    cmrc;
3321         unsigned long  flags;
3322
3323         LASSERT (!in_interrupt());
3324         LASSERT (current == kibnal_data.kib_connd);
3325         
3326         write_lock_irqsave(&kibnal_data.kib_global_lock, flags);
3327
3328         if (conn->ibc_disconnect) {
3329                 /* Had the CM callback already */
3330                 write_unlock_irqrestore(&kibnal_data.kib_global_lock,
3331                                         flags);
3332                 kibnal_conn_disconnected(conn);
3333                 return;
3334         }
3335                 
3336         LASSERT (conn->ibc_state == IBNAL_CONN_DISCONNECT1);
3337
3338         /* active disconnect */
3339         cmrc = cm_disconnect(conn->ibc_cep, &dreq, NULL);
3340         if (cmrc == cm_stat_success) {
3341                 /* waiting for CM */
3342                 conn->ibc_state = IBNAL_CONN_DISCONNECT2;
3343                 write_unlock_irqrestore(&kibnal_data.kib_global_lock, flags);
3344                 return;
3345         }
3346
3347         write_unlock_irqrestore(&kibnal_data.kib_global_lock, flags);
3348
3349         cm_cancel(conn->ibc_cep);
3350         cfs_pause(cfs_time_seconds(1)/10);
3351
3352         if (!conn->ibc_disconnect)              /* CM callback will never happen now */
3353                 kibnal_conn_decref(conn);
3354         
3355         LASSERT (atomic_read(&conn->ibc_refcount) > 0);
3356         LASSERT (conn->ibc_state == IBNAL_CONN_DISCONNECT1);
3357
3358         kibnal_conn_disconnected(conn);
3359 }
3360
3361 int
3362 kibnal_connd (void *arg)
3363 {
3364         wait_queue_t       wait;
3365         unsigned long      flags;
3366         kib_pcreq_t       *pcr;
3367         kib_conn_t        *conn;
3368         kib_peer_t        *peer;
3369         int                timeout;
3370         int                i;
3371         int                dropped_lock;
3372         int                peer_index = 0;
3373         unsigned long      deadline = jiffies;
3374         
3375         cfs_daemonize ("kibnal_connd");
3376         cfs_block_allsigs ();
3377
3378         init_waitqueue_entry (&wait, current);
3379         kibnal_data.kib_connd = current;
3380
3381         spin_lock_irqsave(&kibnal_data.kib_connd_lock, flags);
3382
3383         while (!kibnal_data.kib_shutdown) {
3384
3385                 dropped_lock = 0;
3386
3387                 if (!list_empty (&kibnal_data.kib_connd_zombies)) {
3388                         conn = list_entry (kibnal_data.kib_connd_zombies.next,
3389                                            kib_conn_t, ibc_list);
3390                         list_del (&conn->ibc_list);
3391                         
3392                         spin_unlock_irqrestore (&kibnal_data.kib_connd_lock, flags);
3393                         dropped_lock = 1;
3394
3395                         kibnal_destroy_conn(conn);
3396
3397                         spin_lock_irqsave (&kibnal_data.kib_connd_lock, flags);
3398                 }
3399
3400                 if (!list_empty (&kibnal_data.kib_connd_pcreqs)) {
3401                         pcr = list_entry(kibnal_data.kib_connd_pcreqs.next,
3402                                          kib_pcreq_t, pcr_list);
3403                         list_del(&pcr->pcr_list);
3404                         
3405                         spin_unlock_irqrestore(&kibnal_data.kib_connd_lock, flags);
3406                         dropped_lock = 1;
3407
3408                         kibnal_recv_connreq(pcr->pcr_cep, &pcr->pcr_cmreq);
3409                         LIBCFS_FREE(pcr, sizeof(*pcr));
3410
3411                         spin_lock_irqsave(&kibnal_data.kib_connd_lock, flags);
3412                 }
3413                         
3414                 if (!list_empty (&kibnal_data.kib_connd_peers)) {
3415                         peer = list_entry (kibnal_data.kib_connd_peers.next,
3416                                            kib_peer_t, ibp_connd_list);
3417                         
3418                         list_del_init (&peer->ibp_connd_list);
3419                         spin_unlock_irqrestore (&kibnal_data.kib_connd_lock, flags);
3420                         dropped_lock = 1;
3421
3422                         kibnal_arp_peer (peer);
3423                         kibnal_peer_decref (peer);
3424
3425                         spin_lock_irqsave (&kibnal_data.kib_connd_lock, flags);
3426                 }
3427
3428                 if (!list_empty (&kibnal_data.kib_connd_conns)) {
3429                         conn = list_entry (kibnal_data.kib_connd_conns.next,
3430                                            kib_conn_t, ibc_list);
3431                         list_del (&conn->ibc_list);
3432                         
3433                         spin_unlock_irqrestore (&kibnal_data.kib_connd_lock, flags);
3434                         dropped_lock = 1;
3435
3436                         switch (conn->ibc_state) {
3437                         default:
3438                                 LBUG();
3439                                 
3440                         case IBNAL_CONN_ACTIVE_ARP:
3441                                 kibnal_arp_done(conn);
3442                                 break;
3443
3444                         case IBNAL_CONN_ACTIVE_CONNECT:
3445                                 kibnal_check_connreply(conn);
3446                                 break;
3447
3448                         case IBNAL_CONN_PASSIVE_WAIT:
3449                                 kibnal_check_passive_wait(conn);
3450                                 break;
3451
3452                         case IBNAL_CONN_DISCONNECT1:
3453                         case IBNAL_CONN_DISCONNECT2:
3454                                 kibnal_disconnect_conn(conn);
3455                                 break;
3456                         }
3457                         kibnal_conn_decref(conn);
3458
3459                         spin_lock_irqsave (&kibnal_data.kib_connd_lock, flags);
3460                 }
3461
3462                 /* careful with the jiffy wrap... */
3463                 timeout = (int)(deadline - jiffies);
3464                 if (timeout <= 0) {
3465                         const int n = 4;
3466                         const int p = 1;
3467                         int       chunk = kibnal_data.kib_peer_hash_size;
3468                         
3469                         spin_unlock_irqrestore(&kibnal_data.kib_connd_lock, flags);
3470                         dropped_lock = 1;
3471
3472                         /* Time to check for RDMA timeouts on a few more
3473                          * peers: I do checks every 'p' seconds on a
3474                          * proportion of the peer table and I need to check
3475                          * every connection 'n' times within a timeout
3476                          * interval, to ensure I detect a timeout on any
3477                          * connection within (n+1)/n times the timeout
3478                          * interval. */
3479
3480                         if (*kibnal_tunables.kib_timeout > n * p)
3481                                 chunk = (chunk * n * p) / 
3482                                         *kibnal_tunables.kib_timeout;
3483                         if (chunk == 0)
3484                                 chunk = 1;
3485
3486                         for (i = 0; i < chunk; i++) {
3487                                 kibnal_check_conns (peer_index);
3488                                 peer_index = (peer_index + 1) % 
3489                                              kibnal_data.kib_peer_hash_size;
3490                         }
3491
3492                         deadline += p * HZ;
3493                         spin_lock_irqsave(&kibnal_data.kib_connd_lock, flags);
3494                 }
3495
3496                 if (dropped_lock)
3497                         continue;
3498                 
3499                 /* Nothing to do for 'timeout'  */
3500                 set_current_state (TASK_INTERRUPTIBLE);
3501                 add_wait_queue (&kibnal_data.kib_connd_waitq, &wait);
3502                 spin_unlock_irqrestore (&kibnal_data.kib_connd_lock, flags);
3503
3504                 schedule_timeout (timeout);
3505
3506                 set_current_state (TASK_RUNNING);
3507                 remove_wait_queue (&kibnal_data.kib_connd_waitq, &wait);
3508                 spin_lock_irqsave (&kibnal_data.kib_connd_lock, flags);
3509         }
3510
3511         spin_unlock_irqrestore (&kibnal_data.kib_connd_lock, flags);
3512
3513         kibnal_thread_fini ();
3514         return (0);
3515 }
3516
3517 void 
3518 kibnal_async_callback(vv_event_record_t ev)
3519 {
3520         CERROR("type: %d, port: %d, data: "LPX64"\n", 
3521                ev.event_type, ev.port_num, ev.type.data);
3522 }
3523
3524 void
3525 kibnal_cq_callback (unsigned long unused_context)
3526 {
3527         unsigned long    flags;
3528
3529         spin_lock_irqsave(&kibnal_data.kib_sched_lock, flags);
3530         kibnal_data.kib_ready = 1;
3531         wake_up(&kibnal_data.kib_sched_waitq);
3532         spin_unlock_irqrestore(&kibnal_data.kib_sched_lock, flags);
3533 }
3534
3535 int
3536 kibnal_scheduler(void *arg)
3537 {
3538         long            id = (long)arg;
3539         wait_queue_t    wait;
3540         char            name[16];
3541         vv_wc_t         wc;
3542         vv_return_t     vvrc;
3543         vv_return_t     vvrc2;
3544         unsigned long   flags;
3545         kib_rx_t       *rx;
3546         __u64           rxseq = 0;
3547         int             busy_loops = 0;
3548
3549         snprintf(name, sizeof(name), "kibnal_sd_%02ld", id);
3550         cfs_daemonize(name);
3551         cfs_block_allsigs();
3552
3553         init_waitqueue_entry(&wait, current);
3554
3555         spin_lock_irqsave(&kibnal_data.kib_sched_lock, flags);
3556
3557         while (!kibnal_data.kib_shutdown) {
3558                 if (busy_loops++ >= IBNAL_RESCHED) {
3559                         spin_unlock_irqrestore(&kibnal_data.kib_sched_lock,
3560                                                flags);
3561
3562                         our_cond_resched();
3563                         busy_loops = 0;
3564                         
3565                         spin_lock_irqsave(&kibnal_data.kib_sched_lock, flags);
3566                 }
3567
3568                 if (kibnal_data.kib_ready &&
3569                     !kibnal_data.kib_checking_cq) {
3570                         /* take ownership of completion polling */
3571                         kibnal_data.kib_checking_cq = 1;
3572                         /* Assume I'll exhaust the CQ */
3573                         kibnal_data.kib_ready = 0;
3574                         spin_unlock_irqrestore(&kibnal_data.kib_sched_lock, 
3575                                                flags);
3576                         
3577                         vvrc = vv_poll_for_completion(kibnal_data.kib_hca, 
3578                                                       kibnal_data.kib_cq, &wc);
3579                         if (vvrc == vv_return_err_cq_empty) {
3580                                 vvrc2 = vv_request_completion_notification(
3581                                         kibnal_data.kib_hca, 
3582                                         kibnal_data.kib_cq, 
3583                                         vv_next_solicit_unsolicit_event);
3584                                 LASSERT (vvrc2 == vv_return_ok);
3585                         }
3586
3587                         if (vvrc == vv_return_ok &&
3588                             kibnal_wreqid2type(wc.wr_id) == IBNAL_WID_RX) {
3589                                 rx = (kib_rx_t *)kibnal_wreqid2ptr(wc.wr_id);
3590
3591                                 /* Grab the RX sequence number NOW before
3592                                  * anyone else can get an RX completion */
3593                                 rxseq = rx->rx_conn->ibc_rxseq++;
3594                         }
3595
3596                         spin_lock_irqsave(&kibnal_data.kib_sched_lock, flags);
3597                         /* give up ownership of completion polling */
3598                         kibnal_data.kib_checking_cq = 0;
3599
3600                         if (vvrc == vv_return_err_cq_empty)
3601                                 continue;
3602
3603                         LASSERT (vvrc == vv_return_ok);
3604                         /* Assume there's more: get another scheduler to check
3605                          * while I handle this completion... */
3606
3607                         kibnal_data.kib_ready = 1;
3608                         wake_up(&kibnal_data.kib_sched_waitq);
3609
3610                         spin_unlock_irqrestore(&kibnal_data.kib_sched_lock,
3611                                                flags);
3612
3613                         switch (kibnal_wreqid2type(wc.wr_id)) {
3614                         case IBNAL_WID_RX:
3615                                 kibnal_rx_complete(
3616                                         (kib_rx_t *)kibnal_wreqid2ptr(wc.wr_id),
3617                                         wc.completion_status,
3618                                         wc.num_bytes_transfered,
3619                                         rxseq);
3620                                 break;
3621
3622                         case IBNAL_WID_TX:
3623                                 kibnal_tx_complete(
3624                                         (kib_tx_t *)kibnal_wreqid2ptr(wc.wr_id),
3625                                         wc.completion_status);
3626                                 break;
3627
3628                         case IBNAL_WID_RDMA:
3629                                 /* We only get RDMA completion notification if
3630                                  * it fails.  So we just ignore them completely
3631                                  * because...
3632                                  *
3633                                  * 1) If an RDMA fails, all subsequent work
3634                                  * items, including the final SEND will fail
3635                                  * too, so I'm still guaranteed to notice that
3636                                  * this connection is hosed.
3637                                  *
3638                                  * 2) It's positively dangerous to look inside
3639                                  * the tx descriptor obtained from an RDMA work
3640                                  * item.  As soon as I drop the kib_sched_lock,
3641                                  * I give a scheduler on another CPU a chance
3642                                  * to get the final SEND completion, so the tx
3643                                  * descriptor can get freed as I inspect it. */
3644                                 CDEBUG(D_NETERROR, "RDMA failed: %d\n", 
3645                                        wc.completion_status);
3646                                 break;
3647
3648                         default:
3649                                 LBUG();
3650                         }
3651                         
3652                         spin_lock_irqsave(&kibnal_data.kib_sched_lock, flags);
3653                         continue;
3654                 }
3655
3656                 /* Nothing to do; sleep... */
3657
3658                 set_current_state(TASK_INTERRUPTIBLE);
3659                 add_wait_queue_exclusive(&kibnal_data.kib_sched_waitq, &wait);
3660                 spin_unlock_irqrestore(&kibnal_data.kib_sched_lock,
3661                                        flags);
3662
3663                 schedule();
3664
3665                 remove_wait_queue(&kibnal_data.kib_sched_waitq, &wait);
3666                 set_current_state(TASK_RUNNING);
3667                 spin_lock_irqsave(&kibnal_data.kib_sched_lock, flags);
3668         }
3669
3670         spin_unlock_irqrestore(&kibnal_data.kib_sched_lock, flags);
3671
3672         kibnal_thread_fini();
3673         return (0);
3674 }