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