Whamcloud - gitweb
LU-14392 gnilnd: re-enable large I/o buffers
[fs/lustre-release.git] / lnet / klnds / gnilnd / gnilnd_cb.c
1 /*
2  * Copyright (C) 2004 Cluster File Systems, Inc.
3  *
4  * Copyright (C) 2009-2012 Cray, Inc.
5  *
6  *   Derived from work by Eric Barton <eric@bartonsoftware.com>
7  *   Author: James Shimek <jshimek@cray.com>
8  *   Author: Nic Henke <nic@cray.com>
9  *
10  *   This file is part of Lustre, http://www.lustre.org.
11  *
12  *   Lustre is free software; you can redistribute it and/or
13  *   modify it under the terms of version 2 of the GNU General Public
14  *   License as published by the Free Software Foundation.
15  *
16  *   Lustre is distributed in the hope that it will be useful,
17  *   but WITHOUT ANY WARRANTY; without even the implied warranty of
18  *   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
19  *   GNU General Public License for more details.
20  *
21  *   You should have received a copy of the GNU General Public License
22  *   along with Lustre; if not, write to the Free Software
23  *   Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
24  *
25  */
26
27 #include <asm/page.h>
28 #include <linux/nmi.h>
29 #include <linux/pagemap.h>
30
31 #include <libcfs/linux/linux-mem.h>
32
33 #include "gnilnd.h"
34
35 /* this is useful when needed to debug wire corruption. */
36 static void
37 kgnilnd_dump_blob(int level, char *prefix, void *buf, int len) {
38         __u64 *ptr;
39
40         ptr = (__u64 *) buf;
41
42         while (len > 0) {
43                 if (len >= 32) {
44                         CDEBUG(level,
45                                "%s 0x%p: 0x%16.16llx 0x%16.16llx 0x%16.16llx 0x%16.16llx\n",
46                                prefix, ptr, *(ptr), *(ptr + 1), *(ptr + 2), *(ptr + 3));
47                         ptr += 4;
48                         len -= 32;
49                 } else if (len >= 16) {
50                         CDEBUG(level,
51                                "%s 0x%p: 0x%16.16llx 0x%16.16llx\n",
52                                prefix, ptr, *(ptr), *(ptr + 1));
53                         ptr += 2;
54                         len -= 16;
55                 } else {
56                         CDEBUG(level, "%s 0x%p: 0x%16.16llx\n",
57                                prefix, ptr, *(ptr));
58                         ptr++;
59                         len -= 8;
60                 }
61         }
62 }
63
64 static void
65 kgnilnd_dump_msg(int mask, kgn_msg_t *msg)
66 {
67         CDEBUG(mask, "0x%8.8x 0x%4.4x 0x%4.4x 0x%16.16llx"
68                 " 0x%16.16llx 0x%8.8x 0x%4.4x 0x%4.4x 0x%8.8x\n",
69                 msg->gnm_magic, msg->gnm_version,
70                 msg->gnm_type, msg->gnm_srcnid,
71                 msg->gnm_connstamp, msg->gnm_seq,
72                 msg->gnm_cksum, msg->gnm_payload_cksum,
73                 msg->gnm_payload_len);
74 }
75
76 void
77 kgnilnd_schedule_device(kgn_device_t *dev)
78 {
79         short         already_live = 0;
80
81         /* we'll only want to wake if the scheduler thread
82          * has come around and set ready to zero */
83         already_live = cmpxchg(&dev->gnd_ready, GNILND_DEV_IDLE, GNILND_DEV_IRQ);
84
85         if (!already_live)
86                 wake_up(&dev->gnd_waitq);
87 }
88
89 void kgnilnd_schedule_device_timer(cfs_timer_cb_arg_t data)
90 {
91         kgn_device_t *dev = cfs_from_timer(dev, data, gnd_map_timer);
92
93         kgnilnd_schedule_device(dev);
94 }
95
96 void kgnilnd_schedule_device_timer_rd(cfs_timer_cb_arg_t data)
97 {
98         kgn_device_t *dev = cfs_from_timer(dev, data, gnd_rdmaq_timer);
99
100         kgnilnd_schedule_device(dev);
101 }
102
103 void
104 kgnilnd_device_callback(__u32 devid, __u64 arg)
105 {
106         kgn_device_t *dev;
107         int           index = (int) arg;
108
109         if (index >= kgnilnd_data.kgn_ndevs) {
110                 /* use _EMERG instead of an LBUG to prevent LBUG'ing in
111                  * interrupt context. */
112                 LCONSOLE_EMERG("callback for unknown device %d->%d\n",
113                                 devid, index);
114                 return;
115         }
116
117         dev = &kgnilnd_data.kgn_devices[index];
118         /* just basic sanity */
119         if (dev->gnd_id == devid) {
120                 kgnilnd_schedule_device(dev);
121         } else {
122                 LCONSOLE_EMERG("callback for bad device %d devid %d\n",
123                                 dev->gnd_id, devid);
124         }
125 }
126
127 /* sched_intent values:
128  * < 0 : do not reschedule under any circumstances
129  * == 0: reschedule if someone marked him WANTS_SCHED
130  * > 0 : force a reschedule */
131 /* Return code 0 means it did not schedule the conn, 1
132  * means it successfully scheduled the conn.
133  */
134
135 int
136 kgnilnd_schedule_process_conn(kgn_conn_t *conn, int sched_intent)
137 {
138         int     conn_sched;
139
140         /* move back to IDLE but save previous state.
141          * if we see WANTS_SCHED, we'll call kgnilnd_schedule_conn and
142          * let the xchg there handle any racing callers to get it
143          * onto gnd_ready_conns */
144
145         conn_sched = xchg(&conn->gnc_scheduled, GNILND_CONN_IDLE);
146         LASSERTF(conn_sched == GNILND_CONN_WANTS_SCHED ||
147                  conn_sched == GNILND_CONN_PROCESS,
148                  "conn %p after process in bad state: %d\n",
149                  conn, conn_sched);
150
151         if (sched_intent >= 0) {
152                 if ((sched_intent > 0 || (conn_sched == GNILND_CONN_WANTS_SCHED))) {
153                         return kgnilnd_schedule_conn_refheld(conn, 1);
154                 }
155         }
156         return 0;
157 }
158
159 /* Return of 0 for conn not scheduled, 1 returned if conn was scheduled or marked
160  * as scheduled */
161
162 int
163 _kgnilnd_schedule_conn(kgn_conn_t *conn, const char *caller, int line, int refheld, int lock_held)
164 {
165         kgn_device_t        *dev = conn->gnc_device;
166         int                  sched;
167         int                  rc;
168
169         sched = xchg(&conn->gnc_scheduled, GNILND_CONN_WANTS_SCHED);
170         /* we only care about the last person who marked want_sched since they
171          * are most likely the culprit
172          */
173         memcpy(conn->gnc_sched_caller, caller, sizeof(conn->gnc_sched_caller));
174         conn->gnc_sched_line = line;
175         /* if we are IDLE, add to list - only one guy sees IDLE and "wins"
176          * the chance to put it onto gnd_ready_conns.
177          * otherwise, leave marked as WANTS_SCHED and the thread that "owns"
178          *  the conn in process_conns will take care of moving it back to
179          *  SCHED when it is done processing */
180
181         if (sched == GNILND_CONN_IDLE) {
182                 /* if the conn is already scheduled, we've already requested
183                  * the scheduler thread wakeup */
184                 if (!refheld) {
185                         /* Add a reference to the conn if we are not holding a reference
186                          * already from the exisiting scheduler. We now use the same
187                          * reference if we need to reschedule a conn while in a scheduler
188                          * thread.
189                          */
190                         kgnilnd_conn_addref(conn);
191                 }
192                 LASSERTF(list_empty(&conn->gnc_schedlist), "conn %p already sched state %d\n",
193                          conn, sched);
194
195                 CDEBUG(D_INFO, "scheduling conn 0x%p caller %s:%d\n", conn, caller, line);
196                 if (!lock_held)
197                         spin_lock(&dev->gnd_lock);
198                 list_add_tail(&conn->gnc_schedlist, &dev->gnd_ready_conns);
199                 if (!lock_held)
200                         spin_unlock(&dev->gnd_lock);
201                 set_mb(conn->gnc_last_sched_ask, jiffies);
202                 rc = 1;
203         } else {
204                 CDEBUG(D_INFO, "not scheduling conn 0x%p: %d caller %s:%d\n", conn, sched, caller, line);
205                 rc = 0;
206         }
207
208         /* make sure thread(s) going to process conns - but let it make
209          * separate decision from conn schedule */
210         if (!lock_held)
211                 kgnilnd_schedule_device(dev);
212         return rc;
213 }
214
215 int
216 _kgnilnd_schedule_delay_conn(kgn_conn_t *conn)
217 {
218         kgn_device_t    *dev = conn->gnc_device;
219         int rc = 0;
220         spin_lock(&dev->gnd_lock);
221         if (list_empty(&conn->gnc_delaylist)) {
222                 list_add_tail(&conn->gnc_delaylist, &dev->gnd_delay_conns);
223                 rc = 1;
224         }
225         spin_unlock(&dev->gnd_lock);
226
227         kgnilnd_schedule_device(dev);
228         return rc;
229 }
230
231 void
232 kgnilnd_schedule_dgram(kgn_device_t *dev)
233 {
234         int                  wake;
235
236         wake = xchg(&dev->gnd_dgram_ready, GNILND_DGRAM_SCHED);
237         if (wake != GNILND_DGRAM_SCHED)  {
238                 wake_up(&dev->gnd_dgram_waitq);
239         } else {
240                 CDEBUG(D_NETTRACE, "not waking: %d\n", wake);
241         }
242 }
243
244 void
245 kgnilnd_free_tx(kgn_tx_t *tx)
246 {
247         /* taken from kgnilnd_tx_add_state_locked */
248
249         LASSERTF((tx->tx_list_p == NULL &&
250                   tx->tx_list_state == GNILND_TX_ALLOCD) &&
251                 list_empty(&tx->tx_list),
252                 "tx %p with bad state %s (list_p %p) tx_list %s\n",
253                 tx, kgnilnd_tx_state2str(tx->tx_list_state), tx->tx_list_p,
254                 list_empty(&tx->tx_list) ? "empty" : "not empty");
255
256         atomic_dec(&kgnilnd_data.kgn_ntx);
257
258         /* we only allocate this if we need to */
259         if (tx->tx_phys != NULL) {
260                 kmem_cache_free(kgnilnd_data.kgn_tx_phys_cache, tx->tx_phys);
261                 CDEBUG(D_MALLOC, "slab-freed 'tx_phys': %lu at %p.\n",
262                        GNILND_MAX_IOV * sizeof(gni_mem_segment_t), tx->tx_phys);
263         }
264
265         /* Only free the buffer if we used it */
266         if (tx->tx_buffer_copy != NULL) {
267                 kgnilnd_vfree(tx->tx_buffer_copy, tx->tx_rdma_desc.length);
268                 tx->tx_buffer_copy = NULL;
269                 CDEBUG(D_MALLOC, "vfreed buffer2\n");
270         }
271 #if 0
272         KGNILND_POISON(tx, 0x5a, sizeof(kgn_tx_t));
273 #endif
274         CDEBUG(D_MALLOC, "slab-freed 'tx': %lu at %p.\n", sizeof(*tx), tx);
275         kmem_cache_free(kgnilnd_data.kgn_tx_cache, tx);
276 }
277
278 kgn_tx_t *
279 kgnilnd_alloc_tx (void)
280 {
281         kgn_tx_t        *tx = NULL;
282
283         if (CFS_FAIL_CHECK(CFS_FAIL_GNI_ALLOC_TX))
284                 return tx;
285
286         tx = kmem_cache_zalloc(kgnilnd_data.kgn_tx_cache, GFP_ATOMIC);
287         if (tx == NULL) {
288                 CERROR("failed to allocate tx\n");
289                 return NULL;
290         }
291         CDEBUG(D_MALLOC, "slab-alloced 'tx': %lu at %p.\n",
292                sizeof(*tx), tx);
293
294         /* setup everything here to minimize time under the lock */
295         tx->tx_buftype = GNILND_BUF_NONE;
296         tx->tx_msg.gnm_type = GNILND_MSG_NONE;
297         INIT_LIST_HEAD(&tx->tx_list);
298         INIT_LIST_HEAD(&tx->tx_map_list);
299         tx->tx_list_state = GNILND_TX_ALLOCD;
300
301         atomic_inc(&kgnilnd_data.kgn_ntx);
302
303         return tx;
304 }
305
306 /* csum_fold needs to be run on the return value before shipping over the wire */
307 #define _kgnilnd_cksum(seed, ptr, nob)  csum_partial(ptr, nob, seed)
308
309 /* we don't use offset as every one is passing a buffer reference that already
310  * includes the offset into the base address.
311  */
312 static inline __u16
313 kgnilnd_cksum(void *ptr, size_t nob)
314 {
315         __u16   sum;
316
317         sum = csum_fold(_kgnilnd_cksum(0, ptr, nob));
318
319         /* don't use magic 'no checksum' value */
320         if (sum == 0)
321                 sum = 1;
322
323         CDEBUG(D_INFO, "cksum 0x%x for ptr 0x%p sz %zu\n",
324                sum, ptr, nob);
325
326         return sum;
327 }
328
329 __u16
330 kgnilnd_cksum_kiov(unsigned int nkiov, struct bio_vec *kiov,
331                    unsigned int offset, unsigned int nob, int dump_blob)
332 {
333         __wsum             cksum = 0;
334         __wsum             tmpck;
335         __u16              retsum;
336         void              *addr;
337         unsigned int       fraglen;
338         int                i, odd;
339
340         LASSERT(nkiov > 0);
341         LASSERT(nob > 0);
342
343         CDEBUG(D_BUFFS, "calc cksum for kiov 0x%p nkiov %u offset %u nob %u, dump %d\n",
344                kiov, nkiov, offset, nob, dump_blob);
345
346         /* if loops changes, please change kgnilnd_setup_phys_buffer */
347
348         while (offset >= kiov->bv_len) {
349                 offset -= kiov->bv_len;
350                 nkiov--;
351                 kiov++;
352                 LASSERT(nkiov > 0);
353         }
354
355         /* ignore nob here, if nob < (bv_len - offset), kiov == 1 */
356         odd = (unsigned long) (kiov[0].bv_len - offset) & 1;
357
358         if ((odd || *kgnilnd_tunables.kgn_vmap_cksum) && nkiov > 1) {
359                 struct page **pages = kgnilnd_data.kgn_cksum_map_pages[get_cpu()];
360
361                 LASSERTF(pages != NULL, "NULL pages for cpu %d map_pages 0x%p\n",
362                          get_cpu(), kgnilnd_data.kgn_cksum_map_pages);
363
364                 CDEBUG(D_BUFFS, "odd %d len %u offset %u nob %u\n",
365                        odd, kiov[0].bv_len, offset, nob);
366
367                 for (i = 0; i < nkiov; i++) {
368                         pages[i] = kiov[i].bv_page;
369                 }
370
371                 addr = vmap(pages, nkiov, VM_MAP, PAGE_KERNEL);
372                 if (addr == NULL) {
373                         CNETERR("Couldn't vmap %d frags on %d bytes to avoid odd length fragment in cksum\n",
374                                 nkiov, nob);
375                         /* return zero to avoid killing tx - we'll just get warning on console
376                          * when remote end sees zero checksum */
377                         RETURN(0);
378                 }
379                 atomic_inc(&kgnilnd_data.kgn_nvmap_cksum);
380
381                 tmpck = _kgnilnd_cksum(0, ((void *) addr + kiov[0].bv_offset +
382                                            offset), nob);
383                 cksum = tmpck;
384
385                 if (dump_blob) {
386                         kgnilnd_dump_blob(D_BUFFS, "flat kiov RDMA payload",
387                                           (void *)addr + kiov[0].bv_offset +
388                                           offset, nob);
389                 }
390                 CDEBUG(D_BUFFS, "cksum 0x%x (+0x%x) for addr 0x%p+%u len %u offset %u\n",
391                        cksum, tmpck, addr, kiov[0].bv_offset, nob, offset);
392                 vunmap(addr);
393         } else {
394                 do {
395                         fraglen = min(kiov->bv_len - offset, nob);
396
397                         /* make dang sure we don't send a bogus checksum if somehow we get
398                          * an odd length fragment on anything but the last entry in a kiov  -
399                          * we know from kgnilnd_setup_rdma_buffer that we can't have non
400                          * PAGE_SIZE pages in the middle, so if nob < PAGE_SIZE, it is the last one */
401                         LASSERTF(!(fraglen&1) || (nob < PAGE_SIZE),
402                                  "odd fraglen %u on nkiov %d, nob %u bv_len %u offset %u kiov 0x%p\n",
403                                  fraglen, nkiov, nob, kiov->bv_len,
404                                  offset, kiov);
405
406                         addr = (void *)kmap(kiov->bv_page) + kiov->bv_offset +
407                                 offset;
408                         tmpck = _kgnilnd_cksum(cksum, addr, fraglen);
409
410                         CDEBUG(D_BUFFS,
411                                "cksum 0x%x (+0x%x) for page 0x%p+%u (0x%p) len %u offset %u\n",
412                                cksum, tmpck, kiov->bv_page, kiov->bv_offset,
413                                addr, fraglen, offset);
414
415                         cksum = tmpck;
416
417                         if (dump_blob)
418                                 kgnilnd_dump_blob(D_BUFFS, "kiov cksum", addr, fraglen);
419
420                         kunmap(kiov->bv_page);
421
422                         kiov++;
423                         nkiov--;
424                         nob -= fraglen;
425                         offset = 0;
426
427                         /* iov must not run out before end of data */
428                         LASSERTF(nob == 0 || nkiov > 0, "nob %u nkiov %u\n", nob, nkiov);
429
430                 } while (nob > 0);
431         }
432
433         retsum = csum_fold(cksum);
434
435         /* don't use magic 'no checksum' value */
436         if (retsum == 0)
437                 retsum = 1;
438
439         CDEBUG(D_BUFFS, "retsum 0x%x from cksum 0x%x\n", retsum, cksum);
440
441         return retsum;
442 }
443
444 void
445 kgnilnd_init_msg(kgn_msg_t *msg, int type, lnet_nid_t source)
446 {
447         msg->gnm_magic = GNILND_MSG_MAGIC;
448         msg->gnm_version = GNILND_MSG_VERSION;
449         msg->gnm_type = type;
450         msg->gnm_payload_len = 0;
451         msg->gnm_srcnid = source;
452         /* gnm_connstamp gets set when FMA is sent */
453         /* gnm_srcnid is set on creation via function argument
454          * The right interface/net and nid is passed in when the message
455          * is created.
456          */
457 }
458
459 kgn_tx_t *
460 kgnilnd_new_tx_msg(int type, lnet_nid_t source)
461 {
462         kgn_tx_t *tx = kgnilnd_alloc_tx();
463
464         if (tx != NULL) {
465                 kgnilnd_init_msg(&tx->tx_msg, type, source);
466         } else {
467                 CERROR("couldn't allocate new tx type %s!\n",
468                        kgnilnd_msgtype2str(type));
469         }
470
471         return tx;
472 }
473
474 static void
475 kgnilnd_nak_rdma(kgn_conn_t *conn, int rx_type, int error, __u64 cookie, lnet_nid_t source) {
476         kgn_tx_t        *tx;
477
478         int             nak_type;
479
480         switch (rx_type) {
481         case GNILND_MSG_GET_REQ:
482         case GNILND_MSG_GET_DONE:
483                 nak_type = GNILND_MSG_GET_NAK;
484                 break;
485         case GNILND_MSG_PUT_REQ:
486         case GNILND_MSG_PUT_ACK:
487         case GNILND_MSG_PUT_DONE:
488                 nak_type = GNILND_MSG_PUT_NAK;
489                 break;
490         case GNILND_MSG_PUT_REQ_REV:
491         case GNILND_MSG_PUT_DONE_REV:
492                 nak_type = GNILND_MSG_PUT_NAK_REV;
493                 break;
494         case GNILND_MSG_GET_REQ_REV:
495         case GNILND_MSG_GET_ACK_REV:
496         case GNILND_MSG_GET_DONE_REV:
497                 nak_type = GNILND_MSG_GET_NAK_REV;
498                 break;
499         default:
500                 CERROR("invalid msg type %s (%d)\n",
501                         kgnilnd_msgtype2str(rx_type), rx_type);
502                 LBUG();
503         }
504         /* only allow NAK on error and truncate to zero */
505         LASSERTF(error <= 0, "error %d conn 0x%p, cookie %llu\n",
506                  error, conn, cookie);
507
508         tx = kgnilnd_new_tx_msg(nak_type, source);
509         if (tx == NULL) {
510                 CNETERR("can't get TX to NAK RDMA to %s\n",
511                         libcfs_nid2str(conn->gnc_peer->gnp_nid));
512                 return;
513         }
514
515         tx->tx_msg.gnm_u.completion.gncm_retval = error;
516         tx->tx_msg.gnm_u.completion.gncm_cookie = cookie;
517         kgnilnd_queue_tx(conn, tx);
518 }
519
520 static int
521 kgnilnd_setup_immediate_buffer(kgn_tx_t *tx, unsigned int niov,
522                                struct bio_vec *kiov,
523                                unsigned int offset, unsigned int nob)
524 {
525         kgn_msg_t       *msg = &tx->tx_msg;
526         int              i;
527
528         /* To help save on MDDs for short messages, we'll vmap a kiov to allow
529          * gni_smsg_send to send that as the payload */
530
531         LASSERT(tx->tx_buftype == GNILND_BUF_NONE);
532
533         if (nob == 0) {
534                 tx->tx_buffer = NULL;
535         } else {
536
537                 if (niov && niov > (nob >> PAGE_SHIFT))
538                         niov = DIV_ROUND_UP(nob + offset + kiov->bv_offset,
539                                             PAGE_SIZE);
540
541                 LASSERTF(niov > 0 && niov < GNILND_MAX_IMMEDIATE/PAGE_SIZE,
542                         "bad niov %d msg %p kiov %p offset %d nob%d\n",
543                         niov, msg, kiov, offset, nob);
544
545                 while (offset >= kiov->bv_len) {
546                         offset -= kiov->bv_len;
547                         niov--;
548                         kiov++;
549                         LASSERT(niov > 0);
550                 }
551                 for (i = 0; i < niov; i++) {
552                         /* We can't have a bv_offset on anything but the first
553                          * entry, otherwise we'll have a hole at the end of the
554                          * mapping as we only map whole pages.
555                          * Also, if we have a bv_len < PAGE_SIZE but we need to
556                          * map more than bv_len, we will also have a whole at
557                          * the end of that page which isn't allowed
558                          */
559                         if ((kiov[i].bv_offset != 0 && i > 0) ||
560                             (kiov[i].bv_offset + kiov[i].bv_len != PAGE_SIZE &&
561                              i < niov - 1)) {
562                                 CNETERR("Can't make payload contiguous in I/O VM:page %d, offset %u, nob %u, bv_offset %u bv_len %u\n",
563                                        i, offset, nob, kiov->bv_offset,
564                                         kiov->bv_len);
565                                 RETURN(-EINVAL);
566                         }
567                         tx->tx_imm_pages[i] = kiov[i].bv_page;
568                 }
569
570                 /* hijack tx_phys for the later unmap */
571                 if (niov == 1) {
572                         /* tx->phyx being equal to NULL is the signal for unmap to discern between kmap and vmap */
573                         tx->tx_phys = NULL;
574                         tx->tx_buffer = (void *)kmap(tx->tx_imm_pages[0]) +
575                                 kiov[0].bv_offset + offset;
576                         atomic_inc(&kgnilnd_data.kgn_nkmap_short);
577                         GNIDBG_TX(D_NET, tx, "kmapped page for %d bytes for kiov 0x%p, buffer 0x%p",
578                                 nob, kiov, tx->tx_buffer);
579                 } else {
580                         tx->tx_phys = vmap(tx->tx_imm_pages, niov, VM_MAP, PAGE_KERNEL);
581                         if (tx->tx_phys == NULL) {
582                                 CNETERR("Couldn't vmap %d frags on %d bytes\n", niov, nob);
583                                 RETURN(-ENOMEM);
584
585                         }
586                         atomic_inc(&kgnilnd_data.kgn_nvmap_short);
587                         /* make sure we take into account the kiov offset as the
588                          * start of the buffer
589                          */
590                         tx->tx_buffer = (void *)tx->tx_phys + kiov[0].bv_offset
591                                 + offset;
592                         GNIDBG_TX(D_NET, tx,
593                                   "mapped %d pages for %d bytes from kiov 0x%p to 0x%p, buffer 0x%p",
594                                   niov, nob, kiov, tx->tx_phys, tx->tx_buffer);
595                 }
596                 tx->tx_buftype = GNILND_BUF_IMMEDIATE_KIOV;
597                 tx->tx_nob = nob;
598
599         }
600
601         /* checksum payload early - it shouldn't be changing after lnd_send */
602         if (*kgnilnd_tunables.kgn_checksum >= 2) {
603                 msg->gnm_payload_cksum = kgnilnd_cksum(tx->tx_buffer, nob);
604                 if (CFS_FAIL_CHECK(CFS_FAIL_GNI_SMSG_CKSUM2)) {
605                         msg->gnm_payload_cksum += 0xe00e;
606                 }
607                 if (*kgnilnd_tunables.kgn_checksum_dump > 1) {
608                         kgnilnd_dump_blob(D_BUFFS, "payload checksum",
609                                           tx->tx_buffer, nob);
610                 }
611         } else {
612                 msg->gnm_payload_cksum = 0;
613         }
614
615         return 0;
616 }
617
618 int
619 kgnilnd_setup_phys_buffer(kgn_tx_t *tx, int nkiov, struct bio_vec *kiov,
620                           unsigned int offset, unsigned int nob)
621 {
622         gni_mem_segment_t *phys;
623         int             rc = 0;
624         unsigned int    fraglen;
625
626         GNIDBG_TX(D_NET, tx, "niov %d kiov 0x%p offset %u nob %u", nkiov, kiov, offset, nob);
627
628         LASSERT(nob > 0);
629         LASSERT(nkiov > 0);
630         LASSERT(tx->tx_buftype == GNILND_BUF_NONE);
631
632         /* only allocate this if we are going to use it */
633         tx->tx_phys = kmem_cache_alloc(kgnilnd_data.kgn_tx_phys_cache,
634                                               GFP_ATOMIC);
635         if (tx->tx_phys == NULL) {
636                 CERROR("failed to allocate tx_phys\n");
637                 rc = -ENOMEM;
638                 GOTO(error, rc);
639         }
640
641         CDEBUG(D_MALLOC, "slab-alloced 'tx->tx_phys': %lu at %p.\n",
642                GNILND_MAX_IOV * sizeof(gni_mem_segment_t), tx->tx_phys);
643
644         /* if loops changes, please change kgnilnd_cksum_kiov
645          *   and kgnilnd_setup_immediate_buffer */
646
647         while (offset >= kiov->bv_len) {
648                 offset -= kiov->bv_len;
649                 nkiov--;
650                 kiov++;
651                 LASSERT(nkiov > 0);
652         }
653
654         /* at this point, kiov points to the first page that we'll actually map
655          * now that we've seeked into the koiv for offset and dropped any
656          * leading pages that fall entirely within the offset */
657         tx->tx_buftype = GNILND_BUF_PHYS_UNMAPPED;
658         tx->tx_nob = nob;
659
660         /* bv_offset is start of 'valid' buffer, so index offset past that */
661         tx->tx_buffer = (void *)((unsigned long)(kiov->bv_offset + offset));
662         phys = tx->tx_phys;
663
664         CDEBUG(D_NET, "tx 0x%p buffer 0x%p map start kiov 0x%p+%u niov %d offset %u\n",
665                tx, tx->tx_buffer, kiov, kiov->bv_offset, nkiov, offset);
666
667         do {
668                 fraglen = min(kiov->bv_len - offset, nob);
669
670                 /* We can't have a bv_offset on anything but the first entry,
671                  * otherwise we'll have a hole at the end of the mapping as we
672                  * only map whole pages.  Only the first page is allowed to
673                  * have an offset - we'll add that into tx->tx_buffer and that
674                  * will get used when we map in the segments (see
675                  * kgnilnd_map_buffer).  Also, if we have a bv_len < PAGE_SIZE
676                  * but we need to map more than bv_len, we will also have a
677                  * whole at the end of that page which isn't allowed
678                  */
679                 if ((phys != tx->tx_phys) &&
680                     ((kiov->bv_offset != 0) ||
681                      ((kiov->bv_len < PAGE_SIZE) && (nob > kiov->bv_len)))) {
682                         CERROR("Can't make payload contiguous in I/O VM:page %d, offset %u, nob %u, bv_offset %u bv_len %u\n",
683                                (int)(phys - tx->tx_phys),
684                                offset, nob, kiov->bv_offset, kiov->bv_len);
685                         rc = -EINVAL;
686                         GOTO(error, rc);
687                 }
688
689                 if ((phys - tx->tx_phys) == GNILND_MAX_IOV) {
690                         CERROR ("payload too big (%d)\n", (int)(phys - tx->tx_phys));
691                         rc = -EMSGSIZE;
692                         GOTO(error, rc);
693                 }
694
695                 if (CFS_FAIL_CHECK(CFS_FAIL_GNI_PHYS_SETUP)) {
696                         rc = -EINVAL;
697                         GOTO(error, rc);
698                 }
699
700                 CDEBUG(D_BUFFS,
701                        "page 0x%p bv_offset %u bv_len %u nob %u nkiov %u offset %u\n",
702                        kiov->bv_page, kiov->bv_offset, kiov->bv_len, nob, nkiov,
703                        offset);
704
705                 phys->address = page_to_phys(kiov->bv_page);
706                 phys++;
707                 kiov++;
708                 nkiov--;
709                 nob -= fraglen;
710                 offset = 0;
711
712                 /* iov must not run out before end of data */
713                 LASSERTF(nob == 0 || nkiov > 0, "nob %u nkiov %u\n", nob, nkiov);
714
715         } while (nob > 0);
716
717         tx->tx_phys_npages = phys - tx->tx_phys;
718
719         return 0;
720
721 error:
722         if (tx->tx_phys != NULL) {
723                 kmem_cache_free(kgnilnd_data.kgn_tx_phys_cache, tx->tx_phys);
724                 CDEBUG(D_MALLOC, "slab-freed 'tx_phys': %lu at %p.\n",
725                        sizeof(*tx->tx_phys), tx->tx_phys);
726                 tx->tx_phys = NULL;
727         }
728         return rc;
729 }
730
731 static inline int
732 kgnilnd_setup_rdma_buffer(kgn_tx_t *tx, unsigned int niov,
733                           struct bio_vec *kiov,
734                           unsigned int offset, unsigned int nob)
735 {
736         return kgnilnd_setup_phys_buffer(tx, niov, kiov, offset, nob);
737 }
738
739 /* kgnilnd_parse_lnet_rdma()
740  * lntmsg - message passed in from lnet.
741  * niov, kiov, offset - see lnd_t in lib-types.h for descriptions.
742  * nob - actual number of bytes to in this message.
743  * put_len - It is possible for PUTs to have a different length than the
744  *           length stored in lntmsg->msg_len since LNET can adjust this
745  *           length based on it's buffer size and offset.
746  *           lnet_try_match_md() sets the mlength that we use to do the RDMA
747  *           transfer.
748  */
749 static void
750 kgnilnd_parse_lnet_rdma(struct lnet_msg *lntmsg, unsigned int *niov,
751                         unsigned int *offset, unsigned int *nob,
752                         struct bio_vec **kiov, int put_len)
753 {
754         /* GETs are weird, see kgnilnd_send */
755         if (lntmsg->msg_type == LNET_MSG_GET) {
756                 if ((lntmsg->msg_md->md_options & LNET_MD_KIOV) == 0) {
757                         *kiov = NULL;
758                 } else {
759                         *kiov = lntmsg->msg_md->md_kiov;
760                 }
761                 *niov = lntmsg->msg_md->md_niov;
762                 *nob = lntmsg->msg_md->md_length;
763                 *offset = 0;
764         } else {
765                 *kiov = lntmsg->msg_kiov;
766                 *niov = lntmsg->msg_niov;
767                 *nob = put_len;
768                 *offset = lntmsg->msg_offset;
769         }
770 }
771
772 static inline void
773 kgnilnd_compute_rdma_cksum(kgn_tx_t *tx, int put_len)
774 {
775         unsigned int niov, offset, nob;
776         struct bio_vec *kiov;
777         struct lnet_msg *lntmsg = tx->tx_lntmsg[0];
778         int dump_cksum = (*kgnilnd_tunables.kgn_checksum_dump > 1);
779
780         GNITX_ASSERTF(tx, ((tx->tx_msg.gnm_type == GNILND_MSG_PUT_DONE) ||
781                            (tx->tx_msg.gnm_type == GNILND_MSG_GET_DONE) ||
782                            (tx->tx_msg.gnm_type == GNILND_MSG_PUT_DONE_REV) ||
783                            (tx->tx_msg.gnm_type == GNILND_MSG_GET_DONE_REV) ||
784                            (tx->tx_msg.gnm_type == GNILND_MSG_GET_ACK_REV) ||
785                            (tx->tx_msg.gnm_type == GNILND_MSG_PUT_REQ_REV)),
786                       "bad type %s", kgnilnd_msgtype2str(tx->tx_msg.gnm_type));
787
788         if ((tx->tx_msg.gnm_type == GNILND_MSG_PUT_DONE_REV) ||
789             (tx->tx_msg.gnm_type == GNILND_MSG_GET_DONE_REV)) {
790                 tx->tx_msg.gnm_payload_cksum = 0;
791                 return;
792         }
793         if (*kgnilnd_tunables.kgn_checksum < 3) {
794                 tx->tx_msg.gnm_payload_cksum = 0;
795                 return;
796         }
797
798         GNITX_ASSERTF(tx, lntmsg, "no LNet message!", NULL);
799
800         kgnilnd_parse_lnet_rdma(lntmsg, &niov, &offset, &nob, &kiov,
801                                 put_len);
802
803         if (kiov != NULL) {
804                 tx->tx_msg.gnm_payload_cksum = kgnilnd_cksum_kiov(niov, kiov, offset, nob, dump_cksum);
805         } else {
806                 tx->tx_msg.gnm_payload_cksum = kgnilnd_cksum(tx->tx_buffer, nob);
807                 if (dump_cksum) {
808                         kgnilnd_dump_blob(D_BUFFS, "peer RDMA payload", tx->tx_buffer, nob);
809                 }
810         }
811
812         if (CFS_FAIL_CHECK(CFS_FAIL_GNI_SMSG_CKSUM3)) {
813                 tx->tx_msg.gnm_payload_cksum += 0xd00d;
814         }
815 }
816
817 /* kgnilnd_verify_rdma_cksum()
818  * tx - PUT_DONE/GET_DONE matched tx.
819  * rx_cksum - received checksum to compare against.
820  * put_len - see kgnilnd_parse_lnet_rdma comments.
821  */
822 static inline int
823 kgnilnd_verify_rdma_cksum(kgn_tx_t *tx, __u16 rx_cksum, int put_len)
824 {
825         int              rc = 0;
826         __u16            cksum;
827         unsigned int     niov, offset, nob;
828         struct bio_vec  *kiov;
829         struct lnet_msg *lntmsg = tx->tx_lntmsg[0];
830         int dump_on_err = *kgnilnd_tunables.kgn_checksum_dump;
831
832         /* we can only match certain requests */
833         GNITX_ASSERTF(tx, ((tx->tx_msg.gnm_type == GNILND_MSG_GET_REQ) ||
834                            (tx->tx_msg.gnm_type == GNILND_MSG_PUT_ACK) ||
835                            (tx->tx_msg.gnm_type == GNILND_MSG_PUT_REQ_REV) ||
836                            (tx->tx_msg.gnm_type == GNILND_MSG_GET_ACK_REV) ||
837                            (tx->tx_msg.gnm_type == GNILND_MSG_GET_DONE_REV) ||
838                            (tx->tx_msg.gnm_type == GNILND_MSG_PUT_DONE_REV)),
839                       "bad type %s", kgnilnd_msgtype2str(tx->tx_msg.gnm_type));
840
841         if ((tx->tx_msg.gnm_type == GNILND_MSG_PUT_REQ_REV) ||
842             (tx->tx_msg.gnm_type == GNILND_MSG_GET_ACK_REV)) {
843                 return 0;
844         }
845
846         if (rx_cksum == 0)  {
847                 if (*kgnilnd_tunables.kgn_checksum >= 3) {
848                         GNIDBG_MSG(D_WARNING, &tx->tx_msg,
849                                    "no RDMA payload checksum when enabled");
850                 }
851                 return 0;
852         }
853
854         GNITX_ASSERTF(tx, lntmsg, "no LNet message!", NULL);
855
856         kgnilnd_parse_lnet_rdma(lntmsg, &niov, &offset, &nob, &kiov, put_len);
857
858         if (kiov != NULL) {
859                 cksum = kgnilnd_cksum_kiov(niov, kiov, offset, nob, 0);
860         } else {
861                 cksum = kgnilnd_cksum(tx->tx_buffer, nob);
862         }
863
864         if (cksum != rx_cksum) {
865                 GNIDBG_MSG(D_NETERROR, &tx->tx_msg,
866                            "Bad RDMA payload checksum (%x expected %x); "
867                            "kiov 0x%p niov %d nob %u offset %u",
868                             cksum, rx_cksum, kiov, niov, nob, offset);
869                 switch (dump_on_err) {
870                 case 2:
871                         if (kiov != NULL) {
872                                 kgnilnd_cksum_kiov(niov, kiov, offset, nob, 1);
873                         } else {
874                                 kgnilnd_dump_blob(D_BUFFS, "RDMA payload",
875                                                   tx->tx_buffer, nob);
876                         }
877                         /* fallthrough */
878                 case 1:
879                         libcfs_debug_dumplog();
880                         break;
881                 default:
882                         break;
883                 }
884                 rc = -ENOKEY;
885                 /* kgnilnd_check_fma_rx will close conn, kill tx with error */
886         }
887         return rc;
888 }
889
890 void
891 kgnilnd_mem_add_map_list(kgn_device_t *dev, kgn_tx_t *tx)
892 {
893         int     bytes;
894
895         GNITX_ASSERTF(tx, list_empty(&tx->tx_map_list),
896                 "already mapped!", NULL);
897
898         spin_lock(&dev->gnd_map_lock);
899         switch (tx->tx_buftype) {
900         default:
901                 GNIDBG_TX(D_EMERG, tx,
902                         "SOFTWARE BUG: invalid mapping %d", tx->tx_buftype);
903                 spin_unlock(&dev->gnd_map_lock);
904                 LBUG();
905                 break;
906
907         case GNILND_BUF_PHYS_MAPPED:
908                 bytes = tx->tx_phys_npages * PAGE_SIZE;
909                 dev->gnd_map_nphys++;
910                 dev->gnd_map_physnop += tx->tx_phys_npages;
911                 break;
912         }
913
914         if (tx->tx_msg.gnm_type == GNILND_MSG_PUT_ACK ||
915             tx->tx_msg.gnm_type == GNILND_MSG_GET_REQ) {
916                 atomic64_add(bytes, &dev->gnd_rdmaq_bytes_out);
917                 GNIDBG_TX(D_NETTRACE, tx, "rdma ++ %d to %lld",
918                           bytes, atomic64_read(&dev->gnd_rdmaq_bytes_out));
919         }
920
921         atomic_inc(&dev->gnd_n_mdd);
922         atomic64_add(bytes, &dev->gnd_nbytes_map);
923
924         /* clear retrans to prevent any SMSG goofiness as that code uses the same counter */
925         tx->tx_retrans = 0;
926
927         /* we only get here in the valid cases */
928         list_add_tail(&tx->tx_map_list, &dev->gnd_map_list);
929         dev->gnd_map_version++;
930         spin_unlock(&dev->gnd_map_lock);
931 }
932
933 void
934 kgnilnd_mem_del_map_list(kgn_device_t *dev, kgn_tx_t *tx)
935 {
936         int     bytes;
937
938         GNITX_ASSERTF(tx, !list_empty(&tx->tx_map_list),
939                 "not mapped!", NULL);
940         spin_lock(&dev->gnd_map_lock);
941
942         switch (tx->tx_buftype) {
943         default:
944                 GNIDBG_TX(D_EMERG, tx,
945                         "SOFTWARE BUG: invalid mapping %d", tx->tx_buftype);
946                 spin_unlock(&dev->gnd_map_lock);
947                 LBUG();
948                 break;
949
950         case GNILND_BUF_PHYS_UNMAPPED:
951                 bytes = tx->tx_phys_npages * PAGE_SIZE;
952                 dev->gnd_map_nphys--;
953                 dev->gnd_map_physnop -= tx->tx_phys_npages;
954                 break;
955         }
956
957         if (tx->tx_msg.gnm_type == GNILND_MSG_PUT_ACK ||
958             tx->tx_msg.gnm_type == GNILND_MSG_GET_REQ) {
959                 atomic64_sub(bytes, &dev->gnd_rdmaq_bytes_out);
960                 LASSERTF(atomic64_read(&dev->gnd_rdmaq_bytes_out) >= 0,
961                          "bytes_out negative! %lld\n",
962                          (s64)atomic64_read(&dev->gnd_rdmaq_bytes_out));
963                 GNIDBG_TX(D_NETTRACE, tx, "rdma -- %d to %lld",
964                           bytes, (s64)atomic64_read(&dev->gnd_rdmaq_bytes_out));
965         }
966
967         atomic_dec(&dev->gnd_n_mdd);
968         atomic64_sub(bytes, &dev->gnd_nbytes_map);
969
970         /* we only get here in the valid cases */
971         list_del_init(&tx->tx_map_list);
972         dev->gnd_map_version++;
973         spin_unlock(&dev->gnd_map_lock);
974 }
975
976 int
977 kgnilnd_map_buffer(kgn_tx_t *tx)
978 {
979         kgn_conn_t       *conn = tx->tx_conn;
980         kgn_device_t     *dev = conn->gnc_device;
981         __u32             flags = GNI_MEM_READWRITE;
982         gni_return_t      rrc;
983
984         /* The kgnilnd_mem_register(_segments) Gemini Driver functions can
985          * be called concurrently as there are internal locks that protect
986          * any data structures or HW resources. We just need to ensure
987          * that our concurrency doesn't result in the kgn_device_t
988          * getting nuked while we are in here */
989
990         LASSERTF(conn != NULL, "tx %p with NULL conn, someone forgot"
991                 " to set tx_conn before calling %s\n", tx, __FUNCTION__);
992
993         if (unlikely(CFS_FAIL_CHECK(CFS_FAIL_GNI_MAP_TX)))
994                 RETURN(-ENOMEM);
995
996         if (*kgnilnd_tunables.kgn_bte_relaxed_ordering) {
997                 flags |= GNI_MEM_RELAXED_PI_ORDERING;
998         }
999
1000         switch (tx->tx_buftype) {
1001         default:
1002                 LBUG();
1003
1004         case GNILND_BUF_NONE:
1005         case GNILND_BUF_IMMEDIATE:
1006         case GNILND_BUF_IMMEDIATE_KIOV:
1007         case GNILND_BUF_PHYS_MAPPED:
1008                 return 0;
1009
1010         case GNILND_BUF_PHYS_UNMAPPED:
1011                 GNITX_ASSERTF(tx, tx->tx_phys != NULL, "physical buffer not there!", NULL);
1012                 rrc = kgnilnd_mem_register_segments(dev->gnd_handle,
1013                         tx->tx_phys, tx->tx_phys_npages, NULL,
1014                         GNI_MEM_PHYS_SEGMENTS | flags,
1015                         &tx->tx_map_key);
1016                 /* could race with other uses of the map counts, but this is ok
1017                  * - this needs to turn into a non-fatal error soon to allow
1018                  *  GART resource, etc starvation handling */
1019                 if (rrc != GNI_RC_SUCCESS) {
1020                         GNIDBG_TX(D_NET, tx,
1021                                   "Can't map %d pages: dev %d phys %u pp %u",
1022                                 tx->tx_phys_npages, dev->gnd_id,
1023                                 dev->gnd_map_nphys, dev->gnd_map_physnop);
1024                         RETURN(rrc == GNI_RC_ERROR_RESOURCE ? -ENOMEM : -EINVAL);
1025                 }
1026
1027                 tx->tx_buftype = GNILND_BUF_PHYS_MAPPED;
1028                 kgnilnd_mem_add_map_list(dev, tx);
1029                 return 0;
1030         }
1031 }
1032
1033 void
1034 kgnilnd_add_purgatory_tx(kgn_tx_t *tx)
1035 {
1036         kgn_conn_t              *conn = tx->tx_conn;
1037         kgn_mdd_purgatory_t     *gmp;
1038
1039         LIBCFS_ALLOC(gmp, sizeof(*gmp));
1040         LASSERTF(gmp != NULL, "couldn't allocate MDD purgatory member;"
1041                 " asserting to avoid data corruption\n");
1042         if (tx->tx_buffer_copy)
1043                 gmp->gmp_map_key = tx->tx_buffer_copy_map_key;
1044         else
1045                 gmp->gmp_map_key = tx->tx_map_key;
1046
1047         atomic_inc(&conn->gnc_device->gnd_n_mdd_held);
1048
1049         /* ensure that we don't have a blank purgatory - indicating the
1050          * conn is not already on purgatory lists - we'd never recover these
1051          * MDD if that were the case */
1052         GNITX_ASSERTF(tx, conn->gnc_in_purgatory,
1053                 "conn 0x%p->%s with NULL purgatory",
1054                 conn, libcfs_nid2str(conn->gnc_peer->gnp_nid));
1055
1056         /* link 'er up! - only place we really need to lock for
1057          * concurrent access */
1058         spin_lock(&conn->gnc_list_lock);
1059         list_add_tail(&gmp->gmp_list, &conn->gnc_mdd_list);
1060         spin_unlock(&conn->gnc_list_lock);
1061 }
1062
1063 void
1064 kgnilnd_unmap_buffer(kgn_tx_t *tx, int error)
1065 {
1066         kgn_device_t     *dev;
1067         gni_return_t      rrc;
1068         int               hold_timeout = 0;
1069
1070         /* code below relies on +1 relationship ... */
1071         BUILD_BUG_ON(GNILND_BUF_PHYS_MAPPED !=
1072                      (GNILND_BUF_PHYS_UNMAPPED + 1));
1073
1074         switch (tx->tx_buftype) {
1075         default:
1076                 LBUG();
1077
1078         case GNILND_BUF_NONE:
1079         case GNILND_BUF_IMMEDIATE:
1080         case GNILND_BUF_PHYS_UNMAPPED:
1081                 break;
1082         case GNILND_BUF_IMMEDIATE_KIOV:
1083                 if (tx->tx_phys != NULL) {
1084                         vunmap(tx->tx_phys);
1085                 } else if (tx->tx_phys == NULL && tx->tx_buffer != NULL) {
1086                         kunmap(tx->tx_imm_pages[0]);
1087                 }
1088                 /* clear to prevent kgnilnd_free_tx from thinking
1089                  * this is a RDMA descriptor */
1090                 tx->tx_phys = NULL;
1091                 break;
1092
1093         case GNILND_BUF_PHYS_MAPPED:
1094                 LASSERT(tx->tx_conn != NULL);
1095
1096                 dev = tx->tx_conn->gnc_device;
1097
1098                 /* only want to hold if we are closing conn without
1099                  * verified peer notification  - the theory is that
1100                  * a TX error can be communicated in all other cases */
1101                 if (tx->tx_conn->gnc_state != GNILND_CONN_ESTABLISHED &&
1102                     error != -GNILND_NOPURG &&
1103                     kgnilnd_check_purgatory_conn(tx->tx_conn)) {
1104                         kgnilnd_add_purgatory_tx(tx);
1105
1106                         /* The timeout we give to kgni is a deadman stop only.
1107                          *  we are setting high to ensure we don't have the kgni timer
1108                          *  fire before ours fires _and_ is handled */
1109                         hold_timeout = GNILND_TIMEOUT2DEADMAN;
1110
1111                         GNIDBG_TX(D_NET, tx,
1112                                  "dev %p delaying MDD release for %dms key %#llx.%#llx",
1113                                  tx->tx_conn->gnc_device, hold_timeout,
1114                                  tx->tx_map_key.qword1, tx->tx_map_key.qword2);
1115                 }
1116                 if (tx->tx_buffer_copy != NULL) {
1117                         rrc = kgnilnd_mem_deregister(dev->gnd_handle, &tx->tx_buffer_copy_map_key, hold_timeout);
1118                         LASSERTF(rrc == GNI_RC_SUCCESS, "rrc %d\n", rrc);
1119                         rrc = kgnilnd_mem_deregister(dev->gnd_handle, &tx->tx_map_key, 0);
1120                         LASSERTF(rrc == GNI_RC_SUCCESS, "rrc %d\n", rrc);
1121                 } else {
1122                         rrc = kgnilnd_mem_deregister(dev->gnd_handle, &tx->tx_map_key, hold_timeout);
1123                         LASSERTF(rrc == GNI_RC_SUCCESS, "rrc %d\n", rrc);
1124                 }
1125
1126                 tx->tx_buftype--;
1127                 kgnilnd_mem_del_map_list(dev, tx);
1128                 break;
1129         }
1130 }
1131
1132 void
1133 kgnilnd_tx_done(kgn_tx_t *tx, int completion)
1134 {
1135         struct lnet_msg      *lntmsg0, *lntmsg1;
1136         int             status0, status1;
1137         struct lnet_ni       *ni = NULL;
1138         kgn_conn_t      *conn = tx->tx_conn;
1139
1140         LASSERT(!in_interrupt());
1141
1142         lntmsg0 = tx->tx_lntmsg[0]; tx->tx_lntmsg[0] = NULL;
1143         lntmsg1 = tx->tx_lntmsg[1]; tx->tx_lntmsg[1] = NULL;
1144
1145         if (completion &&
1146             !(tx->tx_state & GNILND_TX_QUIET_ERROR) &&
1147             !kgnilnd_conn_clean_errno(completion)) {
1148                 GNIDBG_TOMSG(D_NETERROR, &tx->tx_msg,
1149                        "error %d on tx 0x%p->%s id %u/%d state %s age %ds",
1150                        completion, tx, conn ?
1151                        libcfs_nid2str(conn->gnc_peer->gnp_nid) : "<?>",
1152                        tx->tx_id.txe_smsg_id, tx->tx_id.txe_idx,
1153                        kgnilnd_tx_state2str(tx->tx_list_state),
1154                        cfs_duration_sec((unsigned long)jiffies - tx->tx_qtime));
1155         }
1156
1157         /* The error codes determine if we hold onto the MDD */
1158         kgnilnd_unmap_buffer(tx, completion);
1159
1160         /* we have to deliver a reply on lntmsg[1] for the GET, so make sure
1161          * we play nice with the error codes to avoid delivering a failed
1162          * REQUEST and then a REPLY event as well */
1163
1164         /* return -EIO to lnet - it is the magic value for failed sends */
1165         if (tx->tx_msg.gnm_type == GNILND_MSG_GET_REQ) {
1166                 status0 = 0;
1167                 status1 = completion;
1168         } else {
1169                 status0 = status1 = completion;
1170         }
1171
1172         tx->tx_buftype = GNILND_BUF_NONE;
1173         tx->tx_msg.gnm_type = GNILND_MSG_NONE;
1174
1175         /* lnet_finalize doesn't do anything with the *ni, so ok for us to
1176          * set NULL when we are a tx without a conn */
1177         if (conn != NULL) {
1178                 ni = conn->gnc_peer->gnp_net->gnn_ni;
1179
1180                 spin_lock(&conn->gnc_tx_lock);
1181
1182                 LASSERTF(test_and_clear_bit(tx->tx_id.txe_idx,
1183                         (volatile unsigned long *)&conn->gnc_tx_bits),
1184                         "conn %p tx %p bit %d already cleared\n",
1185                         conn, tx, tx->tx_id.txe_idx);
1186
1187                 LASSERTF(conn->gnc_tx_ref_table[tx->tx_id.txe_idx] != NULL,
1188                          "msg_id %d already NULL\n", tx->tx_id.txe_idx);
1189
1190                 conn->gnc_tx_ref_table[tx->tx_id.txe_idx] = NULL;
1191                 spin_unlock(&conn->gnc_tx_lock);
1192         }
1193
1194         kgnilnd_free_tx(tx);
1195
1196         /* finalize AFTER freeing lnet msgs */
1197
1198         /* warning - we should hold no locks here - calling lnet_finalize
1199          * could free up lnet credits, resulting in a call chain back into
1200          * the LND via kgnilnd_send and friends */
1201
1202         lnet_finalize(lntmsg0, status0);
1203
1204         if (lntmsg1 != NULL) {
1205                 lnet_finalize(lntmsg1, status1);
1206         }
1207 }
1208
1209 void
1210 kgnilnd_txlist_done(struct list_head *txlist, int error)
1211 {
1212         kgn_tx_t        *tx, *txn;
1213         int              err_printed = 0;
1214
1215         if (list_empty(txlist))
1216                 return;
1217
1218         list_for_each_entry_safe(tx, txn, txlist, tx_list) {
1219                 /* only print the first error */
1220                 if (err_printed)
1221                         tx->tx_state |= GNILND_TX_QUIET_ERROR;
1222                 list_del_init(&tx->tx_list);
1223                 kgnilnd_tx_done(tx, error);
1224                 err_printed++;
1225         }
1226 }
1227 int
1228 kgnilnd_set_tx_id(kgn_tx_t *tx, kgn_conn_t *conn)
1229 {
1230         int     id;
1231
1232         spin_lock(&conn->gnc_tx_lock);
1233
1234         /* ID zero is NOT ALLOWED!!! */
1235
1236 search_again:
1237         id = find_next_zero_bit((unsigned long *)&conn->gnc_tx_bits,
1238                                  GNILND_MAX_MSG_ID, conn->gnc_next_tx);
1239         if (id == GNILND_MAX_MSG_ID) {
1240                 if (conn->gnc_next_tx != 1) {
1241                         /* we only searched from next_tx to end and didn't find
1242                          * one, so search again from start */
1243                         conn->gnc_next_tx = 1;
1244                         goto search_again;
1245                 }
1246                 /* couldn't find one! */
1247                 spin_unlock(&conn->gnc_tx_lock);
1248                 return -E2BIG;
1249         }
1250
1251         /* bump next_tx to prevent immediate reuse */
1252         conn->gnc_next_tx = id + 1;
1253
1254         set_bit(id, (volatile unsigned long *)&conn->gnc_tx_bits);
1255         LASSERTF(conn->gnc_tx_ref_table[id] == NULL,
1256                  "tx 0x%p already at id %d\n",
1257                  conn->gnc_tx_ref_table[id], id);
1258
1259         /* delay these until we have a valid ID - prevents bad clear of the bit
1260          * in kgnilnd_tx_done */
1261         tx->tx_conn = conn;
1262         tx->tx_id.txe_cqid = conn->gnc_cqid;
1263
1264         tx->tx_id.txe_idx = id;
1265         conn->gnc_tx_ref_table[id] = tx;
1266
1267         /* Using jiffies to help differentiate against TX reuse - with
1268          * the usual minimum of a 250HZ clock, we wrap jiffies on the same TX
1269          * if we are sending to the same node faster than 256000/sec.
1270          * To help guard against this, we OR in the tx_seq - that is 32 bits */
1271
1272         tx->tx_id.txe_chips = (__u32)(jiffies | atomic_read(&conn->gnc_tx_seq));
1273
1274         GNIDBG_TX(D_NET, tx, "set cookie/id/bits", NULL);
1275
1276         spin_unlock(&conn->gnc_tx_lock);
1277         return 0;
1278 }
1279
1280 static inline void
1281 kgnilnd_tx_log_retrans(kgn_conn_t *conn, kgn_tx_t *tx)
1282 {
1283         int             log_retrans;
1284
1285         log_retrans = ((tx->tx_retrans < 25) || ((tx->tx_retrans % 25) == 0));
1286
1287         /* we don't care about TX timeout - it could be that the network is slower
1288          * or throttled. We'll keep retranmitting - so if the network is so slow
1289          * that we fill up our mailbox, we'll keep trying to resend that msg
1290          * until we exceed the max_retrans _or_ gnc_last_rx expires, indicating
1291          * that he hasn't send us any traffic in return */
1292
1293         /* some reasonable throttling of the debug message */
1294         if (log_retrans) {
1295                 unsigned long now = jiffies;
1296                 /* XXX Nic: Mystical TX debug here... */
1297                 /* We expect retransmissions so only log when D_NET is enabled */
1298                 GNIDBG_SMSG_CREDS(D_NET, conn);
1299                 GNIDBG_TOMSG(D_NET, &tx->tx_msg,
1300                         "NOT_DONE on conn 0x%p->%s id %x retrans %d wait %dus"
1301                         " last_msg %uus/%uus last_cq %uus/%uus",
1302                         conn, libcfs_nid2str(conn->gnc_peer->gnp_nid),
1303                         tx->tx_id, tx->tx_retrans,
1304                         jiffies_to_usecs(now - tx->tx_cred_wait),
1305                         jiffies_to_usecs(now - conn->gnc_last_tx),
1306                         jiffies_to_usecs(now - conn->gnc_last_rx),
1307                         jiffies_to_usecs(now - conn->gnc_last_tx_cq),
1308                         jiffies_to_usecs(now - conn->gnc_last_rx_cq));
1309         }
1310 }
1311
1312 /* caller must be holding gnd_cq_mutex and not unlock it afterwards, as we need to drop it
1313  * to avoid bad ordering with state_lock */
1314
1315 static inline int
1316 kgnilnd_sendmsg_nolock(kgn_tx_t *tx, void *immediate, unsigned int immediatenob,
1317                 spinlock_t *state_lock, kgn_tx_list_state_t state)
1318 {
1319         kgn_conn_t      *conn = tx->tx_conn;
1320         kgn_msg_t       *msg = &tx->tx_msg;
1321         gni_return_t     rrc;
1322         unsigned long    newest_last_rx, timeout;
1323         unsigned long    now;
1324
1325         LASSERTF((msg->gnm_type == GNILND_MSG_IMMEDIATE) ?
1326                 immediatenob <= *kgnilnd_tunables.kgn_max_immediate :
1327                 immediatenob == 0,
1328                 "msg 0x%p type %d wrong payload size %d\n",
1329                 msg, msg->gnm_type, immediatenob);
1330
1331         /* make sure we catch all the cases where we'd send on a dirty old mbox
1332          * but allow case for sending CLOSE. Since this check is within the CQ
1333          * mutex barrier and the close message is only sent through
1334          * kgnilnd_send_conn_close the last message out the door will be the
1335          * close message.
1336          */
1337         if (atomic_read(&conn->gnc_peer->gnp_dirty_eps) != 0 && msg->gnm_type != GNILND_MSG_CLOSE) {
1338                 kgnilnd_conn_mutex_unlock(&conn->gnc_smsg_mutex);
1339                 kgnilnd_gl_mutex_unlock(&conn->gnc_device->gnd_cq_mutex);
1340                 /* Return -ETIME, we are closing the connection already so we dont want to
1341                  * have this tx hit the wire. The tx will be killed by the calling function.
1342                  * Once the EP is marked dirty the close message will be the last
1343                  * thing to hit the wire */
1344                 return -ETIME;
1345         }
1346
1347         now = jiffies;
1348         timeout = cfs_time_seconds(conn->gnc_timeout);
1349
1350         newest_last_rx = GNILND_LASTRX(conn);
1351
1352         if (CFS_FAIL_CHECK(CFS_FAIL_GNI_SEND_TIMEOUT)) {
1353                 now = now + (GNILND_TIMEOUTRX(timeout) * 2);
1354         }
1355
1356         if (time_after_eq(now, newest_last_rx + GNILND_TIMEOUTRX(timeout))) {
1357                 GNIDBG_CONN(D_NETERROR|D_CONSOLE, conn,
1358                             "Cant send to %s after timeout lapse of %lu; TO %lu\n",
1359                 libcfs_nid2str(conn->gnc_peer->gnp_nid),
1360                 cfs_duration_sec(now - newest_last_rx),
1361                 cfs_duration_sec(GNILND_TIMEOUTRX(timeout)));
1362                 kgnilnd_conn_mutex_unlock(&conn->gnc_smsg_mutex);
1363                 kgnilnd_gl_mutex_unlock(&conn->gnc_device->gnd_cq_mutex);
1364                 return -ETIME;
1365         }
1366
1367         GNITX_ASSERTF(tx, (conn != NULL) && (tx->tx_id.txe_idx != 0), "tx id unset!", NULL);
1368         /* msg->gnm_srcnid is set when the message is initialized by whatever function is
1369          * creating the message this allows the message to contain the correct LNET NID/NET needed
1370          * instead of the one that the peer/conn uses for sending the data.
1371          */
1372         msg->gnm_connstamp = conn->gnc_my_connstamp;
1373         msg->gnm_payload_len = immediatenob;
1374         msg->gnm_seq = atomic_read(&conn->gnc_tx_seq);
1375
1376         /* always init here - kgn_checksum is a /sys module tunable
1377          * and can be flipped at any point, even between msg init and sending */
1378         msg->gnm_cksum = 0;
1379         if (*kgnilnd_tunables.kgn_checksum) {
1380                 /* We must set here and not in kgnilnd_init_msg,
1381                  * we could resend this msg many times
1382                  * (NOT_DONE from gni_smsg_send below) and wouldn't pass
1383                  * through init_msg again */
1384                 msg->gnm_cksum = kgnilnd_cksum(msg, sizeof(kgn_msg_t));
1385                 if (CFS_FAIL_CHECK(CFS_FAIL_GNI_SMSG_CKSUM1)) {
1386                         msg->gnm_cksum += 0xf00f;
1387                 }
1388         }
1389
1390         GNIDBG_TOMSG(D_NET, msg, "tx 0x%p conn 0x%p->%s sending SMSG sz %u id %x/%d [%p for %u]",
1391                tx, conn, libcfs_nid2str(conn->gnc_peer->gnp_nid),
1392                sizeof(kgn_msg_t), tx->tx_id.txe_smsg_id,
1393                tx->tx_id.txe_idx, immediate, immediatenob);
1394
1395         if (unlikely(tx->tx_state & GNILND_TX_FAIL_SMSG)) {
1396                 rrc = cfs_fail_val ? cfs_fail_val : GNI_RC_NOT_DONE;
1397         } else {
1398                 rrc = kgnilnd_smsg_send(conn->gnc_ephandle,
1399                                         msg, sizeof(*msg), immediate,
1400                                         immediatenob,
1401                                         tx->tx_id.txe_smsg_id);
1402         }
1403
1404         switch (rrc) {
1405         case GNI_RC_SUCCESS:
1406                 atomic_inc(&conn->gnc_tx_seq);
1407                 conn->gnc_last_tx = jiffies;
1408                 /* no locking here as LIVE isn't a list */
1409                 kgnilnd_tx_add_state_locked(tx, NULL, conn, GNILND_TX_LIVE_FMAQ, 1);
1410
1411                 /* this needs to be checked under lock as it might be freed from a completion
1412                  * event.
1413                  */
1414                 if (msg->gnm_type == GNILND_MSG_NOOP) {
1415                         set_mb(conn->gnc_last_noop_sent, jiffies);
1416                 }
1417
1418                 /* serialize with seeing CQ events for completion on this, as well as
1419                  * tx_seq */
1420                 kgnilnd_conn_mutex_unlock(&conn->gnc_smsg_mutex);
1421                 kgnilnd_gl_mutex_unlock(&conn->gnc_device->gnd_cq_mutex);
1422
1423                 atomic_inc(&conn->gnc_device->gnd_short_ntx);
1424                 atomic64_add(immediatenob, &conn->gnc_device->gnd_short_txbytes);
1425                 kgnilnd_peer_alive(conn->gnc_peer);
1426                 GNIDBG_SMSG_CREDS(D_NET, conn);
1427                 return 0;
1428
1429         case GNI_RC_NOT_DONE:
1430                 /* Jshimek: We can get GNI_RC_NOT_DONE for 3 reasons currently
1431                  * 1: out of mbox credits
1432                  * 2: out of mbox payload credits
1433                  * 3: On Aries out of dla credits
1434                  */
1435                 kgnilnd_conn_mutex_unlock(&conn->gnc_smsg_mutex);
1436                 kgnilnd_gl_mutex_unlock(&conn->gnc_device->gnd_cq_mutex);
1437                 /* We'll handle this error inline - makes the calling logic much more
1438                  * clean */
1439
1440                 /* If no lock, caller doesn't want us to retry */
1441                 if (state_lock == NULL) {
1442                         return -EAGAIN;
1443                 }
1444
1445                 /* I need kgni credits to send this.  Replace tx at the head of the
1446                  * fmaq and I'll get rescheduled when credits appear. Reset the tx_state
1447                  * and bump retrans counts since we are requeueing the tx.
1448                  */
1449                 tx->tx_state = 0;
1450                 tx->tx_retrans++;
1451                 conn->gnc_tx_retrans++;
1452
1453                 kgnilnd_tx_log_retrans(conn, tx);
1454                 /* add to head of list for the state and retries */
1455                 spin_lock(state_lock);
1456                 kgnilnd_tx_add_state_locked(tx, conn->gnc_peer, conn, state, 0);
1457                 spin_unlock(state_lock);
1458
1459                 /* We only reschedule for a certain number of retries, then
1460                  * we will wait for the CQ events indicating a release of SMSG
1461                  * credits */
1462                 if (tx->tx_retrans < *kgnilnd_tunables.kgn_max_retransmits) {
1463                         kgnilnd_schedule_conn(conn);
1464                         return 0;
1465                 } else {
1466                         /* CQ event coming in signifies either TX completed or
1467                          * RX receive. Either of these *could* free up credits
1468                          * in the SMSG mbox and we should try sending again */
1469                         GNIDBG_TX(D_NET, tx, "waiting for CQID %u event to resend",
1470                                  tx->tx_conn->gnc_cqid);
1471                         kgnilnd_schedule_delay_conn(conn);
1472                         /* use +ve return code to let upper layers know they
1473                          * should stop looping on sends */
1474                         return EAGAIN;
1475                 }
1476         default:
1477                 /* handle bad retcode gracefully */
1478                 kgnilnd_conn_mutex_unlock(&conn->gnc_smsg_mutex);
1479                 kgnilnd_gl_mutex_unlock(&conn->gnc_device->gnd_cq_mutex);
1480                 return -EIO;
1481         }
1482 }
1483
1484 /* kgnilnd_sendmsg has hard wait on gnd_cq_mutex */
1485 static inline int
1486 kgnilnd_sendmsg(kgn_tx_t *tx, void *immediate, unsigned int immediatenob,
1487                 spinlock_t *state_lock, kgn_tx_list_state_t state)
1488 {
1489         kgn_device_t    *dev = tx->tx_conn->gnc_device;
1490         unsigned long    timestamp;
1491         int              rc;
1492
1493         timestamp = jiffies;
1494         kgnilnd_gl_mutex_lock(&dev->gnd_cq_mutex);
1495         kgnilnd_conn_mutex_lock(&tx->tx_conn->gnc_smsg_mutex);
1496         /* delay in jiffies - we are really concerned only with things that
1497          * result in a schedule() or really holding this off for long times .
1498          * NB - mutex_lock could spin for 2 jiffies before going to sleep to wait */
1499         dev->gnd_mutex_delay += (long) jiffies - timestamp;
1500
1501         rc = kgnilnd_sendmsg_nolock(tx, immediate, immediatenob, state_lock, state);
1502
1503         RETURN(rc);
1504 }
1505
1506
1507 /* returns -EAGAIN for lock miss, anything else < 0 is hard error, >=0 for success */
1508 static inline int
1509 kgnilnd_sendmsg_trylock(kgn_tx_t *tx, void *immediate, unsigned int immediatenob,
1510                 spinlock_t *state_lock, kgn_tx_list_state_t state)
1511 {
1512         kgn_conn_t      *conn = tx->tx_conn;
1513         kgn_device_t    *dev = conn->gnc_device;
1514         unsigned long    timestamp;
1515         int              rc;
1516
1517         timestamp = jiffies;
1518
1519         /* technically we are doing bad things with the read_lock on the peer_conn
1520          * table, but we shouldn't be sleeping inside here - and we don't sleep/block
1521          * for the mutex. I bet lockdep is gonna flag this one though... */
1522
1523         /* there are a few cases where we don't want the immediate send - like
1524          * when we are in the scheduler thread and it'd harm the latency of
1525          * getting messages up to LNet */
1526
1527         /* rmb for gnd_ready */
1528         smp_rmb();
1529         if (conn->gnc_device->gnd_ready == GNILND_DEV_LOOP) {
1530                 rc = 0;
1531                 atomic_inc(&conn->gnc_device->gnd_fast_block);
1532         } else if (unlikely(kgnilnd_data.kgn_quiesce_trigger)) {
1533                /* dont hit HW during quiesce */
1534                 rc = 0;
1535         } else if (unlikely(atomic_read(&conn->gnc_peer->gnp_dirty_eps))) {
1536                /* dont hit HW if stale EPs and conns left to close */
1537                 rc = 0;
1538         } else {
1539                 atomic_inc(&conn->gnc_device->gnd_fast_try);
1540                 rc = kgnilnd_trylock(&conn->gnc_device->gnd_cq_mutex,
1541                                      &conn->gnc_smsg_mutex);
1542         }
1543         if (!rc) {
1544                 rc = -EAGAIN;
1545         } else {
1546                 /* we got the mutex and weren't blocked */
1547
1548                 /* delay in jiffies - we are really concerned only with things that
1549                  * result in a schedule() or really holding this off for long times .
1550                  * NB - mutex_lock could spin for 2 jiffies before going to sleep to wait */
1551                 dev->gnd_mutex_delay += (long) jiffies - timestamp;
1552
1553                 atomic_inc(&conn->gnc_device->gnd_fast_ok);
1554                 tx->tx_qtime = jiffies;
1555                 tx->tx_state = GNILND_TX_WAITING_COMPLETION;
1556                 rc = kgnilnd_sendmsg_nolock(tx, tx->tx_buffer, tx->tx_nob, &conn->gnc_list_lock, GNILND_TX_FMAQ);
1557                 /* _nolock unlocks the mutex for us */
1558         }
1559
1560         RETURN(rc);
1561 }
1562
1563 /* lets us know if we can push this RDMA through now */
1564 static int
1565 kgnilnd_auth_rdma_bytes(kgn_device_t *dev, kgn_tx_t *tx)
1566 {
1567         long    bytes_left;
1568
1569         bytes_left = atomic64_sub_return(tx->tx_nob, &dev->gnd_rdmaq_bytes_ok);
1570
1571         if (bytes_left < 0) {
1572                 atomic64_add(tx->tx_nob, &dev->gnd_rdmaq_bytes_ok);
1573                 atomic_inc(&dev->gnd_rdmaq_nstalls);
1574                 smp_wmb();
1575
1576                 CDEBUG(D_NET, "no bytes to send, turning on timer for %lu\n",
1577                        dev->gnd_rdmaq_deadline);
1578                 mod_timer(&dev->gnd_rdmaq_timer, dev->gnd_rdmaq_deadline);
1579                 /* we never del this timer - at worst it schedules us.. */
1580                 return -EAGAIN;
1581         } else {
1582                 return 0;
1583         }
1584 }
1585
1586 /* this adds a TX to the queue pending throttling authorization before
1587  * we allow our remote peer to launch a PUT at us */
1588 void
1589 kgnilnd_queue_rdma(kgn_conn_t *conn, kgn_tx_t *tx)
1590 {
1591         int     rc;
1592
1593         /* we cannot go into send_mapped_tx from here as we are holding locks
1594          * and mem registration might end up allocating memory in kgni.
1595          * That said, we'll push this as far as we can into the queue process */
1596         rc = kgnilnd_auth_rdma_bytes(conn->gnc_device, tx);
1597
1598         if (rc < 0) {
1599                 spin_lock(&conn->gnc_device->gnd_rdmaq_lock);
1600                 kgnilnd_tx_add_state_locked(tx, NULL, conn, GNILND_TX_RDMAQ, 0);
1601                 /* lets us know how delayed RDMA is */
1602                 tx->tx_qtime = jiffies;
1603                 spin_unlock(&conn->gnc_device->gnd_rdmaq_lock);
1604         } else {
1605                 /* we have RDMA authorized, now it just needs a MDD and to hit the wire */
1606                 spin_lock(&tx->tx_conn->gnc_device->gnd_lock);
1607                 kgnilnd_tx_add_state_locked(tx, NULL, tx->tx_conn, GNILND_TX_MAPQ, 0);
1608                 /* lets us know how delayed mapping is */
1609                 tx->tx_qtime = jiffies;
1610                 spin_unlock(&tx->tx_conn->gnc_device->gnd_lock);
1611         }
1612
1613         /* make sure we wake up sched to run this */
1614         kgnilnd_schedule_device(tx->tx_conn->gnc_device);
1615 }
1616
1617 /* push TX through state machine */
1618 void
1619 kgnilnd_queue_tx(kgn_conn_t *conn, kgn_tx_t *tx)
1620 {
1621         int            rc = 0;
1622         int            add_tail = 1;
1623
1624         /* set the tx_id here, we delay it until we have an actual conn
1625          * to fiddle with
1626          * in some cases, the tx_id is already set to provide for things
1627          * like RDMA completion cookies, etc */
1628         if (tx->tx_id.txe_idx == 0) {
1629                 rc = kgnilnd_set_tx_id(tx, conn);
1630                 if (rc != 0) {
1631                         kgnilnd_tx_done(tx, rc);
1632                         return;
1633                 }
1634         }
1635
1636         CDEBUG(D_NET, "%s to conn %p for %s\n", kgnilnd_msgtype2str(tx->tx_msg.gnm_type),
1637                 conn, libcfs_nid2str(conn->gnc_peer->gnp_nid));
1638
1639         /* Only let NOOPs to be sent while fail loc is set, otherwise kill the tx.
1640          */
1641         if (CFS_FAIL_CHECK(CFS_FAIL_GNI_ONLY_NOOP) && (tx->tx_msg.gnm_type != GNILND_MSG_NOOP)) {
1642                 kgnilnd_tx_done(tx, rc);
1643                 return;
1644         }
1645
1646         switch (tx->tx_msg.gnm_type) {
1647         case GNILND_MSG_PUT_ACK:
1648         case GNILND_MSG_GET_REQ:
1649         case GNILND_MSG_PUT_REQ_REV:
1650         case GNILND_MSG_GET_ACK_REV:
1651                 /* hijacking time! If this messages will authorize our peer to
1652                  * send his dirty little bytes in an RDMA, we need to get permission */
1653                 kgnilnd_queue_rdma(conn, tx);
1654                 break;
1655         case GNILND_MSG_IMMEDIATE:
1656                 /* try to send right now, can help reduce latency */
1657                 rc = kgnilnd_sendmsg_trylock(tx, tx->tx_buffer, tx->tx_nob, &conn->gnc_list_lock, GNILND_TX_FMAQ);
1658
1659                 if (rc >= 0) {
1660                         /* it was sent, break out of switch to avoid default case of queueing */
1661                         break;
1662                 }
1663                 /* needs to queue to try again, so... */
1664                 /* fall through... */
1665         case GNILND_MSG_NOOP:
1666                 /* Just make sure this goes out first for this conn */
1667                 add_tail = 0;
1668                 /* fall through... */
1669         default:
1670                 spin_lock(&conn->gnc_list_lock);
1671                 kgnilnd_tx_add_state_locked(tx, conn->gnc_peer, conn, GNILND_TX_FMAQ, add_tail);
1672                 tx->tx_qtime = jiffies;
1673                 spin_unlock(&conn->gnc_list_lock);
1674                 kgnilnd_schedule_conn(conn);
1675         }
1676 }
1677
1678 void
1679 kgnilnd_launch_tx(kgn_tx_t *tx, kgn_net_t *net, struct lnet_process_id *target)
1680 {
1681         kgn_peer_t      *peer;
1682         kgn_peer_t      *new_peer = NULL;
1683         kgn_conn_t      *conn = NULL;
1684         int              rc;
1685         int              node_state;
1686
1687         ENTRY;
1688
1689         /* If I get here, I've committed to send, so I complete the tx with
1690          * failure on any problems */
1691
1692         GNITX_ASSERTF(tx, tx->tx_conn == NULL,
1693                       "tx already has connection %p", tx->tx_conn);
1694
1695         /* do all of the peer & conn searching in one swoop - this avoids
1696          * nastiness when dropping locks and needing to maintain a sane state
1697          * in the face of stack reset or something else nuking peers & conns */
1698
1699         /* I expect to find him, so only take a read lock */
1700         read_lock(&kgnilnd_data.kgn_peer_conn_lock);
1701
1702         peer = kgnilnd_find_peer_locked(target->nid);
1703         if (peer != NULL) {
1704                 conn = kgnilnd_find_conn_locked(peer);
1705                 /* this could be NULL during quiesce */
1706                 if (conn != NULL)  {
1707                         /* Connection exists; queue message on it */
1708                         kgnilnd_queue_tx(conn, tx);
1709                         read_unlock(&kgnilnd_data.kgn_peer_conn_lock);
1710                         RETURN_EXIT;
1711                 }
1712
1713                 /* don't create a connection if the peer is marked down */
1714                 if (peer->gnp_state != GNILND_PEER_UP) {
1715                         read_unlock(&kgnilnd_data.kgn_peer_conn_lock);
1716                         rc = -ENETRESET;
1717                         GOTO(no_peer, rc);
1718                 }
1719         }
1720
1721         /* creating peer or conn; I'll need a write lock... */
1722         read_unlock(&kgnilnd_data.kgn_peer_conn_lock);
1723
1724         CFS_RACE(CFS_FAIL_GNI_FIND_TARGET);
1725
1726         node_state = kgnilnd_get_node_state(LNET_NIDADDR(target->nid));
1727
1728         /* NB - this will not block during normal operations -
1729          * the only writer of this is in the startup/shutdown path. */
1730         rc = down_read_trylock(&kgnilnd_data.kgn_net_rw_sem);
1731         if (!rc) {
1732                 rc = -ESHUTDOWN;
1733                 GOTO(no_peer, rc);
1734         }
1735
1736         /* ignore previous peer entirely - we cycled the lock, so we
1737          * will create new peer and at worst drop it if peer is still
1738          * in the tables */
1739         rc = kgnilnd_create_peer_safe(&new_peer, target->nid, net, node_state);
1740         if (rc != 0) {
1741                 up_read(&kgnilnd_data.kgn_net_rw_sem);
1742                 GOTO(no_peer, rc);
1743         }
1744
1745         write_lock(&kgnilnd_data.kgn_peer_conn_lock);
1746         up_read(&kgnilnd_data.kgn_net_rw_sem);
1747
1748         /* search for peer again now that we have the lock
1749          * if we don't find it, add our new one to the list */
1750         kgnilnd_add_peer_locked(target->nid, new_peer, &peer);
1751
1752         /* don't create a connection if the peer is not up */
1753         if (peer->gnp_state != GNILND_PEER_UP) {
1754                 write_unlock(&kgnilnd_data.kgn_peer_conn_lock);
1755                 rc = -ENETRESET;
1756                 GOTO(no_peer, rc);
1757         }
1758
1759         conn = kgnilnd_find_or_create_conn_locked(peer);
1760
1761         if (CFS_FAIL_CHECK(CFS_FAIL_GNI_DGRAM_DROP_TX)) {
1762                 write_unlock(&kgnilnd_data.kgn_peer_conn_lock);
1763                 GOTO(no_peer, rc);
1764         }
1765
1766         if (conn != NULL) {
1767                 /* oh hey, found a conn now... magical */
1768                 kgnilnd_queue_tx(conn, tx);
1769         } else {
1770                 /* no conn, must be trying to connect - so we queue for now */
1771                 tx->tx_qtime = jiffies;
1772                 kgnilnd_tx_add_state_locked(tx, peer, NULL, GNILND_TX_PEERQ, 1);
1773         }
1774         write_unlock(&kgnilnd_data.kgn_peer_conn_lock);
1775         RETURN_EXIT;
1776 no_peer:
1777         kgnilnd_tx_done(tx, rc);
1778         RETURN_EXIT;
1779 }
1780
1781 int
1782 kgnilnd_rdma(kgn_tx_t *tx, int type,
1783             kgn_rdma_desc_t *sink, unsigned int nob, __u64 cookie)
1784 {
1785         kgn_conn_t   *conn = tx->tx_conn;
1786         unsigned long timestamp;
1787         gni_post_type_t post_type;
1788         gni_return_t  rrc;
1789         int rc = 0;
1790         unsigned int desc_nob = nob;
1791         void *desc_buffer = tx->tx_buffer;
1792         gni_mem_handle_t desc_map_key = tx->tx_map_key;
1793         LASSERTF(kgnilnd_tx_mapped(tx),
1794                 "unmapped tx %p\n", tx);
1795         LASSERTF(conn != NULL,
1796                 "NULL conn on tx %p, naughty, naughty\n", tx);
1797         LASSERTF(nob <= sink->gnrd_nob,
1798                 "nob %u > sink->gnrd_nob %d (%p)\n",
1799                 nob, sink->gnrd_nob, sink);
1800         LASSERTF(nob <= tx->tx_nob,
1801                 "nob %d > tx(%p)->tx_nob %d\n",
1802                 nob, tx, tx->tx_nob);
1803
1804         switch (type) {
1805         case GNILND_MSG_GET_DONE:
1806         case GNILND_MSG_PUT_DONE:
1807                 post_type = GNI_POST_RDMA_PUT;
1808                 break;
1809         case GNILND_MSG_GET_DONE_REV:
1810         case GNILND_MSG_PUT_DONE_REV:
1811                 post_type = GNI_POST_RDMA_GET;
1812                 break;
1813         default:
1814                 CERROR("invalid msg type %s (%d)\n",
1815                         kgnilnd_msgtype2str(type), type);
1816                 LBUG();
1817         }
1818         if (post_type == GNI_POST_RDMA_GET) {
1819                 /* Check for remote buffer / local buffer / length alignment. All must be 4 byte
1820                  * aligned. If the local buffer is not aligned correctly using the copy buffer
1821                  * will fix that issue. If length is misaligned copy buffer will also fix the issue, we end
1822                  * up transferring extra bytes into the buffer but only copy the correct nob into the original
1823                  * buffer.  Remote offset correction is done through a combination of adjusting the offset,
1824                  * making sure the length and addr are aligned and copying the data into the correct location
1825                  * once the transfer has completed.
1826                  */
1827                 if ((((__u64)((unsigned long)tx->tx_buffer)) & 3) ||
1828                       (sink->gnrd_addr & 3) ||
1829                       (nob & 3)) {
1830
1831                         tx->tx_offset = ((__u64)((unsigned long)sink->gnrd_addr)) & 3;
1832                         if (tx->tx_offset)
1833                                 atomic_inc(&kgnilnd_data.kgn_rev_offset);
1834
1835                         if ((nob + tx->tx_offset) & 3) {
1836                                 desc_nob = ((nob + tx->tx_offset) + (4 - ((nob + tx->tx_offset) & 3)));
1837                                 atomic_inc(&kgnilnd_data.kgn_rev_length);
1838                         } else {
1839                                 desc_nob = (nob + tx->tx_offset);
1840                         }
1841
1842                         if (tx->tx_buffer_copy == NULL) {
1843                                 /* Allocate the largest copy buffer we will need, this will prevent us from overwriting data
1844                                  * and require at most we allocate a few extra bytes. */
1845                                 tx->tx_buffer_copy = kgnilnd_vzalloc(desc_nob);
1846
1847                                 if (!tx->tx_buffer_copy) {
1848                                         /* allocation of buffer failed nak the rdma */
1849                                         kgnilnd_nak_rdma(tx->tx_conn, tx->tx_msg.gnm_type, -EFAULT, cookie, tx->tx_msg.gnm_srcnid);
1850                                         kgnilnd_tx_done(tx, -EFAULT);
1851                                         return 0;
1852                                 }
1853                                 atomic_inc(&kgnilnd_data.kgn_rev_copy_buff);
1854                                 rc = kgnilnd_mem_register(conn->gnc_device->gnd_handle, (__u64)tx->tx_buffer_copy, desc_nob, NULL, GNI_MEM_READWRITE, &tx->tx_buffer_copy_map_key);
1855                                 if (rc != GNI_RC_SUCCESS) {
1856                                         /* Registration Failed nak rdma and kill the tx. */
1857                                         kgnilnd_vfree(tx->tx_buffer_copy,
1858                                                       desc_nob);
1859                                         tx->tx_buffer_copy = NULL;
1860                                         kgnilnd_nak_rdma(tx->tx_conn, tx->tx_msg.gnm_type, -EFAULT, cookie, tx->tx_msg.gnm_srcnid);
1861                                         kgnilnd_tx_done(tx, -EFAULT);
1862                                         return 0;
1863                                 }
1864                         }
1865                         desc_map_key = tx->tx_buffer_copy_map_key;
1866                         desc_buffer = tx->tx_buffer_copy;
1867                 }
1868         }
1869
1870         memset(&tx->tx_rdma_desc, 0, sizeof(tx->tx_rdma_desc));
1871         tx->tx_rdma_desc.post_id = tx->tx_id.txe_cookie;
1872         tx->tx_rdma_desc.type = post_type;
1873         tx->tx_rdma_desc.cq_mode = GNI_CQMODE_GLOBAL_EVENT;
1874         tx->tx_rdma_desc.local_addr = (__u64)((unsigned long)desc_buffer);
1875         tx->tx_rdma_desc.local_mem_hndl = desc_map_key;
1876         tx->tx_rdma_desc.remote_addr = sink->gnrd_addr - tx->tx_offset;
1877         tx->tx_rdma_desc.remote_mem_hndl = sink->gnrd_key;
1878         tx->tx_rdma_desc.length = desc_nob;
1879         tx->tx_nob_rdma = nob;
1880         if (post_type == GNI_POST_RDMA_PUT && *kgnilnd_tunables.kgn_bte_put_dlvr_mode)
1881                 tx->tx_rdma_desc.dlvr_mode = *kgnilnd_tunables.kgn_bte_put_dlvr_mode;
1882         if (post_type == GNI_POST_RDMA_GET && *kgnilnd_tunables.kgn_bte_get_dlvr_mode)
1883                 tx->tx_rdma_desc.dlvr_mode = *kgnilnd_tunables.kgn_bte_get_dlvr_mode;
1884         /* prep final completion message */
1885         kgnilnd_init_msg(&tx->tx_msg, type, tx->tx_msg.gnm_srcnid);
1886         tx->tx_msg.gnm_u.completion.gncm_cookie = cookie;
1887         /* send actual size RDMA'd in retval */
1888         tx->tx_msg.gnm_u.completion.gncm_retval = nob;
1889
1890         kgnilnd_compute_rdma_cksum(tx, nob);
1891
1892         if (nob == 0) {
1893                 kgnilnd_queue_tx(conn, tx);
1894                 return 0;
1895         }
1896
1897         /* Don't lie (CLOSE == RDMA idle) */
1898         LASSERTF(!conn->gnc_close_sent, "tx %p on conn %p after close sent %d\n",
1899                  tx, conn, conn->gnc_close_sent);
1900
1901         GNIDBG_TX(D_NET, tx, "Post RDMA type 0x%02x conn %p dlvr_mode "
1902                 "0x%x cookie:%#llx",
1903                 type, conn, tx->tx_rdma_desc.dlvr_mode, cookie);
1904
1905         /* set CQ dedicated for RDMA */
1906         tx->tx_rdma_desc.src_cq_hndl = conn->gnc_device->gnd_snd_rdma_cqh;
1907
1908         timestamp = jiffies;
1909         kgnilnd_conn_mutex_lock(&conn->gnc_rdma_mutex);
1910         kgnilnd_gl_mutex_lock(&conn->gnc_device->gnd_cq_mutex);
1911         /* delay in jiffies - we are really concerned only with things that
1912          * result in a schedule() or really holding this off for long times .
1913          * NB - mutex_lock could spin for 2 jiffies before going to sleep to wait */
1914         conn->gnc_device->gnd_mutex_delay += (long) jiffies - timestamp;
1915
1916         rrc = kgnilnd_post_rdma(conn->gnc_ephandle, &tx->tx_rdma_desc);
1917
1918         if (rrc == GNI_RC_ERROR_RESOURCE) {
1919                 kgnilnd_conn_mutex_unlock(&conn->gnc_rdma_mutex);
1920                 kgnilnd_gl_mutex_unlock(&conn->gnc_device->gnd_cq_mutex);
1921                 kgnilnd_unmap_buffer(tx, 0);
1922
1923                 if (tx->tx_buffer_copy != NULL) {
1924                         kgnilnd_vfree(tx->tx_buffer_copy, desc_nob);
1925                         tx->tx_buffer_copy = NULL;
1926                 }
1927
1928                 spin_lock(&tx->tx_conn->gnc_device->gnd_lock);
1929                 kgnilnd_tx_add_state_locked(tx, NULL, tx->tx_conn,
1930                                             GNILND_TX_MAPQ, 0);
1931                 spin_unlock(&tx->tx_conn->gnc_device->gnd_lock);
1932                 kgnilnd_schedule_device(tx->tx_conn->gnc_device);
1933                 return -EAGAIN;
1934         }
1935
1936         spin_lock(&conn->gnc_list_lock);
1937         kgnilnd_tx_add_state_locked(tx, conn->gnc_peer, conn, GNILND_TX_LIVE_RDMAQ, 1);
1938         tx->tx_qtime = jiffies;
1939         spin_unlock(&conn->gnc_list_lock);
1940         kgnilnd_gl_mutex_unlock(&conn->gnc_device->gnd_cq_mutex);
1941         kgnilnd_conn_mutex_unlock(&conn->gnc_rdma_mutex);
1942
1943         /* XXX Nic: is this a place we should handle more errors for
1944          * robustness sake */
1945         LASSERT(rrc == GNI_RC_SUCCESS);
1946         return 0;
1947 }
1948
1949 kgn_rx_t *
1950 kgnilnd_alloc_rx(void)
1951 {
1952         kgn_rx_t        *rx;
1953
1954         rx = kmem_cache_alloc(kgnilnd_data.kgn_rx_cache, GFP_ATOMIC);
1955         if (rx == NULL) {
1956                 CERROR("failed to allocate rx\n");
1957                 return NULL;
1958         }
1959         CDEBUG(D_MALLOC, "slab-alloced 'rx': %lu at %p.\n",
1960                sizeof(*rx), rx);
1961
1962         /* no memset to zero, we'll always fill all members */
1963         return rx;
1964 }
1965
1966 /* release is to just free connection resources
1967  * we use this for the eager path after copying */
1968 void
1969 kgnilnd_release_msg(kgn_conn_t *conn)
1970 {
1971         gni_return_t    rrc;
1972         unsigned long   timestamp;
1973
1974         CDEBUG(D_NET, "consuming %p\n", conn);
1975
1976         timestamp = jiffies;
1977         kgnilnd_gl_mutex_lock(&conn->gnc_device->gnd_cq_mutex);
1978         /* delay in jiffies - we are really concerned only with things that
1979          * result in a schedule() or really holding this off for long times .
1980          * NB - mutex_lock could spin for 2 jiffies before going to sleep to wait */
1981         conn->gnc_device->gnd_mutex_delay += (long) jiffies - timestamp;
1982
1983         rrc = kgnilnd_smsg_release(conn->gnc_ephandle);
1984         kgnilnd_gl_mutex_unlock(&conn->gnc_device->gnd_cq_mutex);
1985
1986         LASSERTF(rrc == GNI_RC_SUCCESS, "bad rrc %d\n", rrc);
1987         GNIDBG_SMSG_CREDS(D_NET, conn);
1988
1989         kgnilnd_schedule_conn(conn);
1990 }
1991
1992 void
1993 kgnilnd_consume_rx(kgn_rx_t *rx)
1994 {
1995         kgn_conn_t      *conn = rx->grx_conn;
1996         kgn_msg_t       *rxmsg = rx->grx_msg;
1997
1998         /* if we are eager, free the cache alloc'd msg */
1999         if (unlikely(rx->grx_eager)) {
2000                 LIBCFS_FREE(rxmsg, sizeof(*rxmsg) + *kgnilnd_tunables.kgn_max_immediate);
2001                 atomic_dec(&kgnilnd_data.kgn_neager_allocs);
2002
2003                 /* release ref from eager_recv */
2004                 kgnilnd_conn_decref(conn);
2005         } else {
2006                 GNIDBG_MSG(D_NET, rxmsg, "rx %p processed", rx);
2007                 kgnilnd_release_msg(conn);
2008         }
2009
2010         kmem_cache_free(kgnilnd_data.kgn_rx_cache, rx);
2011         CDEBUG(D_MALLOC, "slab-freed 'rx': %lu at %p.\n",
2012                sizeof(*rx), rx);
2013 }
2014
2015 int
2016 kgnilnd_send(struct lnet_ni *ni, void *private, struct lnet_msg *lntmsg)
2017 {
2018         struct lnet_hdr  *hdr = &lntmsg->msg_hdr;
2019         int               type = lntmsg->msg_type;
2020         struct lnet_process_id target = lntmsg->msg_target;
2021         int               target_is_router = lntmsg->msg_target_is_router;
2022         int               routing = lntmsg->msg_routing;
2023         unsigned int      niov = lntmsg->msg_niov;
2024         struct bio_vec   *kiov = lntmsg->msg_kiov;
2025         unsigned int      offset = lntmsg->msg_offset;
2026         unsigned int      nob = lntmsg->msg_len;
2027         unsigned int      msg_vmflush = lntmsg->msg_vmflush;
2028         kgn_net_t        *net = ni->ni_data;
2029         kgn_tx_t         *tx;
2030         int               rc = 0;
2031         /* '1' for consistency with code that checks !mpflag to restore */
2032         unsigned int mpflag = 1;
2033         int               reverse_rdma_flag = *kgnilnd_tunables.kgn_reverse_rdma;
2034
2035         /* NB 'private' is different depending on what we're sending.... */
2036         LASSERT(!in_interrupt());
2037
2038         CDEBUG(D_NET, "sending msg type %d with %d bytes in %d frags to %s\n",
2039                type, nob, niov, libcfs_id2str(target));
2040
2041         LASSERTF(nob == 0 || niov > 0,
2042                 "lntmsg %p nob %d niov %d\n", lntmsg, nob, niov);
2043         LASSERTF(niov <= GNILND_MAX_IOV,
2044                 "lntmsg %p niov %d\n", lntmsg, niov);
2045
2046         if (msg_vmflush)
2047                 mpflag = memalloc_noreclaim_save();
2048
2049         switch (type) {
2050         default:
2051                 CERROR("lntmsg %p with unexpected type %d\n",
2052                         lntmsg, type);
2053                 LBUG();
2054
2055         case LNET_MSG_ACK:
2056                 LASSERTF(nob == 0, "lntmsg %p nob %d\n",
2057                         lntmsg, nob);
2058                 break;
2059
2060         case LNET_MSG_GET:
2061                 LASSERT(niov == 0);
2062                 LASSERT(nob == 0);
2063
2064                 if (routing || target_is_router)
2065                         break;                  /* send IMMEDIATE */
2066
2067                 /* it is safe to do direct GET with out mapping buffer for RDMA as we
2068                  * check the eventual sink buffer here - if small enough, remote
2069                  * end is perfectly capable of returning data in short message -
2070                  * The magic is that we call lnet_parse in kgnilnd_recv with rdma_req=0
2071                  * for IMMEDIATE messages which will have it send a real reply instead
2072                  * of doing kgnilnd_recv to have the RDMA continued */
2073                 if (lntmsg->msg_md->md_length <= *kgnilnd_tunables.kgn_max_immediate)
2074                        break;
2075
2076                 if ((reverse_rdma_flag & GNILND_REVERSE_GET) == 0)
2077                         tx = kgnilnd_new_tx_msg(GNILND_MSG_GET_REQ,
2078                                                 lnet_nid_to_nid4(&ni->ni_nid));
2079                 else
2080                         tx = kgnilnd_new_tx_msg(GNILND_MSG_GET_REQ_REV,
2081                                                 lnet_nid_to_nid4(&ni->ni_nid));
2082
2083                 if (tx == NULL) {
2084                         rc = -ENOMEM;
2085                         goto out;
2086                 }
2087                 rc = kgnilnd_setup_rdma_buffer(tx, lntmsg->msg_md->md_niov,
2088                                                lntmsg->msg_md->md_kiov,
2089                                                0, lntmsg->msg_md->md_length);
2090                 if (rc != 0) {
2091                         CERROR("unable to setup buffer: %d\n", rc);
2092                         kgnilnd_tx_done(tx, rc);
2093                         rc = -EIO;
2094                         goto out;
2095                 }
2096
2097                 tx->tx_lntmsg[1] = lnet_create_reply_msg(ni, lntmsg);
2098                 if (tx->tx_lntmsg[1] == NULL) {
2099                         CERROR("Can't create reply for GET to %s\n",
2100                                libcfs_nid2str(target.nid));
2101                         kgnilnd_tx_done(tx, rc);
2102                         rc = -EIO;
2103                         goto out;
2104                 }
2105
2106                 tx->tx_lntmsg[0] = lntmsg;
2107                 if ((reverse_rdma_flag & GNILND_REVERSE_GET) == 0)
2108                         tx->tx_msg.gnm_u.get.gngm_hdr = *hdr;
2109                 else
2110                         tx->tx_msg.gnm_u.putreq.gnprm_hdr = *hdr;
2111
2112                 /* rest of tx_msg is setup just before it is sent */
2113                 kgnilnd_launch_tx(tx, net, &target);
2114                 goto out;
2115         case LNET_MSG_REPLY:
2116         case LNET_MSG_PUT:
2117                 /* to save on MDDs, we'll handle short kiov by vmap'ing
2118                  * and sending via SMSG */
2119                 if (nob <= *kgnilnd_tunables.kgn_max_immediate)
2120                        break;
2121
2122                 if ((reverse_rdma_flag & GNILND_REVERSE_PUT) == 0)
2123                         tx = kgnilnd_new_tx_msg(GNILND_MSG_PUT_REQ,
2124                                                 lnet_nid_to_nid4(&ni->ni_nid));
2125                 else
2126                         tx = kgnilnd_new_tx_msg(GNILND_MSG_PUT_REQ_REV,
2127                                                 lnet_nid_to_nid4(&ni->ni_nid));
2128
2129                 if (tx == NULL) {
2130                         rc = -ENOMEM;
2131                         goto out;
2132                 }
2133
2134                 rc = kgnilnd_setup_rdma_buffer(tx, niov,
2135                                                kiov, offset, nob);
2136                 if (rc != 0) {
2137                         kgnilnd_tx_done(tx, rc);
2138                         rc = -EIO;
2139                         goto out;
2140                 }
2141
2142                 tx->tx_lntmsg[0] = lntmsg;
2143                 if ((reverse_rdma_flag & GNILND_REVERSE_PUT) == 0)
2144                         tx->tx_msg.gnm_u.putreq.gnprm_hdr = *hdr;
2145                 else
2146                         tx->tx_msg.gnm_u.get.gngm_hdr = *hdr;
2147
2148                 /* rest of tx_msg is setup just before it is sent */
2149                 kgnilnd_launch_tx(tx, net, &target);
2150                 goto out;
2151         }
2152
2153         /* send IMMEDIATE */
2154
2155         LASSERTF(nob <= *kgnilnd_tunables.kgn_max_immediate,
2156                 "lntmsg 0x%p too large %d\n", lntmsg, nob);
2157
2158         tx = kgnilnd_new_tx_msg(GNILND_MSG_IMMEDIATE,
2159                                 lnet_nid_to_nid4(&ni->ni_nid));
2160         if (tx == NULL) {
2161                 rc = -ENOMEM;
2162                 goto out;
2163         }
2164
2165         rc = kgnilnd_setup_immediate_buffer(tx, niov, kiov, offset, nob);
2166         if (rc != 0) {
2167                 kgnilnd_tx_done(tx, rc);
2168                 goto out;
2169         }
2170
2171         tx->tx_msg.gnm_u.immediate.gnim_hdr = *hdr;
2172         tx->tx_lntmsg[0] = lntmsg;
2173         kgnilnd_launch_tx(tx, net, &target);
2174
2175 out:
2176         /* use stored value as we could have already finalized lntmsg here from a failed launch */
2177         if (msg_vmflush)
2178                 memalloc_noreclaim_restore(mpflag);
2179         return rc;
2180 }
2181
2182 void
2183 kgnilnd_setup_rdma(struct lnet_ni *ni, kgn_rx_t *rx, struct lnet_msg *lntmsg, int mlen)
2184 {
2185         kgn_conn_t    *conn = rx->grx_conn;
2186         kgn_msg_t     *rxmsg = rx->grx_msg;
2187         unsigned int   niov = lntmsg->msg_niov;
2188         struct bio_vec *kiov = lntmsg->msg_kiov;
2189         unsigned int   offset = lntmsg->msg_offset;
2190         unsigned int   nob = lntmsg->msg_len;
2191         int            done_type;
2192         kgn_tx_t      *tx;
2193         int            rc = 0;
2194
2195         switch (rxmsg->gnm_type) {
2196         case GNILND_MSG_PUT_REQ_REV:
2197                 done_type = GNILND_MSG_PUT_DONE_REV;
2198                 nob = mlen;
2199                 break;
2200         case GNILND_MSG_GET_REQ:
2201                 done_type = GNILND_MSG_GET_DONE;
2202                 break;
2203         default:
2204                 CERROR("invalid msg type %s (%d)\n",
2205                         kgnilnd_msgtype2str(rxmsg->gnm_type),
2206                         rxmsg->gnm_type);
2207                 LBUG();
2208         }
2209
2210         tx = kgnilnd_new_tx_msg(done_type, lnet_nid_to_nid4(&ni->ni_nid));
2211         if (tx == NULL)
2212                 goto failed_0;
2213
2214         rc = kgnilnd_set_tx_id(tx, conn);
2215         if (rc != 0)
2216                 goto failed_1;
2217
2218         rc = kgnilnd_setup_rdma_buffer(tx, niov, kiov, offset, nob);
2219         if (rc != 0)
2220                 goto failed_1;
2221
2222         tx->tx_lntmsg[0] = lntmsg;
2223         tx->tx_getinfo = rxmsg->gnm_u.get;
2224
2225         /* we only queue from kgnilnd_recv - we might get called from other contexts
2226          * and we don't want to block the mutex in those cases */
2227
2228         spin_lock(&tx->tx_conn->gnc_device->gnd_lock);
2229         kgnilnd_tx_add_state_locked(tx, NULL, tx->tx_conn, GNILND_TX_MAPQ, 1);
2230         spin_unlock(&tx->tx_conn->gnc_device->gnd_lock);
2231         kgnilnd_schedule_device(tx->tx_conn->gnc_device);
2232
2233         return;
2234
2235  failed_1:
2236         kgnilnd_tx_done(tx, rc);
2237         kgnilnd_nak_rdma(conn, done_type, rc, rxmsg->gnm_u.get.gngm_cookie,
2238                          lnet_nid_to_nid4(&ni->ni_nid));
2239  failed_0:
2240         lnet_finalize(lntmsg, rc);
2241 }
2242
2243 int
2244 kgnilnd_eager_recv(struct lnet_ni *ni, void *private, struct lnet_msg *lntmsg,
2245                    void **new_private)
2246 {
2247         kgn_rx_t        *rx = private;
2248         kgn_conn_t      *conn = rx->grx_conn;
2249         kgn_msg_t       *rxmsg = rx->grx_msg;
2250         kgn_msg_t       *eagermsg = NULL;
2251         kgn_peer_t      *peer = NULL;
2252         kgn_conn_t      *found_conn = NULL;
2253
2254         GNIDBG_MSG(D_NET, rxmsg, "eager recv for conn %p, rxmsg %p, lntmsg %p",
2255                 conn, rxmsg, lntmsg);
2256
2257         if (rxmsg->gnm_payload_len > *kgnilnd_tunables.kgn_max_immediate) {
2258                 GNIDBG_MSG(D_ERROR, rxmsg, "payload too large %d",
2259                         rxmsg->gnm_payload_len);
2260                 return -EPROTO;
2261         }
2262         /* Grab a read lock so the connection doesnt disappear on us
2263          * while we look it up
2264          */
2265         read_lock(&kgnilnd_data.kgn_peer_conn_lock);
2266
2267         peer = kgnilnd_find_peer_locked(rxmsg->gnm_srcnid);
2268         if (peer != NULL)
2269                 found_conn = kgnilnd_find_conn_locked(peer);
2270
2271
2272         /* Verify the connection found is the same one that the message
2273          * is supposed to be using, if it is not output an error message
2274          * and return.
2275          */
2276         if (!peer || !found_conn
2277             || found_conn->gnc_peer_connstamp != rxmsg->gnm_connstamp) {
2278                 read_unlock(&kgnilnd_data.kgn_peer_conn_lock);
2279                 CERROR("Couldnt find matching peer %p or conn %p / %p\n",
2280                         peer, conn, found_conn);
2281                 if (found_conn) {
2282                         CERROR("Unexpected connstamp %#llx(%#llx expected) from %s\n",
2283                                 rxmsg->gnm_connstamp,
2284                                 found_conn->gnc_peer_connstamp,
2285                                 libcfs_nid2str(peer->gnp_nid));
2286                 }
2287                 return -ENOTCONN;
2288         }
2289
2290         /* add conn ref to ensure it doesn't go away until all eager
2291          * messages processed */
2292         kgnilnd_conn_addref(conn);
2293
2294         /* Now that we have verified the connection is valid and added a
2295          * reference we can remove the read_lock on the peer_conn_lock */
2296         read_unlock(&kgnilnd_data.kgn_peer_conn_lock);
2297
2298         /* we have no credits or buffers for this message, so copy it
2299          * somewhere for a later kgnilnd_recv */
2300         if (atomic_read(&kgnilnd_data.kgn_neager_allocs) >=
2301                         *kgnilnd_tunables.kgn_eager_credits) {
2302                 CERROR("Out of eager credits to %s\n",
2303                         libcfs_nid2str(conn->gnc_peer->gnp_nid));
2304                 return -ENOMEM;
2305         }
2306
2307         atomic_inc(&kgnilnd_data.kgn_neager_allocs);
2308
2309         LIBCFS_ALLOC(eagermsg, sizeof(*eagermsg) + *kgnilnd_tunables.kgn_max_immediate);
2310         if (eagermsg == NULL) {
2311                 kgnilnd_conn_decref(conn);
2312                 CERROR("couldn't allocate eager rx message for conn %p to %s\n",
2313                         conn, libcfs_nid2str(conn->gnc_peer->gnp_nid));
2314                 return -ENOMEM;
2315         }
2316
2317         /* copy msg and payload */
2318         memcpy(eagermsg, rxmsg, sizeof(*rxmsg) + rxmsg->gnm_payload_len);
2319         rx->grx_msg = eagermsg;
2320         rx->grx_eager = 1;
2321
2322         /* stash this for lnet_finalize on cancel-on-conn-close */
2323         rx->grx_lntmsg = lntmsg;
2324
2325         /* keep the same rx_t, it just has a new grx_msg now */
2326         *new_private = private;
2327
2328         /* release SMSG buffer */
2329         kgnilnd_release_msg(conn);
2330
2331         return 0;
2332 }
2333
2334 int
2335 kgnilnd_recv(struct lnet_ni *ni, void *private, struct lnet_msg *lntmsg,
2336              int delayed, unsigned int niov,
2337              struct bio_vec *kiov,
2338              unsigned int offset, unsigned int mlen, unsigned int rlen)
2339 {
2340         kgn_rx_t    *rx = private;
2341         kgn_conn_t  *conn = rx->grx_conn;
2342         kgn_msg_t   *rxmsg = rx->grx_msg;
2343         kgn_tx_t    *tx;
2344         int          rc = 0;
2345         __u32        pload_cksum;
2346         ENTRY;
2347
2348         LASSERT(!in_interrupt());
2349         LASSERTF(mlen <= rlen, "%d <= %d\n", mlen, rlen);
2350
2351         GNIDBG_MSG(D_NET, rxmsg, "conn %p, rxmsg %p, lntmsg %p"
2352                 " niov=%d kiov=%p offset=%d mlen=%d rlen=%d",
2353                 conn, rxmsg, lntmsg,
2354                 niov, kiov, offset, mlen, rlen);
2355
2356         /* we need to lock here as recv can be called from any context */
2357         read_lock(&kgnilnd_data.kgn_peer_conn_lock);
2358         if (rx->grx_eager && conn->gnc_state != GNILND_CONN_ESTABLISHED) {
2359                 read_unlock(&kgnilnd_data.kgn_peer_conn_lock);
2360
2361                 /* someone closed the conn after we copied this out, nuke it */
2362                 kgnilnd_consume_rx(rx);
2363                 lnet_finalize(lntmsg, conn->gnc_error);
2364                 RETURN(0);
2365         }
2366         read_unlock(&kgnilnd_data.kgn_peer_conn_lock);
2367
2368         switch (rxmsg->gnm_type) {
2369         default:
2370                 GNIDBG_MSG(D_NETERROR, rxmsg, "conn %p, rx %p, rxmsg %p, lntmsg %p"
2371                 " niov=%d kiov=%p offset=%d mlen=%d rlen=%d",
2372                 conn, rx, rxmsg, lntmsg, niov, kiov, offset, mlen, rlen);
2373                 LBUG();
2374
2375         case GNILND_MSG_IMMEDIATE:
2376                 if (mlen > rxmsg->gnm_payload_len) {
2377                         GNIDBG_MSG(D_ERROR, rxmsg,
2378                                 "Immediate message from %s too big: %d > %d",
2379                                 libcfs_nid2str(conn->gnc_peer->gnp_nid), mlen,
2380                                 rxmsg->gnm_payload_len);
2381                         rc = -EINVAL;
2382                         kgnilnd_consume_rx(rx);
2383                         RETURN(rc);
2384                 }
2385
2386                 /* rxmsg[1] is a pointer to the payload, sitting in the buffer
2387                  * right after the kgn_msg_t header - so just 'cute' way of saying
2388                  * rxmsg + sizeof(kgn_msg_t) */
2389
2390                 /* check payload checksum if sent */
2391
2392                 if (*kgnilnd_tunables.kgn_checksum >= 2 &&
2393                         !rxmsg->gnm_payload_cksum &&
2394                         rxmsg->gnm_payload_len != 0)
2395                         GNIDBG_MSG(D_WARNING, rxmsg, "no msg payload checksum when enabled");
2396
2397                 if (rxmsg->gnm_payload_cksum != 0) {
2398                         /* gnm_payload_len set in kgnilnd_sendmsg from tx->tx_nob,
2399                          * which is what is used to calculate the cksum on the TX side */
2400                         pload_cksum = kgnilnd_cksum(&rxmsg[1], rxmsg->gnm_payload_len);
2401
2402                         if (rxmsg->gnm_payload_cksum != pload_cksum) {
2403                                 GNIDBG_MSG(D_NETERROR, rxmsg,
2404                                            "Bad payload checksum (%x expected %x)",
2405                                             pload_cksum, rxmsg->gnm_payload_cksum);
2406                                 switch (*kgnilnd_tunables.kgn_checksum_dump) {
2407                                 case 2:
2408                                         kgnilnd_dump_blob(D_BUFFS, "bad payload checksum",
2409                                                           &rxmsg[1], rxmsg->gnm_payload_len);
2410                                         /* fallthrough */
2411                                 case 1:
2412                                         libcfs_debug_dumplog();
2413                                         break;
2414                                 default:
2415                                         break;
2416                                 }
2417                                 rc = -ENOKEY;
2418                                 /* checksum problems are fatal, kill the conn */
2419                                 kgnilnd_consume_rx(rx);
2420                                 kgnilnd_close_conn(conn, rc);
2421                                 RETURN(rc);
2422                         }
2423                 }
2424
2425                 lnet_copy_flat2kiov(
2426                         niov, kiov, offset,
2427                         *kgnilnd_tunables.kgn_max_immediate,
2428                         &rxmsg[1], 0, mlen);
2429
2430                 kgnilnd_consume_rx(rx);
2431                 lnet_finalize(lntmsg, 0);
2432                 RETURN(0);
2433
2434         case GNILND_MSG_PUT_REQ:
2435                 /* LNET wants to truncate or drop transaction, sending NAK */
2436                 if (mlen == 0) {
2437                         kgnilnd_consume_rx(rx);
2438                         lnet_finalize(lntmsg, 0);
2439
2440                         /* only error if lntmsg == NULL, otherwise we are just
2441                          * short circuiting the rdma process of 0 bytes */
2442                         kgnilnd_nak_rdma(conn, rxmsg->gnm_type,
2443                                          lntmsg == NULL ? -ENOENT : 0,
2444                                          rxmsg->gnm_u.get.gngm_cookie,
2445                                          lnet_nid_to_nid4(&ni->ni_nid));
2446                         RETURN(0);
2447                 }
2448                 /* sending ACK with sink buff. info */
2449                 tx = kgnilnd_new_tx_msg(GNILND_MSG_PUT_ACK,
2450                                         lnet_nid_to_nid4(&ni->ni_nid));
2451                 if (tx == NULL) {
2452                         kgnilnd_consume_rx(rx);
2453                         RETURN(-ENOMEM);
2454                 }
2455
2456                 rc = kgnilnd_set_tx_id(tx, conn);
2457                 if (rc != 0) {
2458                         GOTO(nak_put_req, rc);
2459                 }
2460
2461                 rc = kgnilnd_setup_rdma_buffer(tx, niov,
2462                                                kiov, offset, mlen);
2463                 if (rc != 0) {
2464                         GOTO(nak_put_req, rc);
2465                 }
2466
2467                 tx->tx_msg.gnm_u.putack.gnpam_src_cookie =
2468                         rxmsg->gnm_u.putreq.gnprm_cookie;
2469                 tx->tx_msg.gnm_u.putack.gnpam_dst_cookie = tx->tx_id.txe_cookie;
2470                 tx->tx_msg.gnm_u.putack.gnpam_desc.gnrd_addr =
2471                         (__u64)((unsigned long)tx->tx_buffer);
2472                 tx->tx_msg.gnm_u.putack.gnpam_desc.gnrd_nob = mlen;
2473
2474                 tx->tx_lntmsg[0] = lntmsg; /* finalize this on RDMA_DONE */
2475                 tx->tx_qtime = jiffies;
2476                 /* we only queue from kgnilnd_recv - we might get called from other contexts
2477                  * and we don't want to block the mutex in those cases */
2478
2479                 spin_lock(&tx->tx_conn->gnc_device->gnd_lock);
2480                 kgnilnd_tx_add_state_locked(tx, NULL, tx->tx_conn, GNILND_TX_MAPQ, 1);
2481                 spin_unlock(&tx->tx_conn->gnc_device->gnd_lock);
2482                 kgnilnd_schedule_device(tx->tx_conn->gnc_device);
2483
2484                 kgnilnd_consume_rx(rx);
2485                 RETURN(0);
2486
2487 nak_put_req:
2488                 /* make sure we send an error back when the PUT fails */
2489                 kgnilnd_nak_rdma(conn, rxmsg->gnm_type, rc,
2490                                  rxmsg->gnm_u.get.gngm_cookie,
2491                                  lnet_nid_to_nid4(&ni->ni_nid));
2492                 kgnilnd_tx_done(tx, rc);
2493                 kgnilnd_consume_rx(rx);
2494
2495                 /* return magic LNet network error */
2496                 RETURN(-EIO);
2497         case GNILND_MSG_GET_REQ_REV:
2498                 /* LNET wants to truncate or drop transaction, sending NAK */
2499                 if (mlen == 0) {
2500                         kgnilnd_consume_rx(rx);
2501                         lnet_finalize(lntmsg, 0);
2502
2503                         /* only error if lntmsg == NULL, otherwise we are just
2504                          * short circuiting the rdma process of 0 bytes */
2505                         kgnilnd_nak_rdma(conn, rxmsg->gnm_type,
2506                                          lntmsg == NULL ? -ENOENT : 0,
2507                                          rxmsg->gnm_u.get.gngm_cookie,
2508                                          lnet_nid_to_nid4(&ni->ni_nid));
2509                         RETURN(0);
2510                 }
2511                 /* lntmsg can be null when parsing a LNET_GET */
2512                 if (lntmsg != NULL) {
2513                         /* sending ACK with sink buff. info */
2514                         tx = kgnilnd_new_tx_msg(GNILND_MSG_GET_ACK_REV,
2515                                                 lnet_nid_to_nid4(&ni->ni_nid));
2516                         if (tx == NULL) {
2517                                 kgnilnd_consume_rx(rx);
2518                                 RETURN(-ENOMEM);
2519                         }
2520
2521                         rc = kgnilnd_set_tx_id(tx, conn);
2522                         if (rc != 0)
2523                                 GOTO(nak_get_req_rev, rc);
2524
2525                         rc = kgnilnd_setup_rdma_buffer(tx, niov,
2526                                                        kiov, offset, mlen);
2527                         if (rc != 0)
2528                                 GOTO(nak_get_req_rev, rc);
2529
2530                         tx->tx_msg.gnm_u.putack.gnpam_src_cookie =
2531                                 rxmsg->gnm_u.putreq.gnprm_cookie;
2532                         tx->tx_msg.gnm_u.putack.gnpam_dst_cookie = tx->tx_id.txe_cookie;
2533                         tx->tx_msg.gnm_u.putack.gnpam_desc.gnrd_addr =
2534                                 (__u64)((unsigned long)tx->tx_buffer);
2535                         tx->tx_msg.gnm_u.putack.gnpam_desc.gnrd_nob = mlen;
2536
2537                         tx->tx_lntmsg[0] = lntmsg; /* finalize this on RDMA_DONE */
2538
2539                         /* we only queue from kgnilnd_recv - we might get called from other contexts
2540                          * and we don't want to block the mutex in those cases */
2541
2542                         spin_lock(&tx->tx_conn->gnc_device->gnd_lock);
2543                         kgnilnd_tx_add_state_locked(tx, NULL, tx->tx_conn, GNILND_TX_MAPQ, 1);
2544                         spin_unlock(&tx->tx_conn->gnc_device->gnd_lock);
2545                         kgnilnd_schedule_device(tx->tx_conn->gnc_device);
2546                 } else {
2547                         /* No match */
2548                         kgnilnd_nak_rdma(conn, rxmsg->gnm_type,
2549                                          -ENOENT,
2550                                          rxmsg->gnm_u.get.gngm_cookie,
2551                                          lnet_nid_to_nid4(&ni->ni_nid));
2552                 }
2553
2554                 kgnilnd_consume_rx(rx);
2555                 RETURN(0);
2556
2557 nak_get_req_rev:
2558                 /* make sure we send an error back when the GET fails */
2559                 kgnilnd_nak_rdma(conn, rxmsg->gnm_type, rc,
2560                                  rxmsg->gnm_u.get.gngm_cookie,
2561                                  lnet_nid_to_nid4(&ni->ni_nid));
2562                 kgnilnd_tx_done(tx, rc);
2563                 kgnilnd_consume_rx(rx);
2564
2565                 /* return magic LNet network error */
2566                 RETURN(-EIO);
2567
2568
2569         case GNILND_MSG_PUT_REQ_REV:
2570                 /* LNET wants to truncate or drop transaction, sending NAK */
2571                 if (mlen == 0) {
2572                         kgnilnd_consume_rx(rx);
2573                         lnet_finalize(lntmsg, 0);
2574
2575                         /* only error if lntmsg == NULL, otherwise we are just
2576                          * short circuiting the rdma process of 0 bytes */
2577                         kgnilnd_nak_rdma(conn, rxmsg->gnm_type,
2578                                          lntmsg == NULL ? -ENOENT : 0,
2579                                          rxmsg->gnm_u.get.gngm_cookie,
2580                                          lnet_nid_to_nid4(&ni->ni_nid));
2581                         RETURN(0);
2582                 }
2583
2584                 if (lntmsg != NULL) {
2585                         /* Matched! */
2586                         kgnilnd_setup_rdma(ni, rx, lntmsg, mlen);
2587                 } else {
2588                         /* No match */
2589                         kgnilnd_nak_rdma(conn, rxmsg->gnm_type,
2590                                          -ENOENT,
2591                                          rxmsg->gnm_u.get.gngm_cookie,
2592                                          lnet_nid_to_nid4(&ni->ni_nid));
2593                 }
2594                 kgnilnd_consume_rx(rx);
2595                 RETURN(0);
2596         case GNILND_MSG_GET_REQ:
2597                 if (lntmsg != NULL) {
2598                         /* Matched! */
2599                         kgnilnd_setup_rdma(ni, rx, lntmsg, mlen);
2600                 } else {
2601                         /* No match */
2602                         kgnilnd_nak_rdma(conn, rxmsg->gnm_type,
2603                                          -ENOENT,
2604                                          rxmsg->gnm_u.get.gngm_cookie,
2605                                          lnet_nid_to_nid4(&ni->ni_nid));
2606                 }
2607                 kgnilnd_consume_rx(rx);
2608                 RETURN(0);
2609         }
2610         RETURN(0);
2611 }
2612
2613 /* needs write_lock on kgn_peer_conn_lock held */
2614 int
2615 kgnilnd_check_conn_timeouts_locked(kgn_conn_t *conn)
2616 {
2617         unsigned long      timeout, keepalive;
2618         unsigned long      now = jiffies;
2619         unsigned long      newest_last_rx;
2620         kgn_tx_t          *tx;
2621
2622         /* given that we found this conn hanging off a peer, it better damned
2623          * well be connected */
2624         LASSERTF(conn->gnc_state == GNILND_CONN_ESTABLISHED,
2625                  "conn 0x%p->%s with bad state%s\n", conn,
2626                  conn->gnc_peer ? libcfs_nid2str(conn->gnc_peer->gnp_nid)
2627                                : "<?>",
2628                  kgnilnd_conn_state2str(conn));
2629
2630         CDEBUG(D_NET, "checking conn %p->%s timeout %d keepalive %d "
2631                       "rx_diff %lu tx_diff %lu\n",
2632                 conn, libcfs_nid2str(conn->gnc_peer->gnp_nid),
2633                 conn->gnc_timeout, GNILND_TO2KA(conn->gnc_timeout),
2634                 cfs_duration_sec(now - conn->gnc_last_rx_cq),
2635                 cfs_duration_sec(now - conn->gnc_last_tx));
2636
2637         timeout = cfs_time_seconds(conn->gnc_timeout);
2638         keepalive = cfs_time_seconds(GNILND_TO2KA(conn->gnc_timeout));
2639
2640         /* just in case our lack of RX msg processing is gumming up the works - give the
2641          * remove an extra chance */
2642
2643         newest_last_rx = GNILND_LASTRX(conn);
2644
2645         if (time_after_eq(now, newest_last_rx + timeout)) {
2646                 uint32_t level = D_CONSOLE|D_NETERROR;
2647
2648                 if (conn->gnc_peer->gnp_state == GNILND_PEER_DOWN) {
2649                         level = D_NET;
2650                 }
2651                         GNIDBG_CONN(level, conn,
2652                         "No gnilnd traffic received from %s for %lu "
2653                         "seconds, terminating connection. Is node down? ",
2654                         libcfs_nid2str(conn->gnc_peer->gnp_nid),
2655                         cfs_duration_sec(now - newest_last_rx));
2656                 return -ETIMEDOUT;
2657         }
2658
2659         /* we don't timeout on last_tx stalls - we are going to trust the
2660          * underlying network to let us know when sends are failing.
2661          * At worst, the peer will timeout our RX stamp and drop the connection
2662          * at that point. We'll then see his CLOSE or at worst his RX
2663          * stamp stop and drop the connection on our end */
2664
2665         if (time_after_eq(now, conn->gnc_last_tx + keepalive)) {
2666                 CDEBUG(D_NET, "sending NOOP -> %s (%p idle %lu(%lu)) "
2667                        "last %lu/%lu/%lu %lus/%lus/%lus\n",
2668                        libcfs_nid2str(conn->gnc_peer->gnp_nid), conn,
2669                        cfs_duration_sec(jiffies - conn->gnc_last_tx),
2670                        keepalive,
2671                        conn->gnc_last_noop_want, conn->gnc_last_noop_sent,
2672                        conn->gnc_last_noop_cq,
2673                        cfs_duration_sec(jiffies - conn->gnc_last_noop_want),
2674                        cfs_duration_sec(jiffies - conn->gnc_last_noop_sent),
2675                        cfs_duration_sec(jiffies - conn->gnc_last_noop_cq));
2676                 set_mb(conn->gnc_last_noop_want, jiffies);
2677                 atomic_inc(&conn->gnc_reaper_noop);
2678                 if (CFS_FAIL_CHECK(CFS_FAIL_GNI_NOOP_SEND))
2679                         return 0;
2680
2681                 tx = kgnilnd_new_tx_msg(GNILND_MSG_NOOP,
2682                                         lnet_nid_to_nid4(&conn->gnc_peer->gnp_net->gnn_ni->ni_nid));
2683                 if (tx == NULL)
2684                         return 0;
2685                 kgnilnd_queue_tx(conn, tx);
2686         }
2687
2688         return 0;
2689 }
2690
2691 /* needs write_lock on kgn_peer_conn_lock held */
2692 void
2693 kgnilnd_check_peer_timeouts_locked(kgn_peer_t *peer, struct list_head *todie,
2694                                     struct list_head *souls)
2695 {
2696         unsigned long           timeout;
2697         kgn_conn_t             *conn, *connN = NULL;
2698         kgn_tx_t               *tx, *txN;
2699         int                     rc = 0;
2700         int                     count = 0;
2701         int                     reconnect;
2702         int                     to_reconn;
2703         short                   releaseconn = 0;
2704         unsigned long           first_rx = 0;
2705         int                     purgatory_conn_cnt = 0;
2706
2707         CDEBUG(D_NET, "checking peer 0x%p->%s for timeouts; interval %lus\n",
2708                 peer, libcfs_nid2str(peer->gnp_nid),
2709                 peer->gnp_reconnect_interval);
2710
2711         timeout = cfs_time_seconds(max(*kgnilnd_tunables.kgn_timeout,
2712                                        GNILND_MIN_TIMEOUT));
2713
2714         conn = kgnilnd_find_conn_locked(peer);
2715         if (conn) {
2716                 /* if there is a valid conn, check the queues for timeouts */
2717                 rc = kgnilnd_check_conn_timeouts_locked(conn);
2718                 if (rc) {
2719                         if (CFS_FAIL_CHECK(CFS_FAIL_GNI_RX_CLOSE_CLOSING)) {
2720                                 /* simulate a RX CLOSE after the timeout but before
2721                                  * the scheduler thread gets it */
2722                                 conn->gnc_close_recvd = GNILND_CLOSE_INJECT1;
2723                                 conn->gnc_peer_error = -ETIMEDOUT;
2724                         }
2725
2726                         if (*kgnilnd_tunables.kgn_to_reconn_disable &&
2727                             rc == -ETIMEDOUT) {
2728                                 peer->gnp_state = GNILND_PEER_TIMED_OUT;
2729                                 CDEBUG(D_WARNING, "%s conn timed out, will "
2730                                        "reconnect upon request from peer\n",
2731                                        libcfs_nid2str(conn->gnc_peer->gnp_nid));
2732                         }
2733                         /* Once we mark closed, any of the scheduler threads could
2734                          * get it and move through before we hit the fail loc code */
2735                         kgnilnd_close_conn_locked(conn, rc);
2736                 } else {
2737                         /* first_rx is used to decide when to release a conn from purgatory.
2738                          */
2739                         first_rx = conn->gnc_first_rx;
2740                 }
2741         }
2742
2743         /* now regardless of starting new conn, find tx on peer queue that
2744          * are old and smell bad - do this first so we don't trigger
2745          * reconnect on empty queue if we timeout all */
2746         list_for_each_entry_safe(tx, txN, &peer->gnp_tx_queue, tx_list) {
2747                 if (time_after_eq(jiffies, tx->tx_qtime + timeout)) {
2748                         if (count == 0) {
2749                                 LCONSOLE_INFO("could not send to %s due to connection"
2750                                        " setup failure after %lu seconds\n",
2751                                        libcfs_nid2str(peer->gnp_nid),
2752                                        cfs_duration_sec(jiffies - tx->tx_qtime));
2753                         }
2754                         kgnilnd_tx_del_state_locked(tx, peer, NULL,
2755                                                    GNILND_TX_ALLOCD);
2756                         list_add_tail(&tx->tx_list, todie);
2757                         count++;
2758                 }
2759         }
2760
2761         if (count || peer->gnp_connecting == GNILND_PEER_KILL) {
2762                 CDEBUG(D_NET, "canceling %d tx for peer 0x%p->%s\n",
2763                         count, peer, libcfs_nid2str(peer->gnp_nid));
2764                 /* if we nuked all the TX, stop peer connection attempt (if there is one..) */
2765                 if (list_empty(&peer->gnp_tx_queue) ||
2766                         peer->gnp_connecting == GNILND_PEER_KILL) {
2767                         /* we pass down todie to use a common function - but we know there are
2768                          * no TX to add */
2769                         kgnilnd_cancel_peer_connect_locked(peer, todie);
2770                 }
2771         }
2772
2773         /* Don't reconnect if we are still trying to clear out old conns.
2774          * This prevents us sending traffic on the new mbox before ensuring we are done
2775          * with the old one */
2776         reconnect = (peer->gnp_state == GNILND_PEER_UP) &&
2777                     (atomic_read(&peer->gnp_dirty_eps) == 0);
2778
2779         /* fast reconnect after a timeout */
2780         to_reconn = !conn &&
2781                     (peer->gnp_last_errno == -ETIMEDOUT) &&
2782                     *kgnilnd_tunables.kgn_fast_reconn;
2783
2784         /* if we are not connected and there are tx on the gnp_tx_queue waiting
2785          * to be sent, we'll check the reconnect interval and fire up a new
2786          * connection request */
2787
2788         if (reconnect &&
2789             (peer->gnp_connecting == GNILND_PEER_IDLE) &&
2790             (time_after_eq(jiffies, peer->gnp_reconnect_time)) &&
2791             (!list_empty(&peer->gnp_tx_queue) || to_reconn)) {
2792
2793                 CDEBUG(D_NET, "starting connect to %s\n",
2794                         libcfs_nid2str(peer->gnp_nid));
2795                 LASSERTF(peer->gnp_connecting == GNILND_PEER_IDLE,
2796                          "Peer was idle and we have a write_lock, state issue %d\n",
2797                          peer->gnp_connecting);
2798
2799                 peer->gnp_connecting = GNILND_PEER_CONNECT;
2800                 kgnilnd_peer_addref(peer); /* extra ref for connd */
2801
2802                 spin_lock(&peer->gnp_net->gnn_dev->gnd_connd_lock);
2803                 list_add_tail(&peer->gnp_connd_list,
2804                               &peer->gnp_net->gnn_dev->gnd_connd_peers);
2805                 spin_unlock(&peer->gnp_net->gnn_dev->gnd_connd_lock);
2806
2807                 kgnilnd_schedule_dgram(peer->gnp_net->gnn_dev);
2808         }
2809
2810         /* fail_loc to allow us to delay release of purgatory */
2811         if (CFS_FAIL_CHECK(CFS_FAIL_GNI_PURG_REL_DELAY))
2812                 return;
2813
2814         /* This check allows us to verify that the new conn is actually being used. This allows us to
2815          * pull the old conns out of purgatory if they have actually seen traffic.
2816          * We only release a conn from purgatory during stack reset, admin command, or when a peer reconnects
2817          */
2818         if (first_rx &&
2819                 time_after(jiffies, first_rx + cfs_time_seconds(*kgnilnd_tunables.kgn_hardware_timeout))) {
2820                 CDEBUG(D_INFO, "We can release peer %s conn's from purgatory %lu\n",
2821                         libcfs_nid2str(peer->gnp_nid), first_rx + cfs_time_seconds(*kgnilnd_tunables.kgn_hardware_timeout));
2822                 releaseconn = 1;
2823         }
2824
2825         list_for_each_entry_safe (conn, connN, &peer->gnp_conns, gnc_list) {
2826         /* check for purgatory timeouts */
2827                 if (conn->gnc_in_purgatory) {
2828                         /* We cannot detach this conn from purgatory if it has not been closed so we reschedule it
2829                          * that way the next time we check it we can detach it from purgatory
2830                          */
2831
2832                         if (conn->gnc_state != GNILND_CONN_DONE) {
2833                                 /* Skip over conns that are currently not DONE. If they arent already scheduled
2834                                  * for completion something in the state machine is broken.
2835                                  */
2836                                 continue;
2837                         }
2838
2839                         /* We only detach a conn that is in purgatory if we have received a close message,
2840                          * we have a new valid connection that has successfully received data, or an admin
2841                          * command tells us we need to detach.
2842                          */
2843
2844                         if (conn->gnc_close_recvd || releaseconn || conn->gnc_needs_detach) {
2845                                 unsigned long   waiting;
2846
2847                                 waiting = (long) jiffies - conn->gnc_last_rx_cq;
2848
2849                                 /* C.E: The remote peer is expected to close the
2850                                  * connection (see kgnilnd_check_conn_timeouts)
2851                                  * via the reaper thread and nuke out the MDD and
2852                                  * FMA resources after conn->gnc_timeout has expired
2853                                  * without an FMA RX */
2854                                 CDEBUG(D_NET, "Reconnected to %s in %lds or admin forced detach, dropping "
2855                                         " held resources\n",
2856                                         libcfs_nid2str(conn->gnc_peer->gnp_nid),
2857                                         cfs_duration_sec(waiting));
2858
2859                                 kgnilnd_detach_purgatory_locked(conn, souls);
2860                         } else {
2861                                 purgatory_conn_cnt++;
2862                         }
2863                 }
2864         }
2865
2866         /* If we have too many connections in purgatory we could run out of
2867          * resources. Limit the number of connections to a tunable number,
2868          * clean up to the minimum all in one fell swoop... there are
2869          * situations where dvs will retry tx's and we can eat up several
2870          * hundread connection requests at once.
2871          */
2872         if (purgatory_conn_cnt > *kgnilnd_tunables.kgn_max_purgatory) {
2873                 list_for_each_entry_safe(conn, connN, &peer->gnp_conns,
2874                                          gnc_list) {
2875                         if (conn->gnc_in_purgatory &&
2876                             conn->gnc_state == GNILND_CONN_DONE) {
2877                                 CDEBUG(D_NET, "Dropping Held resource due to"
2878                                               " resource limits being hit\n");
2879                                 kgnilnd_detach_purgatory_locked(conn, souls);
2880
2881                                 if (purgatory_conn_cnt-- <
2882                                     *kgnilnd_tunables.kgn_max_purgatory)
2883                                         break;
2884                         }
2885                 }
2886         }
2887 }
2888
2889 void
2890 kgnilnd_reaper_check(int idx)
2891 {
2892         struct list_head  *peers = &kgnilnd_data.kgn_peers[idx];
2893         struct list_head  *ctmp, *ctmpN;
2894         LIST_HEAD(geriatrics);
2895         LIST_HEAD(souls);
2896
2897         write_lock(&kgnilnd_data.kgn_peer_conn_lock);
2898
2899         list_for_each_safe(ctmp, ctmpN, peers) {
2900                 kgn_peer_t        *peer = NULL;
2901
2902                 /* don't timeout stuff if the network is mucked or shutting down */
2903                 if (kgnilnd_check_hw_quiesce()) {
2904                         break;
2905                 }
2906                 peer = list_entry(ctmp, kgn_peer_t, gnp_list);
2907
2908                 kgnilnd_check_peer_timeouts_locked(peer, &geriatrics, &souls);
2909         }
2910
2911         write_unlock(&kgnilnd_data.kgn_peer_conn_lock);
2912
2913         kgnilnd_txlist_done(&geriatrics, -EHOSTUNREACH);
2914         kgnilnd_release_purgatory_list(&souls);
2915 }
2916
2917 void
2918 kgnilnd_update_reaper_timeout(long timeout)
2919 {
2920         LASSERT(timeout > 0);
2921
2922         spin_lock(&kgnilnd_data.kgn_reaper_lock);
2923
2924         if (timeout < kgnilnd_data.kgn_new_min_timeout)
2925                 kgnilnd_data.kgn_new_min_timeout = timeout;
2926
2927         spin_unlock(&kgnilnd_data.kgn_reaper_lock);
2928 }
2929
2930 static void
2931 kgnilnd_reaper_poke_with_stick(cfs_timer_cb_arg_t arg)
2932 {
2933         wake_up(&kgnilnd_data.kgn_reaper_waitq);
2934 }
2935
2936 int
2937 kgnilnd_reaper(void *arg)
2938 {
2939         long               timeout;
2940         int                i;
2941         int                hash_index = 0;
2942         unsigned long      next_check_time = jiffies;
2943         long               current_min_timeout = MAX_SCHEDULE_TIMEOUT;
2944         struct timer_list  timer;
2945         DEFINE_WAIT(wait);
2946
2947         /* all gnilnd threads need to run fairly urgently */
2948         set_user_nice(current, *kgnilnd_tunables.kgn_nice);
2949         spin_lock(&kgnilnd_data.kgn_reaper_lock);
2950
2951         while (!kgnilnd_data.kgn_shutdown) {
2952                 /* I wake up every 'p' seconds to check for timeouts on some
2953                  * more peers.  I try to check every connection 'n' times
2954                  * within the global minimum of all keepalive and timeout
2955                  * intervals, to ensure I attend to every connection within
2956                  * (n+1)/n times its timeout intervals. */
2957                 const int     p = GNILND_REAPER_THREAD_WAKE;
2958                 const int     n = GNILND_REAPER_NCHECKS;
2959                 int           chunk;
2960                 /* to quiesce or to not quiesce, that is the question */
2961                 if (unlikely(kgnilnd_data.kgn_quiesce_trigger)) {
2962                         spin_unlock(&kgnilnd_data.kgn_reaper_lock);
2963                         KGNILND_SPIN_QUIESCE;
2964                         spin_lock(&kgnilnd_data.kgn_reaper_lock);
2965                 }
2966
2967                 /* careful with the jiffy wrap... */
2968                 timeout = (long)(next_check_time - jiffies);
2969
2970                 if (timeout > 0) {
2971                         prepare_to_wait(&kgnilnd_data.kgn_reaper_waitq, &wait,
2972                                         TASK_INTERRUPTIBLE);
2973                         spin_unlock(&kgnilnd_data.kgn_reaper_lock);
2974                         cfs_timer_setup(&timer, kgnilnd_reaper_poke_with_stick,
2975                                         next_check_time, 0);
2976                         mod_timer(&timer, (long) jiffies + timeout);
2977
2978                         /* check flag variables before committing */
2979                         if (!kgnilnd_data.kgn_shutdown &&
2980                             !kgnilnd_data.kgn_quiesce_trigger) {
2981                                 CDEBUG(D_INFO, "schedule timeout %ld (%lu sec)\n",
2982                                        timeout, cfs_duration_sec(timeout));
2983                                 schedule();
2984                                 CDEBUG(D_INFO, "awake after schedule\n");
2985                         }
2986
2987                         del_singleshot_timer_sync(&timer);
2988                         spin_lock(&kgnilnd_data.kgn_reaper_lock);
2989                         finish_wait(&kgnilnd_data.kgn_reaper_waitq, &wait);
2990                         continue;
2991                 }
2992
2993                 /* new_min_timeout is set from the conn timeouts and keepalive
2994                  * this should end up with a min timeout of
2995                  * GNILND_TIMEOUT2KEEPALIVE(t) or roughly LND_TIMEOUT/2 */
2996                 if (kgnilnd_data.kgn_new_min_timeout < current_min_timeout) {
2997                         current_min_timeout = kgnilnd_data.kgn_new_min_timeout;
2998                         CDEBUG(D_NET, "Set new min timeout %ld\n",
2999                                current_min_timeout);
3000                 }
3001
3002                 spin_unlock(&kgnilnd_data.kgn_reaper_lock);
3003
3004                 /* Compute how many table entries to check now so I get round
3005                  * the whole table fast enough given that I do this at fixed
3006                  * intervals of 'p' seconds) */
3007                 chunk = *kgnilnd_tunables.kgn_peer_hash_size;
3008                 if (kgnilnd_data.kgn_new_min_timeout > n * p)
3009                         chunk = (chunk * n * p) /
3010                                 kgnilnd_data.kgn_new_min_timeout;
3011                 if (chunk == 0)
3012                         chunk = 1;
3013                 for (i = 0; i < chunk; i++) {
3014                         kgnilnd_reaper_check(hash_index);
3015                         hash_index = (hash_index + 1) %
3016                                 *kgnilnd_tunables.kgn_peer_hash_size;
3017                 }
3018                 next_check_time = (long) jiffies + cfs_time_seconds(p);
3019                 CDEBUG(D_INFO, "next check at %lu or in %d sec\n", next_check_time, p);
3020
3021                 spin_lock(&kgnilnd_data.kgn_reaper_lock);
3022         }
3023
3024         spin_unlock(&kgnilnd_data.kgn_reaper_lock);
3025
3026         kgnilnd_thread_fini();
3027         return 0;
3028 }
3029
3030 int
3031 kgnilnd_recv_bte_get(kgn_tx_t *tx) {
3032         unsigned niov, offset, nob;
3033         struct bio_vec *kiov;
3034         struct lnet_msg *lntmsg = tx->tx_lntmsg[0];
3035         kgnilnd_parse_lnet_rdma(lntmsg, &niov, &offset, &nob, &kiov, tx->tx_nob_rdma);
3036
3037         if (kiov != NULL) {
3038                 lnet_copy_flat2kiov(
3039                         niov, kiov, offset,
3040                         nob,
3041                         tx->tx_buffer_copy + tx->tx_offset, 0, nob);
3042         } else {
3043                 memcpy(tx->tx_buffer, tx->tx_buffer_copy + tx->tx_offset, nob);
3044         }
3045         return 0;
3046 }
3047
3048
3049 int
3050 kgnilnd_check_rdma_cq(kgn_device_t *dev)
3051 {
3052         gni_return_t           rrc;
3053         gni_post_descriptor_t *desc;
3054         __u64                  event_data;
3055         kgn_tx_ev_id_t         ev_id;
3056         char                   err_str[256];
3057         int                    should_retry, rc;
3058         long                   num_processed = 0;
3059         kgn_conn_t            *conn = NULL;
3060         kgn_tx_t              *tx = NULL;
3061         kgn_rdma_desc_t       *rdesc;
3062         unsigned int           rnob;
3063         __u64                  rcookie;
3064
3065         for (;;) {
3066                 /* make sure we don't keep looping if we need to reset */
3067                 if (unlikely(kgnilnd_data.kgn_quiesce_trigger)) {
3068                         return num_processed;
3069                 }
3070                 rc = kgnilnd_mutex_trylock(&dev->gnd_cq_mutex);
3071                 if (!rc) {
3072                         /* we didn't get the mutex, so return that there is still work
3073                          * to be done */
3074                         return 1;
3075                 }
3076                 if (CFS_FAIL_CHECK(CFS_FAIL_GNI_DELAY_RDMA)) {
3077                         /* a bit gross - but we need a good way to test for
3078                          * delayed RDMA completions and the easiest way to do
3079                          * that is to delay the RDMA CQ events */
3080                         rrc = GNI_RC_NOT_DONE;
3081                 } else {
3082                         rrc = kgnilnd_cq_get_event(dev->gnd_snd_rdma_cqh, &event_data);
3083                 }
3084
3085                 if (rrc == GNI_RC_NOT_DONE) {
3086                         kgnilnd_gl_mutex_unlock(&dev->gnd_cq_mutex);
3087                         CDEBUG(D_INFO, "SEND RDMA CQ %d empty processed %ld\n",
3088                                dev->gnd_id, num_processed);
3089                         return num_processed;
3090                 }
3091                 dev->gnd_sched_alive = jiffies;
3092                 num_processed++;
3093
3094                 LASSERTF(!GNI_CQ_OVERRUN(event_data),
3095                         "this is bad, somehow our credits didn't protect us"
3096                         " from CQ overrun\n");
3097                 LASSERTF(GNI_CQ_GET_TYPE(event_data) == GNI_CQ_EVENT_TYPE_POST,
3098                         "rrc %d, GNI_CQ_GET_TYPE(%#llx) = %#llx\n", rrc,
3099                         event_data, GNI_CQ_GET_TYPE(event_data));
3100
3101                 rrc = kgnilnd_get_completed(dev->gnd_snd_rdma_cqh, event_data,
3102                                             &desc);
3103                 kgnilnd_gl_mutex_unlock(&dev->gnd_cq_mutex);
3104
3105                 /* XXX Nic: Need better error handling here... */
3106                 LASSERTF((rrc == GNI_RC_SUCCESS) ||
3107                           (rrc == GNI_RC_TRANSACTION_ERROR),
3108                          "rrc %d\n", rrc);
3109
3110                 ev_id.txe_cookie = desc->post_id;
3111
3112                 kgnilnd_validate_tx_ev_id(&ev_id, &tx, &conn);
3113
3114                 if (conn == NULL || tx == NULL) {
3115                         /* either conn or tx was already nuked and this is a "late"
3116                          * completion, so drop it */
3117                         continue;
3118                 }
3119
3120                 GNITX_ASSERTF(tx, tx->tx_msg.gnm_type == GNILND_MSG_PUT_DONE ||
3121                         tx->tx_msg.gnm_type == GNILND_MSG_GET_DONE ||
3122                         tx->tx_msg.gnm_type == GNILND_MSG_PUT_DONE_REV ||
3123                         tx->tx_msg.gnm_type == GNILND_MSG_GET_DONE_REV,
3124                         "tx %p with type %d\n", tx, tx->tx_msg.gnm_type);
3125
3126                 GNIDBG_TX(D_NET, tx, "RDMA completion for %d bytes", tx->tx_nob);
3127
3128                 if (tx->tx_msg.gnm_type == GNILND_MSG_GET_DONE_REV) {
3129                         lnet_set_reply_msg_len(NULL, tx->tx_lntmsg[1],
3130                                                tx->tx_msg.gnm_u.completion.gncm_retval);
3131                 }
3132
3133                 rc = 0;
3134                 if (tx->tx_msg.gnm_type == GNILND_MSG_GET_DONE_REV && desc->status == GNI_RC_SUCCESS) {
3135                         if (tx->tx_buffer_copy != NULL)
3136                                 kgnilnd_recv_bte_get(tx);
3137                         rc = kgnilnd_verify_rdma_cksum(tx, tx->tx_putinfo.gnpam_payload_cksum, tx->tx_nob_rdma);
3138                 }
3139
3140                 if (tx->tx_msg.gnm_type == GNILND_MSG_PUT_DONE_REV && desc->status == GNI_RC_SUCCESS) {
3141                         if (tx->tx_buffer_copy != NULL)
3142                                 kgnilnd_recv_bte_get(tx);
3143                         rc = kgnilnd_verify_rdma_cksum(tx, tx->tx_getinfo.gngm_payload_cksum, tx->tx_nob_rdma);
3144                 }
3145
3146                 /* remove from rdmaq */
3147                 kgnilnd_conn_mutex_lock(&conn->gnc_rdma_mutex);
3148                 spin_lock(&conn->gnc_list_lock);
3149                 kgnilnd_tx_del_state_locked(tx, NULL, conn, GNILND_TX_ALLOCD);
3150                 spin_unlock(&conn->gnc_list_lock);
3151                 kgnilnd_conn_mutex_unlock(&conn->gnc_rdma_mutex);
3152
3153                 if (CFS_FAIL_CHECK(CFS_FAIL_GNI_RDMA_CQ_ERROR)) {
3154                         event_data = 1LL << 48;
3155                         rc = 1;
3156                 }
3157
3158                 if (likely(desc->status == GNI_RC_SUCCESS) && rc == 0) {
3159                         atomic_inc(&dev->gnd_rdma_ntx);
3160                         atomic64_add(tx->tx_nob, &dev->gnd_rdma_txbytes);
3161                         /* transaction succeeded, add into fmaq */
3162                         kgnilnd_queue_tx(conn, tx);
3163                         kgnilnd_peer_alive(conn->gnc_peer);
3164
3165                         /* drop ref from kgnilnd_validate_tx_ev_id */
3166                         kgnilnd_admin_decref(conn->gnc_tx_in_use);
3167                         kgnilnd_conn_decref(conn);
3168
3169                         continue;
3170                 }
3171
3172                 /* fall through to the TRANSACTION_ERROR case */
3173                 tx->tx_retrans++;
3174
3175                 /* get stringified version for log messages */
3176                 kgnilnd_cq_error_str(event_data, &err_str, 256);
3177                 kgnilnd_cq_error_recoverable(event_data, &should_retry);
3178
3179                 /* make sure we are not off in the weeds with this tx */
3180                 if (tx->tx_retrans >
3181                         *kgnilnd_tunables.kgn_max_retransmits) {
3182                         GNIDBG_TX(D_NETERROR, tx,
3183                                "giving up on TX, too many retries", NULL);
3184                         should_retry = 0;
3185                 }
3186
3187                 GNIDBG_TX(D_NETERROR, tx, "RDMA %s error (%s)",
3188                         should_retry ? "transient" : "unrecoverable", err_str);
3189
3190                 if (tx->tx_msg.gnm_type == GNILND_MSG_PUT_DONE ||
3191                     tx->tx_msg.gnm_type == GNILND_MSG_GET_DONE_REV) {
3192                         rdesc    = &tx->tx_putinfo.gnpam_desc;
3193                         rnob     = tx->tx_putinfo.gnpam_desc.gnrd_nob;
3194                         rcookie  = tx->tx_putinfo.gnpam_dst_cookie;
3195                 } else {
3196                         rdesc    = &tx->tx_getinfo.gngm_desc;
3197                         rnob     = tx->tx_lntmsg[0]->msg_len;
3198                         rcookie  = tx->tx_getinfo.gngm_cookie;
3199                 }
3200
3201                 if (should_retry) {
3202                         kgnilnd_rdma(tx,
3203                                      tx->tx_msg.gnm_type,
3204                                      rdesc,
3205                                      rnob, rcookie);
3206                 } else {
3207                         kgnilnd_nak_rdma(conn,
3208                                          tx->tx_msg.gnm_type,
3209                                          -EFAULT,
3210                                          rcookie,
3211                                          tx->tx_msg.gnm_srcnid);
3212                         kgnilnd_tx_done(tx, -GNILND_NOPURG);
3213                         kgnilnd_close_conn(conn, -ECOMM);
3214                 }
3215
3216                 /* drop ref from kgnilnd_validate_tx_ev_id */
3217                 kgnilnd_admin_decref(conn->gnc_tx_in_use);
3218                 kgnilnd_conn_decref(conn);
3219         }
3220 }
3221
3222 int
3223 kgnilnd_check_fma_send_cq(kgn_device_t *dev)
3224 {
3225         gni_return_t           rrc;
3226         __u64                  event_data;
3227         kgn_tx_ev_id_t         ev_id;
3228         kgn_tx_t              *tx = NULL;
3229         kgn_conn_t            *conn = NULL;
3230         int                    queued_fma, saw_reply, rc;
3231         long                   num_processed = 0;
3232         struct list_head      *ctmp, *ctmpN;
3233
3234         for (;;) {
3235                 /* make sure we don't keep looping if we need to reset */
3236                 if (unlikely(kgnilnd_data.kgn_quiesce_trigger)) {
3237                         return num_processed;
3238                 }
3239
3240                 rc = kgnilnd_mutex_trylock(&dev->gnd_cq_mutex);
3241                 if (!rc) {
3242                         /* we didn't get the mutex, so return that there is still work
3243                          * to be done */
3244                         return 1;
3245                 }
3246
3247                 rrc = kgnilnd_cq_get_event(dev->gnd_snd_fma_cqh, &event_data);
3248                 kgnilnd_gl_mutex_unlock(&dev->gnd_cq_mutex);
3249
3250                 if (rrc == GNI_RC_NOT_DONE) {
3251                         CDEBUG(D_INFO,
3252                                "SMSG send CQ %d not ready (data %#llx) "
3253                                "processed %ld\n", dev->gnd_id, event_data,
3254                                num_processed);
3255
3256                         if (num_processed > 0) {
3257                                 spin_lock(&dev->gnd_lock);
3258                                 if (!list_empty(&dev->gnd_delay_conns)) {
3259                                         list_for_each_safe(ctmp, ctmpN, &dev->gnd_delay_conns) {
3260                                                 conn = list_entry(ctmp, kgn_conn_t, gnc_delaylist);
3261                                                 list_del_init(&conn->gnc_delaylist);
3262                                                 CDEBUG(D_NET, "Moving Conn %p from delay queue to ready_queue\n", conn);
3263                                                 kgnilnd_schedule_conn_nolock(conn);
3264                                         }
3265                                         spin_unlock(&dev->gnd_lock);
3266                                         kgnilnd_schedule_device(dev);
3267                                 } else {
3268                                         spin_unlock(&dev->gnd_lock);
3269                                 }
3270                         }
3271                         return num_processed;
3272                 }
3273
3274                 dev->gnd_sched_alive = jiffies;
3275                 num_processed++;
3276
3277                 LASSERTF(!GNI_CQ_OVERRUN(event_data),
3278                         "this is bad, somehow our credits didn't "
3279                         "protect us from CQ overrun\n");
3280                 LASSERTF(GNI_CQ_GET_TYPE(event_data) == GNI_CQ_EVENT_TYPE_SMSG,
3281                         "rrc %d, GNI_CQ_GET_TYPE(%#llx) = %#llx\n", rrc,
3282                         event_data, GNI_CQ_GET_TYPE(event_data));
3283
3284                 /* if SMSG couldn't handle an error, time for conn to die */
3285                 if (unlikely(rrc == GNI_RC_TRANSACTION_ERROR)) {
3286                         char            err_str[256];
3287
3288                         /* need to take the write_lock to ensure atomicity
3289                          * on the conn state if we need to close it */
3290                         write_lock(&kgnilnd_data.kgn_peer_conn_lock);
3291                         conn = kgnilnd_cqid2conn_locked(GNI_CQ_GET_INST_ID(event_data));
3292                         if (conn == NULL) {
3293                                 /* Conn was destroyed? */
3294                                 CDEBUG(D_NET,
3295                                         "SMSG CQID lookup %#llx failed\n",
3296                                         GNI_CQ_GET_INST_ID(event_data));
3297                                 write_unlock(&kgnilnd_data.kgn_peer_conn_lock);
3298                                 continue;
3299                         }
3300
3301                         kgnilnd_cq_error_str(event_data, &err_str, 256);
3302                         CNETERR("SMSG send error to %s: rc %d (%s)\n",
3303                                libcfs_nid2str(conn->gnc_peer->gnp_nid),
3304                                rrc, err_str);
3305                         kgnilnd_close_conn_locked(conn, -ECOMM);
3306
3307                         write_unlock(&kgnilnd_data.kgn_peer_conn_lock);
3308
3309                         /* no need to process rest of this tx -
3310                          * it is getting canceled */
3311                         continue;
3312                 }
3313
3314                 /* fall through to GNI_RC_SUCCESS case */
3315                 ev_id.txe_smsg_id = GNI_CQ_GET_MSG_ID(event_data);
3316
3317                 kgnilnd_validate_tx_ev_id(&ev_id, &tx, &conn);
3318                 if (conn == NULL || tx == NULL) {
3319                         /* either conn or tx was already nuked and this is a "late"
3320                          * completion, so drop it */
3321                         continue;
3322                 }
3323
3324                 tx->tx_conn->gnc_last_tx_cq = jiffies;
3325                 if (tx->tx_msg.gnm_type == GNILND_MSG_NOOP) {
3326                         set_mb(conn->gnc_last_noop_cq, jiffies);
3327                 }
3328
3329                 /* lock tx_list_state and tx_state */
3330                 kgnilnd_conn_mutex_lock(&conn->gnc_smsg_mutex);
3331                 spin_lock(&tx->tx_conn->gnc_list_lock);
3332
3333                 GNITX_ASSERTF(tx, tx->tx_list_state == GNILND_TX_LIVE_FMAQ,
3334                                 "state not GNILND_TX_LIVE_FMAQ", NULL);
3335                 GNITX_ASSERTF(tx, tx->tx_state & GNILND_TX_WAITING_COMPLETION,
3336                         "not waiting for completion", NULL);
3337
3338                 GNIDBG_TX(D_NET, tx, "SMSG complete tx_state %x rc %d",
3339                         tx->tx_state, rrc);
3340
3341                 tx->tx_state &= ~GNILND_TX_WAITING_COMPLETION;
3342
3343                 /* This will trigger other FMA sends that were
3344                  * pending this completion */
3345                 queued_fma = !list_empty(&tx->tx_conn->gnc_fmaq);
3346
3347                 /* we either did not expect reply or we already got it */
3348                 saw_reply = !(tx->tx_state & GNILND_TX_WAITING_REPLY);
3349
3350                 spin_unlock(&tx->tx_conn->gnc_list_lock);
3351                 kgnilnd_conn_mutex_unlock(&conn->gnc_smsg_mutex);
3352
3353                 if (queued_fma) {
3354                         CDEBUG(D_NET, "scheduling conn 0x%p->%s for fmaq\n",
3355                                conn,
3356                                libcfs_nid2str(conn->gnc_peer->gnp_nid));
3357                         kgnilnd_schedule_conn(conn);
3358                 }
3359
3360                 /* If saw_reply is false as soon as gnc_list_lock is dropped the tx could be nuked
3361                  * If saw_reply is true we know that the tx is safe to use as the other thread
3362                  * is already finished with it.
3363                  */
3364
3365                 if (saw_reply) {
3366                         /* no longer need to track on the live_fmaq */
3367                         kgnilnd_tx_del_state_locked(tx, NULL, tx->tx_conn, GNILND_TX_ALLOCD);
3368
3369                         if (tx->tx_state & GNILND_TX_PENDING_RDMA) {
3370                                 /* we already got reply & were waiting for
3371                                  * completion of initial send */
3372                                 /* to initiate RDMA transaction */
3373                                 GNIDBG_TX(D_NET, tx,
3374                                          "Pending RDMA 0x%p type 0x%02x",
3375                                          tx->tx_msg.gnm_type);
3376                                 tx->tx_state &= ~GNILND_TX_PENDING_RDMA;
3377                                 rc = kgnilnd_send_mapped_tx(tx, 0);
3378                                 GNITX_ASSERTF(tx, rc == 0, "RDMA send failed: %d\n", rc);
3379                         } else {
3380                                 /* we are done with this tx */
3381                                 GNIDBG_TX(D_NET, tx,
3382                                          "Done with tx type 0x%02x",
3383                                          tx->tx_msg.gnm_type);
3384                                 kgnilnd_tx_done(tx, tx->tx_rc);
3385                         }
3386                 }
3387
3388                 /* drop ref from kgnilnd_validate_tx_ev_id */
3389                 kgnilnd_admin_decref(conn->gnc_tx_in_use);
3390                 kgnilnd_conn_decref(conn);
3391
3392                 /* if we are waiting for a REPLY, we'll handle the tx then */
3393         } /* end for loop */
3394 }
3395
3396 int
3397 kgnilnd_check_fma_rcv_cq(kgn_device_t *dev)
3398 {
3399         kgn_conn_t         *conn;
3400         gni_return_t        rrc;
3401         __u64               event_data;
3402         long                num_processed = 0;
3403         struct list_head   *conns;
3404         struct list_head   *tmp;
3405         int                 rc;
3406
3407         for (;;) {
3408                 /* make sure we don't keep looping if we need to reset */
3409                 if (unlikely(kgnilnd_data.kgn_quiesce_trigger)) {
3410                         return num_processed;
3411                 }
3412
3413                 rc = kgnilnd_mutex_trylock(&dev->gnd_cq_mutex);
3414                 if (!rc) {
3415                         /* we didn't get the mutex, so return that there is still work
3416                          * to be done */
3417                         return 1;
3418                 }
3419                 rrc = kgnilnd_cq_get_event(dev->gnd_rcv_fma_cqh, &event_data);
3420                 kgnilnd_gl_mutex_unlock(&dev->gnd_cq_mutex);
3421
3422                 if (rrc == GNI_RC_NOT_DONE) {
3423                         CDEBUG(D_INFO, "SMSG RX CQ %d empty data %#llx "
3424                                 "processed %ld\n",
3425                                 dev->gnd_id, event_data, num_processed);
3426                         return num_processed;
3427                 }
3428                 dev->gnd_sched_alive = jiffies;
3429                 num_processed++;
3430
3431                 /* this is the only CQ that can really handle transient
3432                  * CQ errors */
3433                 if (CFS_FAIL_CHECK(CFS_FAIL_GNI_CQ_GET_EVENT)) {
3434                         rrc = cfs_fail_val ? cfs_fail_val
3435                                            : GNI_RC_ERROR_RESOURCE;
3436                         if (rrc == GNI_RC_ERROR_RESOURCE) {
3437                                 /* set overrun too */
3438                                 event_data |= (1UL << 63);
3439                                 LASSERTF(GNI_CQ_OVERRUN(event_data),
3440                                          "(1UL << 63) is no longer the bit to set to indicate CQ_OVERRUN\n");
3441                         }
3442                 }
3443                 /* sender should get error event too and take care
3444                 of failed transaction by re-transmitting */
3445                 if (rrc == GNI_RC_TRANSACTION_ERROR) {
3446                         CDEBUG(D_NET, "SMSG RX CQ error %#llx\n", event_data);
3447                         continue;
3448                 }
3449
3450                 if (likely(!GNI_CQ_OVERRUN(event_data))) {
3451                         read_lock(&kgnilnd_data.kgn_peer_conn_lock);
3452                         conn = kgnilnd_cqid2conn_locked(
3453                                                  GNI_CQ_GET_INST_ID(event_data));
3454                         if (conn == NULL) {
3455                                 CDEBUG(D_NET, "SMSG RX CQID lookup %llu "
3456                                         "failed, dropping event %#llx\n",
3457                                         GNI_CQ_GET_INST_ID(event_data),
3458                                         event_data);
3459                         } else {
3460                                 CDEBUG(D_NET, "SMSG RX: CQID %llu "
3461                                        "conn %p->%s\n",
3462                                         GNI_CQ_GET_INST_ID(event_data),
3463                                         conn, conn->gnc_peer ?
3464                                         libcfs_nid2str(conn->gnc_peer->gnp_nid) :
3465                                         "<?>");
3466
3467                                 conn->gnc_last_rx_cq = jiffies;
3468
3469                                 /* stash first rx so we can clear out purgatory.
3470                                  */
3471                                 if (conn->gnc_first_rx == 0) {
3472                                         conn->gnc_first_rx = jiffies;
3473                                 }
3474                                 kgnilnd_peer_alive(conn->gnc_peer);
3475                                 kgnilnd_schedule_conn(conn);
3476                         }
3477                         read_unlock(&kgnilnd_data.kgn_peer_conn_lock);
3478                         continue;
3479                 }
3480
3481                 /* FMA CQ has overflowed: check ALL conns */
3482                 CNETERR("SMSG RX CQ overflow: scheduling ALL "
3483                        "conns on device %d\n", dev->gnd_id);
3484
3485                 for (rc = 0; rc < *kgnilnd_tunables.kgn_peer_hash_size; rc++) {
3486
3487                         read_lock(&kgnilnd_data.kgn_peer_conn_lock);
3488                         conns = &kgnilnd_data.kgn_conns[rc];
3489
3490                         list_for_each(tmp, conns) {
3491                                 conn = list_entry(tmp, kgn_conn_t,
3492                                                   gnc_hashlist);
3493
3494                                 if (conn->gnc_device == dev) {
3495                                         kgnilnd_schedule_conn(conn);
3496                                         conn->gnc_last_rx_cq = jiffies;
3497                                 }
3498                         }
3499
3500                         /* don't block write lockers for too long... */
3501                         read_unlock(&kgnilnd_data.kgn_peer_conn_lock);
3502                 }
3503         }
3504 }
3505
3506 /* try_map_if_full should only be used when processing TX from list of
3507  * backlog TX waiting on mappings to free up
3508  *
3509  * Return Codes:
3510  *  try_map_if_full = 0: 0 (sent or queued), (-|+)errno failure of kgnilnd_sendmsg
3511  *  try_map_if_full = 1: 0 (sent), -ENOMEM for caller to requeue, (-|+)errno failure of kgnilnd_sendmsg */
3512
3513 int
3514 kgnilnd_send_mapped_tx(kgn_tx_t *tx, int try_map_if_full)
3515 {
3516         /* slight bit of race if multiple people calling, but at worst we'll have
3517          * order altered just a bit... which would not be determenistic anyways */
3518         int     rc = atomic_read(&tx->tx_conn->gnc_device->gnd_nq_map);
3519
3520         GNIDBG_TX(D_NET, tx, "try %d nq_map %d", try_map_if_full, rc);
3521
3522         /* We know that we have a GART reservation that should guarantee forward progress.
3523          * This means we don't need to take any extraordinary efforts if we are failing
3524          * mappings here - even if we are holding a very small number of these. */
3525
3526         if (try_map_if_full || (rc == 0)) {
3527                 rc = kgnilnd_map_buffer(tx);
3528         }
3529
3530         /* rc should be 0 if we mapped successfully here, if non-zero
3531          * we are queueing */
3532         if (rc != 0) {
3533                 /* if try_map_if_full set, they handle requeuing */
3534                 if (unlikely(try_map_if_full)) {
3535                         RETURN(rc);
3536                 } else {
3537                         spin_lock(&tx->tx_conn->gnc_device->gnd_lock);
3538                         kgnilnd_tx_add_state_locked(tx, NULL, tx->tx_conn, GNILND_TX_MAPQ, 1);
3539                         spin_unlock(&tx->tx_conn->gnc_device->gnd_lock);
3540                         /* make sure we wake up sched to run this */
3541                         kgnilnd_schedule_device(tx->tx_conn->gnc_device);
3542                         /* return 0 as this is now queued for later sending */
3543                         RETURN(0);
3544                 }
3545         }
3546
3547         switch (tx->tx_msg.gnm_type) {
3548         default:
3549                 LBUG();
3550                 break;
3551         /* GET_REQ and PUT_ACK are outbound messages sending our mapping key to
3552          * remote node where the RDMA will be started
3553          * Special case -EAGAIN logic - this should just queued as if the mapping couldn't
3554          * be satisified. The rest of the errors are "hard" errors that require
3555          * upper layers to handle themselves.
3556          * If kgnilnd_post_rdma returns a resource error, kgnilnd_rdma will put
3557          * the tx back on the TX_MAPQ. When this tx is pulled back off the MAPQ,
3558          * it's gnm_type will now be GNILND_MSG_PUT_DONE or
3559          * GNILND_MSG_GET_DONE_REV.
3560          */
3561         case GNILND_MSG_GET_REQ:
3562                 tx->tx_msg.gnm_u.get.gngm_desc.gnrd_key = tx->tx_map_key;
3563                 tx->tx_msg.gnm_u.get.gngm_cookie = tx->tx_id.txe_cookie;
3564                 tx->tx_msg.gnm_u.get.gngm_desc.gnrd_addr = (__u64)((unsigned long)tx->tx_buffer);
3565                 tx->tx_msg.gnm_u.get.gngm_desc.gnrd_nob = tx->tx_nob;
3566                 tx->tx_state = GNILND_TX_WAITING_COMPLETION | GNILND_TX_WAITING_REPLY;
3567                 if (CFS_FAIL_CHECK(CFS_FAIL_GNI_GET_REQ_AGAIN)) {
3568                         tx->tx_state |= GNILND_TX_FAIL_SMSG;
3569                 }
3570                 /* redirect to FMAQ on failure, no need to infinite loop here in MAPQ */
3571                 rc = kgnilnd_sendmsg(tx, NULL, 0, &tx->tx_conn->gnc_list_lock, GNILND_TX_FMAQ);
3572                 break;
3573         case GNILND_MSG_PUT_ACK:
3574                 tx->tx_msg.gnm_u.putack.gnpam_desc.gnrd_key = tx->tx_map_key;
3575                 tx->tx_state = GNILND_TX_WAITING_COMPLETION | GNILND_TX_WAITING_REPLY;
3576                 if (CFS_FAIL_CHECK(CFS_FAIL_GNI_PUT_ACK_AGAIN)) {
3577                         tx->tx_state |= GNILND_TX_FAIL_SMSG;
3578                 }
3579                 /* redirect to FMAQ on failure, no need to infinite loop here in MAPQ */
3580                 rc = kgnilnd_sendmsg(tx, NULL, 0, &tx->tx_conn->gnc_list_lock, GNILND_TX_FMAQ);
3581                 break;
3582
3583         /* PUT_REQ and GET_DONE are where we do the actual RDMA */
3584         case GNILND_MSG_PUT_DONE:
3585         case GNILND_MSG_PUT_REQ:
3586                 rc = kgnilnd_rdma(tx, GNILND_MSG_PUT_DONE,
3587                              &tx->tx_putinfo.gnpam_desc,
3588                              tx->tx_putinfo.gnpam_desc.gnrd_nob,
3589                              tx->tx_putinfo.gnpam_dst_cookie);
3590                 RETURN(try_map_if_full ? rc : 0);
3591                 break;
3592         case GNILND_MSG_GET_DONE:
3593                 rc = kgnilnd_rdma(tx, GNILND_MSG_GET_DONE,
3594                              &tx->tx_getinfo.gngm_desc,
3595                              tx->tx_lntmsg[0]->msg_len,
3596                              tx->tx_getinfo.gngm_cookie);
3597                 RETURN(try_map_if_full ? rc : 0);
3598                 break;
3599         case GNILND_MSG_PUT_REQ_REV:
3600                 tx->tx_msg.gnm_u.get.gngm_desc.gnrd_key = tx->tx_map_key;
3601                 tx->tx_msg.gnm_u.get.gngm_cookie = tx->tx_id.txe_cookie;
3602                 tx->tx_msg.gnm_u.get.gngm_desc.gnrd_addr = (__u64)((unsigned long)tx->tx_buffer);
3603                 tx->tx_msg.gnm_u.get.gngm_desc.gnrd_nob = tx->tx_nob;
3604                 tx->tx_state = GNILND_TX_WAITING_COMPLETION | GNILND_TX_WAITING_REPLY;
3605                 kgnilnd_compute_rdma_cksum(tx, tx->tx_nob);
3606                 tx->tx_msg.gnm_u.get.gngm_payload_cksum = tx->tx_msg.gnm_payload_cksum;
3607
3608                 rc = kgnilnd_sendmsg(tx, NULL, 0, &tx->tx_conn->gnc_list_lock, GNILND_TX_FMAQ);
3609                 break;
3610         case GNILND_MSG_PUT_DONE_REV:
3611                 rc = kgnilnd_rdma(tx, GNILND_MSG_PUT_DONE_REV,
3612                              &tx->tx_getinfo.gngm_desc,
3613                              tx->tx_nob,
3614                              tx->tx_getinfo.gngm_cookie);
3615                 RETURN(try_map_if_full ? rc : 0);
3616                 break;
3617         case GNILND_MSG_GET_ACK_REV:
3618                 tx->tx_msg.gnm_u.putack.gnpam_desc.gnrd_key = tx->tx_map_key;
3619                 tx->tx_state = GNILND_TX_WAITING_COMPLETION | GNILND_TX_WAITING_REPLY;
3620                 /* LNET_GETS are a special case for parse */
3621                 kgnilnd_compute_rdma_cksum(tx, tx->tx_msg.gnm_u.putack.gnpam_desc.gnrd_nob);
3622                 tx->tx_msg.gnm_u.putack.gnpam_payload_cksum = tx->tx_msg.gnm_payload_cksum;
3623
3624                 if (CFS_FAIL_CHECK(CFS_FAIL_GNI_PUT_ACK_AGAIN))
3625                         tx->tx_state |= GNILND_TX_FAIL_SMSG;
3626
3627                 /* redirect to FMAQ on failure, no need to infinite loop here in MAPQ */
3628                 rc = kgnilnd_sendmsg(tx, NULL, 0, &tx->tx_conn->gnc_list_lock, GNILND_TX_FMAQ);
3629                 break;
3630         case GNILND_MSG_GET_DONE_REV:
3631         case GNILND_MSG_GET_REQ_REV:
3632                 rc = kgnilnd_rdma(tx, GNILND_MSG_GET_DONE_REV,
3633                                 &tx->tx_putinfo.gnpam_desc,
3634                                 tx->tx_putinfo.gnpam_desc.gnrd_nob,
3635                                 tx->tx_putinfo.gnpam_dst_cookie);
3636                 RETURN(try_map_if_full ? rc : 0);
3637                 break;
3638         }
3639
3640         RETURN(rc);
3641 }
3642
3643 void
3644 kgnilnd_process_fmaq(kgn_conn_t *conn)
3645 {
3646         int           more_to_do = 0;
3647         kgn_tx_t     *tx = NULL;
3648         void         *buffer = NULL;
3649         unsigned int  nob = 0;
3650         int           rc;
3651
3652         /* NB 1. kgnilnd_sendmsg() may fail if I'm out of credits right now.
3653          *       However I will be rescheduled by an FMA completion event
3654          *       when I eventually get some.
3655          * NB 2. Sampling gnc_state here races with setting it elsewhere.
3656          *       But it doesn't matter if I try to send a "real" message just
3657          *       as I start closing because I'll get scheduled to send the
3658          *       close anyway. */
3659
3660         /* Short circuit if the ep_handle is null we cant send anyway. */
3661         if (conn->gnc_ephandle == NULL)
3662                 return;
3663
3664         LASSERTF(!conn->gnc_close_sent, "Conn %p close was sent\n", conn);
3665
3666         spin_lock(&conn->gnc_list_lock);
3667
3668         if (list_empty(&conn->gnc_fmaq)) {
3669                 int     keepalive = GNILND_TO2KA(conn->gnc_timeout);
3670
3671                 spin_unlock(&conn->gnc_list_lock);
3672
3673                 if (time_after_eq(jiffies, conn->gnc_last_tx + cfs_time_seconds(keepalive))) {
3674                         CDEBUG(D_NET, "sending NOOP -> %s (%p idle %lu(%d)) "
3675                                "last %lu/%lu/%lu %lus/%lus/%lus\n",
3676                                libcfs_nid2str(conn->gnc_peer->gnp_nid), conn,
3677                                cfs_duration_sec(jiffies - conn->gnc_last_tx),
3678                                keepalive,
3679                                conn->gnc_last_noop_want, conn->gnc_last_noop_sent,
3680                                conn->gnc_last_noop_cq,
3681                                cfs_duration_sec(jiffies - conn->gnc_last_noop_want),
3682                                cfs_duration_sec(jiffies - conn->gnc_last_noop_sent),
3683                                cfs_duration_sec(jiffies - conn->gnc_last_noop_cq));
3684                         atomic_inc(&conn->gnc_sched_noop);
3685                         set_mb(conn->gnc_last_noop_want, jiffies);
3686
3687                         if (CFS_FAIL_CHECK(CFS_FAIL_GNI_NOOP_SEND))
3688                                 return;
3689
3690                         tx = kgnilnd_new_tx_msg(GNILND_MSG_NOOP,
3691                                                 lnet_nid_to_nid4(&conn->gnc_peer->gnp_net->gnn_ni->ni_nid));
3692                         if (tx != NULL) {
3693                                 int     rc;
3694
3695                                 rc = kgnilnd_set_tx_id(tx, conn);
3696                                 if (rc != 0) {
3697                                         kgnilnd_tx_done(tx, rc);
3698                                         return;
3699                                 }
3700                         }
3701                 }
3702         } else {
3703                 tx = list_first_entry(&conn->gnc_fmaq, kgn_tx_t, tx_list);
3704                 /* move from fmaq to allocd, kgnilnd_sendmsg will move to live_fmaq */
3705                 kgnilnd_tx_del_state_locked(tx, NULL, conn, GNILND_TX_ALLOCD);
3706                 more_to_do = !list_empty(&conn->gnc_fmaq);
3707                 spin_unlock(&conn->gnc_list_lock);
3708         }
3709
3710         /* if there is no real TX or no NOOP to send, bail */
3711         if (tx == NULL) {
3712                 return;
3713         }
3714
3715         if (!tx->tx_retrans)
3716                 tx->tx_cred_wait = jiffies;
3717
3718         GNITX_ASSERTF(tx, tx->tx_id.txe_smsg_id != 0,
3719                       "tx with zero id", NULL);
3720
3721         CDEBUG(D_NET, "sending regular msg: %p, type %s(0x%02x), cookie %#llx\n",
3722                tx, kgnilnd_msgtype2str(tx->tx_msg.gnm_type),
3723                tx->tx_msg.gnm_type, tx->tx_id.txe_cookie);
3724
3725         rc = 0;
3726
3727         switch (tx->tx_msg.gnm_type) {
3728         default:
3729                 LBUG();
3730
3731         case GNILND_MSG_NOOP:
3732         case GNILND_MSG_CLOSE:
3733         case GNILND_MSG_IMMEDIATE:
3734                 tx->tx_state = GNILND_TX_WAITING_COMPLETION;
3735                 buffer = tx->tx_buffer;
3736                 nob = tx->tx_nob;
3737                 break;
3738
3739         case GNILND_MSG_GET_DONE:
3740         case GNILND_MSG_PUT_DONE:
3741         case GNILND_MSG_PUT_DONE_REV:
3742         case GNILND_MSG_GET_DONE_REV:
3743         case GNILND_MSG_PUT_NAK:
3744         case GNILND_MSG_GET_NAK:
3745         case GNILND_MSG_GET_NAK_REV:
3746         case GNILND_MSG_PUT_NAK_REV:
3747                 tx->tx_state = GNILND_TX_WAITING_COMPLETION;
3748                 break;
3749
3750         case GNILND_MSG_PUT_REQ:
3751         case GNILND_MSG_GET_REQ_REV:
3752                 tx->tx_msg.gnm_u.putreq.gnprm_cookie = tx->tx_id.txe_cookie;
3753                 /* fallthrough */
3754         case GNILND_MSG_PUT_ACK:
3755         case GNILND_MSG_PUT_REQ_REV:
3756         case GNILND_MSG_GET_ACK_REV:
3757         case GNILND_MSG_GET_REQ:
3758                 /* This is really only to handle the retransmit of SMSG once these
3759                  * two messages are setup in send_mapped_tx */
3760                 tx->tx_state = GNILND_TX_WAITING_COMPLETION | GNILND_TX_WAITING_REPLY;
3761                 break;
3762         }
3763
3764         if (likely(rc == 0)) {
3765                 rc = kgnilnd_sendmsg(tx, buffer, nob, &conn->gnc_list_lock, GNILND_TX_FMAQ);
3766         }
3767
3768         if (rc > 0) {
3769                 /* don't explicitly reschedule here - we are short credits and will rely on
3770                  * kgnilnd_sendmsg to resched the conn if need be */
3771                 more_to_do = 0;
3772         } else if (rc < 0) {
3773                 /* bail: it wasn't sent and we didn't get EAGAIN indicating we should retrans
3774                  * almost certainly a software bug, but lets play nice with the other kids */
3775                 kgnilnd_tx_done(tx, rc);
3776                 /* just for fun, kick peer in arse - resetting conn might help to correct
3777                  * this almost certainly buggy software caused return code */
3778                 kgnilnd_close_conn(conn, rc);
3779         }
3780
3781         if (more_to_do) {
3782                 CDEBUG(D_NET, "Rescheduling %p (more to do)\n", conn);
3783                 kgnilnd_schedule_conn(conn);
3784         }
3785 }
3786
3787 int
3788 kgnilnd_process_rdmaq(kgn_device_t *dev)
3789 {
3790         int               found_work = 0;
3791         kgn_tx_t         *tx;
3792
3793         if (CFS_FAIL_CHECK(CFS_FAIL_GNI_DELAY_RDMAQ)) {
3794                 RETURN(found_work);
3795         }
3796
3797         if (time_after_eq(jiffies, dev->gnd_rdmaq_deadline)) {
3798                 unsigned long           dead_bump;
3799                 long                    new_ok;
3800
3801                 /* if we think we need to adjust, take lock to serialize and recheck */
3802                 spin_lock(&dev->gnd_rdmaq_lock);
3803                 if (time_after_eq(jiffies, dev->gnd_rdmaq_deadline)) {
3804                         del_singleshot_timer_sync(&dev->gnd_rdmaq_timer);
3805
3806                         dead_bump = cfs_time_seconds(1) / *kgnilnd_tunables.kgn_rdmaq_intervals;
3807
3808                         /* roll the bucket forward */
3809                         dev->gnd_rdmaq_deadline = jiffies + dead_bump;
3810
3811                         if (kgnilnd_data.kgn_rdmaq_override &&
3812                                 (*kgnilnd_tunables.kgn_rdmaq_intervals != 0)) {
3813                                 new_ok = kgnilnd_data.kgn_rdmaq_override / *kgnilnd_tunables.kgn_rdmaq_intervals;
3814                         }  else {
3815                                 new_ok = ~0UL >> 1;
3816                         }
3817
3818                         /* roll current outstanding forward to make sure we carry outstanding
3819                          * committment forward
3820                          * new_ok starts out as the whole interval value
3821                          *  - first subtract bytes_out from last interval, as that would push us over
3822                          *    strict limits for this interval
3823                          *  - second, set bytes_ok to new_ok to ensure it doesn't exceed the current auth
3824                          *
3825                          * there is a small race here if someone is actively processing mappings and
3826                          * adding to rdmaq_bytes_out, but it should be small as the mappings are triggered
3827                          * quite quickly after kgnilnd_auth_rdma_bytes gives us the go-ahead
3828                          * - if this gives us problems in the future, we could use a read/write lock
3829                          * to protect the resetting of these values */
3830                         new_ok -= atomic64_read(&dev->gnd_rdmaq_bytes_out);
3831                         atomic64_set(&dev->gnd_rdmaq_bytes_ok, new_ok);
3832
3833                         CDEBUG(D_NET, "resetting rdmaq bytes to %lld, deadline +%lu -> %lu, current out %lld\n",
3834                                (s64)atomic64_read(&dev->gnd_rdmaq_bytes_ok), dead_bump, dev->gnd_rdmaq_deadline,
3835                                (s64)atomic64_read(&dev->gnd_rdmaq_bytes_out));
3836                 }
3837                 spin_unlock(&dev->gnd_rdmaq_lock);
3838         }
3839
3840         spin_lock(&dev->gnd_rdmaq_lock);
3841         while (!list_empty(&dev->gnd_rdmaq)) {
3842                 int     rc;
3843
3844                 /* make sure we break out early on quiesce */
3845                 if (unlikely(kgnilnd_data.kgn_quiesce_trigger)) {
3846                         /* always break with lock held - we unlock outside loop */
3847                         break;
3848                 }
3849
3850                 tx = list_first_entry(&dev->gnd_rdmaq, kgn_tx_t, tx_list);
3851                 kgnilnd_tx_del_state_locked(tx, NULL, tx->tx_conn, GNILND_TX_ALLOCD);
3852                 found_work++;
3853
3854                 /* sample with lock held, serializing with kgnilnd_complete_closed_conn */
3855                 if (tx->tx_conn->gnc_state != GNILND_CONN_ESTABLISHED) {
3856                         /* if conn is dying, mark tx in tx_ref_table for
3857                          * kgnilnd_complete_closed_conn to finish up */
3858                         kgnilnd_tx_add_state_locked(tx, NULL, tx->tx_conn, GNILND_TX_DYING, 1);
3859
3860                         /* tx was moved to DYING, get next */
3861                         continue;
3862                 }
3863                 spin_unlock(&dev->gnd_rdmaq_lock);
3864
3865                 rc = kgnilnd_auth_rdma_bytes(dev, tx);
3866                 spin_lock(&dev->gnd_rdmaq_lock);
3867
3868                 if (rc < 0) {
3869                         /* no ticket! add back to head */
3870                         kgnilnd_tx_add_state_locked(tx, NULL, tx->tx_conn, GNILND_TX_RDMAQ, 0);
3871                         /* clear found_work so scheduler threads wait for timer */
3872                         found_work = 0;
3873                         break;
3874                 } else {
3875                         /* TX is GO for launch */
3876                         tx->tx_qtime = jiffies;
3877                         kgnilnd_send_mapped_tx(tx, 0);
3878                         found_work++;
3879                 }
3880         }
3881         spin_unlock(&dev->gnd_rdmaq_lock);
3882
3883         RETURN(found_work);
3884 }
3885
3886 static inline void
3887 kgnilnd_swab_rdma_desc(kgn_rdma_desc_t *d)
3888 {
3889         __swab64s(&d->gnrd_key.qword1);
3890         __swab64s(&d->gnrd_key.qword2);
3891         __swab64s(&d->gnrd_addr);
3892         __swab32s(&d->gnrd_nob);
3893 }
3894
3895 #define kgnilnd_match_reply_either(w, x, y, z) _kgnilnd_match_reply(w, x, y, z)
3896 #define kgnilnd_match_reply(x, y, z) _kgnilnd_match_reply(x, y, GNILND_MSG_NONE, z)
3897
3898 kgn_tx_t *
3899 _kgnilnd_match_reply(kgn_conn_t *conn, int type1, int type2, __u64 cookie)
3900 {
3901         kgn_tx_ev_id_t    ev_id;
3902         kgn_tx_t         *tx;
3903
3904         /* we use the cookie from the original TX, so we can find the match
3905          * by parsing that and using the txe_idx */
3906         ev_id.txe_cookie = cookie;
3907
3908         tx = conn->gnc_tx_ref_table[ev_id.txe_idx];
3909
3910         if (tx != NULL) {
3911                 /* check tx to make sure kgni didn't eat it */
3912                 GNITX_ASSERTF(tx, tx->tx_msg.gnm_magic == GNILND_MSG_MAGIC,
3913                               "came back from kgni with bad magic %x\n", tx->tx_msg.gnm_magic);
3914
3915                 GNITX_ASSERTF(tx, ((tx->tx_id.txe_idx == ev_id.txe_idx) &&
3916                                   (tx->tx_id.txe_cookie = cookie)),
3917                               "conn 0x%p->%s tx_ref_table hosed: wanted "
3918                               "txe_cookie %#llx txe_idx %d "
3919                               "found tx %p cookie %#llx txe_idx %d\n",
3920                               conn, libcfs_nid2str(conn->gnc_peer->gnp_nid),
3921                               cookie, ev_id.txe_idx,
3922                               tx, tx->tx_id.txe_cookie, tx->tx_id.txe_idx);
3923
3924                 LASSERTF((((tx->tx_msg.gnm_type == type1) || (tx->tx_msg.gnm_type == type2)) &&
3925                         (tx->tx_state & GNILND_TX_WAITING_REPLY)),
3926                         "Unexpected TX type (%x, %x or %x) "
3927                         "or state (%x, expected +%x) "
3928                         "matched reply from %s\n",
3929                         tx->tx_msg.gnm_type, type1, type2,
3930                         tx->tx_state, GNILND_TX_WAITING_REPLY,
3931                         libcfs_nid2str(conn->gnc_peer->gnp_nid));
3932         } else {
3933                 CWARN("Unmatched reply %02x, or %02x/%#llx from %s\n",
3934                       type1, type2, cookie, libcfs_nid2str(conn->gnc_peer->gnp_nid));
3935         }
3936         return tx;
3937 }
3938
3939 static inline void
3940 kgnilnd_complete_tx(kgn_tx_t *tx, int rc)
3941 {
3942         int             complete = 0;
3943         kgn_conn_t      *conn = tx->tx_conn;
3944         __u64 nob = tx->tx_nob;
3945         __u32 physnop = tx->tx_phys_npages;
3946         int   id = tx->tx_id.txe_smsg_id;
3947         int buftype = tx->tx_buftype;
3948         gni_mem_handle_t hndl;
3949         hndl.qword1 = tx->tx_map_key.qword1;
3950         hndl.qword2 = tx->tx_map_key.qword2;
3951
3952         spin_lock(&conn->gnc_list_lock);
3953
3954         GNITX_ASSERTF(tx, tx->tx_state & GNILND_TX_WAITING_REPLY,
3955                 "not waiting for reply", NULL);
3956
3957         tx->tx_rc = rc;
3958         tx->tx_state &= ~GNILND_TX_WAITING_REPLY;
3959
3960         if (rc == -EFAULT) {
3961                 CDEBUG(D_NETERROR, "Error %d TX data: TX %p tx_id %x nob %16llu physnop %8d buffertype %#8x MemHandle %#llx.%#llxx\n",
3962                         rc, tx, id, nob, physnop, buftype, hndl.qword1, hndl.qword2);
3963
3964                 if(*kgnilnd_tunables.kgn_efault_lbug) {
3965                         GNIDBG_TOMSG(D_NETERROR, &tx->tx_msg,
3966                         "error %d on tx 0x%p->%s id %u/%d state %s age %ds",
3967                         rc, tx, conn ?
3968                         libcfs_nid2str(conn->gnc_peer->gnp_nid) : "<?>",
3969                         tx->tx_id.txe_smsg_id, tx->tx_id.txe_idx,
3970                         kgnilnd_tx_state2str(tx->tx_list_state),
3971                         cfs_duration_sec((unsigned long) jiffies - tx->tx_qtime));
3972                         LBUG();
3973                 }
3974         }
3975
3976         if (!(tx->tx_state & GNILND_TX_WAITING_COMPLETION)) {
3977                 kgnilnd_tx_del_state_locked(tx, NULL, conn, GNILND_TX_ALLOCD);
3978                 /* sample under lock as follow on steps require gnc_list_lock
3979                  * - or call kgnilnd_tx_done which requires no locks held over
3980                  *   call to lnet_finalize */
3981                 complete = 1;
3982         }
3983         spin_unlock(&conn->gnc_list_lock);
3984
3985         if (complete) {
3986                 kgnilnd_tx_done(tx, tx->tx_rc);
3987         }
3988 }
3989
3990 static inline void
3991 kgnilnd_finalize_rx_done(kgn_tx_t *tx, kgn_msg_t *msg)
3992 {
3993         int              rc;
3994         kgn_conn_t      *conn = tx->tx_conn;
3995
3996         atomic_inc(&conn->gnc_device->gnd_rdma_nrx);
3997         atomic64_add(tx->tx_nob, &conn->gnc_device->gnd_rdma_rxbytes);
3998
3999         /* the gncm_retval is passed in for PUTs */
4000         rc = kgnilnd_verify_rdma_cksum(tx, msg->gnm_payload_cksum,
4001                                        msg->gnm_u.completion.gncm_retval);
4002
4003         kgnilnd_complete_tx(tx, rc);
4004 }
4005
4006 void
4007 kgnilnd_check_fma_rx(kgn_conn_t *conn)
4008 {
4009         __u32         seq;
4010         kgn_tx_t     *tx;
4011         kgn_rx_t     *rx;
4012         kgn_msg_t    *msg;
4013         void         *prefix;
4014         gni_return_t  rrc;
4015         kgn_peer_t   *peer = conn->gnc_peer;
4016         kgn_net_t    *net;
4017         int           rc = 0;
4018         __u16         tmp_cksum = 0, msg_cksum = 0;
4019         int           repost = 1, saw_complete;
4020         unsigned long timestamp, newest_last_rx, timeout;
4021         int           last_seq;
4022         ENTRY;
4023
4024         /* Short circuit if the ep_handle is null.
4025          * It's likely that its about to be closed as stale.
4026          */
4027         if (conn->gnc_ephandle == NULL)
4028                 RETURN_EXIT;
4029
4030         timestamp = jiffies;
4031         kgnilnd_gl_mutex_lock(&conn->gnc_device->gnd_cq_mutex);
4032         /* delay in jiffies - we are really concerned only with things that
4033          * result in a schedule() or really holding this off for long times .
4034          * NB - mutex_lock could spin for 2 jiffies before going to sleep to wait */
4035         conn->gnc_device->gnd_mutex_delay += (long) jiffies - timestamp;
4036
4037         /* Resample current time as we have no idea how long it took to get the mutex */
4038         timestamp = jiffies;
4039
4040         /* We check here when the last time we received an rx, we do this before
4041          * we call getnext in case the thread has been blocked for a while. If we
4042          * havent received an rx since our timeout value we close the connection
4043          * as we should assume the other side has closed the connection. This will
4044          * stop us from sending replies to a mailbox that is already in purgatory.
4045          */
4046
4047         timeout = cfs_time_seconds(conn->gnc_timeout);
4048         newest_last_rx = GNILND_LASTRX(conn);
4049
4050         /* Error injection to validate that timestamp checking works and closing the conn */
4051         if (CFS_FAIL_CHECK(CFS_FAIL_GNI_RECV_TIMEOUT)) {
4052                 timestamp = timestamp + (GNILND_TIMEOUTRX(timeout) * 2);
4053         }
4054
4055         if (time_after_eq(timestamp, newest_last_rx + (GNILND_TIMEOUTRX(timeout)))) {
4056                 GNIDBG_CONN(D_NETERROR|D_CONSOLE, conn, "Cant receive from %s after timeout lapse of %lu; TO %lu",
4057                 libcfs_nid2str(conn->gnc_peer->gnp_nid),
4058                 cfs_duration_sec(timestamp - newest_last_rx),
4059                 cfs_duration_sec(GNILND_TIMEOUTRX(timeout)));
4060                 kgnilnd_gl_mutex_unlock(&conn->gnc_device->gnd_cq_mutex);
4061                 rc = -ETIME;
4062                 kgnilnd_close_conn(conn, rc);
4063                 RETURN_EXIT;
4064         }
4065
4066         rrc = kgnilnd_smsg_getnext(conn->gnc_ephandle, &prefix);
4067
4068         if (rrc == GNI_RC_NOT_DONE) {
4069                 kgnilnd_gl_mutex_unlock(&conn->gnc_device->gnd_cq_mutex);
4070                 CDEBUG(D_INFO, "SMSG RX empty conn 0x%p\n", conn);
4071                 RETURN_EXIT;
4072         }
4073
4074         /* Instead of asserting when we get mailbox corruption lets attempt to
4075          * close the conn and recover. We can put the conn/mailbox into
4076          * purgatory and let purgatory deal with the problem. If we see
4077          * this NETTERROR reported on production systems in large amounts
4078          * we will need to revisit the state machine to see if we can tighten
4079          * it up further to improve data protection.
4080          */
4081
4082         if (rrc == GNI_RC_INVALID_STATE) {
4083                 kgnilnd_gl_mutex_unlock(&conn->gnc_device->gnd_cq_mutex);
4084                 GNIDBG_CONN(D_NETERROR | D_CONSOLE, conn, "Mailbox corruption "
4085                         "detected closing conn %p from peer %s\n", conn,
4086                         libcfs_nid2str(conn->gnc_peer->gnp_nid));
4087                 rc = -EIO;
4088                 kgnilnd_close_conn(conn, rc);
4089                 RETURN_EXIT;
4090         }
4091
4092         LASSERTF(rrc == GNI_RC_SUCCESS,
4093                 "bad rc %d on conn %p from peer %s\n",
4094                 rrc, conn, libcfs_nid2str(peer->gnp_nid));
4095
4096         msg = (kgn_msg_t *)prefix;
4097
4098         rx = kgnilnd_alloc_rx();
4099         if (rx == NULL) {
4100                 kgnilnd_gl_mutex_unlock(&conn->gnc_device->gnd_cq_mutex);
4101                 kgnilnd_release_msg(conn);
4102                 GNIDBG_MSG(D_NETERROR, msg, "Dropping SMSG RX from 0x%p->%s, no RX memory",
4103                            conn, libcfs_nid2str(peer->gnp_nid));
4104                 RETURN_EXIT;
4105         }
4106
4107         GNIDBG_MSG(D_INFO, msg, "SMSG RX on %p", conn);
4108
4109         timestamp = conn->gnc_last_rx;
4110         seq = last_seq = atomic_read(&conn->gnc_rx_seq);
4111         atomic_inc(&conn->gnc_rx_seq);
4112
4113         conn->gnc_last_rx = jiffies;
4114         /* stash first rx so we can clear out purgatory
4115          */
4116         if (conn->gnc_first_rx == 0)
4117                 conn->gnc_first_rx = jiffies;
4118
4119         /* needs to linger to protect gnc_rx_seq like we do with gnc_tx_seq */
4120         kgnilnd_gl_mutex_unlock(&conn->gnc_device->gnd_cq_mutex);
4121         kgnilnd_peer_alive(conn->gnc_peer);
4122
4123         rx->grx_msg = msg;
4124         rx->grx_conn = conn;
4125         rx->grx_eager = 0;
4126         ktime_get_ts64(&rx->grx_received);
4127
4128         if (CFS_FAIL_CHECK(CFS_FAIL_GNI_NET_LOOKUP)) {
4129                 rc = -ENONET;
4130         } else {
4131                 rc = kgnilnd_find_net(msg->gnm_srcnid, &net);
4132         }
4133
4134         if (rc < 0) {
4135                 GOTO(out, rc);
4136         } else {
4137                 kgnilnd_net_decref(net);
4138         }
4139
4140         if (*kgnilnd_tunables.kgn_checksum && !msg->gnm_cksum)
4141                 GNIDBG_MSG(D_WARNING, msg, "no msg header checksum when enabled");
4142
4143         /* XXX Nic: Do we need to swab cksum */
4144         if (msg->gnm_cksum != 0) {
4145                 msg_cksum = msg->gnm_cksum;
4146                 msg->gnm_cksum = 0;
4147                 tmp_cksum = kgnilnd_cksum(msg, sizeof(kgn_msg_t));
4148
4149                 if (tmp_cksum != msg_cksum) {
4150                         GNIDBG_MSG(D_NETERROR, msg, "Bad hdr checksum (%x expected %x)",
4151                                         tmp_cksum, msg_cksum);
4152                         kgnilnd_dump_msg(D_BUFFS, msg);
4153                         rc = -ENOKEY;
4154                         GOTO(out, rc);
4155                 }
4156         }
4157         /* restore checksum for future debug messages */
4158         msg->gnm_cksum = tmp_cksum;
4159
4160         if (msg->gnm_magic != GNILND_MSG_MAGIC) {
4161                 if (__swab32(msg->gnm_magic) != GNILND_MSG_MAGIC) {
4162                         GNIDBG_MSG(D_NETERROR, msg, "Unexpected magic %08x from %s",
4163                                msg->gnm_magic, libcfs_nid2str(peer->gnp_nid));
4164                         rc = -EPROTO;
4165                         GOTO(out, rc);
4166                 }
4167
4168                 __swab32s(&msg->gnm_magic);
4169                 __swab16s(&msg->gnm_version);
4170                 __swab16s(&msg->gnm_type);
4171                 __swab64s(&msg->gnm_srcnid);
4172                 __swab64s(&msg->gnm_connstamp);
4173                 __swab32s(&msg->gnm_seq);
4174
4175                 /* NB message type checked below; NOT here... */
4176                 switch (msg->gnm_type) {
4177                 case GNILND_MSG_GET_ACK_REV:
4178                 case GNILND_MSG_PUT_ACK:
4179                         kgnilnd_swab_rdma_desc(&msg->gnm_u.putack.gnpam_desc);
4180                         break;
4181
4182                 case GNILND_MSG_PUT_REQ_REV:
4183                 case GNILND_MSG_GET_REQ:
4184                         kgnilnd_swab_rdma_desc(&msg->gnm_u.get.gngm_desc);
4185                         break;
4186
4187                 default:
4188                         break;
4189                 }
4190         }
4191
4192         if (msg->gnm_version != GNILND_MSG_VERSION) {
4193                 GNIDBG_MSG(D_NETERROR, msg, "Unexpected protocol version %d from %s",
4194                        msg->gnm_version, libcfs_nid2str(peer->gnp_nid));
4195                 rc = -EPROTO;
4196                 GOTO(out, rc);
4197         }
4198
4199         if (LNET_NIDADDR(msg->gnm_srcnid) != LNET_NIDADDR(peer->gnp_nid)) {
4200                 GNIDBG_MSG(D_NETERROR, msg, "Unexpected peer %s from %s",
4201                        libcfs_nid2str(msg->gnm_srcnid),
4202                        libcfs_nid2str(peer->gnp_nid));
4203                 rc = -EPROTO;
4204                 GOTO(out, rc);
4205         }
4206
4207         if (msg->gnm_connstamp != conn->gnc_peer_connstamp) {
4208                 GNIDBG_MSG(D_NETERROR, msg, "Unexpected connstamp %#llx(%#llx"
4209                        " expected) from %s",
4210                        msg->gnm_connstamp, conn->gnc_peer_connstamp,
4211                        libcfs_nid2str(peer->gnp_nid));
4212                 rc = -EPROTO;
4213                 GOTO(out, rc);
4214         }
4215
4216         if (msg->gnm_seq != seq) {
4217                 GNIDBG_MSG(D_NETERROR, msg, "Unexpected sequence number %d(%d expected) from %s",
4218                        msg->gnm_seq, seq, libcfs_nid2str(peer->gnp_nid));
4219                 rc = -EPROTO;
4220                 GOTO(out, rc);
4221         }
4222
4223         atomic_inc(&conn->gnc_device->gnd_short_nrx);
4224
4225         if (msg->gnm_type == GNILND_MSG_CLOSE) {
4226                 CDEBUG(D_NETTRACE, "%s sent us CLOSE msg\n",
4227                               libcfs_nid2str(conn->gnc_peer->gnp_nid));
4228                 write_lock(&kgnilnd_data.kgn_peer_conn_lock);
4229                 conn->gnc_close_recvd = GNILND_CLOSE_RX;
4230                 conn->gnc_peer_error = msg->gnm_u.completion.gncm_retval;
4231                 /* double check state with lock held */
4232                 if (conn->gnc_state == GNILND_CONN_ESTABLISHED) {
4233                         /* only error if we are not already closing */
4234                         if (conn->gnc_peer_error == -ETIMEDOUT) {
4235                                 unsigned long           now = jiffies;
4236                                 CNETERR("peer 0x%p->%s closed connection 0x%p due to timeout. "
4237                                        "Is node down? "
4238                                        "RX %d @ %lus/%lus; TX %d @ %lus/%lus; "
4239                                        "NOOP %lus/%lus/%lus; sched %lus/%lus/%lus ago\n",
4240                                        conn->gnc_peer, libcfs_nid2str(conn->gnc_peer->gnp_nid),
4241                                        conn, last_seq,
4242                                        cfs_duration_sec(now - timestamp),
4243                                        cfs_duration_sec(now - conn->gnc_last_rx_cq),
4244                                        atomic_read(&conn->gnc_tx_seq),
4245                                        cfs_duration_sec(now - conn->gnc_last_tx),
4246                                        cfs_duration_sec(now - conn->gnc_last_tx_cq),
4247                                        cfs_duration_sec(now - conn->gnc_last_noop_want),
4248                                        cfs_duration_sec(now - conn->gnc_last_noop_sent),
4249                                        cfs_duration_sec(now - conn->gnc_last_noop_cq),
4250                                        cfs_duration_sec(now - conn->gnc_last_sched_ask),
4251                                        cfs_duration_sec(now - conn->gnc_last_sched_do),
4252                                        cfs_duration_sec(now - conn->gnc_device->gnd_sched_alive));
4253                         }
4254                         kgnilnd_close_conn_locked(conn, -ECONNRESET);
4255                 }
4256                 write_unlock(&kgnilnd_data.kgn_peer_conn_lock);
4257                 GOTO(out, rc);
4258         }
4259
4260         if (conn->gnc_close_recvd) {
4261                 GNIDBG_MSG(D_NETERROR, msg, "Unexpected message %s(%d/%d) after CLOSE from %s",
4262                        kgnilnd_msgtype2str(msg->gnm_type),
4263                        msg->gnm_type, conn->gnc_close_recvd,
4264                        libcfs_nid2str(conn->gnc_peer->gnp_nid));
4265                 rc = -EPROTO;
4266                 GOTO(out, rc);
4267         }
4268
4269         if (conn->gnc_state != GNILND_CONN_ESTABLISHED) {
4270                 /* XXX Nic: log message received on bad connection state */
4271                 GOTO(out, rc);
4272         }
4273
4274         switch (msg->gnm_type) {
4275         case GNILND_MSG_NOOP:
4276                 /* Nothing to do; just a keepalive */
4277                 break;
4278
4279         case GNILND_MSG_IMMEDIATE:
4280                 /* only get SMSG payload for IMMEDIATE */
4281                 atomic64_add(msg->gnm_payload_len, &conn->gnc_device->gnd_short_rxbytes);
4282                 rc = lnet_parse(net->gnn_ni, &msg->gnm_u.immediate.gnim_hdr,
4283                                 msg->gnm_srcnid, rx, 0);
4284                 repost = rc < 0;
4285                 break;
4286         case GNILND_MSG_GET_REQ_REV:
4287         case GNILND_MSG_PUT_REQ:
4288                 rc = lnet_parse(net->gnn_ni, &msg->gnm_u.putreq.gnprm_hdr,
4289                                 msg->gnm_srcnid, rx, 1);
4290                 repost = rc < 0;
4291                 break;
4292         case GNILND_MSG_GET_NAK_REV:
4293                 tx = kgnilnd_match_reply_either(conn, GNILND_MSG_GET_REQ_REV, GNILND_MSG_GET_ACK_REV,
4294                                         msg->gnm_u.completion.gncm_cookie);
4295                 if (tx == NULL)
4296                         break;
4297
4298                 kgnilnd_complete_tx(tx, msg->gnm_u.completion.gncm_retval);
4299                 break;
4300         case GNILND_MSG_PUT_NAK:
4301                 tx = kgnilnd_match_reply_either(conn, GNILND_MSG_PUT_REQ, GNILND_MSG_PUT_ACK,
4302                                         msg->gnm_u.completion.gncm_cookie);
4303                 if (tx == NULL)
4304                         break;
4305
4306                 kgnilnd_complete_tx(tx, msg->gnm_u.completion.gncm_retval);
4307                 break;
4308         case GNILND_MSG_PUT_ACK:
4309                 tx = kgnilnd_match_reply(conn, GNILND_MSG_PUT_REQ,
4310                                         msg->gnm_u.putack.gnpam_src_cookie);
4311                 if (tx == NULL)
4312                         break;
4313
4314                 /* store putack data for later: deferred rdma or re-try */
4315                 tx->tx_putinfo = msg->gnm_u.putack;
4316
4317                 saw_complete = 0;
4318                 spin_lock(&tx->tx_conn->gnc_list_lock);
4319
4320                 GNITX_ASSERTF(tx, tx->tx_state & GNILND_TX_WAITING_REPLY,
4321                         "not waiting for reply", NULL);
4322
4323                 tx->tx_state &= ~GNILND_TX_WAITING_REPLY;
4324
4325                 if (likely(!(tx->tx_state & GNILND_TX_WAITING_COMPLETION))) {
4326                         kgnilnd_tx_del_state_locked(tx, NULL, conn, GNILND_TX_ALLOCD);
4327                         /* sample under lock as follow on steps require gnc_list_lock
4328                          * - or call kgnilnd_tx_done which requires no locks held over
4329                          *   call to lnet_finalize */
4330                         saw_complete = 1;
4331                 } else {
4332                         /* cannot launch rdma if still waiting for fma-msg completion */
4333                         CDEBUG(D_NET, "tx 0x%p type 0x%02x will need to "
4334                                        "wait for SMSG completion\n", tx, tx->tx_msg.gnm_type);
4335                         tx->tx_state |= GNILND_TX_PENDING_RDMA;
4336                 }
4337                 spin_unlock(&tx->tx_conn->gnc_list_lock);
4338
4339                 if (saw_complete) {
4340                         rc = kgnilnd_send_mapped_tx(tx, 0);
4341                         if (rc < 0)
4342                                 kgnilnd_tx_done(tx, rc);
4343                 }
4344                 break;
4345         case GNILND_MSG_GET_ACK_REV:
4346                 tx = kgnilnd_match_reply(conn, GNILND_MSG_GET_REQ_REV,
4347                                         msg->gnm_u.putack.gnpam_src_cookie);
4348                 if (tx == NULL)
4349                         break;
4350
4351                 /* store putack data for later: deferred rdma or re-try */
4352                 tx->tx_putinfo = msg->gnm_u.putack;
4353                 saw_complete = 0;
4354                 spin_lock(&tx->tx_conn->gnc_list_lock);
4355
4356                 GNITX_ASSERTF(tx, tx->tx_state & GNILND_TX_WAITING_REPLY,
4357                         "not waiting for reply", NULL);
4358
4359                 tx->tx_state &= ~GNILND_TX_WAITING_REPLY;
4360
4361                 if (likely(!(tx->tx_state & GNILND_TX_WAITING_COMPLETION))) {
4362                         kgnilnd_tx_del_state_locked(tx, NULL, conn, GNILND_TX_ALLOCD);
4363                         /* sample under lock as follow on steps require gnc_list_lock
4364                          * - or call kgnilnd_tx_done which requires no locks held over
4365                          *   call to lnet_finalize */
4366                         saw_complete = 1;
4367                 } else {
4368                         /* cannot launch rdma if still waiting for fma-msg completion */
4369                         CDEBUG(D_NET, "tx 0x%p type 0x%02x will need to "
4370                                         "wait for SMSG completion\n", tx, tx->tx_msg.gnm_type);
4371                         tx->tx_state |= GNILND_TX_PENDING_RDMA;
4372                 }
4373                 spin_unlock(&tx->tx_conn->gnc_list_lock);
4374
4375                 if (saw_complete) {
4376                         rc = kgnilnd_send_mapped_tx(tx, 0);
4377                         if (rc < 0)
4378                                 kgnilnd_tx_done(tx, rc);
4379                 }
4380                 break;
4381         case GNILND_MSG_PUT_DONE:
4382                 tx = kgnilnd_match_reply(conn, GNILND_MSG_PUT_ACK,
4383                                         msg->gnm_u.completion.gncm_cookie);
4384                 if (tx == NULL)
4385                         break;
4386
4387                 GNITX_ASSERTF(tx, tx->tx_buftype == GNILND_BUF_PHYS_MAPPED,
4388                                "bad tx buftype %d", tx->tx_buftype);
4389
4390                 kgnilnd_finalize_rx_done(tx, msg);
4391                 break;
4392         case GNILND_MSG_PUT_REQ_REV:
4393         case GNILND_MSG_GET_REQ:
4394                 rc = lnet_parse(net->gnn_ni, &msg->gnm_u.get.gngm_hdr,
4395                                 msg->gnm_srcnid, rx, 1);
4396                 repost = rc < 0;
4397                 break;
4398
4399         case GNILND_MSG_GET_NAK:
4400                 tx = kgnilnd_match_reply(conn, GNILND_MSG_GET_REQ,
4401                                         msg->gnm_u.completion.gncm_cookie);
4402                 if (tx == NULL)
4403                         break;
4404
4405                 GNITX_ASSERTF(tx, tx->tx_buftype == GNILND_BUF_PHYS_MAPPED,
4406                                "bad tx buftype %d", tx->tx_buftype);
4407
4408                 kgnilnd_complete_tx(tx, msg->gnm_u.completion.gncm_retval);
4409                 break;
4410
4411         case GNILND_MSG_GET_DONE:
4412                 tx = kgnilnd_match_reply(conn, GNILND_MSG_GET_REQ,
4413                                         msg->gnm_u.completion.gncm_cookie);
4414                 if (tx == NULL)
4415                         break;
4416
4417                 GNITX_ASSERTF(tx, tx->tx_buftype == GNILND_BUF_PHYS_MAPPED,
4418                                "bad tx buftype %d", tx->tx_buftype);
4419
4420                 lnet_set_reply_msg_len(net->gnn_ni, tx->tx_lntmsg[1],
4421                                        msg->gnm_u.completion.gncm_retval);
4422
4423                 kgnilnd_finalize_rx_done(tx, msg);
4424                 break;
4425         case GNILND_MSG_GET_DONE_REV:
4426                 tx = kgnilnd_match_reply(conn, GNILND_MSG_GET_ACK_REV,
4427                                         msg->gnm_u.completion.gncm_cookie);
4428                 if (tx == NULL)
4429                         break;
4430
4431                 GNITX_ASSERTF(tx, tx->tx_buftype == GNILND_BUF_PHYS_MAPPED,
4432                                 "bad tx buftype %d", tx->tx_buftype);
4433
4434                 kgnilnd_finalize_rx_done(tx, msg);
4435                 break;
4436
4437         case GNILND_MSG_PUT_DONE_REV:
4438                 tx = kgnilnd_match_reply(conn, GNILND_MSG_PUT_REQ_REV,
4439                                         msg->gnm_u.completion.gncm_cookie);
4440
4441                 if (tx == NULL)
4442                         break;
4443
4444                 GNITX_ASSERTF(tx, tx->tx_buftype == GNILND_BUF_PHYS_MAPPED,
4445                                "bad tx buftype %d", tx->tx_buftype);
4446
4447                 kgnilnd_finalize_rx_done(tx, msg);
4448                 break;
4449         case GNILND_MSG_PUT_NAK_REV:
4450                 tx = kgnilnd_match_reply(conn, GNILND_MSG_PUT_REQ_REV,
4451                                         msg->gnm_u.completion.gncm_cookie);
4452
4453                 if (tx == NULL)
4454                         break;
4455
4456                 GNITX_ASSERTF(tx, tx->tx_buftype == GNILND_BUF_PHYS_MAPPED,
4457                                 "bad tx buftype %d", tx->tx_buftype);
4458
4459                 kgnilnd_complete_tx(tx, msg->gnm_u.completion.gncm_retval);
4460                 break;
4461         }
4462
4463  out:
4464         if (rc < 0)                             /* protocol/comms error */
4465                 kgnilnd_close_conn(conn, rc);
4466
4467         if (repost && rx != NULL) {
4468                 kgnilnd_consume_rx(rx);
4469         }
4470
4471         /* we got an event so assume more there and call for reschedule */
4472         if (rc >= 0)
4473                 kgnilnd_schedule_conn(conn);
4474         EXIT;
4475 }
4476
4477 /* Do the failure injections that we need to affect conn processing in the following function.
4478  * When writing tests that use this function make sure to use a fail_loc with a fail mask.
4479  * If you dont you can cause the scheduler threads to spin on the conn without it leaving
4480  * process_conns.
4481  *
4482  * intent is used to signal the calling function whether or not the conn needs to be rescheduled.
4483  */
4484
4485 static inline int
4486 kgnilnd_check_conn_fail_loc(kgn_device_t *dev, kgn_conn_t *conn, int *intent)
4487 {
4488         int     rc = 0;
4489
4490         /* short circuit out when not set */
4491         if (likely(!cfs_fail_loc)) {
4492                 RETURN(rc);
4493         }
4494
4495         /* failure injection to test for stack reset clean ups */
4496         if (CFS_FAIL_CHECK(CFS_FAIL_GNI_DROP_CLOSING)) {
4497                 /* we can't rely on busy loops being nice enough to get the
4498                  *  stack reset triggered - it'd just spin on this conn */
4499                 CFS_RACE(CFS_FAIL_GNI_DROP_CLOSING);
4500                 rc = 1;
4501                 *intent = 1;
4502                 GOTO(did_fail_loc, rc);
4503         }
4504
4505         if (conn->gnc_state == GNILND_CONN_DESTROY_EP) {
4506                 /* DESTROY_EP set in kgnilnd_conn_decref on gnc_refcount = 1 */
4507
4508                 if (CFS_FAIL_CHECK(CFS_FAIL_GNI_DROP_DESTROY_EP)) {
4509                         CFS_RACE(CFS_FAIL_GNI_DROP_DESTROY_EP);
4510                         rc = 1;
4511                         *intent = 1;
4512                         GOTO(did_fail_loc, rc);
4513                 }
4514         }
4515
4516         /* CFS_FAIL_GNI_FINISH_PURG2 is used to stop a connection from fully closing. This scheduler
4517          * will spin on the CFS_FAIL_TIMEOUT until the fail_loc is cleared at which time the connection
4518          * will be closed by kgnilnd_complete_closed_conn.
4519          */
4520         if ((conn->gnc_state == GNILND_CONN_CLOSED) && CFS_FAIL_CHECK(CFS_FAIL_GNI_FINISH_PURG2)) {
4521                 while (CFS_FAIL_TIMEOUT(CFS_FAIL_GNI_FINISH_PURG2, 1)) {};
4522                 rc = 1;
4523                 *intent = 1;
4524                 GOTO(did_fail_loc, rc);
4525         }
4526
4527         /* this one is a bit gross - we can't hold the mutex from process_conns
4528          * across a CFS_RACE here - it'd block the conn threads from doing an ep_bind
4529          * and moving onto finish_connect
4530          * so, we'll just set the rc - kgnilnd_process_conns will clear
4531          * found_work on a fail_loc, getting the scheduler thread to call schedule()
4532          * and effectively getting this thread to sleep */
4533         if ((conn->gnc_state == GNILND_CONN_CLOSED) && CFS_FAIL_CHECK(CFS_FAIL_GNI_FINISH_PURG)) {
4534                 rc = 1;
4535                 *intent = 1;
4536                 GOTO(did_fail_loc, rc);
4537         }
4538
4539 did_fail_loc:
4540         RETURN(rc);
4541 }
4542
4543 static inline void
4544 kgnilnd_send_conn_close(kgn_conn_t *conn)
4545 {
4546         kgn_tx_t        *tx;
4547
4548         /* we are closing the conn - we will try to send the CLOSE msg
4549          * but will not wait for anything else to flush */
4550
4551         /* send the close if not already done so or received one */
4552         if (!conn->gnc_close_sent && !conn->gnc_close_recvd) {
4553                 /* set close_sent regardless of the success of the
4554                  * CLOSE message. We are going to try once and then
4555                  * kick him out of the sandbox */
4556                 conn->gnc_close_sent = 1;
4557                 mb();
4558
4559                 /* EP might be null already if remote side initiated a new connection.
4560                  * kgnilnd_finish_connect destroys existing ep_handles before wiring up the new connection,
4561                  * so this check is here to make sure we dont attempt to send with a null ep_handle.
4562                  */
4563                 if (conn->gnc_ephandle != NULL) {
4564                         int rc = 0;
4565
4566                         tx = kgnilnd_new_tx_msg(GNILND_MSG_CLOSE,
4567                                                 lnet_nid_to_nid4(&conn->gnc_peer->gnp_net->gnn_ni->ni_nid));
4568                         if (tx != NULL) {
4569                                 tx->tx_msg.gnm_u.completion.gncm_retval = conn->gnc_error;
4570                                 tx->tx_state = GNILND_TX_WAITING_COMPLETION;
4571                                 tx->tx_qtime = jiffies;
4572
4573                                 if (tx->tx_id.txe_idx == 0) {
4574                                         rc = kgnilnd_set_tx_id(tx, conn);
4575                                         if (rc != 0) {
4576                                                 kgnilnd_tx_done(tx, rc);
4577                                         }
4578                                 }
4579
4580                                 CDEBUG(D_NETTRACE, "sending close with errno %d\n",
4581                                                 conn->gnc_error);
4582
4583                                 if (CFS_FAIL_CHECK(CFS_FAIL_GNI_CLOSE_SEND)) {
4584                                         kgnilnd_tx_done(tx, -EAGAIN);
4585                                 } else if (!rc) {
4586                                         rc = kgnilnd_sendmsg(tx, NULL, 0, NULL, GNILND_TX_FMAQ);
4587                                         if (rc) {
4588                                                 /* It wasnt sent and we dont care. */
4589                                                 kgnilnd_tx_done(tx, rc);
4590                                         }
4591                                 }
4592
4593                         }
4594                 }
4595         }
4596
4597         /* When changing gnc_state we need to take the kgn_peer_conn_lock */
4598         write_lock(&kgnilnd_data.kgn_peer_conn_lock);
4599         conn->gnc_state = GNILND_CONN_CLOSED;
4600         write_unlock(&kgnilnd_data.kgn_peer_conn_lock);
4601         /* mark this conn as CLOSED now that we processed it
4602          * do after TX, so we can use CLOSING in asserts */
4603
4604         mb();
4605
4606         if (CFS_FAIL_CHECK(CFS_FAIL_GNI_RX_CLOSE_CLOSED)) {
4607                 /* simulate a RX CLOSE after the timeout but before
4608                  * the scheduler thread gets it */
4609                 conn->gnc_close_recvd = GNILND_CLOSE_INJECT2;
4610                 conn->gnc_peer_error = -ETIMEDOUT;
4611         }
4612         /* schedule to allow potential CLOSE and get the complete phase run */
4613         kgnilnd_schedule_conn(conn);
4614 }
4615
4616 int
4617 kgnilnd_process_mapped_tx(kgn_device_t *dev)
4618 {
4619         int             found_work = 0;
4620         int             rc = 0;
4621         kgn_tx_t        *tx;
4622         int              fast_remaps = GNILND_FAST_MAPPING_TRY;
4623         int             log_retrans, log_retrans_level;
4624         static int      last_map_version;
4625         ENTRY;
4626
4627         spin_lock(&dev->gnd_lock);
4628         if (list_empty(&dev->gnd_map_tx)) {
4629                 /* if the list is empty make sure we dont have a timer running */
4630                 del_singleshot_timer_sync(&dev->gnd_map_timer);
4631                 spin_unlock(&dev->gnd_lock);
4632                 RETURN(0);
4633         }
4634
4635         dev->gnd_sched_alive = jiffies;
4636
4637         /* we'll retry as fast as possible up to 25% of the limit, then we start
4638          * backing off until our map version changes - indicating we unmapped
4639          * something */
4640         tx = list_first_entry(&dev->gnd_map_tx, kgn_tx_t, tx_list);
4641         if (likely(dev->gnd_map_attempt == 0) ||
4642                 time_after_eq(jiffies, dev->gnd_next_map) ||
4643                 last_map_version != dev->gnd_map_version) {
4644
4645                 /* if this is our first attempt at mapping set last mapped to current
4646                  * jiffies so we can timeout our attempt correctly.
4647                  */
4648                 if (dev->gnd_map_attempt == 0)
4649                         dev->gnd_last_map = jiffies;
4650         } else {
4651                 GNIDBG_TX(D_NET, tx, "waiting for mapping event event to retry", NULL);
4652                 spin_unlock(&dev->gnd_lock);
4653                 RETURN(0);
4654         }
4655
4656         /* delete the previous timer if it exists */
4657         del_singleshot_timer_sync(&dev->gnd_map_timer);
4658         /* stash the last map version to let us know when a good one was seen */
4659         last_map_version = dev->gnd_map_version;
4660
4661         /* we need to to take the lock and continually refresh the head of the list as
4662          * kgnilnd_complete_closed_conn might be nuking stuff and we are cycling the lock
4663          * allowing them to squeeze in */
4664
4665         while (!list_empty(&dev->gnd_map_tx)) {
4666                 /* make sure we break out early on quiesce */
4667                 if (unlikely(kgnilnd_data.kgn_quiesce_trigger)) {
4668                         /* always break with lock held - we unlock outside loop */
4669                         break;
4670                 }
4671
4672                 tx = list_first_entry(&dev->gnd_map_tx, kgn_tx_t, tx_list);
4673
4674                 kgnilnd_tx_del_state_locked(tx, NULL, tx->tx_conn, GNILND_TX_ALLOCD);
4675                 found_work++;
4676
4677                 /* sample with lock held, serializing with kgnilnd_complete_closed_conn */
4678                 if (tx->tx_conn->gnc_state != GNILND_CONN_ESTABLISHED) {
4679                         /* if conn is dying, mark tx in tx_ref_table for
4680                          * kgnilnd_complete_closed_conn to finish up */
4681                         kgnilnd_tx_add_state_locked(tx, NULL, tx->tx_conn, GNILND_TX_DYING, 1);
4682                         found_work++;
4683
4684                         /* tx was moved to DYING, get next */
4685                         continue;
4686                 }
4687
4688                 spin_unlock(&dev->gnd_lock);
4689                 rc = kgnilnd_send_mapped_tx(tx, 1);
4690
4691                 /* We made it! skip error handling.. */
4692                 if (rc >= 0) {
4693                         /* OK to continue on +ve errors as it won't get seen until
4694                          * this function is called again - we operate on a copy of the original
4695                          * list and not the live list */
4696                         spin_lock(&dev->gnd_lock);
4697                         /* reset map attempts back to zero we successfully
4698                          * mapped so we can reset our timers */
4699                         dev->gnd_map_attempt = 0;
4700                         continue;
4701                 } else if (rc == -EAGAIN) {
4702                         spin_lock(&dev->gnd_lock);
4703                         mod_timer(&dev->gnd_map_timer, dev->gnd_next_map);
4704                         spin_unlock(&dev->gnd_lock);
4705                         GOTO(get_out_mapped, rc);
4706                 } else if (rc != -ENOMEM) {
4707                         /* carp, failure we can't handle */
4708                         kgnilnd_tx_done(tx, rc);
4709                         spin_lock(&dev->gnd_lock);
4710                         /* reset map attempts back to zero we dont know what happened but it
4711                          * wasnt a failed mapping
4712                          */
4713                         dev->gnd_map_attempt = 0;
4714                         continue;
4715                 }
4716
4717                 /* time to handle the retry cases..  lock so we dont have 2 threads
4718                  * mucking with gnd_map_attempt, or gnd_next_map at the same time.
4719                  */
4720                 spin_lock(&dev->gnd_lock);
4721                 dev->gnd_map_attempt++;
4722                 if (dev->gnd_map_attempt < fast_remaps) {
4723                         /* do nothing we just want it to go as fast as possible.
4724                          * just set gnd_next_map to current jiffies so it will process
4725                          * as fast as possible.
4726                          */
4727                         dev->gnd_next_map = jiffies;
4728                 } else {
4729                         /* Retry based on GNILND_MAP_RETRY_RATE */
4730                         dev->gnd_next_map = jiffies + GNILND_MAP_RETRY_RATE;
4731                 }
4732
4733                 /* only log occasionally once we've retried fast_remaps */
4734                 log_retrans = (dev->gnd_map_attempt >= fast_remaps) &&
4735                               ((dev->gnd_map_attempt % fast_remaps) == 0);
4736                 log_retrans_level = log_retrans ? D_NETERROR : D_NET;
4737
4738                 /* make sure we are not off in the weeds with this tx */
4739                 if (time_after(jiffies, dev->gnd_last_map + GNILND_MAP_TIMEOUT)) {
4740                        GNIDBG_TX(D_NETERROR, tx,
4741                                "giving up on TX, too many retries", NULL);
4742                        spin_unlock(&dev->gnd_lock);
4743                        if (tx->tx_msg.gnm_type == GNILND_MSG_PUT_REQ ||
4744                            tx->tx_msg.gnm_type == GNILND_MSG_GET_REQ_REV) {
4745                                kgnilnd_nak_rdma(tx->tx_conn, tx->tx_msg.gnm_type,
4746                                                 -ENOMEM,
4747                                                 tx->tx_putinfo.gnpam_dst_cookie,
4748                                                 tx->tx_msg.gnm_srcnid);
4749                         } else {
4750                                 kgnilnd_nak_rdma(tx->tx_conn, tx->tx_msg.gnm_type,
4751                                                 -ENOMEM,
4752                                                 tx->tx_getinfo.gngm_cookie,
4753                                                 tx->tx_msg.gnm_srcnid);
4754                         }
4755                        kgnilnd_tx_done(tx, -ENOMEM);
4756                        GOTO(get_out_mapped, rc);
4757                 } else {
4758                        GNIDBG_TX(log_retrans_level, tx,
4759                                 "transient map failure #%d %d pages/%d bytes phys %u@%u "
4760                                 "nq_map %d mdd# %d/%d GART %ld",
4761                                 dev->gnd_map_attempt, tx->tx_phys_npages, tx->tx_nob,
4762                                 dev->gnd_map_nphys, dev->gnd_map_physnop * PAGE_SIZE,
4763                                 atomic_read(&dev->gnd_nq_map),
4764                                 atomic_read(&dev->gnd_n_mdd), atomic_read(&dev->gnd_n_mdd_held),
4765                                 atomic64_read(&dev->gnd_nbytes_map));
4766                 }
4767
4768                 /* we need to stop processing the rest of the list, so add it back in */
4769                 /* set timer to wake device when we need to schedule this tx */
4770                 mod_timer(&dev->gnd_map_timer, dev->gnd_next_map);
4771                 kgnilnd_tx_add_state_locked(tx, NULL, tx->tx_conn, GNILND_TX_MAPQ, 0);
4772                 spin_unlock(&dev->gnd_lock);
4773                 GOTO(get_out_mapped, rc);
4774         }
4775         spin_unlock(&dev->gnd_lock);
4776 get_out_mapped:
4777         RETURN(found_work);
4778 }
4779
4780 int
4781 kgnilnd_process_conns(kgn_device_t *dev, unsigned long deadline)
4782 {
4783         int              found_work = 0;
4784         int              conn_sched;
4785         int              intent = 0;
4786         int              error_inject = 0;
4787         int              rc = 0;
4788         kgn_conn_t      *conn;
4789
4790         spin_lock(&dev->gnd_lock);
4791         while (!list_empty(&dev->gnd_ready_conns) && time_before(jiffies, deadline)) {
4792                 dev->gnd_sched_alive = jiffies;
4793                 error_inject = 0;
4794                 rc = 0;
4795
4796                 if (unlikely(kgnilnd_data.kgn_quiesce_trigger)) {
4797                         /* break with lock held */
4798                         break;
4799                 }
4800
4801                 conn = list_first_entry(&dev->gnd_ready_conns, kgn_conn_t, gnc_schedlist);
4802                 list_del_init(&conn->gnc_schedlist);
4803                 /*
4804                  * Since we are processing conn now, we don't need to be on the delaylist any longer.
4805                  */
4806
4807                 if (!list_empty(&conn->gnc_delaylist))
4808                         list_del_init(&conn->gnc_delaylist);
4809                 spin_unlock(&dev->gnd_lock);
4810
4811                 conn_sched = xchg(&conn->gnc_scheduled, GNILND_CONN_PROCESS);
4812
4813                 LASSERTF(conn_sched != GNILND_CONN_IDLE &&
4814                          conn_sched != GNILND_CONN_PROCESS,
4815                          "conn %p on ready list but in bad state: %d\n",
4816                          conn, conn_sched);
4817
4818                 CDEBUG(D_INFO, "conn %p@%s for processing\n",
4819                         conn, kgnilnd_conn_state2str(conn));
4820
4821                 found_work++;
4822                 set_mb(conn->gnc_last_sched_do, jiffies);
4823
4824                 if (kgnilnd_check_conn_fail_loc(dev, conn, &intent)) {
4825
4826                         /* based on intent see if we should run again. */
4827                         rc = kgnilnd_schedule_process_conn(conn, intent);
4828                         error_inject = 1;
4829                         /* drop ref from gnd_ready_conns */
4830                         if (atomic_read(&conn->gnc_refcount) == 1 && rc != 1) {
4831                                 down_write(&dev->gnd_conn_sem);
4832                                 kgnilnd_conn_decref(conn);
4833                                 up_write(&dev->gnd_conn_sem);
4834                         } else if (rc != 1) {
4835                                 kgnilnd_conn_decref(conn);
4836                         }
4837                         /* clear this so that scheduler thread doesn't spin */
4838                         found_work = 0;
4839                         /* break with lock held... */
4840                         spin_lock(&dev->gnd_lock);
4841                         break;
4842                 }
4843
4844                 if (unlikely(conn->gnc_state == GNILND_CONN_CLOSED)) {
4845                         down_write(&dev->gnd_conn_sem);
4846
4847                         /* CONN_CLOSED set in procces_fmaq when CLOSE is sent */
4848                         if (unlikely(atomic_read(&conn->gnc_tx_in_use))) {
4849                                 /* If there are tx's currently in use in another
4850                                  * thread we dont want to complete the close
4851                                  * yet. Cycle this conn back through
4852                                  * the scheduler. */
4853                                 kgnilnd_schedule_conn(conn);
4854                         } else {
4855                                 kgnilnd_complete_closed_conn(conn);
4856                         }
4857                         up_write(&dev->gnd_conn_sem);
4858                 } else if (unlikely(conn->gnc_state == GNILND_CONN_DESTROY_EP)) {
4859                         /* DESTROY_EP set in kgnilnd_conn_decref on gnc_refcount = 1 */
4860                         /* serialize SMSG CQs with ep_bind and smsg_release */
4861                         down_write(&dev->gnd_conn_sem);
4862                         kgnilnd_destroy_conn_ep(conn);
4863                         up_write(&dev->gnd_conn_sem);
4864                 } else if (unlikely(conn->gnc_state == GNILND_CONN_CLOSING)) {
4865                        /* if we need to do some CLOSE sending, etc done here do it */
4866                         down_write(&dev->gnd_conn_sem);
4867                         kgnilnd_send_conn_close(conn);
4868                         kgnilnd_check_fma_rx(conn);
4869                         up_write(&dev->gnd_conn_sem);
4870                 } else if (atomic_read(&conn->gnc_peer->gnp_dirty_eps) == 0) {
4871                         /* start moving traffic if the old conns are cleared out */
4872                         down_read(&dev->gnd_conn_sem);
4873                         kgnilnd_check_fma_rx(conn);
4874                         kgnilnd_process_fmaq(conn);
4875                         up_read(&dev->gnd_conn_sem);
4876                 }
4877
4878                 rc = kgnilnd_schedule_process_conn(conn, 0);
4879
4880                 /* drop ref from gnd_ready_conns */
4881                 if (atomic_read(&conn->gnc_refcount) == 1 && rc != 1) {
4882                         down_write(&dev->gnd_conn_sem);
4883                         kgnilnd_conn_decref(conn);
4884                         up_write(&dev->gnd_conn_sem);
4885                 } else if (rc != 1) {
4886                         kgnilnd_conn_decref(conn);
4887                 }
4888
4889                 /* check list again with lock held */
4890                 spin_lock(&dev->gnd_lock);
4891         }
4892
4893         /* If we are short circuiting due to timing we want to be scheduled
4894          * as soon as possible.
4895          */
4896         if (!list_empty(&dev->gnd_ready_conns) && !error_inject)
4897                 found_work++;
4898
4899         spin_unlock(&dev->gnd_lock);
4900
4901         RETURN(found_work);
4902 }
4903
4904 int
4905 kgnilnd_scheduler(void *arg)
4906 {
4907         int               threadno = (long)arg;
4908         kgn_device_t            *dev;
4909         int                     busy_loops = 0;
4910         unsigned long     deadline = 0;
4911         DEFINE_WAIT(wait);
4912
4913         dev = &kgnilnd_data.kgn_devices[(threadno + 1) % kgnilnd_data.kgn_ndevs];
4914
4915         /* all gnilnd threads need to run fairly urgently */
4916         set_user_nice(current, *kgnilnd_tunables.kgn_sched_nice);
4917         deadline = jiffies + cfs_time_seconds(*kgnilnd_tunables.kgn_sched_timeout);
4918         while (!kgnilnd_data.kgn_shutdown) {
4919                 int     found_work = 0;
4920                 /* Safe: kgn_shutdown only set when quiescent */
4921
4922                 /* to quiesce or to not quiesce, that is the question */
4923
4924                 if (unlikely(kgnilnd_data.kgn_quiesce_trigger)) {
4925                         KGNILND_SPIN_QUIESCE;
4926                 }
4927
4928                 /* tracking for when thread goes AWOL */
4929                 dev->gnd_sched_alive = jiffies;
4930
4931                 CFS_FAIL_TIMEOUT(CFS_FAIL_GNI_SCHED_DEADLINE,
4932                         (*kgnilnd_tunables.kgn_sched_timeout + 1));
4933                 /* let folks know we are up and kicking
4934                  * - they can use this for latency savings, etc
4935                  * - only change if IRQ, if IDLE leave alone as that
4936                  *   schedule_device calls to put us back to IRQ */
4937                 (void)cmpxchg(&dev->gnd_ready, GNILND_DEV_IRQ, GNILND_DEV_LOOP);
4938
4939                 down_read(&dev->gnd_conn_sem);
4940                 /* always check these - they are super low cost  */
4941                 found_work += kgnilnd_check_fma_send_cq(dev);
4942                 found_work += kgnilnd_check_fma_rcv_cq(dev);
4943
4944                 /* rdma CQ doesn't care about eps */
4945                 found_work += kgnilnd_check_rdma_cq(dev);
4946
4947                 /* move some RDMA ? */
4948                 found_work += kgnilnd_process_rdmaq(dev);
4949
4950                 /* map some pending RDMA requests ? */
4951                 found_work += kgnilnd_process_mapped_tx(dev);
4952
4953                 /* the EP for a conn is not destroyed until all the references
4954                  * to it are gone, so these checks should be safe
4955                  * even if run in parallel with the CQ checking functions
4956                  * _AND_ a thread that processes the CLOSED->DONE
4957                  * transistion
4958                  * ...should.... */
4959
4960                 up_read(&dev->gnd_conn_sem);
4961
4962                 /* process all conns ready now */
4963                 found_work += kgnilnd_process_conns(dev, deadline);
4964
4965                 /* do an eager check to avoid the IRQ disabling in
4966                  * prepare_to_wait and friends */
4967
4968                 if (found_work &&
4969                    (busy_loops++ < *kgnilnd_tunables.kgn_loops) &&
4970                    time_before(jiffies, deadline)) {
4971                         found_work = 0;
4972                         if ((busy_loops % 10) == 0) {
4973                                 /* tickle heartbeat and watchdog to ensure our
4974                                  * piggishness doesn't turn into heartbeat failure */
4975                                 touch_nmi_watchdog();
4976                                 kgnilnd_hw_hb();
4977                         }
4978                         continue;
4979                 }
4980
4981                 /* if we got here, found_work was zero or busy_loops means we
4982                  * need to take a break. We'll clear gnd_ready but we'll check
4983                  * one last time if there is an IRQ that needs processing */
4984
4985                 prepare_to_wait(&dev->gnd_waitq, &wait, TASK_INTERRUPTIBLE);
4986
4987                 /* the first time this will go LOOP -> IDLE and let us do one final check
4988                  * during which we might get an IRQ, then IDLE->IDLE and schedule()
4989                  * - this might allow other threads to block us for a bit if they
4990                  *   try to get the mutex, but that is good as we'd need to wake
4991                  *   up soon to handle the CQ or other processing anyways */
4992
4993                 found_work += xchg(&dev->gnd_ready, GNILND_DEV_IDLE);
4994
4995                 if ((busy_loops >= *kgnilnd_tunables.kgn_loops) ||
4996                    time_after_eq(jiffies, deadline)) {
4997                         CDEBUG(D_INFO,
4998                                "yeilding: found_work %d busy_loops %d\n",
4999                                found_work, busy_loops);
5000                         busy_loops = 0;
5001                         /* use yield if we are bailing due to busy_loops
5002                          * - this will ensure we wake up soonish. This closes
5003                          * a race with kgnilnd_device_callback - where it'd
5004                          * not call wake_up() because gnd_ready == 1, but then
5005                          * we come down and schedule() because of busy_loops.
5006                          * We'd not be woken up until something poked our waitq
5007                          * again. yield() ensures we wake up without another
5008                          * waitq poke in that case */
5009                         atomic_inc(&dev->gnd_n_yield);
5010                         kgnilnd_data.kgn_last_condresched = jiffies;
5011                         yield();
5012                         CDEBUG(D_INFO, "awake after yeild\n");
5013                         deadline = jiffies + cfs_time_seconds(*kgnilnd_tunables.kgn_sched_timeout);
5014                 } else if (found_work == GNILND_DEV_IDLE) {
5015                         /* busy_loops is low and there is nothing to do,
5016                          * go to sleep and wait for a waitq poke */
5017                         CDEBUG(D_INFO,
5018                                "scheduling: found_work %d busy_loops %d\n",
5019                                found_work, busy_loops);
5020                         atomic_inc(&dev->gnd_n_schedule);
5021                         kgnilnd_data.kgn_last_scheduled = jiffies;
5022                         schedule();
5023                         CDEBUG(D_INFO, "awake after schedule\n");
5024                         deadline = jiffies + cfs_time_seconds(*kgnilnd_tunables.kgn_sched_timeout);
5025                 }
5026                 finish_wait(&dev->gnd_waitq, &wait);
5027         }
5028
5029         kgnilnd_thread_fini();
5030         return 0;
5031 }