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