2 * Copyright (C) 2004 Cluster File Systems, Inc.
4 * Copyright (C) 2009-2012 Cray, Inc.
6 * Derived from work by Eric Barton <eric@bartonsoftware.com>
7 * Author: James Shimek <jshimek@cray.com>
8 * Author: Nic Henke <nic@cray.com>
10 * This file is part of Lustre, http://www.lustre.org.
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.
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.
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.
28 #include <linux/nmi.h>
29 #include <linux/pagemap.h>
31 #include <libcfs/linux/linux-mem.h>
35 /* this is useful when needed to debug wire corruption. */
37 kgnilnd_dump_blob(int level, char *prefix, void *buf, int len) {
45 "%s 0x%p: 0x%16.16llx 0x%16.16llx 0x%16.16llx 0x%16.16llx\n",
46 prefix, ptr, *(ptr), *(ptr + 1), *(ptr + 2), *(ptr + 3));
49 } else if (len >= 16) {
51 "%s 0x%p: 0x%16.16llx 0x%16.16llx\n",
52 prefix, ptr, *(ptr), *(ptr + 1));
56 CDEBUG(level, "%s 0x%p: 0x%16.16llx\n",
65 kgnilnd_dump_msg(int mask, kgn_msg_t *msg)
67 CDEBUG(mask, "0x%8.8x 0x%4.4x 0x%4.4x 0x%16.16llx"
68 " 0x%16.16llx 0x%8.8x 0x%4.4x 0x%4.4x 0x%8.8x\n",
69 msg->gnm_magic, msg->gnm_version,
70 msg->gnm_type, msg->gnm_srcnid,
71 msg->gnm_connstamp, msg->gnm_seq,
72 msg->gnm_cksum, msg->gnm_payload_cksum,
73 msg->gnm_payload_len);
77 kgnilnd_schedule_device(kgn_device_t *dev)
79 short already_live = 0;
81 /* we'll only want to wake if the scheduler thread
82 * has come around and set ready to zero */
83 already_live = cmpxchg(&dev->gnd_ready, GNILND_DEV_IDLE, GNILND_DEV_IRQ);
86 wake_up_all(&dev->gnd_waitq);
90 void kgnilnd_schedule_device_timer(unsigned long arg)
92 kgn_device_t *dev = (kgn_device_t *) arg;
94 kgnilnd_schedule_device(dev);
98 kgnilnd_device_callback(__u32 devid, __u64 arg)
101 int index = (int) arg;
103 if (index >= kgnilnd_data.kgn_ndevs) {
104 /* use _EMERG instead of an LBUG to prevent LBUG'ing in
105 * interrupt context. */
106 LCONSOLE_EMERG("callback for unknown device %d->%d\n",
111 dev = &kgnilnd_data.kgn_devices[index];
112 /* just basic sanity */
113 if (dev->gnd_id == devid) {
114 kgnilnd_schedule_device(dev);
116 LCONSOLE_EMERG("callback for bad device %d devid %d\n",
121 /* sched_intent values:
122 * < 0 : do not reschedule under any circumstances
123 * == 0: reschedule if someone marked him WANTS_SCHED
124 * > 0 : force a reschedule */
125 /* Return code 0 means it did not schedule the conn, 1
126 * means it successfully scheduled the conn.
130 kgnilnd_schedule_process_conn(kgn_conn_t *conn, int sched_intent)
134 /* move back to IDLE but save previous state.
135 * if we see WANTS_SCHED, we'll call kgnilnd_schedule_conn and
136 * let the xchg there handle any racing callers to get it
137 * onto gnd_ready_conns */
139 conn_sched = xchg(&conn->gnc_scheduled, GNILND_CONN_IDLE);
140 LASSERTF(conn_sched == GNILND_CONN_WANTS_SCHED ||
141 conn_sched == GNILND_CONN_PROCESS,
142 "conn %p after process in bad state: %d\n",
145 if (sched_intent >= 0) {
146 if ((sched_intent > 0 || (conn_sched == GNILND_CONN_WANTS_SCHED))) {
147 return kgnilnd_schedule_conn_refheld(conn, 1);
153 /* Return of 0 for conn not scheduled, 1 returned if conn was scheduled or marked
157 _kgnilnd_schedule_conn(kgn_conn_t *conn, const char *caller, int line, int refheld, int lock_held)
159 kgn_device_t *dev = conn->gnc_device;
163 sched = xchg(&conn->gnc_scheduled, GNILND_CONN_WANTS_SCHED);
164 /* we only care about the last person who marked want_sched since they
165 * are most likely the culprit
167 memcpy(conn->gnc_sched_caller, caller, sizeof(conn->gnc_sched_caller));
168 conn->gnc_sched_line = line;
169 /* if we are IDLE, add to list - only one guy sees IDLE and "wins"
170 * the chance to put it onto gnd_ready_conns.
171 * otherwise, leave marked as WANTS_SCHED and the thread that "owns"
172 * the conn in process_conns will take care of moving it back to
173 * SCHED when it is done processing */
175 if (sched == GNILND_CONN_IDLE) {
176 /* if the conn is already scheduled, we've already requested
177 * the scheduler thread wakeup */
179 /* Add a reference to the conn if we are not holding a reference
180 * already from the exisiting scheduler. We now use the same
181 * reference if we need to reschedule a conn while in a scheduler
184 kgnilnd_conn_addref(conn);
186 LASSERTF(list_empty(&conn->gnc_schedlist), "conn %p already sched state %d\n",
189 CDEBUG(D_INFO, "scheduling conn 0x%p caller %s:%d\n", conn, caller, line);
191 spin_lock(&dev->gnd_lock);
192 list_add_tail(&conn->gnc_schedlist, &dev->gnd_ready_conns);
194 spin_unlock(&dev->gnd_lock);
195 set_mb(conn->gnc_last_sched_ask, jiffies);
198 CDEBUG(D_INFO, "not scheduling conn 0x%p: %d caller %s:%d\n", conn, sched, caller, line);
202 /* make sure thread(s) going to process conns - but let it make
203 * separate decision from conn schedule */
205 kgnilnd_schedule_device(dev);
210 _kgnilnd_schedule_delay_conn(kgn_conn_t *conn)
212 kgn_device_t *dev = conn->gnc_device;
214 spin_lock(&dev->gnd_lock);
215 if (list_empty(&conn->gnc_delaylist)) {
216 list_add_tail(&conn->gnc_delaylist, &dev->gnd_delay_conns);
219 spin_unlock(&dev->gnd_lock);
221 kgnilnd_schedule_device(dev);
226 kgnilnd_schedule_dgram(kgn_device_t *dev)
230 wake = xchg(&dev->gnd_dgram_ready, GNILND_DGRAM_SCHED);
231 if (wake != GNILND_DGRAM_SCHED) {
232 wake_up(&dev->gnd_dgram_waitq);
234 CDEBUG(D_NETTRACE, "not waking: %d\n", wake);
239 kgnilnd_free_tx(kgn_tx_t *tx)
241 /* taken from kgnilnd_tx_add_state_locked */
243 LASSERTF((tx->tx_list_p == NULL &&
244 tx->tx_list_state == GNILND_TX_ALLOCD) &&
245 list_empty(&tx->tx_list),
246 "tx %p with bad state %s (list_p %p) tx_list %s\n",
247 tx, kgnilnd_tx_state2str(tx->tx_list_state), tx->tx_list_p,
248 list_empty(&tx->tx_list) ? "empty" : "not empty");
250 atomic_dec(&kgnilnd_data.kgn_ntx);
252 /* we only allocate this if we need to */
253 if (tx->tx_phys != NULL) {
254 kmem_cache_free(kgnilnd_data.kgn_tx_phys_cache, tx->tx_phys);
255 CDEBUG(D_MALLOC, "slab-freed 'tx_phys': %lu at %p.\n",
256 LNET_MAX_IOV * sizeof(gni_mem_segment_t), tx->tx_phys);
259 /* Only free the buffer if we used it */
260 if (tx->tx_buffer_copy != NULL) {
261 kgnilnd_vfree(tx->tx_buffer_copy, tx->tx_rdma_desc.length);
262 tx->tx_buffer_copy = NULL;
263 CDEBUG(D_MALLOC, "vfreed buffer2\n");
266 KGNILND_POISON(tx, 0x5a, sizeof(kgn_tx_t));
268 CDEBUG(D_MALLOC, "slab-freed 'tx': %lu at %p.\n", sizeof(*tx), tx);
269 kmem_cache_free(kgnilnd_data.kgn_tx_cache, tx);
273 kgnilnd_alloc_tx (void)
277 if (CFS_FAIL_CHECK(CFS_FAIL_GNI_ALLOC_TX))
280 tx = kmem_cache_zalloc(kgnilnd_data.kgn_tx_cache, GFP_ATOMIC);
282 CERROR("failed to allocate tx\n");
285 CDEBUG(D_MALLOC, "slab-alloced 'tx': %lu at %p.\n",
288 /* setup everything here to minimize time under the lock */
289 tx->tx_buftype = GNILND_BUF_NONE;
290 tx->tx_msg.gnm_type = GNILND_MSG_NONE;
291 INIT_LIST_HEAD(&tx->tx_list);
292 INIT_LIST_HEAD(&tx->tx_map_list);
293 tx->tx_list_state = GNILND_TX_ALLOCD;
295 atomic_inc(&kgnilnd_data.kgn_ntx);
300 /* csum_fold needs to be run on the return value before shipping over the wire */
301 #define _kgnilnd_cksum(seed, ptr, nob) csum_partial(ptr, nob, seed)
303 /* we don't use offset as every one is passing a buffer reference that already
304 * includes the offset into the base address.
307 kgnilnd_cksum(void *ptr, size_t nob)
311 sum = csum_fold(_kgnilnd_cksum(0, ptr, nob));
313 /* don't use magic 'no checksum' value */
317 CDEBUG(D_INFO, "cksum 0x%x for ptr 0x%p sz %zu\n",
324 kgnilnd_cksum_kiov(unsigned int nkiov, struct bio_vec *kiov,
325 unsigned int offset, unsigned int nob, int dump_blob)
331 unsigned int fraglen;
337 CDEBUG(D_BUFFS, "calc cksum for kiov 0x%p nkiov %u offset %u nob %u, dump %d\n",
338 kiov, nkiov, offset, nob, dump_blob);
340 /* if loops changes, please change kgnilnd_setup_phys_buffer */
342 while (offset >= kiov->bv_len) {
343 offset -= kiov->bv_len;
349 /* ignore nob here, if nob < (bv_len - offset), kiov == 1 */
350 odd = (unsigned long) (kiov[0].bv_len - offset) & 1;
352 if ((odd || *kgnilnd_tunables.kgn_vmap_cksum) && nkiov > 1) {
353 struct page **pages = kgnilnd_data.kgn_cksum_map_pages[get_cpu()];
355 LASSERTF(pages != NULL, "NULL pages for cpu %d map_pages 0x%p\n",
356 get_cpu(), kgnilnd_data.kgn_cksum_map_pages);
358 CDEBUG(D_BUFFS, "odd %d len %u offset %u nob %u\n",
359 odd, kiov[0].bv_len, offset, nob);
361 for (i = 0; i < nkiov; i++) {
362 pages[i] = kiov[i].bv_page;
365 addr = vmap(pages, nkiov, VM_MAP, PAGE_KERNEL);
367 CNETERR("Couldn't vmap %d frags on %d bytes to avoid odd length fragment in cksum\n",
369 /* return zero to avoid killing tx - we'll just get warning on console
370 * when remote end sees zero checksum */
373 atomic_inc(&kgnilnd_data.kgn_nvmap_cksum);
375 tmpck = _kgnilnd_cksum(0, ((void *) addr + kiov[0].bv_offset +
380 kgnilnd_dump_blob(D_BUFFS, "flat kiov RDMA payload",
381 (void *)addr + kiov[0].bv_offset +
384 CDEBUG(D_BUFFS, "cksum 0x%x (+0x%x) for addr 0x%p+%u len %u offset %u\n",
385 cksum, tmpck, addr, kiov[0].bv_offset, nob, offset);
389 fraglen = min(kiov->bv_len - offset, nob);
391 /* make dang sure we don't send a bogus checksum if somehow we get
392 * an odd length fragment on anything but the last entry in a kiov -
393 * we know from kgnilnd_setup_rdma_buffer that we can't have non
394 * PAGE_SIZE pages in the middle, so if nob < PAGE_SIZE, it is the last one */
395 LASSERTF(!(fraglen&1) || (nob < PAGE_SIZE),
396 "odd fraglen %u on nkiov %d, nob %u bv_len %u offset %u kiov 0x%p\n",
397 fraglen, nkiov, nob, kiov->bv_len,
400 addr = (void *)kmap(kiov->bv_page) + kiov->bv_offset +
402 tmpck = _kgnilnd_cksum(cksum, addr, fraglen);
405 "cksum 0x%x (+0x%x) for page 0x%p+%u (0x%p) len %u offset %u\n",
406 cksum, tmpck, kiov->bv_page, kiov->bv_offset,
407 addr, fraglen, offset);
412 kgnilnd_dump_blob(D_BUFFS, "kiov cksum", addr, fraglen);
414 kunmap(kiov->bv_page);
421 /* iov must not run out before end of data */
422 LASSERTF(nob == 0 || nkiov > 0, "nob %u nkiov %u\n", nob, nkiov);
427 retsum = csum_fold(cksum);
429 /* don't use magic 'no checksum' value */
433 CDEBUG(D_BUFFS, "retsum 0x%x from cksum 0x%x\n", retsum, cksum);
439 kgnilnd_init_msg(kgn_msg_t *msg, int type, lnet_nid_t source)
441 msg->gnm_magic = GNILND_MSG_MAGIC;
442 msg->gnm_version = GNILND_MSG_VERSION;
443 msg->gnm_type = type;
444 msg->gnm_payload_len = 0;
445 msg->gnm_srcnid = source;
446 /* gnm_connstamp gets set when FMA is sent */
447 /* gnm_srcnid is set on creation via function argument
448 * The right interface/net and nid is passed in when the message
454 kgnilnd_new_tx_msg(int type, lnet_nid_t source)
456 kgn_tx_t *tx = kgnilnd_alloc_tx();
459 kgnilnd_init_msg(&tx->tx_msg, type, source);
461 CERROR("couldn't allocate new tx type %s!\n",
462 kgnilnd_msgtype2str(type));
469 kgnilnd_nak_rdma(kgn_conn_t *conn, int rx_type, int error, __u64 cookie, lnet_nid_t source) {
475 case GNILND_MSG_GET_REQ:
476 case GNILND_MSG_GET_DONE:
477 nak_type = GNILND_MSG_GET_NAK;
479 case GNILND_MSG_PUT_REQ:
480 case GNILND_MSG_PUT_ACK:
481 case GNILND_MSG_PUT_DONE:
482 nak_type = GNILND_MSG_PUT_NAK;
484 case GNILND_MSG_PUT_REQ_REV:
485 case GNILND_MSG_PUT_DONE_REV:
486 nak_type = GNILND_MSG_PUT_NAK_REV;
488 case GNILND_MSG_GET_REQ_REV:
489 case GNILND_MSG_GET_ACK_REV:
490 case GNILND_MSG_GET_DONE_REV:
491 nak_type = GNILND_MSG_GET_NAK_REV;
494 CERROR("invalid msg type %s (%d)\n",
495 kgnilnd_msgtype2str(rx_type), rx_type);
498 /* only allow NAK on error and truncate to zero */
499 LASSERTF(error <= 0, "error %d conn 0x%p, cookie %llu\n",
500 error, conn, cookie);
502 tx = kgnilnd_new_tx_msg(nak_type, source);
504 CNETERR("can't get TX to NAK RDMA to %s\n",
505 libcfs_nid2str(conn->gnc_peer->gnp_nid));
509 tx->tx_msg.gnm_u.completion.gncm_retval = error;
510 tx->tx_msg.gnm_u.completion.gncm_cookie = cookie;
511 kgnilnd_queue_tx(conn, tx);
515 kgnilnd_setup_immediate_buffer(kgn_tx_t *tx, unsigned int niov,
516 struct bio_vec *kiov,
517 unsigned int offset, unsigned int nob)
519 kgn_msg_t *msg = &tx->tx_msg;
522 /* To help save on MDDs for short messages, we'll vmap a kiov to allow
523 * gni_smsg_send to send that as the payload */
525 LASSERT(tx->tx_buftype == GNILND_BUF_NONE);
528 tx->tx_buffer = NULL;
531 if ((niov > 0) && unlikely(niov > (nob/PAGE_SIZE))) {
532 niov = round_up(nob + offset + kiov->bv_offset,
536 LASSERTF(niov > 0 && niov < GNILND_MAX_IMMEDIATE/PAGE_SIZE,
537 "bad niov %d msg %p kiov %p offset %d nob%d\n",
538 niov, msg, kiov, offset, nob);
540 while (offset >= kiov->bv_len) {
541 offset -= kiov->bv_len;
546 for (i = 0; i < niov; i++) {
547 /* We can't have a bv_offset on anything but the first
548 * entry, otherwise we'll have a hole at the end of the
549 * mapping as we only map whole pages.
550 * Also, if we have a bv_len < PAGE_SIZE but we need to
551 * map more than bv_len, we will also have a whole at
552 * the end of that page which isn't allowed
554 if ((kiov[i].bv_offset != 0 && i > 0) ||
555 (kiov[i].bv_offset + kiov[i].bv_len != PAGE_SIZE &&
557 CNETERR("Can't make payload contiguous in I/O VM:page %d, offset %u, nob %u, bv_offset %u bv_len %u\n",
558 i, offset, nob, kiov->bv_offset,
562 tx->tx_imm_pages[i] = kiov[i].bv_page;
565 /* hijack tx_phys for the later unmap */
567 /* tx->phyx being equal to NULL is the signal for unmap to discern between kmap and vmap */
569 tx->tx_buffer = (void *)kmap(tx->tx_imm_pages[0]) +
570 kiov[0].bv_offset + offset;
571 atomic_inc(&kgnilnd_data.kgn_nkmap_short);
572 GNIDBG_TX(D_NET, tx, "kmapped page for %d bytes for kiov 0x%p, buffer 0x%p",
573 nob, kiov, tx->tx_buffer);
575 tx->tx_phys = vmap(tx->tx_imm_pages, niov, VM_MAP, PAGE_KERNEL);
576 if (tx->tx_phys == NULL) {
577 CNETERR("Couldn't vmap %d frags on %d bytes\n", niov, nob);
581 atomic_inc(&kgnilnd_data.kgn_nvmap_short);
582 /* make sure we take into account the kiov offset as the
583 * start of the buffer
585 tx->tx_buffer = (void *)tx->tx_phys + kiov[0].bv_offset
588 "mapped %d pages for %d bytes from kiov 0x%p to 0x%p, buffer 0x%p",
589 niov, nob, kiov, tx->tx_phys, tx->tx_buffer);
591 tx->tx_buftype = GNILND_BUF_IMMEDIATE_KIOV;
596 /* checksum payload early - it shouldn't be changing after lnd_send */
597 if (*kgnilnd_tunables.kgn_checksum >= 2) {
598 msg->gnm_payload_cksum = kgnilnd_cksum(tx->tx_buffer, nob);
599 if (CFS_FAIL_CHECK(CFS_FAIL_GNI_SMSG_CKSUM2)) {
600 msg->gnm_payload_cksum += 0xe00e;
602 if (*kgnilnd_tunables.kgn_checksum_dump > 1) {
603 kgnilnd_dump_blob(D_BUFFS, "payload checksum",
607 msg->gnm_payload_cksum = 0;
614 kgnilnd_setup_phys_buffer(kgn_tx_t *tx, int nkiov, struct bio_vec *kiov,
615 unsigned int offset, unsigned int nob)
617 gni_mem_segment_t *phys;
619 unsigned int fraglen;
621 GNIDBG_TX(D_NET, tx, "niov %d kiov 0x%p offset %u nob %u", nkiov, kiov, offset, nob);
625 LASSERT(tx->tx_buftype == GNILND_BUF_NONE);
627 /* only allocate this if we are going to use it */
628 tx->tx_phys = kmem_cache_alloc(kgnilnd_data.kgn_tx_phys_cache,
630 if (tx->tx_phys == NULL) {
631 CERROR("failed to allocate tx_phys\n");
636 CDEBUG(D_MALLOC, "slab-alloced 'tx->tx_phys': %lu at %p.\n",
637 LNET_MAX_IOV * sizeof(gni_mem_segment_t), tx->tx_phys);
639 /* if loops changes, please change kgnilnd_cksum_kiov
640 * and kgnilnd_setup_immediate_buffer */
642 while (offset >= kiov->bv_len) {
643 offset -= kiov->bv_len;
649 /* at this point, kiov points to the first page that we'll actually map
650 * now that we've seeked into the koiv for offset and dropped any
651 * leading pages that fall entirely within the offset */
652 tx->tx_buftype = GNILND_BUF_PHYS_UNMAPPED;
655 /* bv_offset is start of 'valid' buffer, so index offset past that */
656 tx->tx_buffer = (void *)((unsigned long)(kiov->bv_offset + offset));
659 CDEBUG(D_NET, "tx 0x%p buffer 0x%p map start kiov 0x%p+%u niov %d offset %u\n",
660 tx, tx->tx_buffer, kiov, kiov->bv_offset, nkiov, offset);
663 fraglen = min(kiov->bv_len - offset, nob);
665 /* We can't have a bv_offset on anything but the first entry,
666 * otherwise we'll have a hole at the end of the mapping as we
667 * only map whole pages. Only the first page is allowed to
668 * have an offset - we'll add that into tx->tx_buffer and that
669 * will get used when we map in the segments (see
670 * kgnilnd_map_buffer). Also, if we have a bv_len < PAGE_SIZE
671 * but we need to map more than bv_len, we will also have a
672 * whole at the end of that page which isn't allowed
674 if ((phys != tx->tx_phys) &&
675 ((kiov->bv_offset != 0) ||
676 ((kiov->bv_len < PAGE_SIZE) && (nob > kiov->bv_len)))) {
677 CERROR("Can't make payload contiguous in I/O VM:page %d, offset %u, nob %u, bv_offset %u bv_len %u\n",
678 (int)(phys - tx->tx_phys),
679 offset, nob, kiov->bv_offset, kiov->bv_len);
684 if ((phys - tx->tx_phys) == LNET_MAX_IOV) {
685 CERROR ("payload too big (%d)\n", (int)(phys - tx->tx_phys));
690 if (CFS_FAIL_CHECK(CFS_FAIL_GNI_PHYS_SETUP)) {
696 "page 0x%p bv_offset %u bv_len %u nob %u nkiov %u offset %u\n",
697 kiov->bv_page, kiov->bv_offset, kiov->bv_len, nob, nkiov,
700 phys->address = page_to_phys(kiov->bv_page);
707 /* iov must not run out before end of data */
708 LASSERTF(nob == 0 || nkiov > 0, "nob %u nkiov %u\n", nob, nkiov);
712 tx->tx_phys_npages = phys - tx->tx_phys;
717 if (tx->tx_phys != NULL) {
718 kmem_cache_free(kgnilnd_data.kgn_tx_phys_cache, tx->tx_phys);
719 CDEBUG(D_MALLOC, "slab-freed 'tx_phys': %lu at %p.\n",
720 sizeof(*tx->tx_phys), tx->tx_phys);
727 kgnilnd_setup_rdma_buffer(kgn_tx_t *tx, unsigned int niov,
728 struct bio_vec *kiov,
729 unsigned int offset, unsigned int nob)
731 return kgnilnd_setup_phys_buffer(tx, niov, kiov, offset, nob);
734 /* kgnilnd_parse_lnet_rdma()
735 * lntmsg - message passed in from lnet.
736 * niov, kiov, offset - see lnd_t in lib-types.h for descriptions.
737 * nob - actual number of bytes to in this message.
738 * put_len - It is possible for PUTs to have a different length than the
739 * length stored in lntmsg->msg_len since LNET can adjust this
740 * length based on it's buffer size and offset.
741 * lnet_try_match_md() sets the mlength that we use to do the RDMA
745 kgnilnd_parse_lnet_rdma(struct lnet_msg *lntmsg, unsigned int *niov,
746 unsigned int *offset, unsigned int *nob,
747 struct bio_vec **kiov, int put_len)
749 /* GETs are weird, see kgnilnd_send */
750 if (lntmsg->msg_type == LNET_MSG_GET) {
751 if ((lntmsg->msg_md->md_options & LNET_MD_KIOV) == 0) {
754 *kiov = lntmsg->msg_md->md_kiov;
756 *niov = lntmsg->msg_md->md_niov;
757 *nob = lntmsg->msg_md->md_length;
760 *kiov = lntmsg->msg_kiov;
761 *niov = lntmsg->msg_niov;
763 *offset = lntmsg->msg_offset;
768 kgnilnd_compute_rdma_cksum(kgn_tx_t *tx, int put_len)
770 unsigned int niov, offset, nob;
771 struct bio_vec *kiov;
772 struct lnet_msg *lntmsg = tx->tx_lntmsg[0];
773 int dump_cksum = (*kgnilnd_tunables.kgn_checksum_dump > 1);
775 GNITX_ASSERTF(tx, ((tx->tx_msg.gnm_type == GNILND_MSG_PUT_DONE) ||
776 (tx->tx_msg.gnm_type == GNILND_MSG_GET_DONE) ||
777 (tx->tx_msg.gnm_type == GNILND_MSG_PUT_DONE_REV) ||
778 (tx->tx_msg.gnm_type == GNILND_MSG_GET_DONE_REV) ||
779 (tx->tx_msg.gnm_type == GNILND_MSG_GET_ACK_REV) ||
780 (tx->tx_msg.gnm_type == GNILND_MSG_PUT_REQ_REV)),
781 "bad type %s", kgnilnd_msgtype2str(tx->tx_msg.gnm_type));
783 if ((tx->tx_msg.gnm_type == GNILND_MSG_PUT_DONE_REV) ||
784 (tx->tx_msg.gnm_type == GNILND_MSG_GET_DONE_REV)) {
785 tx->tx_msg.gnm_payload_cksum = 0;
788 if (*kgnilnd_tunables.kgn_checksum < 3) {
789 tx->tx_msg.gnm_payload_cksum = 0;
793 GNITX_ASSERTF(tx, lntmsg, "no LNet message!", NULL);
795 kgnilnd_parse_lnet_rdma(lntmsg, &niov, &offset, &nob, &kiov,
799 tx->tx_msg.gnm_payload_cksum = kgnilnd_cksum_kiov(niov, kiov, offset, nob, dump_cksum);
801 tx->tx_msg.gnm_payload_cksum = kgnilnd_cksum(tx->tx_buffer, nob);
803 kgnilnd_dump_blob(D_BUFFS, "peer RDMA payload", tx->tx_buffer, nob);
807 if (CFS_FAIL_CHECK(CFS_FAIL_GNI_SMSG_CKSUM3)) {
808 tx->tx_msg.gnm_payload_cksum += 0xd00d;
812 /* kgnilnd_verify_rdma_cksum()
813 * tx - PUT_DONE/GET_DONE matched tx.
814 * rx_cksum - received checksum to compare against.
815 * put_len - see kgnilnd_parse_lnet_rdma comments.
818 kgnilnd_verify_rdma_cksum(kgn_tx_t *tx, __u16 rx_cksum, int put_len)
822 unsigned int niov, offset, nob;
823 struct bio_vec *kiov;
824 struct lnet_msg *lntmsg = tx->tx_lntmsg[0];
825 int dump_on_err = *kgnilnd_tunables.kgn_checksum_dump;
827 /* we can only match certain requests */
828 GNITX_ASSERTF(tx, ((tx->tx_msg.gnm_type == GNILND_MSG_GET_REQ) ||
829 (tx->tx_msg.gnm_type == GNILND_MSG_PUT_ACK) ||
830 (tx->tx_msg.gnm_type == GNILND_MSG_PUT_REQ_REV) ||
831 (tx->tx_msg.gnm_type == GNILND_MSG_GET_ACK_REV) ||
832 (tx->tx_msg.gnm_type == GNILND_MSG_GET_DONE_REV) ||
833 (tx->tx_msg.gnm_type == GNILND_MSG_PUT_DONE_REV)),
834 "bad type %s", kgnilnd_msgtype2str(tx->tx_msg.gnm_type));
836 if ((tx->tx_msg.gnm_type == GNILND_MSG_PUT_REQ_REV) ||
837 (tx->tx_msg.gnm_type == GNILND_MSG_GET_ACK_REV)) {
842 if (*kgnilnd_tunables.kgn_checksum >= 3) {
843 GNIDBG_MSG(D_WARNING, &tx->tx_msg,
844 "no RDMA payload checksum when enabled");
849 GNITX_ASSERTF(tx, lntmsg, "no LNet message!", NULL);
851 kgnilnd_parse_lnet_rdma(lntmsg, &niov, &offset, &nob, &kiov, put_len);
854 cksum = kgnilnd_cksum_kiov(niov, kiov, offset, nob, 0);
856 cksum = kgnilnd_cksum(tx->tx_buffer, nob);
859 if (cksum != rx_cksum) {
860 GNIDBG_MSG(D_NETERROR, &tx->tx_msg,
861 "Bad RDMA payload checksum (%x expected %x); "
862 "kiov 0x%p niov %d nob %u offset %u",
863 cksum, rx_cksum, kiov, niov, nob, offset);
864 switch (dump_on_err) {
867 kgnilnd_cksum_kiov(niov, kiov, offset, nob, 1);
869 kgnilnd_dump_blob(D_BUFFS, "RDMA payload",
872 /* fall through to dump log */
874 libcfs_debug_dumplog();
880 /* kgnilnd_check_fma_rx will close conn, kill tx with error */
886 kgnilnd_mem_add_map_list(kgn_device_t *dev, kgn_tx_t *tx)
890 GNITX_ASSERTF(tx, list_empty(&tx->tx_map_list),
891 "already mapped!", NULL);
893 spin_lock(&dev->gnd_map_lock);
894 switch (tx->tx_buftype) {
896 GNIDBG_TX(D_EMERG, tx,
897 "SOFTWARE BUG: invalid mapping %d", tx->tx_buftype);
898 spin_unlock(&dev->gnd_map_lock);
902 case GNILND_BUF_PHYS_MAPPED:
903 bytes = tx->tx_phys_npages * PAGE_SIZE;
904 dev->gnd_map_nphys++;
905 dev->gnd_map_physnop += tx->tx_phys_npages;
909 if (tx->tx_msg.gnm_type == GNILND_MSG_PUT_ACK ||
910 tx->tx_msg.gnm_type == GNILND_MSG_GET_REQ) {
911 atomic64_add(bytes, &dev->gnd_rdmaq_bytes_out);
912 GNIDBG_TX(D_NETTRACE, tx, "rdma ++ %d to %lld",
913 bytes, atomic64_read(&dev->gnd_rdmaq_bytes_out));
916 atomic_inc(&dev->gnd_n_mdd);
917 atomic64_add(bytes, &dev->gnd_nbytes_map);
919 /* clear retrans to prevent any SMSG goofiness as that code uses the same counter */
922 /* we only get here in the valid cases */
923 list_add_tail(&tx->tx_map_list, &dev->gnd_map_list);
924 dev->gnd_map_version++;
925 spin_unlock(&dev->gnd_map_lock);
929 kgnilnd_mem_del_map_list(kgn_device_t *dev, kgn_tx_t *tx)
933 GNITX_ASSERTF(tx, !list_empty(&tx->tx_map_list),
934 "not mapped!", NULL);
935 spin_lock(&dev->gnd_map_lock);
937 switch (tx->tx_buftype) {
939 GNIDBG_TX(D_EMERG, tx,
940 "SOFTWARE BUG: invalid mapping %d", tx->tx_buftype);
941 spin_unlock(&dev->gnd_map_lock);
945 case GNILND_BUF_PHYS_UNMAPPED:
946 bytes = tx->tx_phys_npages * PAGE_SIZE;
947 dev->gnd_map_nphys--;
948 dev->gnd_map_physnop -= tx->tx_phys_npages;
952 if (tx->tx_msg.gnm_type == GNILND_MSG_PUT_ACK ||
953 tx->tx_msg.gnm_type == GNILND_MSG_GET_REQ) {
954 atomic64_sub(bytes, &dev->gnd_rdmaq_bytes_out);
955 LASSERTF(atomic64_read(&dev->gnd_rdmaq_bytes_out) >= 0,
956 "bytes_out negative! %ld\n", atomic64_read(&dev->gnd_rdmaq_bytes_out));
957 GNIDBG_TX(D_NETTRACE, tx, "rdma -- %d to %lld",
958 bytes, atomic64_read(&dev->gnd_rdmaq_bytes_out));
961 atomic_dec(&dev->gnd_n_mdd);
962 atomic64_sub(bytes, &dev->gnd_nbytes_map);
964 /* we only get here in the valid cases */
965 list_del_init(&tx->tx_map_list);
966 dev->gnd_map_version++;
967 spin_unlock(&dev->gnd_map_lock);
971 kgnilnd_map_buffer(kgn_tx_t *tx)
973 kgn_conn_t *conn = tx->tx_conn;
974 kgn_device_t *dev = conn->gnc_device;
975 __u32 flags = GNI_MEM_READWRITE;
978 /* The kgnilnd_mem_register(_segments) Gemini Driver functions can
979 * be called concurrently as there are internal locks that protect
980 * any data structures or HW resources. We just need to ensure
981 * that our concurrency doesn't result in the kgn_device_t
982 * getting nuked while we are in here */
984 LASSERTF(conn != NULL, "tx %p with NULL conn, someone forgot"
985 " to set tx_conn before calling %s\n", tx, __FUNCTION__);
987 if (unlikely(CFS_FAIL_CHECK(CFS_FAIL_GNI_MAP_TX)))
990 if (*kgnilnd_tunables.kgn_bte_relaxed_ordering) {
991 flags |= GNI_MEM_RELAXED_PI_ORDERING;
994 switch (tx->tx_buftype) {
998 case GNILND_BUF_NONE:
999 case GNILND_BUF_IMMEDIATE:
1000 case GNILND_BUF_IMMEDIATE_KIOV:
1001 case GNILND_BUF_PHYS_MAPPED:
1004 case GNILND_BUF_PHYS_UNMAPPED:
1005 GNITX_ASSERTF(tx, tx->tx_phys != NULL, "physical buffer not there!", NULL);
1006 rrc = kgnilnd_mem_register_segments(dev->gnd_handle,
1007 tx->tx_phys, tx->tx_phys_npages, NULL,
1008 GNI_MEM_PHYS_SEGMENTS | flags,
1010 /* could race with other uses of the map counts, but this is ok
1011 * - this needs to turn into a non-fatal error soon to allow
1012 * GART resource, etc starvation handling */
1013 if (rrc != GNI_RC_SUCCESS) {
1014 GNIDBG_TX(D_NET, tx,
1015 "Can't map %d pages: dev %d phys %u pp %u",
1016 tx->tx_phys_npages, dev->gnd_id,
1017 dev->gnd_map_nphys, dev->gnd_map_physnop);
1018 RETURN(rrc == GNI_RC_ERROR_RESOURCE ? -ENOMEM : -EINVAL);
1021 tx->tx_buftype = GNILND_BUF_PHYS_MAPPED;
1022 kgnilnd_mem_add_map_list(dev, tx);
1028 kgnilnd_add_purgatory_tx(kgn_tx_t *tx)
1030 kgn_conn_t *conn = tx->tx_conn;
1031 kgn_mdd_purgatory_t *gmp;
1033 LIBCFS_ALLOC(gmp, sizeof(*gmp));
1034 LASSERTF(gmp != NULL, "couldn't allocate MDD purgatory member;"
1035 " asserting to avoid data corruption\n");
1036 if (tx->tx_buffer_copy)
1037 gmp->gmp_map_key = tx->tx_buffer_copy_map_key;
1039 gmp->gmp_map_key = tx->tx_map_key;
1041 atomic_inc(&conn->gnc_device->gnd_n_mdd_held);
1043 /* ensure that we don't have a blank purgatory - indicating the
1044 * conn is not already on purgatory lists - we'd never recover these
1045 * MDD if that were the case */
1046 GNITX_ASSERTF(tx, conn->gnc_in_purgatory,
1047 "conn 0x%p->%s with NULL purgatory",
1048 conn, libcfs_nid2str(conn->gnc_peer->gnp_nid));
1050 /* link 'er up! - only place we really need to lock for
1051 * concurrent access */
1052 spin_lock(&conn->gnc_list_lock);
1053 list_add_tail(&gmp->gmp_list, &conn->gnc_mdd_list);
1054 spin_unlock(&conn->gnc_list_lock);
1058 kgnilnd_unmap_buffer(kgn_tx_t *tx, int error)
1062 int hold_timeout = 0;
1064 /* code below relies on +1 relationship ... */
1065 BUILD_BUG_ON(GNILND_BUF_PHYS_MAPPED !=
1066 (GNILND_BUF_PHYS_UNMAPPED + 1));
1068 switch (tx->tx_buftype) {
1072 case GNILND_BUF_NONE:
1073 case GNILND_BUF_IMMEDIATE:
1074 case GNILND_BUF_PHYS_UNMAPPED:
1076 case GNILND_BUF_IMMEDIATE_KIOV:
1077 if (tx->tx_phys != NULL) {
1078 vunmap(tx->tx_phys);
1079 } else if (tx->tx_phys == NULL && tx->tx_buffer != NULL) {
1080 kunmap(tx->tx_imm_pages[0]);
1082 /* clear to prevent kgnilnd_free_tx from thinking
1083 * this is a RDMA descriptor */
1087 case GNILND_BUF_PHYS_MAPPED:
1088 LASSERT(tx->tx_conn != NULL);
1090 dev = tx->tx_conn->gnc_device;
1092 /* only want to hold if we are closing conn without
1093 * verified peer notification - the theory is that
1094 * a TX error can be communicated in all other cases */
1095 if (tx->tx_conn->gnc_state != GNILND_CONN_ESTABLISHED &&
1096 error != -GNILND_NOPURG &&
1097 kgnilnd_check_purgatory_conn(tx->tx_conn)) {
1098 kgnilnd_add_purgatory_tx(tx);
1100 /* The timeout we give to kgni is a deadman stop only.
1101 * we are setting high to ensure we don't have the kgni timer
1102 * fire before ours fires _and_ is handled */
1103 hold_timeout = GNILND_TIMEOUT2DEADMAN;
1105 GNIDBG_TX(D_NET, tx,
1106 "dev %p delaying MDD release for %dms key %#llx.%#llx",
1107 tx->tx_conn->gnc_device, hold_timeout,
1108 tx->tx_map_key.qword1, tx->tx_map_key.qword2);
1110 if (tx->tx_buffer_copy != NULL) {
1111 rrc = kgnilnd_mem_deregister(dev->gnd_handle, &tx->tx_buffer_copy_map_key, hold_timeout);
1112 LASSERTF(rrc == GNI_RC_SUCCESS, "rrc %d\n", rrc);
1113 rrc = kgnilnd_mem_deregister(dev->gnd_handle, &tx->tx_map_key, 0);
1114 LASSERTF(rrc == GNI_RC_SUCCESS, "rrc %d\n", rrc);
1116 rrc = kgnilnd_mem_deregister(dev->gnd_handle, &tx->tx_map_key, hold_timeout);
1117 LASSERTF(rrc == GNI_RC_SUCCESS, "rrc %d\n", rrc);
1121 kgnilnd_mem_del_map_list(dev, tx);
1127 kgnilnd_tx_done(kgn_tx_t *tx, int completion)
1129 struct lnet_msg *lntmsg0, *lntmsg1;
1130 int status0, status1;
1131 struct lnet_ni *ni = NULL;
1132 kgn_conn_t *conn = tx->tx_conn;
1134 LASSERT(!in_interrupt());
1136 lntmsg0 = tx->tx_lntmsg[0]; tx->tx_lntmsg[0] = NULL;
1137 lntmsg1 = tx->tx_lntmsg[1]; tx->tx_lntmsg[1] = NULL;
1140 !(tx->tx_state & GNILND_TX_QUIET_ERROR) &&
1141 !kgnilnd_conn_clean_errno(completion)) {
1142 GNIDBG_TOMSG(D_NETERROR, &tx->tx_msg,
1143 "error %d on tx 0x%p->%s id %u/%d state %s age %ds",
1144 completion, tx, conn ?
1145 libcfs_nid2str(conn->gnc_peer->gnp_nid) : "<?>",
1146 tx->tx_id.txe_smsg_id, tx->tx_id.txe_idx,
1147 kgnilnd_tx_state2str(tx->tx_list_state),
1148 cfs_duration_sec((unsigned long)jiffies - tx->tx_qtime));
1151 /* The error codes determine if we hold onto the MDD */
1152 kgnilnd_unmap_buffer(tx, completion);
1154 /* we have to deliver a reply on lntmsg[1] for the GET, so make sure
1155 * we play nice with the error codes to avoid delivering a failed
1156 * REQUEST and then a REPLY event as well */
1158 /* return -EIO to lnet - it is the magic value for failed sends */
1159 if (tx->tx_msg.gnm_type == GNILND_MSG_GET_REQ) {
1161 status1 = completion;
1163 status0 = status1 = completion;
1166 tx->tx_buftype = GNILND_BUF_NONE;
1167 tx->tx_msg.gnm_type = GNILND_MSG_NONE;
1169 /* lnet_finalize doesn't do anything with the *ni, so ok for us to
1170 * set NULL when we are a tx without a conn */
1172 ni = conn->gnc_peer->gnp_net->gnn_ni;
1174 spin_lock(&conn->gnc_tx_lock);
1176 LASSERTF(test_and_clear_bit(tx->tx_id.txe_idx,
1177 (volatile unsigned long *)&conn->gnc_tx_bits),
1178 "conn %p tx %p bit %d already cleared\n",
1179 conn, tx, tx->tx_id.txe_idx);
1181 LASSERTF(conn->gnc_tx_ref_table[tx->tx_id.txe_idx] != NULL,
1182 "msg_id %d already NULL\n", tx->tx_id.txe_idx);
1184 conn->gnc_tx_ref_table[tx->tx_id.txe_idx] = NULL;
1185 spin_unlock(&conn->gnc_tx_lock);
1188 kgnilnd_free_tx(tx);
1190 /* finalize AFTER freeing lnet msgs */
1192 /* warning - we should hold no locks here - calling lnet_finalize
1193 * could free up lnet credits, resulting in a call chain back into
1194 * the LND via kgnilnd_send and friends */
1196 lnet_finalize(lntmsg0, status0);
1198 if (lntmsg1 != NULL) {
1199 lnet_finalize(lntmsg1, status1);
1204 kgnilnd_txlist_done(struct list_head *txlist, int error)
1207 int err_printed = 0;
1209 if (list_empty(txlist))
1212 list_for_each_entry_safe(tx, txn, txlist, tx_list) {
1213 /* only print the first error */
1215 tx->tx_state |= GNILND_TX_QUIET_ERROR;
1216 list_del_init(&tx->tx_list);
1217 kgnilnd_tx_done(tx, error);
1222 kgnilnd_set_tx_id(kgn_tx_t *tx, kgn_conn_t *conn)
1226 spin_lock(&conn->gnc_tx_lock);
1228 /* ID zero is NOT ALLOWED!!! */
1231 id = find_next_zero_bit((unsigned long *)&conn->gnc_tx_bits,
1232 GNILND_MAX_MSG_ID, conn->gnc_next_tx);
1233 if (id == GNILND_MAX_MSG_ID) {
1234 if (conn->gnc_next_tx != 1) {
1235 /* we only searched from next_tx to end and didn't find
1236 * one, so search again from start */
1237 conn->gnc_next_tx = 1;
1240 /* couldn't find one! */
1241 spin_unlock(&conn->gnc_tx_lock);
1245 /* bump next_tx to prevent immediate reuse */
1246 conn->gnc_next_tx = id + 1;
1248 set_bit(id, (volatile unsigned long *)&conn->gnc_tx_bits);
1249 LASSERTF(conn->gnc_tx_ref_table[id] == NULL,
1250 "tx 0x%p already at id %d\n",
1251 conn->gnc_tx_ref_table[id], id);
1253 /* delay these until we have a valid ID - prevents bad clear of the bit
1254 * in kgnilnd_tx_done */
1256 tx->tx_id.txe_cqid = conn->gnc_cqid;
1258 tx->tx_id.txe_idx = id;
1259 conn->gnc_tx_ref_table[id] = tx;
1261 /* Using jiffies to help differentiate against TX reuse - with
1262 * the usual minimum of a 250HZ clock, we wrap jiffies on the same TX
1263 * if we are sending to the same node faster than 256000/sec.
1264 * To help guard against this, we OR in the tx_seq - that is 32 bits */
1266 tx->tx_id.txe_chips = (__u32)(jiffies | atomic_read(&conn->gnc_tx_seq));
1268 GNIDBG_TX(D_NET, tx, "set cookie/id/bits", NULL);
1270 spin_unlock(&conn->gnc_tx_lock);
1275 kgnilnd_tx_log_retrans(kgn_conn_t *conn, kgn_tx_t *tx)
1279 log_retrans = ((tx->tx_retrans < 25) || ((tx->tx_retrans % 25) == 0));
1281 /* we don't care about TX timeout - it could be that the network is slower
1282 * or throttled. We'll keep retranmitting - so if the network is so slow
1283 * that we fill up our mailbox, we'll keep trying to resend that msg
1284 * until we exceed the max_retrans _or_ gnc_last_rx expires, indicating
1285 * that he hasn't send us any traffic in return */
1287 /* some reasonable throttling of the debug message */
1289 unsigned long now = jiffies;
1290 /* XXX Nic: Mystical TX debug here... */
1291 /* We expect retransmissions so only log when D_NET is enabled */
1292 GNIDBG_SMSG_CREDS(D_NET, conn);
1293 GNIDBG_TOMSG(D_NET, &tx->tx_msg,
1294 "NOT_DONE on conn 0x%p->%s id %x retrans %d wait %dus"
1295 " last_msg %uus/%uus last_cq %uus/%uus",
1296 conn, libcfs_nid2str(conn->gnc_peer->gnp_nid),
1297 tx->tx_id, tx->tx_retrans,
1298 jiffies_to_usecs(now - tx->tx_cred_wait),
1299 jiffies_to_usecs(now - conn->gnc_last_tx),
1300 jiffies_to_usecs(now - conn->gnc_last_rx),
1301 jiffies_to_usecs(now - conn->gnc_last_tx_cq),
1302 jiffies_to_usecs(now - conn->gnc_last_rx_cq));
1306 /* caller must be holding gnd_cq_mutex and not unlock it afterwards, as we need to drop it
1307 * to avoid bad ordering with state_lock */
1310 kgnilnd_sendmsg_nolock(kgn_tx_t *tx, void *immediate, unsigned int immediatenob,
1311 spinlock_t *state_lock, kgn_tx_list_state_t state)
1313 kgn_conn_t *conn = tx->tx_conn;
1314 kgn_msg_t *msg = &tx->tx_msg;
1316 unsigned long newest_last_rx, timeout;
1319 LASSERTF((msg->gnm_type == GNILND_MSG_IMMEDIATE) ?
1320 immediatenob <= *kgnilnd_tunables.kgn_max_immediate :
1322 "msg 0x%p type %d wrong payload size %d\n",
1323 msg, msg->gnm_type, immediatenob);
1325 /* make sure we catch all the cases where we'd send on a dirty old mbox
1326 * but allow case for sending CLOSE. Since this check is within the CQ
1327 * mutex barrier and the close message is only sent through
1328 * kgnilnd_send_conn_close the last message out the door will be the
1331 if (atomic_read(&conn->gnc_peer->gnp_dirty_eps) != 0 && msg->gnm_type != GNILND_MSG_CLOSE) {
1332 kgnilnd_conn_mutex_unlock(&conn->gnc_smsg_mutex);
1333 kgnilnd_gl_mutex_unlock(&conn->gnc_device->gnd_cq_mutex);
1334 /* Return -ETIME, we are closing the connection already so we dont want to
1335 * have this tx hit the wire. The tx will be killed by the calling function.
1336 * Once the EP is marked dirty the close message will be the last
1337 * thing to hit the wire */
1342 timeout = cfs_time_seconds(conn->gnc_timeout);
1344 newest_last_rx = GNILND_LASTRX(conn);
1346 if (CFS_FAIL_CHECK(CFS_FAIL_GNI_SEND_TIMEOUT)) {
1347 now = now + (GNILND_TIMEOUTRX(timeout) * 2);
1350 if (time_after_eq(now, newest_last_rx + GNILND_TIMEOUTRX(timeout))) {
1351 GNIDBG_CONN(D_NETERROR|D_CONSOLE, conn,
1352 "Cant send to %s after timeout lapse of %lu; TO %lu\n",
1353 libcfs_nid2str(conn->gnc_peer->gnp_nid),
1354 cfs_duration_sec(now - newest_last_rx),
1355 cfs_duration_sec(GNILND_TIMEOUTRX(timeout)));
1356 kgnilnd_conn_mutex_unlock(&conn->gnc_smsg_mutex);
1357 kgnilnd_gl_mutex_unlock(&conn->gnc_device->gnd_cq_mutex);
1361 GNITX_ASSERTF(tx, (conn != NULL) && (tx->tx_id.txe_idx != 0), "tx id unset!", NULL);
1362 /* msg->gnm_srcnid is set when the message is initialized by whatever function is
1363 * creating the message this allows the message to contain the correct LNET NID/NET needed
1364 * instead of the one that the peer/conn uses for sending the data.
1366 msg->gnm_connstamp = conn->gnc_my_connstamp;
1367 msg->gnm_payload_len = immediatenob;
1368 msg->gnm_seq = atomic_read(&conn->gnc_tx_seq);
1370 /* always init here - kgn_checksum is a /sys module tunable
1371 * and can be flipped at any point, even between msg init and sending */
1373 if (*kgnilnd_tunables.kgn_checksum) {
1374 /* We must set here and not in kgnilnd_init_msg,
1375 * we could resend this msg many times
1376 * (NOT_DONE from gni_smsg_send below) and wouldn't pass
1377 * through init_msg again */
1378 msg->gnm_cksum = kgnilnd_cksum(msg, sizeof(kgn_msg_t));
1379 if (CFS_FAIL_CHECK(CFS_FAIL_GNI_SMSG_CKSUM1)) {
1380 msg->gnm_cksum += 0xf00f;
1384 GNIDBG_TOMSG(D_NET, msg, "tx 0x%p conn 0x%p->%s sending SMSG sz %u id %x/%d [%p for %u]",
1385 tx, conn, libcfs_nid2str(conn->gnc_peer->gnp_nid),
1386 sizeof(kgn_msg_t), tx->tx_id.txe_smsg_id,
1387 tx->tx_id.txe_idx, immediate, immediatenob);
1389 if (unlikely(tx->tx_state & GNILND_TX_FAIL_SMSG)) {
1390 rrc = cfs_fail_val ? cfs_fail_val : GNI_RC_NOT_DONE;
1392 rrc = kgnilnd_smsg_send(conn->gnc_ephandle,
1393 msg, sizeof(*msg), immediate,
1395 tx->tx_id.txe_smsg_id);
1399 case GNI_RC_SUCCESS:
1400 atomic_inc(&conn->gnc_tx_seq);
1401 conn->gnc_last_tx = jiffies;
1402 /* no locking here as LIVE isn't a list */
1403 kgnilnd_tx_add_state_locked(tx, NULL, conn, GNILND_TX_LIVE_FMAQ, 1);
1405 /* this needs to be checked under lock as it might be freed from a completion
1408 if (msg->gnm_type == GNILND_MSG_NOOP) {
1409 set_mb(conn->gnc_last_noop_sent, jiffies);
1412 /* serialize with seeing CQ events for completion on this, as well as
1414 kgnilnd_conn_mutex_unlock(&conn->gnc_smsg_mutex);
1415 kgnilnd_gl_mutex_unlock(&conn->gnc_device->gnd_cq_mutex);
1417 atomic_inc(&conn->gnc_device->gnd_short_ntx);
1418 atomic64_add(immediatenob, &conn->gnc_device->gnd_short_txbytes);
1419 kgnilnd_peer_alive(conn->gnc_peer);
1420 GNIDBG_SMSG_CREDS(D_NET, conn);
1423 case GNI_RC_NOT_DONE:
1424 /* Jshimek: We can get GNI_RC_NOT_DONE for 3 reasons currently
1425 * 1: out of mbox credits
1426 * 2: out of mbox payload credits
1427 * 3: On Aries out of dla credits
1429 kgnilnd_conn_mutex_unlock(&conn->gnc_smsg_mutex);
1430 kgnilnd_gl_mutex_unlock(&conn->gnc_device->gnd_cq_mutex);
1431 /* We'll handle this error inline - makes the calling logic much more
1434 /* If no lock, caller doesn't want us to retry */
1435 if (state_lock == NULL) {
1439 /* I need kgni credits to send this. Replace tx at the head of the
1440 * fmaq and I'll get rescheduled when credits appear. Reset the tx_state
1441 * and bump retrans counts since we are requeueing the tx.
1445 conn->gnc_tx_retrans++;
1447 kgnilnd_tx_log_retrans(conn, tx);
1448 /* add to head of list for the state and retries */
1449 spin_lock(state_lock);
1450 kgnilnd_tx_add_state_locked(tx, conn->gnc_peer, conn, state, 0);
1451 spin_unlock(state_lock);
1453 /* We only reschedule for a certain number of retries, then
1454 * we will wait for the CQ events indicating a release of SMSG
1456 if (tx->tx_retrans < *kgnilnd_tunables.kgn_max_retransmits) {
1457 kgnilnd_schedule_conn(conn);
1460 /* CQ event coming in signifies either TX completed or
1461 * RX receive. Either of these *could* free up credits
1462 * in the SMSG mbox and we should try sending again */
1463 GNIDBG_TX(D_NET, tx, "waiting for CQID %u event to resend",
1464 tx->tx_conn->gnc_cqid);
1465 kgnilnd_schedule_delay_conn(conn);
1466 /* use +ve return code to let upper layers know they
1467 * should stop looping on sends */
1471 /* handle bad retcode gracefully */
1472 kgnilnd_conn_mutex_unlock(&conn->gnc_smsg_mutex);
1473 kgnilnd_gl_mutex_unlock(&conn->gnc_device->gnd_cq_mutex);
1478 /* kgnilnd_sendmsg has hard wait on gnd_cq_mutex */
1480 kgnilnd_sendmsg(kgn_tx_t *tx, void *immediate, unsigned int immediatenob,
1481 spinlock_t *state_lock, kgn_tx_list_state_t state)
1483 kgn_device_t *dev = tx->tx_conn->gnc_device;
1484 unsigned long timestamp;
1487 timestamp = jiffies;
1488 kgnilnd_gl_mutex_lock(&dev->gnd_cq_mutex);
1489 kgnilnd_conn_mutex_lock(&tx->tx_conn->gnc_smsg_mutex);
1490 /* delay in jiffies - we are really concerned only with things that
1491 * result in a schedule() or really holding this off for long times .
1492 * NB - mutex_lock could spin for 2 jiffies before going to sleep to wait */
1493 dev->gnd_mutex_delay += (long) jiffies - timestamp;
1495 rc = kgnilnd_sendmsg_nolock(tx, immediate, immediatenob, state_lock, state);
1501 /* returns -EAGAIN for lock miss, anything else < 0 is hard error, >=0 for success */
1503 kgnilnd_sendmsg_trylock(kgn_tx_t *tx, void *immediate, unsigned int immediatenob,
1504 spinlock_t *state_lock, kgn_tx_list_state_t state)
1506 kgn_conn_t *conn = tx->tx_conn;
1507 kgn_device_t *dev = conn->gnc_device;
1508 unsigned long timestamp;
1511 timestamp = jiffies;
1513 /* technically we are doing bad things with the read_lock on the peer_conn
1514 * table, but we shouldn't be sleeping inside here - and we don't sleep/block
1515 * for the mutex. I bet lockdep is gonna flag this one though... */
1517 /* there are a few cases where we don't want the immediate send - like
1518 * when we are in the scheduler thread and it'd harm the latency of
1519 * getting messages up to LNet */
1521 /* rmb for gnd_ready */
1523 if (conn->gnc_device->gnd_ready == GNILND_DEV_LOOP) {
1525 atomic_inc(&conn->gnc_device->gnd_fast_block);
1526 } else if (unlikely(kgnilnd_data.kgn_quiesce_trigger)) {
1527 /* dont hit HW during quiesce */
1529 } else if (unlikely(atomic_read(&conn->gnc_peer->gnp_dirty_eps))) {
1530 /* dont hit HW if stale EPs and conns left to close */
1533 atomic_inc(&conn->gnc_device->gnd_fast_try);
1534 rc = kgnilnd_trylock(&conn->gnc_device->gnd_cq_mutex,
1535 &conn->gnc_smsg_mutex);
1540 /* we got the mutex and weren't blocked */
1542 /* delay in jiffies - we are really concerned only with things that
1543 * result in a schedule() or really holding this off for long times .
1544 * NB - mutex_lock could spin for 2 jiffies before going to sleep to wait */
1545 dev->gnd_mutex_delay += (long) jiffies - timestamp;
1547 atomic_inc(&conn->gnc_device->gnd_fast_ok);
1548 tx->tx_qtime = jiffies;
1549 tx->tx_state = GNILND_TX_WAITING_COMPLETION;
1550 rc = kgnilnd_sendmsg_nolock(tx, tx->tx_buffer, tx->tx_nob, &conn->gnc_list_lock, GNILND_TX_FMAQ);
1551 /* _nolock unlocks the mutex for us */
1557 /* lets us know if we can push this RDMA through now */
1559 kgnilnd_auth_rdma_bytes(kgn_device_t *dev, kgn_tx_t *tx)
1563 bytes_left = atomic64_sub_return(tx->tx_nob, &dev->gnd_rdmaq_bytes_ok);
1565 if (bytes_left < 0) {
1566 atomic64_add(tx->tx_nob, &dev->gnd_rdmaq_bytes_ok);
1567 atomic_inc(&dev->gnd_rdmaq_nstalls);
1570 CDEBUG(D_NET, "no bytes to send, turning on timer for %lu\n",
1571 dev->gnd_rdmaq_deadline);
1572 mod_timer(&dev->gnd_rdmaq_timer, dev->gnd_rdmaq_deadline);
1573 /* we never del this timer - at worst it schedules us.. */
1580 /* this adds a TX to the queue pending throttling authorization before
1581 * we allow our remote peer to launch a PUT at us */
1583 kgnilnd_queue_rdma(kgn_conn_t *conn, kgn_tx_t *tx)
1587 /* we cannot go into send_mapped_tx from here as we are holding locks
1588 * and mem registration might end up allocating memory in kgni.
1589 * That said, we'll push this as far as we can into the queue process */
1590 rc = kgnilnd_auth_rdma_bytes(conn->gnc_device, tx);
1593 spin_lock(&conn->gnc_device->gnd_rdmaq_lock);
1594 kgnilnd_tx_add_state_locked(tx, NULL, conn, GNILND_TX_RDMAQ, 0);
1595 /* lets us know how delayed RDMA is */
1596 tx->tx_qtime = jiffies;
1597 spin_unlock(&conn->gnc_device->gnd_rdmaq_lock);
1599 /* we have RDMA authorized, now it just needs a MDD and to hit the wire */
1600 spin_lock(&tx->tx_conn->gnc_device->gnd_lock);
1601 kgnilnd_tx_add_state_locked(tx, NULL, tx->tx_conn, GNILND_TX_MAPQ, 0);
1602 /* lets us know how delayed mapping is */
1603 tx->tx_qtime = jiffies;
1604 spin_unlock(&tx->tx_conn->gnc_device->gnd_lock);
1607 /* make sure we wake up sched to run this */
1608 kgnilnd_schedule_device(tx->tx_conn->gnc_device);
1611 /* push TX through state machine */
1613 kgnilnd_queue_tx(kgn_conn_t *conn, kgn_tx_t *tx)
1618 /* set the tx_id here, we delay it until we have an actual conn
1620 * in some cases, the tx_id is already set to provide for things
1621 * like RDMA completion cookies, etc */
1622 if (tx->tx_id.txe_idx == 0) {
1623 rc = kgnilnd_set_tx_id(tx, conn);
1625 kgnilnd_tx_done(tx, rc);
1630 CDEBUG(D_NET, "%s to conn %p for %s\n", kgnilnd_msgtype2str(tx->tx_msg.gnm_type),
1631 conn, libcfs_nid2str(conn->gnc_peer->gnp_nid));
1633 /* Only let NOOPs to be sent while fail loc is set, otherwise kill the tx.
1635 if (CFS_FAIL_CHECK(CFS_FAIL_GNI_ONLY_NOOP) && (tx->tx_msg.gnm_type != GNILND_MSG_NOOP)) {
1636 kgnilnd_tx_done(tx, rc);
1640 switch (tx->tx_msg.gnm_type) {
1641 case GNILND_MSG_PUT_ACK:
1642 case GNILND_MSG_GET_REQ:
1643 case GNILND_MSG_PUT_REQ_REV:
1644 case GNILND_MSG_GET_ACK_REV:
1645 /* hijacking time! If this messages will authorize our peer to
1646 * send his dirty little bytes in an RDMA, we need to get permission */
1647 kgnilnd_queue_rdma(conn, tx);
1649 case GNILND_MSG_IMMEDIATE:
1650 /* try to send right now, can help reduce latency */
1651 rc = kgnilnd_sendmsg_trylock(tx, tx->tx_buffer, tx->tx_nob, &conn->gnc_list_lock, GNILND_TX_FMAQ);
1654 /* it was sent, break out of switch to avoid default case of queueing */
1657 /* needs to queue to try again, so fall through to default case */
1658 case GNILND_MSG_NOOP:
1659 /* Just make sure this goes out first for this conn */
1661 /* fall through... */
1663 spin_lock(&conn->gnc_list_lock);
1664 kgnilnd_tx_add_state_locked(tx, conn->gnc_peer, conn, GNILND_TX_FMAQ, add_tail);
1665 tx->tx_qtime = jiffies;
1666 spin_unlock(&conn->gnc_list_lock);
1667 kgnilnd_schedule_conn(conn);
1672 kgnilnd_launch_tx(kgn_tx_t *tx, kgn_net_t *net, struct lnet_process_id *target)
1675 kgn_peer_t *new_peer = NULL;
1676 kgn_conn_t *conn = NULL;
1682 /* If I get here, I've committed to send, so I complete the tx with
1683 * failure on any problems */
1685 GNITX_ASSERTF(tx, tx->tx_conn == NULL,
1686 "tx already has connection %p", tx->tx_conn);
1688 /* do all of the peer & conn searching in one swoop - this avoids
1689 * nastiness when dropping locks and needing to maintain a sane state
1690 * in the face of stack reset or something else nuking peers & conns */
1692 /* I expect to find him, so only take a read lock */
1693 read_lock(&kgnilnd_data.kgn_peer_conn_lock);
1695 peer = kgnilnd_find_peer_locked(target->nid);
1697 conn = kgnilnd_find_conn_locked(peer);
1698 /* this could be NULL during quiesce */
1700 /* Connection exists; queue message on it */
1701 kgnilnd_queue_tx(conn, tx);
1702 read_unlock(&kgnilnd_data.kgn_peer_conn_lock);
1706 /* don't create a connection if the peer is marked down */
1707 if (peer->gnp_state != GNILND_PEER_UP) {
1708 read_unlock(&kgnilnd_data.kgn_peer_conn_lock);
1714 /* creating peer or conn; I'll need a write lock... */
1715 read_unlock(&kgnilnd_data.kgn_peer_conn_lock);
1717 CFS_RACE(CFS_FAIL_GNI_FIND_TARGET);
1719 node_state = kgnilnd_get_node_state(LNET_NIDADDR(target->nid));
1721 /* NB - this will not block during normal operations -
1722 * the only writer of this is in the startup/shutdown path. */
1723 rc = down_read_trylock(&kgnilnd_data.kgn_net_rw_sem);
1729 /* ignore previous peer entirely - we cycled the lock, so we
1730 * will create new peer and at worst drop it if peer is still
1732 rc = kgnilnd_create_peer_safe(&new_peer, target->nid, net, node_state);
1734 up_read(&kgnilnd_data.kgn_net_rw_sem);
1738 write_lock(&kgnilnd_data.kgn_peer_conn_lock);
1739 up_read(&kgnilnd_data.kgn_net_rw_sem);
1741 /* search for peer again now that we have the lock
1742 * if we don't find it, add our new one to the list */
1743 kgnilnd_add_peer_locked(target->nid, new_peer, &peer);
1745 /* don't create a connection if the peer is not up */
1746 if (peer->gnp_state != GNILND_PEER_UP) {
1747 write_unlock(&kgnilnd_data.kgn_peer_conn_lock);
1752 conn = kgnilnd_find_or_create_conn_locked(peer);
1754 if (CFS_FAIL_CHECK(CFS_FAIL_GNI_DGRAM_DROP_TX)) {
1755 write_unlock(&kgnilnd_data.kgn_peer_conn_lock);
1760 /* oh hey, found a conn now... magical */
1761 kgnilnd_queue_tx(conn, tx);
1763 /* no conn, must be trying to connect - so we queue for now */
1764 tx->tx_qtime = jiffies;
1765 kgnilnd_tx_add_state_locked(tx, peer, NULL, GNILND_TX_PEERQ, 1);
1767 write_unlock(&kgnilnd_data.kgn_peer_conn_lock);
1770 kgnilnd_tx_done(tx, rc);
1775 kgnilnd_rdma(kgn_tx_t *tx, int type,
1776 kgn_rdma_desc_t *sink, unsigned int nob, __u64 cookie)
1778 kgn_conn_t *conn = tx->tx_conn;
1779 unsigned long timestamp;
1780 gni_post_type_t post_type;
1783 unsigned int desc_nob = nob;
1784 void *desc_buffer = tx->tx_buffer;
1785 gni_mem_handle_t desc_map_key = tx->tx_map_key;
1786 LASSERTF(kgnilnd_tx_mapped(tx),
1787 "unmapped tx %p\n", tx);
1788 LASSERTF(conn != NULL,
1789 "NULL conn on tx %p, naughty, naughty\n", tx);
1790 LASSERTF(nob <= sink->gnrd_nob,
1791 "nob %u > sink->gnrd_nob %d (%p)\n",
1792 nob, sink->gnrd_nob, sink);
1793 LASSERTF(nob <= tx->tx_nob,
1794 "nob %d > tx(%p)->tx_nob %d\n",
1795 nob, tx, tx->tx_nob);
1798 case GNILND_MSG_GET_DONE:
1799 case GNILND_MSG_PUT_DONE:
1800 post_type = GNI_POST_RDMA_PUT;
1802 case GNILND_MSG_GET_DONE_REV:
1803 case GNILND_MSG_PUT_DONE_REV:
1804 post_type = GNI_POST_RDMA_GET;
1807 CERROR("invalid msg type %s (%d)\n",
1808 kgnilnd_msgtype2str(type), type);
1811 if (post_type == GNI_POST_RDMA_GET) {
1812 /* Check for remote buffer / local buffer / length alignment. All must be 4 byte
1813 * aligned. If the local buffer is not aligned correctly using the copy buffer
1814 * will fix that issue. If length is misaligned copy buffer will also fix the issue, we end
1815 * up transferring extra bytes into the buffer but only copy the correct nob into the original
1816 * buffer. Remote offset correction is done through a combination of adjusting the offset,
1817 * making sure the length and addr are aligned and copying the data into the correct location
1818 * once the transfer has completed.
1820 if ((((__u64)((unsigned long)tx->tx_buffer)) & 3) ||
1821 (sink->gnrd_addr & 3) ||
1824 tx->tx_offset = ((__u64)((unsigned long)sink->gnrd_addr)) & 3;
1826 atomic_inc(&kgnilnd_data.kgn_rev_offset);
1828 if ((nob + tx->tx_offset) & 3) {
1829 desc_nob = ((nob + tx->tx_offset) + (4 - ((nob + tx->tx_offset) & 3)));
1830 atomic_inc(&kgnilnd_data.kgn_rev_length);
1832 desc_nob = (nob + tx->tx_offset);
1835 if (tx->tx_buffer_copy == NULL) {
1836 /* Allocate the largest copy buffer we will need, this will prevent us from overwriting data
1837 * and require at most we allocate a few extra bytes. */
1838 tx->tx_buffer_copy = kgnilnd_vzalloc(desc_nob);
1840 if (!tx->tx_buffer_copy) {
1841 /* allocation of buffer failed nak the rdma */
1842 kgnilnd_nak_rdma(tx->tx_conn, tx->tx_msg.gnm_type, -EFAULT, cookie, tx->tx_msg.gnm_srcnid);
1843 kgnilnd_tx_done(tx, -EFAULT);
1846 atomic_inc(&kgnilnd_data.kgn_rev_copy_buff);
1847 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);
1848 if (rc != GNI_RC_SUCCESS) {
1849 /* Registration Failed nak rdma and kill the tx. */
1850 kgnilnd_vfree(tx->tx_buffer_copy,
1852 tx->tx_buffer_copy = NULL;
1853 kgnilnd_nak_rdma(tx->tx_conn, tx->tx_msg.gnm_type, -EFAULT, cookie, tx->tx_msg.gnm_srcnid);
1854 kgnilnd_tx_done(tx, -EFAULT);
1858 desc_map_key = tx->tx_buffer_copy_map_key;
1859 desc_buffer = tx->tx_buffer_copy;
1863 memset(&tx->tx_rdma_desc, 0, sizeof(tx->tx_rdma_desc));
1864 tx->tx_rdma_desc.post_id = tx->tx_id.txe_cookie;
1865 tx->tx_rdma_desc.type = post_type;
1866 tx->tx_rdma_desc.cq_mode = GNI_CQMODE_GLOBAL_EVENT;
1867 tx->tx_rdma_desc.local_addr = (__u64)((unsigned long)desc_buffer);
1868 tx->tx_rdma_desc.local_mem_hndl = desc_map_key;
1869 tx->tx_rdma_desc.remote_addr = sink->gnrd_addr - tx->tx_offset;
1870 tx->tx_rdma_desc.remote_mem_hndl = sink->gnrd_key;
1871 tx->tx_rdma_desc.length = desc_nob;
1872 tx->tx_nob_rdma = nob;
1873 if (post_type == GNI_POST_RDMA_PUT && *kgnilnd_tunables.kgn_bte_put_dlvr_mode)
1874 tx->tx_rdma_desc.dlvr_mode = *kgnilnd_tunables.kgn_bte_put_dlvr_mode;
1875 if (post_type == GNI_POST_RDMA_GET && *kgnilnd_tunables.kgn_bte_get_dlvr_mode)
1876 tx->tx_rdma_desc.dlvr_mode = *kgnilnd_tunables.kgn_bte_get_dlvr_mode;
1877 /* prep final completion message */
1878 kgnilnd_init_msg(&tx->tx_msg, type, tx->tx_msg.gnm_srcnid);
1879 tx->tx_msg.gnm_u.completion.gncm_cookie = cookie;
1880 /* send actual size RDMA'd in retval */
1881 tx->tx_msg.gnm_u.completion.gncm_retval = nob;
1883 kgnilnd_compute_rdma_cksum(tx, nob);
1886 kgnilnd_queue_tx(conn, tx);
1890 /* Don't lie (CLOSE == RDMA idle) */
1891 LASSERTF(!conn->gnc_close_sent, "tx %p on conn %p after close sent %d\n",
1892 tx, conn, conn->gnc_close_sent);
1894 GNIDBG_TX(D_NET, tx, "Post RDMA type 0x%02x conn %p dlvr_mode "
1895 "0x%x cookie:%#llx",
1896 type, conn, tx->tx_rdma_desc.dlvr_mode, cookie);
1898 /* set CQ dedicated for RDMA */
1899 tx->tx_rdma_desc.src_cq_hndl = conn->gnc_device->gnd_snd_rdma_cqh;
1901 timestamp = jiffies;
1902 kgnilnd_conn_mutex_lock(&conn->gnc_rdma_mutex);
1903 kgnilnd_gl_mutex_lock(&conn->gnc_device->gnd_cq_mutex);
1904 /* delay in jiffies - we are really concerned only with things that
1905 * result in a schedule() or really holding this off for long times .
1906 * NB - mutex_lock could spin for 2 jiffies before going to sleep to wait */
1907 conn->gnc_device->gnd_mutex_delay += (long) jiffies - timestamp;
1909 rrc = kgnilnd_post_rdma(conn->gnc_ephandle, &tx->tx_rdma_desc);
1911 if (rrc == GNI_RC_ERROR_RESOURCE) {
1912 kgnilnd_conn_mutex_unlock(&conn->gnc_rdma_mutex);
1913 kgnilnd_gl_mutex_unlock(&conn->gnc_device->gnd_cq_mutex);
1914 kgnilnd_unmap_buffer(tx, 0);
1916 if (tx->tx_buffer_copy != NULL) {
1917 kgnilnd_vfree(tx->tx_buffer_copy, desc_nob);
1918 tx->tx_buffer_copy = NULL;
1921 spin_lock(&tx->tx_conn->gnc_device->gnd_lock);
1922 kgnilnd_tx_add_state_locked(tx, NULL, tx->tx_conn,
1924 spin_unlock(&tx->tx_conn->gnc_device->gnd_lock);
1925 kgnilnd_schedule_device(tx->tx_conn->gnc_device);
1929 spin_lock(&conn->gnc_list_lock);
1930 kgnilnd_tx_add_state_locked(tx, conn->gnc_peer, conn, GNILND_TX_LIVE_RDMAQ, 1);
1931 tx->tx_qtime = jiffies;
1932 spin_unlock(&conn->gnc_list_lock);
1933 kgnilnd_gl_mutex_unlock(&conn->gnc_device->gnd_cq_mutex);
1934 kgnilnd_conn_mutex_unlock(&conn->gnc_rdma_mutex);
1936 /* XXX Nic: is this a place we should handle more errors for
1937 * robustness sake */
1938 LASSERT(rrc == GNI_RC_SUCCESS);
1943 kgnilnd_alloc_rx(void)
1947 rx = kmem_cache_alloc(kgnilnd_data.kgn_rx_cache, GFP_ATOMIC);
1949 CERROR("failed to allocate rx\n");
1952 CDEBUG(D_MALLOC, "slab-alloced 'rx': %lu at %p.\n",
1955 /* no memset to zero, we'll always fill all members */
1959 /* release is to just free connection resources
1960 * we use this for the eager path after copying */
1962 kgnilnd_release_msg(kgn_conn_t *conn)
1965 unsigned long timestamp;
1967 CDEBUG(D_NET, "consuming %p\n", conn);
1969 timestamp = jiffies;
1970 kgnilnd_gl_mutex_lock(&conn->gnc_device->gnd_cq_mutex);
1971 /* delay in jiffies - we are really concerned only with things that
1972 * result in a schedule() or really holding this off for long times .
1973 * NB - mutex_lock could spin for 2 jiffies before going to sleep to wait */
1974 conn->gnc_device->gnd_mutex_delay += (long) jiffies - timestamp;
1976 rrc = kgnilnd_smsg_release(conn->gnc_ephandle);
1977 kgnilnd_gl_mutex_unlock(&conn->gnc_device->gnd_cq_mutex);
1979 LASSERTF(rrc == GNI_RC_SUCCESS, "bad rrc %d\n", rrc);
1980 GNIDBG_SMSG_CREDS(D_NET, conn);
1982 kgnilnd_schedule_conn(conn);
1986 kgnilnd_consume_rx(kgn_rx_t *rx)
1988 kgn_conn_t *conn = rx->grx_conn;
1989 kgn_msg_t *rxmsg = rx->grx_msg;
1991 /* if we are eager, free the cache alloc'd msg */
1992 if (unlikely(rx->grx_eager)) {
1993 LIBCFS_FREE(rxmsg, sizeof(*rxmsg) + *kgnilnd_tunables.kgn_max_immediate);
1994 atomic_dec(&kgnilnd_data.kgn_neager_allocs);
1996 /* release ref from eager_recv */
1997 kgnilnd_conn_decref(conn);
1999 GNIDBG_MSG(D_NET, rxmsg, "rx %p processed", rx);
2000 kgnilnd_release_msg(conn);
2003 kmem_cache_free(kgnilnd_data.kgn_rx_cache, rx);
2004 CDEBUG(D_MALLOC, "slab-freed 'rx': %lu at %p.\n",
2009 kgnilnd_send(struct lnet_ni *ni, void *private, struct lnet_msg *lntmsg)
2011 struct lnet_hdr *hdr = &lntmsg->msg_hdr;
2012 int type = lntmsg->msg_type;
2013 struct lnet_process_id target = lntmsg->msg_target;
2014 int target_is_router = lntmsg->msg_target_is_router;
2015 int routing = lntmsg->msg_routing;
2016 unsigned int niov = lntmsg->msg_niov;
2017 struct bio_vec *kiov = lntmsg->msg_kiov;
2018 unsigned int offset = lntmsg->msg_offset;
2019 unsigned int nob = lntmsg->msg_len;
2020 unsigned int msg_vmflush = lntmsg->msg_vmflush;
2021 kgn_net_t *net = ni->ni_data;
2024 /* '1' for consistency with code that checks !mpflag to restore */
2025 unsigned int mpflag = 1;
2026 int reverse_rdma_flag = *kgnilnd_tunables.kgn_reverse_rdma;
2028 /* NB 'private' is different depending on what we're sending.... */
2029 LASSERT(!in_interrupt());
2031 CDEBUG(D_NET, "sending msg type %d with %d bytes in %d frags to %s\n",
2032 type, nob, niov, libcfs_id2str(target));
2034 LASSERTF(nob == 0 || niov > 0,
2035 "lntmsg %p nob %d niov %d\n", lntmsg, nob, niov);
2036 LASSERTF(niov <= LNET_MAX_IOV,
2037 "lntmsg %p niov %d\n", lntmsg, niov);
2040 mpflag = memalloc_noreclaim_save();
2044 CERROR("lntmsg %p with unexpected type %d\n",
2049 LASSERTF(nob == 0, "lntmsg %p nob %d\n",
2057 if (routing || target_is_router)
2058 break; /* send IMMEDIATE */
2060 /* it is safe to do direct GET with out mapping buffer for RDMA as we
2061 * check the eventual sink buffer here - if small enough, remote
2062 * end is perfectly capable of returning data in short message -
2063 * The magic is that we call lnet_parse in kgnilnd_recv with rdma_req=0
2064 * for IMMEDIATE messages which will have it send a real reply instead
2065 * of doing kgnilnd_recv to have the RDMA continued */
2066 if (lntmsg->msg_md->md_length <= *kgnilnd_tunables.kgn_max_immediate)
2069 if ((reverse_rdma_flag & GNILND_REVERSE_GET) == 0)
2070 tx = kgnilnd_new_tx_msg(GNILND_MSG_GET_REQ, ni->ni_nid);
2072 tx = kgnilnd_new_tx_msg(GNILND_MSG_GET_REQ_REV, ni->ni_nid);
2078 rc = kgnilnd_setup_rdma_buffer(tx, lntmsg->msg_md->md_niov,
2079 lntmsg->msg_md->md_kiov,
2080 0, lntmsg->msg_md->md_length);
2082 CERROR("unable to setup buffer: %d\n", rc);
2083 kgnilnd_tx_done(tx, rc);
2088 tx->tx_lntmsg[1] = lnet_create_reply_msg(ni, lntmsg);
2089 if (tx->tx_lntmsg[1] == NULL) {
2090 CERROR("Can't create reply for GET to %s\n",
2091 libcfs_nid2str(target.nid));
2092 kgnilnd_tx_done(tx, rc);
2097 tx->tx_lntmsg[0] = lntmsg;
2098 if ((reverse_rdma_flag & GNILND_REVERSE_GET) == 0)
2099 tx->tx_msg.gnm_u.get.gngm_hdr = *hdr;
2101 tx->tx_msg.gnm_u.putreq.gnprm_hdr = *hdr;
2103 /* rest of tx_msg is setup just before it is sent */
2104 kgnilnd_launch_tx(tx, net, &target);
2106 case LNET_MSG_REPLY:
2108 /* to save on MDDs, we'll handle short kiov by vmap'ing
2109 * and sending via SMSG */
2110 if (nob <= *kgnilnd_tunables.kgn_max_immediate)
2113 if ((reverse_rdma_flag & GNILND_REVERSE_PUT) == 0)
2114 tx = kgnilnd_new_tx_msg(GNILND_MSG_PUT_REQ, ni->ni_nid);
2116 tx = kgnilnd_new_tx_msg(GNILND_MSG_PUT_REQ_REV, ni->ni_nid);
2123 rc = kgnilnd_setup_rdma_buffer(tx, niov,
2126 kgnilnd_tx_done(tx, rc);
2131 tx->tx_lntmsg[0] = lntmsg;
2132 if ((reverse_rdma_flag & GNILND_REVERSE_PUT) == 0)
2133 tx->tx_msg.gnm_u.putreq.gnprm_hdr = *hdr;
2135 tx->tx_msg.gnm_u.get.gngm_hdr = *hdr;
2137 /* rest of tx_msg is setup just before it is sent */
2138 kgnilnd_launch_tx(tx, net, &target);
2142 /* send IMMEDIATE */
2144 LASSERTF(nob <= *kgnilnd_tunables.kgn_max_immediate,
2145 "lntmsg 0x%p too large %d\n", lntmsg, nob);
2147 tx = kgnilnd_new_tx_msg(GNILND_MSG_IMMEDIATE, ni->ni_nid);
2153 rc = kgnilnd_setup_immediate_buffer(tx, niov, NULL, kiov, offset, nob);
2155 kgnilnd_tx_done(tx, rc);
2159 tx->tx_msg.gnm_u.immediate.gnim_hdr = *hdr;
2160 tx->tx_lntmsg[0] = lntmsg;
2161 kgnilnd_launch_tx(tx, net, &target);
2164 /* use stored value as we could have already finalized lntmsg here from a failed launch */
2166 memalloc_noreclaim_restore(mpflag);
2171 kgnilnd_setup_rdma(struct lnet_ni *ni, kgn_rx_t *rx, struct lnet_msg *lntmsg, int mlen)
2173 kgn_conn_t *conn = rx->grx_conn;
2174 kgn_msg_t *rxmsg = rx->grx_msg;
2175 unsigned int niov = lntmsg->msg_niov;
2176 struct bio_vec *kiov = lntmsg->msg_kiov;
2177 unsigned int offset = lntmsg->msg_offset;
2178 unsigned int nob = lntmsg->msg_len;
2183 switch (rxmsg->gnm_type) {
2184 case GNILND_MSG_PUT_REQ_REV:
2185 done_type = GNILND_MSG_PUT_DONE_REV;
2188 case GNILND_MSG_GET_REQ:
2189 done_type = GNILND_MSG_GET_DONE;
2192 CERROR("invalid msg type %s (%d)\n",
2193 kgnilnd_msgtype2str(rxmsg->gnm_type),
2198 tx = kgnilnd_new_tx_msg(done_type, ni->ni_nid);
2202 rc = kgnilnd_set_tx_id(tx, conn);
2206 rc = kgnilnd_setup_rdma_buffer(tx, niov, kiov, offset, nob);
2210 tx->tx_lntmsg[0] = lntmsg;
2211 tx->tx_getinfo = rxmsg->gnm_u.get;
2213 /* we only queue from kgnilnd_recv - we might get called from other contexts
2214 * and we don't want to block the mutex in those cases */
2216 spin_lock(&tx->tx_conn->gnc_device->gnd_lock);
2217 kgnilnd_tx_add_state_locked(tx, NULL, tx->tx_conn, GNILND_TX_MAPQ, 1);
2218 spin_unlock(&tx->tx_conn->gnc_device->gnd_lock);
2219 kgnilnd_schedule_device(tx->tx_conn->gnc_device);
2224 kgnilnd_tx_done(tx, rc);
2225 kgnilnd_nak_rdma(conn, done_type, rc, rxmsg->gnm_u.get.gngm_cookie, ni->ni_nid);
2227 lnet_finalize(lntmsg, rc);
2231 kgnilnd_eager_recv(struct lnet_ni *ni, void *private, struct lnet_msg *lntmsg,
2234 kgn_rx_t *rx = private;
2235 kgn_conn_t *conn = rx->grx_conn;
2236 kgn_msg_t *rxmsg = rx->grx_msg;
2237 kgn_msg_t *eagermsg = NULL;
2238 kgn_peer_t *peer = NULL;
2239 kgn_conn_t *found_conn = NULL;
2241 GNIDBG_MSG(D_NET, rxmsg, "eager recv for conn %p, rxmsg %p, lntmsg %p",
2242 conn, rxmsg, lntmsg);
2244 if (rxmsg->gnm_payload_len > *kgnilnd_tunables.kgn_max_immediate) {
2245 GNIDBG_MSG(D_ERROR, rxmsg, "payload too large %d",
2246 rxmsg->gnm_payload_len);
2249 /* Grab a read lock so the connection doesnt disappear on us
2250 * while we look it up
2252 read_lock(&kgnilnd_data.kgn_peer_conn_lock);
2254 peer = kgnilnd_find_peer_locked(rxmsg->gnm_srcnid);
2256 found_conn = kgnilnd_find_conn_locked(peer);
2259 /* Verify the connection found is the same one that the message
2260 * is supposed to be using, if it is not output an error message
2263 if (!peer || !found_conn
2264 || found_conn->gnc_peer_connstamp != rxmsg->gnm_connstamp) {
2265 read_unlock(&kgnilnd_data.kgn_peer_conn_lock);
2266 CERROR("Couldnt find matching peer %p or conn %p / %p\n",
2267 peer, conn, found_conn);
2269 CERROR("Unexpected connstamp %#llx(%#llx expected)"
2270 " from %s", rxmsg->gnm_connstamp,
2271 found_conn->gnc_peer_connstamp,
2272 libcfs_nid2str(peer->gnp_nid));
2277 /* add conn ref to ensure it doesn't go away until all eager
2278 * messages processed */
2279 kgnilnd_conn_addref(conn);
2281 /* Now that we have verified the connection is valid and added a
2282 * reference we can remove the read_lock on the peer_conn_lock */
2283 read_unlock(&kgnilnd_data.kgn_peer_conn_lock);
2285 /* we have no credits or buffers for this message, so copy it
2286 * somewhere for a later kgnilnd_recv */
2287 if (atomic_read(&kgnilnd_data.kgn_neager_allocs) >=
2288 *kgnilnd_tunables.kgn_eager_credits) {
2289 CERROR("Out of eager credits to %s\n",
2290 libcfs_nid2str(conn->gnc_peer->gnp_nid));
2294 atomic_inc(&kgnilnd_data.kgn_neager_allocs);
2296 LIBCFS_ALLOC(eagermsg, sizeof(*eagermsg) + *kgnilnd_tunables.kgn_max_immediate);
2297 if (eagermsg == NULL) {
2298 kgnilnd_conn_decref(conn);
2299 CERROR("couldn't allocate eager rx message for conn %p to %s\n",
2300 conn, libcfs_nid2str(conn->gnc_peer->gnp_nid));
2304 /* copy msg and payload */
2305 memcpy(eagermsg, rxmsg, sizeof(*rxmsg) + rxmsg->gnm_payload_len);
2306 rx->grx_msg = eagermsg;
2309 /* stash this for lnet_finalize on cancel-on-conn-close */
2310 rx->grx_lntmsg = lntmsg;
2312 /* keep the same rx_t, it just has a new grx_msg now */
2313 *new_private = private;
2315 /* release SMSG buffer */
2316 kgnilnd_release_msg(conn);
2322 kgnilnd_recv(struct lnet_ni *ni, void *private, struct lnet_msg *lntmsg,
2323 int delayed, unsigned int niov,
2324 struct bio_vec *kiov,
2325 unsigned int offset, unsigned int mlen, unsigned int rlen)
2327 kgn_rx_t *rx = private;
2328 kgn_conn_t *conn = rx->grx_conn;
2329 kgn_msg_t *rxmsg = rx->grx_msg;
2335 LASSERT(!in_interrupt());
2336 LASSERTF(mlen <= rlen, "%d <= %d\n", mlen, rlen);
2338 GNIDBG_MSG(D_NET, rxmsg, "conn %p, rxmsg %p, lntmsg %p"
2339 " niov=%d kiov=%p offset=%d mlen=%d rlen=%d",
2340 conn, rxmsg, lntmsg,
2341 niov, kiov, offset, mlen, rlen);
2343 /* we need to lock here as recv can be called from any context */
2344 read_lock(&kgnilnd_data.kgn_peer_conn_lock);
2345 if (rx->grx_eager && conn->gnc_state != GNILND_CONN_ESTABLISHED) {
2346 read_unlock(&kgnilnd_data.kgn_peer_conn_lock);
2348 /* someone closed the conn after we copied this out, nuke it */
2349 kgnilnd_consume_rx(rx);
2350 lnet_finalize(lntmsg, conn->gnc_error);
2353 read_unlock(&kgnilnd_data.kgn_peer_conn_lock);
2355 switch (rxmsg->gnm_type) {
2357 GNIDBG_MSG(D_NETERROR, rxmsg, "conn %p, rx %p, rxmsg %p, lntmsg %p"
2358 " niov=%d kiov=%p offset=%d mlen=%d rlen=%d",
2359 conn, rx, rxmsg, lntmsg, niov, kiov, offset, mlen, rlen);
2362 case GNILND_MSG_IMMEDIATE:
2363 if (mlen > rxmsg->gnm_payload_len) {
2364 GNIDBG_MSG(D_ERROR, rxmsg,
2365 "Immediate message from %s too big: %d > %d",
2366 libcfs_nid2str(conn->gnc_peer->gnp_nid), mlen,
2367 rxmsg->gnm_payload_len);
2369 kgnilnd_consume_rx(rx);
2373 /* rxmsg[1] is a pointer to the payload, sitting in the buffer
2374 * right after the kgn_msg_t header - so just 'cute' way of saying
2375 * rxmsg + sizeof(kgn_msg_t) */
2377 /* check payload checksum if sent */
2379 if (*kgnilnd_tunables.kgn_checksum >= 2 &&
2380 !rxmsg->gnm_payload_cksum &&
2381 rxmsg->gnm_payload_len != 0)
2382 GNIDBG_MSG(D_WARNING, rxmsg, "no msg payload checksum when enabled");
2384 if (rxmsg->gnm_payload_cksum != 0) {
2385 /* gnm_payload_len set in kgnilnd_sendmsg from tx->tx_nob,
2386 * which is what is used to calculate the cksum on the TX side */
2387 pload_cksum = kgnilnd_cksum(&rxmsg[1], rxmsg->gnm_payload_len);
2389 if (rxmsg->gnm_payload_cksum != pload_cksum) {
2390 GNIDBG_MSG(D_NETERROR, rxmsg,
2391 "Bad payload checksum (%x expected %x)",
2392 pload_cksum, rxmsg->gnm_payload_cksum);
2393 switch (*kgnilnd_tunables.kgn_checksum_dump) {
2395 kgnilnd_dump_blob(D_BUFFS, "bad payload checksum",
2396 &rxmsg[1], rxmsg->gnm_payload_len);
2397 /* fall through to dump */
2399 libcfs_debug_dumplog();
2405 /* checksum problems are fatal, kill the conn */
2406 kgnilnd_consume_rx(rx);
2407 kgnilnd_close_conn(conn, rc);
2412 lnet_copy_flat2kiov(
2414 *kgnilnd_tunables.kgn_max_immediate,
2415 &rxmsg[1], 0, mlen);
2417 kgnilnd_consume_rx(rx);
2418 lnet_finalize(lntmsg, 0);
2421 case GNILND_MSG_PUT_REQ:
2422 /* LNET wants to truncate or drop transaction, sending NAK */
2424 kgnilnd_consume_rx(rx);
2425 lnet_finalize(lntmsg, 0);
2427 /* only error if lntmsg == NULL, otherwise we are just
2428 * short circuiting the rdma process of 0 bytes */
2429 kgnilnd_nak_rdma(conn, rxmsg->gnm_type,
2430 lntmsg == NULL ? -ENOENT : 0,
2431 rxmsg->gnm_u.get.gngm_cookie,
2435 /* sending ACK with sink buff. info */
2436 tx = kgnilnd_new_tx_msg(GNILND_MSG_PUT_ACK, ni->ni_nid);
2438 kgnilnd_consume_rx(rx);
2442 rc = kgnilnd_set_tx_id(tx, conn);
2444 GOTO(nak_put_req, rc);
2447 rc = kgnilnd_setup_rdma_buffer(tx, niov,
2448 kiov, offset, mlen);
2450 GOTO(nak_put_req, rc);
2453 tx->tx_msg.gnm_u.putack.gnpam_src_cookie =
2454 rxmsg->gnm_u.putreq.gnprm_cookie;
2455 tx->tx_msg.gnm_u.putack.gnpam_dst_cookie = tx->tx_id.txe_cookie;
2456 tx->tx_msg.gnm_u.putack.gnpam_desc.gnrd_addr =
2457 (__u64)((unsigned long)tx->tx_buffer);
2458 tx->tx_msg.gnm_u.putack.gnpam_desc.gnrd_nob = mlen;
2460 tx->tx_lntmsg[0] = lntmsg; /* finalize this on RDMA_DONE */
2461 tx->tx_qtime = jiffies;
2462 /* we only queue from kgnilnd_recv - we might get called from other contexts
2463 * and we don't want to block the mutex in those cases */
2465 spin_lock(&tx->tx_conn->gnc_device->gnd_lock);
2466 kgnilnd_tx_add_state_locked(tx, NULL, tx->tx_conn, GNILND_TX_MAPQ, 1);
2467 spin_unlock(&tx->tx_conn->gnc_device->gnd_lock);
2468 kgnilnd_schedule_device(tx->tx_conn->gnc_device);
2470 kgnilnd_consume_rx(rx);
2474 /* make sure we send an error back when the PUT fails */
2475 kgnilnd_nak_rdma(conn, rxmsg->gnm_type, rc, rxmsg->gnm_u.get.gngm_cookie, ni->ni_nid);
2476 kgnilnd_tx_done(tx, rc);
2477 kgnilnd_consume_rx(rx);
2479 /* return magic LNet network error */
2481 case GNILND_MSG_GET_REQ_REV:
2482 /* LNET wants to truncate or drop transaction, sending NAK */
2484 kgnilnd_consume_rx(rx);
2485 lnet_finalize(lntmsg, 0);
2487 /* only error if lntmsg == NULL, otherwise we are just
2488 * short circuiting the rdma process of 0 bytes */
2489 kgnilnd_nak_rdma(conn, rxmsg->gnm_type,
2490 lntmsg == NULL ? -ENOENT : 0,
2491 rxmsg->gnm_u.get.gngm_cookie,
2495 /* lntmsg can be null when parsing a LNET_GET */
2496 if (lntmsg != NULL) {
2497 /* sending ACK with sink buff. info */
2498 tx = kgnilnd_new_tx_msg(GNILND_MSG_GET_ACK_REV, ni->ni_nid);
2500 kgnilnd_consume_rx(rx);
2504 rc = kgnilnd_set_tx_id(tx, conn);
2506 GOTO(nak_get_req_rev, rc);
2508 rc = kgnilnd_setup_rdma_buffer(tx, niov,
2509 kiov, offset, mlen);
2511 GOTO(nak_get_req_rev, rc);
2513 tx->tx_msg.gnm_u.putack.gnpam_src_cookie =
2514 rxmsg->gnm_u.putreq.gnprm_cookie;
2515 tx->tx_msg.gnm_u.putack.gnpam_dst_cookie = tx->tx_id.txe_cookie;
2516 tx->tx_msg.gnm_u.putack.gnpam_desc.gnrd_addr =
2517 (__u64)((unsigned long)tx->tx_buffer);
2518 tx->tx_msg.gnm_u.putack.gnpam_desc.gnrd_nob = mlen;
2520 tx->tx_lntmsg[0] = lntmsg; /* finalize this on RDMA_DONE */
2522 /* we only queue from kgnilnd_recv - we might get called from other contexts
2523 * and we don't want to block the mutex in those cases */
2525 spin_lock(&tx->tx_conn->gnc_device->gnd_lock);
2526 kgnilnd_tx_add_state_locked(tx, NULL, tx->tx_conn, GNILND_TX_MAPQ, 1);
2527 spin_unlock(&tx->tx_conn->gnc_device->gnd_lock);
2528 kgnilnd_schedule_device(tx->tx_conn->gnc_device);
2531 kgnilnd_nak_rdma(conn, rxmsg->gnm_type,
2533 rxmsg->gnm_u.get.gngm_cookie,
2537 kgnilnd_consume_rx(rx);
2541 /* make sure we send an error back when the GET fails */
2542 kgnilnd_nak_rdma(conn, rxmsg->gnm_type, rc, rxmsg->gnm_u.get.gngm_cookie, ni->ni_nid);
2543 kgnilnd_tx_done(tx, rc);
2544 kgnilnd_consume_rx(rx);
2546 /* return magic LNet network error */
2550 case GNILND_MSG_PUT_REQ_REV:
2551 /* LNET wants to truncate or drop transaction, sending NAK */
2553 kgnilnd_consume_rx(rx);
2554 lnet_finalize(lntmsg, 0);
2556 /* only error if lntmsg == NULL, otherwise we are just
2557 * short circuiting the rdma process of 0 bytes */
2558 kgnilnd_nak_rdma(conn, rxmsg->gnm_type,
2559 lntmsg == NULL ? -ENOENT : 0,
2560 rxmsg->gnm_u.get.gngm_cookie,
2565 if (lntmsg != NULL) {
2567 kgnilnd_setup_rdma(ni, rx, lntmsg, mlen);
2570 kgnilnd_nak_rdma(conn, rxmsg->gnm_type,
2572 rxmsg->gnm_u.get.gngm_cookie,
2575 kgnilnd_consume_rx(rx);
2577 case GNILND_MSG_GET_REQ:
2578 if (lntmsg != NULL) {
2580 kgnilnd_setup_rdma(ni, rx, lntmsg, mlen);
2583 kgnilnd_nak_rdma(conn, rxmsg->gnm_type,
2585 rxmsg->gnm_u.get.gngm_cookie,
2588 kgnilnd_consume_rx(rx);
2594 /* needs write_lock on kgn_peer_conn_lock held */
2596 kgnilnd_check_conn_timeouts_locked(kgn_conn_t *conn)
2598 unsigned long timeout, keepalive;
2599 unsigned long now = jiffies;
2600 unsigned long newest_last_rx;
2603 /* given that we found this conn hanging off a peer, it better damned
2604 * well be connected */
2605 LASSERTF(conn->gnc_state == GNILND_CONN_ESTABLISHED,
2606 "conn 0x%p->%s with bad state%s\n", conn,
2607 conn->gnc_peer ? libcfs_nid2str(conn->gnc_peer->gnp_nid)
2609 kgnilnd_conn_state2str(conn));
2611 CDEBUG(D_NET, "checking conn %p->%s timeout %d keepalive %d "
2612 "rx_diff %lu tx_diff %lu\n",
2613 conn, libcfs_nid2str(conn->gnc_peer->gnp_nid),
2614 conn->gnc_timeout, GNILND_TO2KA(conn->gnc_timeout),
2615 cfs_duration_sec(now - conn->gnc_last_rx_cq),
2616 cfs_duration_sec(now - conn->gnc_last_tx));
2618 timeout = cfs_time_seconds(conn->gnc_timeout);
2619 keepalive = cfs_time_seconds(GNILND_TO2KA(conn->gnc_timeout));
2621 /* just in case our lack of RX msg processing is gumming up the works - give the
2622 * remove an extra chance */
2624 newest_last_rx = GNILND_LASTRX(conn);
2626 if (time_after_eq(now, newest_last_rx + timeout)) {
2627 uint32_t level = D_CONSOLE|D_NETERROR;
2629 if (conn->gnc_peer->gnp_state == GNILND_PEER_DOWN) {
2632 GNIDBG_CONN(level, conn,
2633 "No gnilnd traffic received from %s for %lu "
2634 "seconds, terminating connection. Is node down? ",
2635 libcfs_nid2str(conn->gnc_peer->gnp_nid),
2636 cfs_duration_sec(now - newest_last_rx));
2640 /* we don't timeout on last_tx stalls - we are going to trust the
2641 * underlying network to let us know when sends are failing.
2642 * At worst, the peer will timeout our RX stamp and drop the connection
2643 * at that point. We'll then see his CLOSE or at worst his RX
2644 * stamp stop and drop the connection on our end */
2646 if (time_after_eq(now, conn->gnc_last_tx + keepalive)) {
2647 CDEBUG(D_NET, "sending NOOP -> %s (%p idle %lu(%lu)) "
2648 "last %lu/%lu/%lu %lus/%lus/%lus\n",
2649 libcfs_nid2str(conn->gnc_peer->gnp_nid), conn,
2650 cfs_duration_sec(jiffies - conn->gnc_last_tx),
2652 conn->gnc_last_noop_want, conn->gnc_last_noop_sent,
2653 conn->gnc_last_noop_cq,
2654 cfs_duration_sec(jiffies - conn->gnc_last_noop_want),
2655 cfs_duration_sec(jiffies - conn->gnc_last_noop_sent),
2656 cfs_duration_sec(jiffies - conn->gnc_last_noop_cq));
2657 set_mb(conn->gnc_last_noop_want, jiffies);
2658 atomic_inc(&conn->gnc_reaper_noop);
2659 if (CFS_FAIL_CHECK(CFS_FAIL_GNI_NOOP_SEND))
2662 tx = kgnilnd_new_tx_msg(GNILND_MSG_NOOP, conn->gnc_peer->gnp_net->gnn_ni->ni_nid);
2665 kgnilnd_queue_tx(conn, tx);
2671 /* needs write_lock on kgn_peer_conn_lock held */
2673 kgnilnd_check_peer_timeouts_locked(kgn_peer_t *peer, struct list_head *todie,
2674 struct list_head *souls)
2676 unsigned long timeout;
2677 kgn_conn_t *conn, *connN = NULL;
2683 short releaseconn = 0;
2684 unsigned long first_rx = 0;
2685 int purgatory_conn_cnt = 0;
2687 CDEBUG(D_NET, "checking peer 0x%p->%s for timeouts; interval %lus\n",
2688 peer, libcfs_nid2str(peer->gnp_nid),
2689 peer->gnp_reconnect_interval);
2691 timeout = cfs_time_seconds(max(*kgnilnd_tunables.kgn_timeout,
2692 GNILND_MIN_TIMEOUT));
2694 conn = kgnilnd_find_conn_locked(peer);
2696 /* if there is a valid conn, check the queues for timeouts */
2697 rc = kgnilnd_check_conn_timeouts_locked(conn);
2699 if (CFS_FAIL_CHECK(CFS_FAIL_GNI_RX_CLOSE_CLOSING)) {
2700 /* simulate a RX CLOSE after the timeout but before
2701 * the scheduler thread gets it */
2702 conn->gnc_close_recvd = GNILND_CLOSE_INJECT1;
2703 conn->gnc_peer_error = -ETIMEDOUT;
2706 if (*kgnilnd_tunables.kgn_to_reconn_disable &&
2708 peer->gnp_state = GNILND_PEER_TIMED_OUT;
2709 CDEBUG(D_WARNING, "%s conn timed out, will "
2710 "reconnect upon request from peer\n",
2711 libcfs_nid2str(conn->gnc_peer->gnp_nid));
2713 /* Once we mark closed, any of the scheduler threads could
2714 * get it and move through before we hit the fail loc code */
2715 kgnilnd_close_conn_locked(conn, rc);
2717 /* first_rx is used to decide when to release a conn from purgatory.
2719 first_rx = conn->gnc_first_rx;
2723 /* now regardless of starting new conn, find tx on peer queue that
2724 * are old and smell bad - do this first so we don't trigger
2725 * reconnect on empty queue if we timeout all */
2726 list_for_each_entry_safe(tx, txN, &peer->gnp_tx_queue, tx_list) {
2727 if (time_after_eq(jiffies, tx->tx_qtime + timeout)) {
2729 LCONSOLE_INFO("could not send to %s due to connection"
2730 " setup failure after %lu seconds\n",
2731 libcfs_nid2str(peer->gnp_nid),
2732 cfs_duration_sec(jiffies - tx->tx_qtime));
2734 kgnilnd_tx_del_state_locked(tx, peer, NULL,
2736 list_add_tail(&tx->tx_list, todie);
2741 if (count || peer->gnp_connecting == GNILND_PEER_KILL) {
2742 CDEBUG(D_NET, "canceling %d tx for peer 0x%p->%s\n",
2743 count, peer, libcfs_nid2str(peer->gnp_nid));
2744 /* if we nuked all the TX, stop peer connection attempt (if there is one..) */
2745 if (list_empty(&peer->gnp_tx_queue) ||
2746 peer->gnp_connecting == GNILND_PEER_KILL) {
2747 /* we pass down todie to use a common function - but we know there are
2749 kgnilnd_cancel_peer_connect_locked(peer, todie);
2753 /* Don't reconnect if we are still trying to clear out old conns.
2754 * This prevents us sending traffic on the new mbox before ensuring we are done
2755 * with the old one */
2756 reconnect = (peer->gnp_state == GNILND_PEER_UP) &&
2757 (atomic_read(&peer->gnp_dirty_eps) == 0);
2759 /* fast reconnect after a timeout */
2760 to_reconn = !conn &&
2761 (peer->gnp_last_errno == -ETIMEDOUT) &&
2762 *kgnilnd_tunables.kgn_fast_reconn;
2764 /* if we are not connected and there are tx on the gnp_tx_queue waiting
2765 * to be sent, we'll check the reconnect interval and fire up a new
2766 * connection request */
2769 (peer->gnp_connecting == GNILND_PEER_IDLE) &&
2770 (time_after_eq(jiffies, peer->gnp_reconnect_time)) &&
2771 (!list_empty(&peer->gnp_tx_queue) || to_reconn)) {
2773 CDEBUG(D_NET, "starting connect to %s\n",
2774 libcfs_nid2str(peer->gnp_nid));
2775 LASSERTF(peer->gnp_connecting == GNILND_PEER_IDLE,
2776 "Peer was idle and we have a write_lock, state issue %d\n",
2777 peer->gnp_connecting);
2779 peer->gnp_connecting = GNILND_PEER_CONNECT;
2780 kgnilnd_peer_addref(peer); /* extra ref for connd */
2782 spin_lock(&peer->gnp_net->gnn_dev->gnd_connd_lock);
2783 list_add_tail(&peer->gnp_connd_list,
2784 &peer->gnp_net->gnn_dev->gnd_connd_peers);
2785 spin_unlock(&peer->gnp_net->gnn_dev->gnd_connd_lock);
2787 kgnilnd_schedule_dgram(peer->gnp_net->gnn_dev);
2790 /* fail_loc to allow us to delay release of purgatory */
2791 if (CFS_FAIL_CHECK(CFS_FAIL_GNI_PURG_REL_DELAY))
2794 /* This check allows us to verify that the new conn is actually being used. This allows us to
2795 * pull the old conns out of purgatory if they have actually seen traffic.
2796 * We only release a conn from purgatory during stack reset, admin command, or when a peer reconnects
2799 time_after(jiffies, first_rx + cfs_time_seconds(*kgnilnd_tunables.kgn_hardware_timeout))) {
2800 CDEBUG(D_INFO, "We can release peer %s conn's from purgatory %lu\n",
2801 libcfs_nid2str(peer->gnp_nid), first_rx + cfs_time_seconds(*kgnilnd_tunables.kgn_hardware_timeout));
2805 list_for_each_entry_safe (conn, connN, &peer->gnp_conns, gnc_list) {
2806 /* check for purgatory timeouts */
2807 if (conn->gnc_in_purgatory) {
2808 /* We cannot detach this conn from purgatory if it has not been closed so we reschedule it
2809 * that way the next time we check it we can detach it from purgatory
2812 if (conn->gnc_state != GNILND_CONN_DONE) {
2813 /* Skip over conns that are currently not DONE. If they arent already scheduled
2814 * for completion something in the state machine is broken.
2819 /* We only detach a conn that is in purgatory if we have received a close message,
2820 * we have a new valid connection that has successfully received data, or an admin
2821 * command tells us we need to detach.
2824 if (conn->gnc_close_recvd || releaseconn || conn->gnc_needs_detach) {
2825 unsigned long waiting;
2827 waiting = (long) jiffies - conn->gnc_last_rx_cq;
2829 /* C.E: The remote peer is expected to close the
2830 * connection (see kgnilnd_check_conn_timeouts)
2831 * via the reaper thread and nuke out the MDD and
2832 * FMA resources after conn->gnc_timeout has expired
2833 * without an FMA RX */
2834 CDEBUG(D_NET, "Reconnected to %s in %lds or admin forced detach, dropping "
2835 " held resources\n",
2836 libcfs_nid2str(conn->gnc_peer->gnp_nid),
2837 cfs_duration_sec(waiting));
2839 kgnilnd_detach_purgatory_locked(conn, souls);
2841 purgatory_conn_cnt++;
2846 /* If we have too many connections in purgatory we could run out of
2847 * resources. Limit the number of connections to a tunable number,
2848 * clean up to the minimum all in one fell swoop... there are
2849 * situations where dvs will retry tx's and we can eat up several
2850 * hundread connection requests at once.
2852 if (purgatory_conn_cnt > *kgnilnd_tunables.kgn_max_purgatory) {
2853 list_for_each_entry_safe(conn, connN, &peer->gnp_conns,
2855 if (conn->gnc_in_purgatory &&
2856 conn->gnc_state == GNILND_CONN_DONE) {
2857 CDEBUG(D_NET, "Dropping Held resource due to"
2858 " resource limits being hit\n");
2859 kgnilnd_detach_purgatory_locked(conn, souls);
2861 if (purgatory_conn_cnt-- <
2862 *kgnilnd_tunables.kgn_max_purgatory)
2870 kgnilnd_reaper_check(int idx)
2872 struct list_head *peers = &kgnilnd_data.kgn_peers[idx];
2873 struct list_head *ctmp, *ctmpN;
2874 LIST_HEAD(geriatrics);
2877 write_lock(&kgnilnd_data.kgn_peer_conn_lock);
2879 list_for_each_safe(ctmp, ctmpN, peers) {
2880 kgn_peer_t *peer = NULL;
2882 /* don't timeout stuff if the network is mucked or shutting down */
2883 if (kgnilnd_check_hw_quiesce()) {
2886 peer = list_entry(ctmp, kgn_peer_t, gnp_list);
2888 kgnilnd_check_peer_timeouts_locked(peer, &geriatrics, &souls);
2891 write_unlock(&kgnilnd_data.kgn_peer_conn_lock);
2893 kgnilnd_txlist_done(&geriatrics, -EHOSTUNREACH);
2894 kgnilnd_release_purgatory_list(&souls);
2898 kgnilnd_update_reaper_timeout(long timeout)
2900 LASSERT(timeout > 0);
2902 spin_lock(&kgnilnd_data.kgn_reaper_lock);
2904 if (timeout < kgnilnd_data.kgn_new_min_timeout)
2905 kgnilnd_data.kgn_new_min_timeout = timeout;
2907 spin_unlock(&kgnilnd_data.kgn_reaper_lock);
2911 kgnilnd_reaper_poke_with_stick(unsigned long arg)
2913 wake_up(&kgnilnd_data.kgn_reaper_waitq);
2917 kgnilnd_reaper(void *arg)
2922 unsigned long next_check_time = jiffies;
2923 long current_min_timeout = MAX_SCHEDULE_TIMEOUT;
2924 struct timer_list timer;
2927 /* all gnilnd threads need to run fairly urgently */
2928 set_user_nice(current, *kgnilnd_tunables.kgn_nice);
2929 spin_lock(&kgnilnd_data.kgn_reaper_lock);
2931 while (!kgnilnd_data.kgn_shutdown) {
2932 /* I wake up every 'p' seconds to check for timeouts on some
2933 * more peers. I try to check every connection 'n' times
2934 * within the global minimum of all keepalive and timeout
2935 * intervals, to ensure I attend to every connection within
2936 * (n+1)/n times its timeout intervals. */
2937 const int p = GNILND_REAPER_THREAD_WAKE;
2938 const int n = GNILND_REAPER_NCHECKS;
2940 /* to quiesce or to not quiesce, that is the question */
2941 if (unlikely(kgnilnd_data.kgn_quiesce_trigger)) {
2942 spin_unlock(&kgnilnd_data.kgn_reaper_lock);
2943 KGNILND_SPIN_QUIESCE;
2944 spin_lock(&kgnilnd_data.kgn_reaper_lock);
2947 /* careful with the jiffy wrap... */
2948 timeout = (long)(next_check_time - jiffies);
2951 prepare_to_wait(&kgnilnd_data.kgn_reaper_waitq, &wait,
2952 TASK_INTERRUPTIBLE);
2953 spin_unlock(&kgnilnd_data.kgn_reaper_lock);
2954 setup_timer(&timer, kgnilnd_reaper_poke_with_stick,
2956 mod_timer(&timer, (long) jiffies + timeout);
2958 /* check flag variables before committing */
2959 if (!kgnilnd_data.kgn_shutdown &&
2960 !kgnilnd_data.kgn_quiesce_trigger) {
2961 CDEBUG(D_INFO, "schedule timeout %ld (%lu sec)\n",
2962 timeout, cfs_duration_sec(timeout));
2964 CDEBUG(D_INFO, "awake after schedule\n");
2967 del_singleshot_timer_sync(&timer);
2968 spin_lock(&kgnilnd_data.kgn_reaper_lock);
2969 finish_wait(&kgnilnd_data.kgn_reaper_waitq, &wait);
2973 /* new_min_timeout is set from the conn timeouts and keepalive
2974 * this should end up with a min timeout of
2975 * GNILND_TIMEOUT2KEEPALIVE(t) or roughly LND_TIMEOUT/2 */
2976 if (kgnilnd_data.kgn_new_min_timeout < current_min_timeout) {
2977 current_min_timeout = kgnilnd_data.kgn_new_min_timeout;
2978 CDEBUG(D_NET, "Set new min timeout %ld\n",
2979 current_min_timeout);
2982 spin_unlock(&kgnilnd_data.kgn_reaper_lock);
2984 /* Compute how many table entries to check now so I get round
2985 * the whole table fast enough given that I do this at fixed
2986 * intervals of 'p' seconds) */
2987 chunk = *kgnilnd_tunables.kgn_peer_hash_size;
2988 if (kgnilnd_data.kgn_new_min_timeout > n * p)
2989 chunk = (chunk * n * p) /
2990 kgnilnd_data.kgn_new_min_timeout;
2993 for (i = 0; i < chunk; i++) {
2994 kgnilnd_reaper_check(hash_index);
2995 hash_index = (hash_index + 1) %
2996 *kgnilnd_tunables.kgn_peer_hash_size;
2998 next_check_time = (long) jiffies + cfs_time_seconds(p);
2999 CDEBUG(D_INFO, "next check at %lu or in %d sec\n", next_check_time, p);
3001 spin_lock(&kgnilnd_data.kgn_reaper_lock);
3004 spin_unlock(&kgnilnd_data.kgn_reaper_lock);
3006 kgnilnd_thread_fini();
3011 kgnilnd_recv_bte_get(kgn_tx_t *tx) {
3012 unsigned niov, offset, nob;
3013 struct bio_vec *kiov;
3014 struct lnet_msg *lntmsg = tx->tx_lntmsg[0];
3015 kgnilnd_parse_lnet_rdma(lntmsg, &niov, &offset, &nob, &kiov, tx->tx_nob_rdma);
3018 lnet_copy_flat2kiov(
3021 tx->tx_buffer_copy + tx->tx_offset, 0, nob);
3023 memcpy(tx->tx_buffer, tx->tx_buffer_copy + tx->tx_offset, nob);
3030 kgnilnd_check_rdma_cq(kgn_device_t *dev)
3033 gni_post_descriptor_t *desc;
3035 kgn_tx_ev_id_t ev_id;
3037 int should_retry, rc;
3038 long num_processed = 0;
3039 kgn_conn_t *conn = NULL;
3040 kgn_tx_t *tx = NULL;
3041 kgn_rdma_desc_t *rdesc;
3046 /* make sure we don't keep looping if we need to reset */
3047 if (unlikely(kgnilnd_data.kgn_quiesce_trigger)) {
3048 return num_processed;
3050 rc = kgnilnd_mutex_trylock(&dev->gnd_cq_mutex);
3052 /* we didn't get the mutex, so return that there is still work
3056 if (CFS_FAIL_CHECK(CFS_FAIL_GNI_DELAY_RDMA)) {
3057 /* a bit gross - but we need a good way to test for
3058 * delayed RDMA completions and the easiest way to do
3059 * that is to delay the RDMA CQ events */
3060 rrc = GNI_RC_NOT_DONE;
3062 rrc = kgnilnd_cq_get_event(dev->gnd_snd_rdma_cqh, &event_data);
3065 if (rrc == GNI_RC_NOT_DONE) {
3066 kgnilnd_gl_mutex_unlock(&dev->gnd_cq_mutex);
3067 CDEBUG(D_INFO, "SEND RDMA CQ %d empty processed %ld\n",
3068 dev->gnd_id, num_processed);
3069 return num_processed;
3071 dev->gnd_sched_alive = jiffies;
3074 LASSERTF(!GNI_CQ_OVERRUN(event_data),
3075 "this is bad, somehow our credits didn't protect us"
3076 " from CQ overrun\n");
3077 LASSERTF(GNI_CQ_GET_TYPE(event_data) == GNI_CQ_EVENT_TYPE_POST,
3078 "rrc %d, GNI_CQ_GET_TYPE(%#llx) = %#llx\n", rrc,
3079 event_data, GNI_CQ_GET_TYPE(event_data));
3081 rrc = kgnilnd_get_completed(dev->gnd_snd_rdma_cqh, event_data,
3083 kgnilnd_gl_mutex_unlock(&dev->gnd_cq_mutex);
3085 /* XXX Nic: Need better error handling here... */
3086 LASSERTF((rrc == GNI_RC_SUCCESS) ||
3087 (rrc == GNI_RC_TRANSACTION_ERROR),
3090 ev_id.txe_cookie = desc->post_id;
3092 kgnilnd_validate_tx_ev_id(&ev_id, &tx, &conn);
3094 if (conn == NULL || tx == NULL) {
3095 /* either conn or tx was already nuked and this is a "late"
3096 * completion, so drop it */
3100 GNITX_ASSERTF(tx, tx->tx_msg.gnm_type == GNILND_MSG_PUT_DONE ||
3101 tx->tx_msg.gnm_type == GNILND_MSG_GET_DONE ||
3102 tx->tx_msg.gnm_type == GNILND_MSG_PUT_DONE_REV ||
3103 tx->tx_msg.gnm_type == GNILND_MSG_GET_DONE_REV,
3104 "tx %p with type %d\n", tx, tx->tx_msg.gnm_type);
3106 GNIDBG_TX(D_NET, tx, "RDMA completion for %d bytes", tx->tx_nob);
3108 if (tx->tx_msg.gnm_type == GNILND_MSG_GET_DONE_REV) {
3109 lnet_set_reply_msg_len(NULL, tx->tx_lntmsg[1],
3110 tx->tx_msg.gnm_u.completion.gncm_retval);
3114 if (tx->tx_msg.gnm_type == GNILND_MSG_GET_DONE_REV && desc->status == GNI_RC_SUCCESS) {
3115 if (tx->tx_buffer_copy != NULL)
3116 kgnilnd_recv_bte_get(tx);
3117 rc = kgnilnd_verify_rdma_cksum(tx, tx->tx_putinfo.gnpam_payload_cksum, tx->tx_nob_rdma);
3120 if (tx->tx_msg.gnm_type == GNILND_MSG_PUT_DONE_REV && desc->status == GNI_RC_SUCCESS) {
3121 if (tx->tx_buffer_copy != NULL)
3122 kgnilnd_recv_bte_get(tx);
3123 rc = kgnilnd_verify_rdma_cksum(tx, tx->tx_getinfo.gngm_payload_cksum, tx->tx_nob_rdma);
3126 /* remove from rdmaq */
3127 kgnilnd_conn_mutex_lock(&conn->gnc_rdma_mutex);
3128 spin_lock(&conn->gnc_list_lock);
3129 kgnilnd_tx_del_state_locked(tx, NULL, conn, GNILND_TX_ALLOCD);
3130 spin_unlock(&conn->gnc_list_lock);
3131 kgnilnd_conn_mutex_unlock(&conn->gnc_rdma_mutex);
3133 if (CFS_FAIL_CHECK(CFS_FAIL_GNI_RDMA_CQ_ERROR)) {
3134 event_data = 1LL << 48;
3138 if (likely(desc->status == GNI_RC_SUCCESS) && rc == 0) {
3139 atomic_inc(&dev->gnd_rdma_ntx);
3140 atomic64_add(tx->tx_nob, &dev->gnd_rdma_txbytes);
3141 /* transaction succeeded, add into fmaq */
3142 kgnilnd_queue_tx(conn, tx);
3143 kgnilnd_peer_alive(conn->gnc_peer);
3145 /* drop ref from kgnilnd_validate_tx_ev_id */
3146 kgnilnd_admin_decref(conn->gnc_tx_in_use);
3147 kgnilnd_conn_decref(conn);
3152 /* fall through to the TRANSACTION_ERROR case */
3155 /* get stringified version for log messages */
3156 kgnilnd_cq_error_str(event_data, &err_str, 256);
3157 kgnilnd_cq_error_recoverable(event_data, &should_retry);
3159 /* make sure we are not off in the weeds with this tx */
3160 if (tx->tx_retrans >
3161 *kgnilnd_tunables.kgn_max_retransmits) {
3162 GNIDBG_TX(D_NETERROR, tx,
3163 "giving up on TX, too many retries", NULL);
3167 GNIDBG_TX(D_NETERROR, tx, "RDMA %s error (%s)",
3168 should_retry ? "transient" : "unrecoverable", err_str);
3170 if (tx->tx_msg.gnm_type == GNILND_MSG_PUT_DONE ||
3171 tx->tx_msg.gnm_type == GNILND_MSG_GET_DONE_REV) {
3172 rdesc = &tx->tx_putinfo.gnpam_desc;
3173 rnob = tx->tx_putinfo.gnpam_desc.gnrd_nob;
3174 rcookie = tx->tx_putinfo.gnpam_dst_cookie;
3176 rdesc = &tx->tx_getinfo.gngm_desc;
3177 rnob = tx->tx_lntmsg[0]->msg_len;
3178 rcookie = tx->tx_getinfo.gngm_cookie;
3183 tx->tx_msg.gnm_type,
3187 kgnilnd_nak_rdma(conn,
3188 tx->tx_msg.gnm_type,
3191 tx->tx_msg.gnm_srcnid);
3192 kgnilnd_tx_done(tx, -GNILND_NOPURG);
3193 kgnilnd_close_conn(conn, -ECOMM);
3196 /* drop ref from kgnilnd_validate_tx_ev_id */
3197 kgnilnd_admin_decref(conn->gnc_tx_in_use);
3198 kgnilnd_conn_decref(conn);
3203 kgnilnd_check_fma_send_cq(kgn_device_t *dev)
3207 kgn_tx_ev_id_t ev_id;
3208 kgn_tx_t *tx = NULL;
3209 kgn_conn_t *conn = NULL;
3210 int queued_fma, saw_reply, rc;
3211 long num_processed = 0;
3212 struct list_head *ctmp, *ctmpN;
3215 /* make sure we don't keep looping if we need to reset */
3216 if (unlikely(kgnilnd_data.kgn_quiesce_trigger)) {
3217 return num_processed;
3220 rc = kgnilnd_mutex_trylock(&dev->gnd_cq_mutex);
3222 /* we didn't get the mutex, so return that there is still work
3227 rrc = kgnilnd_cq_get_event(dev->gnd_snd_fma_cqh, &event_data);
3228 kgnilnd_gl_mutex_unlock(&dev->gnd_cq_mutex);
3230 if (rrc == GNI_RC_NOT_DONE) {
3232 "SMSG send CQ %d not ready (data %#llx) "
3233 "processed %ld\n", dev->gnd_id, event_data,
3236 if (num_processed > 0) {
3237 spin_lock(&dev->gnd_lock);
3238 if (!list_empty(&dev->gnd_delay_conns)) {
3239 list_for_each_safe(ctmp, ctmpN, &dev->gnd_delay_conns) {
3240 conn = list_entry(ctmp, kgn_conn_t, gnc_delaylist);
3241 list_del_init(&conn->gnc_delaylist);
3242 CDEBUG(D_NET, "Moving Conn %p from delay queue to ready_queue\n", conn);
3243 kgnilnd_schedule_conn_nolock(conn);
3245 spin_unlock(&dev->gnd_lock);
3246 kgnilnd_schedule_device(dev);
3248 spin_unlock(&dev->gnd_lock);
3251 return num_processed;
3254 dev->gnd_sched_alive = jiffies;
3257 LASSERTF(!GNI_CQ_OVERRUN(event_data),
3258 "this is bad, somehow our credits didn't "
3259 "protect us from CQ overrun\n");
3260 LASSERTF(GNI_CQ_GET_TYPE(event_data) == GNI_CQ_EVENT_TYPE_SMSG,
3261 "rrc %d, GNI_CQ_GET_TYPE(%#llx) = %#llx\n", rrc,
3262 event_data, GNI_CQ_GET_TYPE(event_data));
3264 /* if SMSG couldn't handle an error, time for conn to die */
3265 if (unlikely(rrc == GNI_RC_TRANSACTION_ERROR)) {
3268 /* need to take the write_lock to ensure atomicity
3269 * on the conn state if we need to close it */
3270 write_lock(&kgnilnd_data.kgn_peer_conn_lock);
3271 conn = kgnilnd_cqid2conn_locked(GNI_CQ_GET_INST_ID(event_data));
3273 /* Conn was destroyed? */
3275 "SMSG CQID lookup %#llx failed\n",
3276 GNI_CQ_GET_INST_ID(event_data));
3277 write_unlock(&kgnilnd_data.kgn_peer_conn_lock);
3281 kgnilnd_cq_error_str(event_data, &err_str, 256);
3282 CNETERR("SMSG send error to %s: rc %d (%s)\n",
3283 libcfs_nid2str(conn->gnc_peer->gnp_nid),
3285 kgnilnd_close_conn_locked(conn, -ECOMM);
3287 write_unlock(&kgnilnd_data.kgn_peer_conn_lock);
3289 /* no need to process rest of this tx -
3290 * it is getting canceled */
3294 /* fall through to GNI_RC_SUCCESS case */
3295 ev_id.txe_smsg_id = GNI_CQ_GET_MSG_ID(event_data);
3297 kgnilnd_validate_tx_ev_id(&ev_id, &tx, &conn);
3298 if (conn == NULL || tx == NULL) {
3299 /* either conn or tx was already nuked and this is a "late"
3300 * completion, so drop it */
3304 tx->tx_conn->gnc_last_tx_cq = jiffies;
3305 if (tx->tx_msg.gnm_type == GNILND_MSG_NOOP) {
3306 set_mb(conn->gnc_last_noop_cq, jiffies);
3309 /* lock tx_list_state and tx_state */
3310 kgnilnd_conn_mutex_lock(&conn->gnc_smsg_mutex);
3311 spin_lock(&tx->tx_conn->gnc_list_lock);
3313 GNITX_ASSERTF(tx, tx->tx_list_state == GNILND_TX_LIVE_FMAQ,
3314 "state not GNILND_TX_LIVE_FMAQ", NULL);
3315 GNITX_ASSERTF(tx, tx->tx_state & GNILND_TX_WAITING_COMPLETION,
3316 "not waiting for completion", NULL);
3318 GNIDBG_TX(D_NET, tx, "SMSG complete tx_state %x rc %d",
3321 tx->tx_state &= ~GNILND_TX_WAITING_COMPLETION;
3323 /* This will trigger other FMA sends that were
3324 * pending this completion */
3325 queued_fma = !list_empty(&tx->tx_conn->gnc_fmaq);
3327 /* we either did not expect reply or we already got it */
3328 saw_reply = !(tx->tx_state & GNILND_TX_WAITING_REPLY);
3330 spin_unlock(&tx->tx_conn->gnc_list_lock);
3331 kgnilnd_conn_mutex_unlock(&conn->gnc_smsg_mutex);
3334 CDEBUG(D_NET, "scheduling conn 0x%p->%s for fmaq\n",
3336 libcfs_nid2str(conn->gnc_peer->gnp_nid));
3337 kgnilnd_schedule_conn(conn);
3340 /* If saw_reply is false as soon as gnc_list_lock is dropped the tx could be nuked
3341 * If saw_reply is true we know that the tx is safe to use as the other thread
3342 * is already finished with it.
3346 /* no longer need to track on the live_fmaq */
3347 kgnilnd_tx_del_state_locked(tx, NULL, tx->tx_conn, GNILND_TX_ALLOCD);
3349 if (tx->tx_state & GNILND_TX_PENDING_RDMA) {
3350 /* we already got reply & were waiting for
3351 * completion of initial send */
3352 /* to initiate RDMA transaction */
3353 GNIDBG_TX(D_NET, tx,
3354 "Pending RDMA 0x%p type 0x%02x",
3355 tx->tx_msg.gnm_type);
3356 tx->tx_state &= ~GNILND_TX_PENDING_RDMA;
3357 rc = kgnilnd_send_mapped_tx(tx, 0);
3358 GNITX_ASSERTF(tx, rc == 0, "RDMA send failed: %d\n", rc);
3360 /* we are done with this tx */
3361 GNIDBG_TX(D_NET, tx,
3362 "Done with tx type 0x%02x",
3363 tx->tx_msg.gnm_type);
3364 kgnilnd_tx_done(tx, tx->tx_rc);
3368 /* drop ref from kgnilnd_validate_tx_ev_id */
3369 kgnilnd_admin_decref(conn->gnc_tx_in_use);
3370 kgnilnd_conn_decref(conn);
3372 /* if we are waiting for a REPLY, we'll handle the tx then */
3373 } /* end for loop */
3377 kgnilnd_check_fma_rcv_cq(kgn_device_t *dev)
3382 long num_processed = 0;
3383 struct list_head *conns;
3384 struct list_head *tmp;
3388 /* make sure we don't keep looping if we need to reset */
3389 if (unlikely(kgnilnd_data.kgn_quiesce_trigger)) {
3390 return num_processed;
3393 rc = kgnilnd_mutex_trylock(&dev->gnd_cq_mutex);
3395 /* we didn't get the mutex, so return that there is still work
3399 rrc = kgnilnd_cq_get_event(dev->gnd_rcv_fma_cqh, &event_data);
3400 kgnilnd_gl_mutex_unlock(&dev->gnd_cq_mutex);
3402 if (rrc == GNI_RC_NOT_DONE) {
3403 CDEBUG(D_INFO, "SMSG RX CQ %d empty data %#llx "
3405 dev->gnd_id, event_data, num_processed);
3406 return num_processed;
3408 dev->gnd_sched_alive = jiffies;
3411 /* this is the only CQ that can really handle transient
3413 if (CFS_FAIL_CHECK(CFS_FAIL_GNI_CQ_GET_EVENT)) {
3414 rrc = cfs_fail_val ? cfs_fail_val
3415 : GNI_RC_ERROR_RESOURCE;
3416 if (rrc == GNI_RC_ERROR_RESOURCE) {
3417 /* set overrun too */
3418 event_data |= (1UL << 63);
3419 LASSERTF(GNI_CQ_OVERRUN(event_data),
3420 "(1UL << 63) is no longer the bit to set to indicate CQ_OVERRUN\n");
3423 /* sender should get error event too and take care
3424 of failed transaction by re-transmitting */
3425 if (rrc == GNI_RC_TRANSACTION_ERROR) {
3426 CDEBUG(D_NET, "SMSG RX CQ error %#llx\n", event_data);
3430 if (likely(!GNI_CQ_OVERRUN(event_data))) {
3431 read_lock(&kgnilnd_data.kgn_peer_conn_lock);
3432 conn = kgnilnd_cqid2conn_locked(
3433 GNI_CQ_GET_INST_ID(event_data));
3435 CDEBUG(D_NET, "SMSG RX CQID lookup %llu "
3436 "failed, dropping event %#llx\n",
3437 GNI_CQ_GET_INST_ID(event_data),
3440 CDEBUG(D_NET, "SMSG RX: CQID %llu "
3442 GNI_CQ_GET_INST_ID(event_data),
3443 conn, conn->gnc_peer ?
3444 libcfs_nid2str(conn->gnc_peer->gnp_nid) :
3447 conn->gnc_last_rx_cq = jiffies;
3449 /* stash first rx so we can clear out purgatory.
3451 if (conn->gnc_first_rx == 0) {
3452 conn->gnc_first_rx = jiffies;
3454 kgnilnd_peer_alive(conn->gnc_peer);
3455 kgnilnd_schedule_conn(conn);
3457 read_unlock(&kgnilnd_data.kgn_peer_conn_lock);
3461 /* FMA CQ has overflowed: check ALL conns */
3462 CNETERR("SMSG RX CQ overflow: scheduling ALL "
3463 "conns on device %d\n", dev->gnd_id);
3465 for (rc = 0; rc < *kgnilnd_tunables.kgn_peer_hash_size; rc++) {
3467 read_lock(&kgnilnd_data.kgn_peer_conn_lock);
3468 conns = &kgnilnd_data.kgn_conns[rc];
3470 list_for_each(tmp, conns) {
3471 conn = list_entry(tmp, kgn_conn_t,
3474 if (conn->gnc_device == dev) {
3475 kgnilnd_schedule_conn(conn);
3476 conn->gnc_last_rx_cq = jiffies;
3480 /* don't block write lockers for too long... */
3481 read_unlock(&kgnilnd_data.kgn_peer_conn_lock);
3486 /* try_map_if_full should only be used when processing TX from list of
3487 * backlog TX waiting on mappings to free up
3490 * try_map_if_full = 0: 0 (sent or queued), (-|+)errno failure of kgnilnd_sendmsg
3491 * try_map_if_full = 1: 0 (sent), -ENOMEM for caller to requeue, (-|+)errno failure of kgnilnd_sendmsg */
3494 kgnilnd_send_mapped_tx(kgn_tx_t *tx, int try_map_if_full)
3496 /* slight bit of race if multiple people calling, but at worst we'll have
3497 * order altered just a bit... which would not be determenistic anyways */
3498 int rc = atomic_read(&tx->tx_conn->gnc_device->gnd_nq_map);
3500 GNIDBG_TX(D_NET, tx, "try %d nq_map %d", try_map_if_full, rc);
3502 /* We know that we have a GART reservation that should guarantee forward progress.
3503 * This means we don't need to take any extraordinary efforts if we are failing
3504 * mappings here - even if we are holding a very small number of these. */
3506 if (try_map_if_full || (rc == 0)) {
3507 rc = kgnilnd_map_buffer(tx);
3510 /* rc should be 0 if we mapped successfully here, if non-zero
3511 * we are queueing */
3513 /* if try_map_if_full set, they handle requeuing */
3514 if (unlikely(try_map_if_full)) {
3517 spin_lock(&tx->tx_conn->gnc_device->gnd_lock);
3518 kgnilnd_tx_add_state_locked(tx, NULL, tx->tx_conn, GNILND_TX_MAPQ, 1);
3519 spin_unlock(&tx->tx_conn->gnc_device->gnd_lock);
3520 /* make sure we wake up sched to run this */
3521 kgnilnd_schedule_device(tx->tx_conn->gnc_device);
3522 /* return 0 as this is now queued for later sending */
3527 switch (tx->tx_msg.gnm_type) {
3531 /* GET_REQ and PUT_ACK are outbound messages sending our mapping key to
3532 * remote node where the RDMA will be started
3533 * Special case -EAGAIN logic - this should just queued as if the mapping couldn't
3534 * be satisified. The rest of the errors are "hard" errors that require
3535 * upper layers to handle themselves.
3536 * If kgnilnd_post_rdma returns a resource error, kgnilnd_rdma will put
3537 * the tx back on the TX_MAPQ. When this tx is pulled back off the MAPQ,
3538 * it's gnm_type will now be GNILND_MSG_PUT_DONE or
3539 * GNILND_MSG_GET_DONE_REV.
3541 case GNILND_MSG_GET_REQ:
3542 tx->tx_msg.gnm_u.get.gngm_desc.gnrd_key = tx->tx_map_key;
3543 tx->tx_msg.gnm_u.get.gngm_cookie = tx->tx_id.txe_cookie;
3544 tx->tx_msg.gnm_u.get.gngm_desc.gnrd_addr = (__u64)((unsigned long)tx->tx_buffer);
3545 tx->tx_msg.gnm_u.get.gngm_desc.gnrd_nob = tx->tx_nob;
3546 tx->tx_state = GNILND_TX_WAITING_COMPLETION | GNILND_TX_WAITING_REPLY;
3547 if (CFS_FAIL_CHECK(CFS_FAIL_GNI_GET_REQ_AGAIN)) {
3548 tx->tx_state |= GNILND_TX_FAIL_SMSG;
3550 /* redirect to FMAQ on failure, no need to infinite loop here in MAPQ */
3551 rc = kgnilnd_sendmsg(tx, NULL, 0, &tx->tx_conn->gnc_list_lock, GNILND_TX_FMAQ);
3553 case GNILND_MSG_PUT_ACK:
3554 tx->tx_msg.gnm_u.putack.gnpam_desc.gnrd_key = tx->tx_map_key;
3555 tx->tx_state = GNILND_TX_WAITING_COMPLETION | GNILND_TX_WAITING_REPLY;
3556 if (CFS_FAIL_CHECK(CFS_FAIL_GNI_PUT_ACK_AGAIN)) {
3557 tx->tx_state |= GNILND_TX_FAIL_SMSG;
3559 /* redirect to FMAQ on failure, no need to infinite loop here in MAPQ */
3560 rc = kgnilnd_sendmsg(tx, NULL, 0, &tx->tx_conn->gnc_list_lock, GNILND_TX_FMAQ);
3563 /* PUT_REQ and GET_DONE are where we do the actual RDMA */
3564 case GNILND_MSG_PUT_DONE:
3565 case GNILND_MSG_PUT_REQ:
3566 rc = kgnilnd_rdma(tx, GNILND_MSG_PUT_DONE,
3567 &tx->tx_putinfo.gnpam_desc,
3568 tx->tx_putinfo.gnpam_desc.gnrd_nob,
3569 tx->tx_putinfo.gnpam_dst_cookie);
3570 RETURN(try_map_if_full ? rc : 0);
3572 case GNILND_MSG_GET_DONE:
3573 rc = kgnilnd_rdma(tx, GNILND_MSG_GET_DONE,
3574 &tx->tx_getinfo.gngm_desc,
3575 tx->tx_lntmsg[0]->msg_len,
3576 tx->tx_getinfo.gngm_cookie);
3577 RETURN(try_map_if_full ? rc : 0);
3579 case GNILND_MSG_PUT_REQ_REV:
3580 tx->tx_msg.gnm_u.get.gngm_desc.gnrd_key = tx->tx_map_key;
3581 tx->tx_msg.gnm_u.get.gngm_cookie = tx->tx_id.txe_cookie;
3582 tx->tx_msg.gnm_u.get.gngm_desc.gnrd_addr = (__u64)((unsigned long)tx->tx_buffer);
3583 tx->tx_msg.gnm_u.get.gngm_desc.gnrd_nob = tx->tx_nob;
3584 tx->tx_state = GNILND_TX_WAITING_COMPLETION | GNILND_TX_WAITING_REPLY;
3585 kgnilnd_compute_rdma_cksum(tx, tx->tx_nob);
3586 tx->tx_msg.gnm_u.get.gngm_payload_cksum = tx->tx_msg.gnm_payload_cksum;
3588 rc = kgnilnd_sendmsg(tx, NULL, 0, &tx->tx_conn->gnc_list_lock, GNILND_TX_FMAQ);
3590 case GNILND_MSG_PUT_DONE_REV:
3591 rc = kgnilnd_rdma(tx, GNILND_MSG_PUT_DONE_REV,
3592 &tx->tx_getinfo.gngm_desc,
3594 tx->tx_getinfo.gngm_cookie);
3595 RETURN(try_map_if_full ? rc : 0);
3597 case GNILND_MSG_GET_ACK_REV:
3598 tx->tx_msg.gnm_u.putack.gnpam_desc.gnrd_key = tx->tx_map_key;
3599 tx->tx_state = GNILND_TX_WAITING_COMPLETION | GNILND_TX_WAITING_REPLY;
3600 /* LNET_GETS are a special case for parse */
3601 kgnilnd_compute_rdma_cksum(tx, tx->tx_msg.gnm_u.putack.gnpam_desc.gnrd_nob);
3602 tx->tx_msg.gnm_u.putack.gnpam_payload_cksum = tx->tx_msg.gnm_payload_cksum;
3604 if (CFS_FAIL_CHECK(CFS_FAIL_GNI_PUT_ACK_AGAIN))
3605 tx->tx_state |= GNILND_TX_FAIL_SMSG;
3607 /* redirect to FMAQ on failure, no need to infinite loop here in MAPQ */
3608 rc = kgnilnd_sendmsg(tx, NULL, 0, &tx->tx_conn->gnc_list_lock, GNILND_TX_FMAQ);
3610 case GNILND_MSG_GET_DONE_REV:
3611 case GNILND_MSG_GET_REQ_REV:
3612 rc = kgnilnd_rdma(tx, GNILND_MSG_GET_DONE_REV,
3613 &tx->tx_putinfo.gnpam_desc,
3614 tx->tx_putinfo.gnpam_desc.gnrd_nob,
3615 tx->tx_putinfo.gnpam_dst_cookie);
3616 RETURN(try_map_if_full ? rc : 0);
3624 kgnilnd_process_fmaq(kgn_conn_t *conn)
3627 kgn_tx_t *tx = NULL;
3628 void *buffer = NULL;
3629 unsigned int nob = 0;
3632 /* NB 1. kgnilnd_sendmsg() may fail if I'm out of credits right now.
3633 * However I will be rescheduled by an FMA completion event
3634 * when I eventually get some.
3635 * NB 2. Sampling gnc_state here races with setting it elsewhere.
3636 * But it doesn't matter if I try to send a "real" message just
3637 * as I start closing because I'll get scheduled to send the
3640 /* Short circuit if the ep_handle is null we cant send anyway. */
3641 if (conn->gnc_ephandle == NULL)
3644 LASSERTF(!conn->gnc_close_sent, "Conn %p close was sent\n", conn);
3646 spin_lock(&conn->gnc_list_lock);
3648 if (list_empty(&conn->gnc_fmaq)) {
3649 int keepalive = GNILND_TO2KA(conn->gnc_timeout);
3651 spin_unlock(&conn->gnc_list_lock);
3653 if (time_after_eq(jiffies, conn->gnc_last_tx + cfs_time_seconds(keepalive))) {
3654 CDEBUG(D_NET, "sending NOOP -> %s (%p idle %lu(%d)) "
3655 "last %lu/%lu/%lu %lus/%lus/%lus\n",
3656 libcfs_nid2str(conn->gnc_peer->gnp_nid), conn,
3657 cfs_duration_sec(jiffies - conn->gnc_last_tx),
3659 conn->gnc_last_noop_want, conn->gnc_last_noop_sent,
3660 conn->gnc_last_noop_cq,
3661 cfs_duration_sec(jiffies - conn->gnc_last_noop_want),
3662 cfs_duration_sec(jiffies - conn->gnc_last_noop_sent),
3663 cfs_duration_sec(jiffies - conn->gnc_last_noop_cq));
3664 atomic_inc(&conn->gnc_sched_noop);
3665 set_mb(conn->gnc_last_noop_want, jiffies);
3667 if (CFS_FAIL_CHECK(CFS_FAIL_GNI_NOOP_SEND))
3670 tx = kgnilnd_new_tx_msg(GNILND_MSG_NOOP, conn->gnc_peer->gnp_net->gnn_ni->ni_nid);
3674 rc = kgnilnd_set_tx_id(tx, conn);
3676 kgnilnd_tx_done(tx, rc);
3682 tx = list_first_entry(&conn->gnc_fmaq, kgn_tx_t, tx_list);
3683 /* move from fmaq to allocd, kgnilnd_sendmsg will move to live_fmaq */
3684 kgnilnd_tx_del_state_locked(tx, NULL, conn, GNILND_TX_ALLOCD);
3685 more_to_do = !list_empty(&conn->gnc_fmaq);
3686 spin_unlock(&conn->gnc_list_lock);
3689 /* if there is no real TX or no NOOP to send, bail */
3694 if (!tx->tx_retrans)
3695 tx->tx_cred_wait = jiffies;
3697 GNITX_ASSERTF(tx, tx->tx_id.txe_smsg_id != 0,
3698 "tx with zero id", NULL);
3700 CDEBUG(D_NET, "sending regular msg: %p, type %s(0x%02x), cookie %#llx\n",
3701 tx, kgnilnd_msgtype2str(tx->tx_msg.gnm_type),
3702 tx->tx_msg.gnm_type, tx->tx_id.txe_cookie);
3706 switch (tx->tx_msg.gnm_type) {
3710 case GNILND_MSG_NOOP:
3711 case GNILND_MSG_CLOSE:
3712 case GNILND_MSG_IMMEDIATE:
3713 tx->tx_state = GNILND_TX_WAITING_COMPLETION;
3714 buffer = tx->tx_buffer;
3718 case GNILND_MSG_GET_DONE:
3719 case GNILND_MSG_PUT_DONE:
3720 case GNILND_MSG_PUT_DONE_REV:
3721 case GNILND_MSG_GET_DONE_REV:
3722 case GNILND_MSG_PUT_NAK:
3723 case GNILND_MSG_GET_NAK:
3724 case GNILND_MSG_GET_NAK_REV:
3725 case GNILND_MSG_PUT_NAK_REV:
3726 tx->tx_state = GNILND_TX_WAITING_COMPLETION;
3729 case GNILND_MSG_PUT_REQ:
3730 case GNILND_MSG_GET_REQ_REV:
3731 tx->tx_msg.gnm_u.putreq.gnprm_cookie = tx->tx_id.txe_cookie;
3733 case GNILND_MSG_PUT_ACK:
3734 case GNILND_MSG_PUT_REQ_REV:
3735 case GNILND_MSG_GET_ACK_REV:
3736 case GNILND_MSG_GET_REQ:
3737 /* This is really only to handle the retransmit of SMSG once these
3738 * two messages are setup in send_mapped_tx */
3739 tx->tx_state = GNILND_TX_WAITING_COMPLETION | GNILND_TX_WAITING_REPLY;
3743 if (likely(rc == 0)) {
3744 rc = kgnilnd_sendmsg(tx, buffer, nob, &conn->gnc_list_lock, GNILND_TX_FMAQ);
3748 /* don't explicitly reschedule here - we are short credits and will rely on
3749 * kgnilnd_sendmsg to resched the conn if need be */
3751 } else if (rc < 0) {
3752 /* bail: it wasn't sent and we didn't get EAGAIN indicating we should retrans
3753 * almost certainly a software bug, but lets play nice with the other kids */
3754 kgnilnd_tx_done(tx, rc);
3755 /* just for fun, kick peer in arse - resetting conn might help to correct
3756 * this almost certainly buggy software caused return code */
3757 kgnilnd_close_conn(conn, rc);
3761 CDEBUG(D_NET, "Rescheduling %p (more to do)\n", conn);
3762 kgnilnd_schedule_conn(conn);
3767 kgnilnd_process_rdmaq(kgn_device_t *dev)
3772 if (CFS_FAIL_CHECK(CFS_FAIL_GNI_DELAY_RDMAQ)) {
3776 if (time_after_eq(jiffies, dev->gnd_rdmaq_deadline)) {
3777 unsigned long dead_bump;
3780 /* if we think we need to adjust, take lock to serialize and recheck */
3781 spin_lock(&dev->gnd_rdmaq_lock);
3782 if (time_after_eq(jiffies, dev->gnd_rdmaq_deadline)) {
3783 del_singleshot_timer_sync(&dev->gnd_rdmaq_timer);
3785 dead_bump = cfs_time_seconds(1) / *kgnilnd_tunables.kgn_rdmaq_intervals;
3787 /* roll the bucket forward */
3788 dev->gnd_rdmaq_deadline = jiffies + dead_bump;
3790 if (kgnilnd_data.kgn_rdmaq_override &&
3791 (*kgnilnd_tunables.kgn_rdmaq_intervals != 0)) {
3792 new_ok = kgnilnd_data.kgn_rdmaq_override / *kgnilnd_tunables.kgn_rdmaq_intervals;
3797 /* roll current outstanding forward to make sure we carry outstanding
3798 * committment forward
3799 * new_ok starts out as the whole interval value
3800 * - first subtract bytes_out from last interval, as that would push us over
3801 * strict limits for this interval
3802 * - second, set bytes_ok to new_ok to ensure it doesn't exceed the current auth
3804 * there is a small race here if someone is actively processing mappings and
3805 * adding to rdmaq_bytes_out, but it should be small as the mappings are triggered
3806 * quite quickly after kgnilnd_auth_rdma_bytes gives us the go-ahead
3807 * - if this gives us problems in the future, we could use a read/write lock
3808 * to protect the resetting of these values */
3809 new_ok -= atomic64_read(&dev->gnd_rdmaq_bytes_out);
3810 atomic64_set(&dev->gnd_rdmaq_bytes_ok, new_ok);
3812 CDEBUG(D_NET, "resetting rdmaq bytes to %ld, deadline +%lu -> %lu, "
3813 "current out %ld\n",
3814 atomic64_read(&dev->gnd_rdmaq_bytes_ok), dead_bump, dev->gnd_rdmaq_deadline,
3815 atomic64_read(&dev->gnd_rdmaq_bytes_out));
3817 spin_unlock(&dev->gnd_rdmaq_lock);
3820 spin_lock(&dev->gnd_rdmaq_lock);
3821 while (!list_empty(&dev->gnd_rdmaq)) {
3824 /* make sure we break out early on quiesce */
3825 if (unlikely(kgnilnd_data.kgn_quiesce_trigger)) {
3826 /* always break with lock held - we unlock outside loop */
3830 tx = list_first_entry(&dev->gnd_rdmaq, kgn_tx_t, tx_list);
3831 kgnilnd_tx_del_state_locked(tx, NULL, tx->tx_conn, GNILND_TX_ALLOCD);
3834 /* sample with lock held, serializing with kgnilnd_complete_closed_conn */
3835 if (tx->tx_conn->gnc_state != GNILND_CONN_ESTABLISHED) {
3836 /* if conn is dying, mark tx in tx_ref_table for
3837 * kgnilnd_complete_closed_conn to finish up */
3838 kgnilnd_tx_add_state_locked(tx, NULL, tx->tx_conn, GNILND_TX_DYING, 1);
3840 /* tx was moved to DYING, get next */
3843 spin_unlock(&dev->gnd_rdmaq_lock);
3845 rc = kgnilnd_auth_rdma_bytes(dev, tx);
3846 spin_lock(&dev->gnd_rdmaq_lock);
3849 /* no ticket! add back to head */
3850 kgnilnd_tx_add_state_locked(tx, NULL, tx->tx_conn, GNILND_TX_RDMAQ, 0);
3851 /* clear found_work so scheduler threads wait for timer */
3855 /* TX is GO for launch */
3856 tx->tx_qtime = jiffies;
3857 kgnilnd_send_mapped_tx(tx, 0);
3861 spin_unlock(&dev->gnd_rdmaq_lock);
3867 kgnilnd_swab_rdma_desc(kgn_rdma_desc_t *d)
3869 __swab64s(&d->gnrd_key.qword1);
3870 __swab64s(&d->gnrd_key.qword2);
3871 __swab64s(&d->gnrd_addr);
3872 __swab32s(&d->gnrd_nob);
3875 #define kgnilnd_match_reply_either(w, x, y, z) _kgnilnd_match_reply(w, x, y, z)
3876 #define kgnilnd_match_reply(x, y, z) _kgnilnd_match_reply(x, y, GNILND_MSG_NONE, z)
3879 _kgnilnd_match_reply(kgn_conn_t *conn, int type1, int type2, __u64 cookie)
3881 kgn_tx_ev_id_t ev_id;
3884 /* we use the cookie from the original TX, so we can find the match
3885 * by parsing that and using the txe_idx */
3886 ev_id.txe_cookie = cookie;
3888 tx = conn->gnc_tx_ref_table[ev_id.txe_idx];
3891 /* check tx to make sure kgni didn't eat it */
3892 GNITX_ASSERTF(tx, tx->tx_msg.gnm_magic == GNILND_MSG_MAGIC,
3893 "came back from kgni with bad magic %x\n", tx->tx_msg.gnm_magic);
3895 GNITX_ASSERTF(tx, ((tx->tx_id.txe_idx == ev_id.txe_idx) &&
3896 (tx->tx_id.txe_cookie = cookie)),
3897 "conn 0x%p->%s tx_ref_table hosed: wanted "
3898 "txe_cookie %#llx txe_idx %d "
3899 "found tx %p cookie %#llx txe_idx %d\n",
3900 conn, libcfs_nid2str(conn->gnc_peer->gnp_nid),
3901 cookie, ev_id.txe_idx,
3902 tx, tx->tx_id.txe_cookie, tx->tx_id.txe_idx);
3904 LASSERTF((((tx->tx_msg.gnm_type == type1) || (tx->tx_msg.gnm_type == type2)) &&
3905 (tx->tx_state & GNILND_TX_WAITING_REPLY)),
3906 "Unexpected TX type (%x, %x or %x) "
3907 "or state (%x, expected +%x) "
3908 "matched reply from %s\n",
3909 tx->tx_msg.gnm_type, type1, type2,
3910 tx->tx_state, GNILND_TX_WAITING_REPLY,
3911 libcfs_nid2str(conn->gnc_peer->gnp_nid));
3913 CWARN("Unmatched reply %02x, or %02x/%#llx from %s\n",
3914 type1, type2, cookie, libcfs_nid2str(conn->gnc_peer->gnp_nid));
3920 kgnilnd_complete_tx(kgn_tx_t *tx, int rc)
3923 kgn_conn_t *conn = tx->tx_conn;
3924 __u64 nob = tx->tx_nob;
3925 __u32 physnop = tx->tx_phys_npages;
3926 int id = tx->tx_id.txe_smsg_id;
3927 int buftype = tx->tx_buftype;
3928 gni_mem_handle_t hndl;
3929 hndl.qword1 = tx->tx_map_key.qword1;
3930 hndl.qword2 = tx->tx_map_key.qword2;
3932 spin_lock(&conn->gnc_list_lock);
3934 GNITX_ASSERTF(tx, tx->tx_state & GNILND_TX_WAITING_REPLY,
3935 "not waiting for reply", NULL);
3938 tx->tx_state &= ~GNILND_TX_WAITING_REPLY;
3940 if (rc == -EFAULT) {
3941 CDEBUG(D_NETERROR, "Error %d TX data: TX %p tx_id %x nob %16llu physnop %8d buffertype %#8x MemHandle %#llx.%#llxx\n",
3942 rc, tx, id, nob, physnop, buftype, hndl.qword1, hndl.qword2);
3944 if(*kgnilnd_tunables.kgn_efault_lbug) {
3945 GNIDBG_TOMSG(D_NETERROR, &tx->tx_msg,
3946 "error %d on tx 0x%p->%s id %u/%d state %s age %ds",
3948 libcfs_nid2str(conn->gnc_peer->gnp_nid) : "<?>",
3949 tx->tx_id.txe_smsg_id, tx->tx_id.txe_idx,
3950 kgnilnd_tx_state2str(tx->tx_list_state),
3951 cfs_duration_sec((unsigned long) jiffies - tx->tx_qtime));
3956 if (!(tx->tx_state & GNILND_TX_WAITING_COMPLETION)) {
3957 kgnilnd_tx_del_state_locked(tx, NULL, conn, GNILND_TX_ALLOCD);
3958 /* sample under lock as follow on steps require gnc_list_lock
3959 * - or call kgnilnd_tx_done which requires no locks held over
3960 * call to lnet_finalize */
3963 spin_unlock(&conn->gnc_list_lock);
3966 kgnilnd_tx_done(tx, tx->tx_rc);
3971 kgnilnd_finalize_rx_done(kgn_tx_t *tx, kgn_msg_t *msg)
3974 kgn_conn_t *conn = tx->tx_conn;
3976 atomic_inc(&conn->gnc_device->gnd_rdma_nrx);
3977 atomic64_add(tx->tx_nob, &conn->gnc_device->gnd_rdma_rxbytes);
3979 /* the gncm_retval is passed in for PUTs */
3980 rc = kgnilnd_verify_rdma_cksum(tx, msg->gnm_payload_cksum,
3981 msg->gnm_u.completion.gncm_retval);
3983 kgnilnd_complete_tx(tx, rc);
3987 kgnilnd_check_fma_rx(kgn_conn_t *conn)
3995 kgn_peer_t *peer = conn->gnc_peer;
3998 __u16 tmp_cksum = 0, msg_cksum = 0;
3999 int repost = 1, saw_complete;
4000 unsigned long timestamp, newest_last_rx, timeout;
4004 /* Short circuit if the ep_handle is null.
4005 * It's likely that its about to be closed as stale.
4007 if (conn->gnc_ephandle == NULL)
4010 timestamp = jiffies;
4011 kgnilnd_gl_mutex_lock(&conn->gnc_device->gnd_cq_mutex);
4012 /* delay in jiffies - we are really concerned only with things that
4013 * result in a schedule() or really holding this off for long times .
4014 * NB - mutex_lock could spin for 2 jiffies before going to sleep to wait */
4015 conn->gnc_device->gnd_mutex_delay += (long) jiffies - timestamp;
4017 /* Resample current time as we have no idea how long it took to get the mutex */
4018 timestamp = jiffies;
4020 /* We check here when the last time we received an rx, we do this before
4021 * we call getnext in case the thread has been blocked for a while. If we
4022 * havent received an rx since our timeout value we close the connection
4023 * as we should assume the other side has closed the connection. This will
4024 * stop us from sending replies to a mailbox that is already in purgatory.
4027 timeout = cfs_time_seconds(conn->gnc_timeout);
4028 newest_last_rx = GNILND_LASTRX(conn);
4030 /* Error injection to validate that timestamp checking works and closing the conn */
4031 if (CFS_FAIL_CHECK(CFS_FAIL_GNI_RECV_TIMEOUT)) {
4032 timestamp = timestamp + (GNILND_TIMEOUTRX(timeout) * 2);
4035 if (time_after_eq(timestamp, newest_last_rx + (GNILND_TIMEOUTRX(timeout)))) {
4036 GNIDBG_CONN(D_NETERROR|D_CONSOLE, conn, "Cant receive from %s after timeout lapse of %lu; TO %lu",
4037 libcfs_nid2str(conn->gnc_peer->gnp_nid),
4038 cfs_duration_sec(timestamp - newest_last_rx),
4039 cfs_duration_sec(GNILND_TIMEOUTRX(timeout)));
4040 kgnilnd_gl_mutex_unlock(&conn->gnc_device->gnd_cq_mutex);
4042 kgnilnd_close_conn(conn, rc);
4046 rrc = kgnilnd_smsg_getnext(conn->gnc_ephandle, &prefix);
4048 if (rrc == GNI_RC_NOT_DONE) {
4049 kgnilnd_gl_mutex_unlock(&conn->gnc_device->gnd_cq_mutex);
4050 CDEBUG(D_INFO, "SMSG RX empty conn 0x%p\n", conn);
4054 /* Instead of asserting when we get mailbox corruption lets attempt to
4055 * close the conn and recover. We can put the conn/mailbox into
4056 * purgatory and let purgatory deal with the problem. If we see
4057 * this NETTERROR reported on production systems in large amounts
4058 * we will need to revisit the state machine to see if we can tighten
4059 * it up further to improve data protection.
4062 if (rrc == GNI_RC_INVALID_STATE) {
4063 kgnilnd_gl_mutex_unlock(&conn->gnc_device->gnd_cq_mutex);
4064 GNIDBG_CONN(D_NETERROR | D_CONSOLE, conn, "Mailbox corruption "
4065 "detected closing conn %p from peer %s\n", conn,
4066 libcfs_nid2str(conn->gnc_peer->gnp_nid));
4068 kgnilnd_close_conn(conn, rc);
4072 LASSERTF(rrc == GNI_RC_SUCCESS,
4073 "bad rc %d on conn %p from peer %s\n",
4074 rrc, conn, libcfs_nid2str(peer->gnp_nid));
4076 msg = (kgn_msg_t *)prefix;
4078 rx = kgnilnd_alloc_rx();
4080 kgnilnd_gl_mutex_unlock(&conn->gnc_device->gnd_cq_mutex);
4081 kgnilnd_release_msg(conn);
4082 GNIDBG_MSG(D_NETERROR, msg, "Dropping SMSG RX from 0x%p->%s, no RX memory",
4083 conn, libcfs_nid2str(peer->gnp_nid));
4087 GNIDBG_MSG(D_INFO, msg, "SMSG RX on %p", conn);
4089 timestamp = conn->gnc_last_rx;
4090 seq = last_seq = atomic_read(&conn->gnc_rx_seq);
4091 atomic_inc(&conn->gnc_rx_seq);
4093 conn->gnc_last_rx = jiffies;
4094 /* stash first rx so we can clear out purgatory
4096 if (conn->gnc_first_rx == 0)
4097 conn->gnc_first_rx = jiffies;
4099 /* needs to linger to protect gnc_rx_seq like we do with gnc_tx_seq */
4100 kgnilnd_gl_mutex_unlock(&conn->gnc_device->gnd_cq_mutex);
4101 kgnilnd_peer_alive(conn->gnc_peer);
4104 rx->grx_conn = conn;
4106 rx->grx_received = current_kernel_time();
4108 if (CFS_FAIL_CHECK(CFS_FAIL_GNI_NET_LOOKUP)) {
4111 rc = kgnilnd_find_net(msg->gnm_srcnid, &net);
4117 kgnilnd_net_decref(net);
4120 if (*kgnilnd_tunables.kgn_checksum && !msg->gnm_cksum)
4121 GNIDBG_MSG(D_WARNING, msg, "no msg header checksum when enabled");
4123 /* XXX Nic: Do we need to swab cksum */
4124 if (msg->gnm_cksum != 0) {
4125 msg_cksum = msg->gnm_cksum;
4127 tmp_cksum = kgnilnd_cksum(msg, sizeof(kgn_msg_t));
4129 if (tmp_cksum != msg_cksum) {
4130 GNIDBG_MSG(D_NETERROR, msg, "Bad hdr checksum (%x expected %x)",
4131 tmp_cksum, msg_cksum);
4132 kgnilnd_dump_msg(D_BUFFS, msg);
4137 /* restore checksum for future debug messages */
4138 msg->gnm_cksum = tmp_cksum;
4140 if (msg->gnm_magic != GNILND_MSG_MAGIC) {
4141 if (__swab32(msg->gnm_magic) != GNILND_MSG_MAGIC) {
4142 GNIDBG_MSG(D_NETERROR, msg, "Unexpected magic %08x from %s",
4143 msg->gnm_magic, libcfs_nid2str(peer->gnp_nid));
4148 __swab32s(&msg->gnm_magic);
4149 __swab16s(&msg->gnm_version);
4150 __swab16s(&msg->gnm_type);
4151 __swab64s(&msg->gnm_srcnid);
4152 __swab64s(&msg->gnm_connstamp);
4153 __swab32s(&msg->gnm_seq);
4155 /* NB message type checked below; NOT here... */
4156 switch (msg->gnm_type) {
4157 case GNILND_MSG_GET_ACK_REV:
4158 case GNILND_MSG_PUT_ACK:
4159 kgnilnd_swab_rdma_desc(&msg->gnm_u.putack.gnpam_desc);
4162 case GNILND_MSG_PUT_REQ_REV:
4163 case GNILND_MSG_GET_REQ:
4164 kgnilnd_swab_rdma_desc(&msg->gnm_u.get.gngm_desc);
4172 if (msg->gnm_version != GNILND_MSG_VERSION) {
4173 GNIDBG_MSG(D_NETERROR, msg, "Unexpected protocol version %d from %s",
4174 msg->gnm_version, libcfs_nid2str(peer->gnp_nid));
4179 if (LNET_NIDADDR(msg->gnm_srcnid) != LNET_NIDADDR(peer->gnp_nid)) {
4180 GNIDBG_MSG(D_NETERROR, msg, "Unexpected peer %s from %s",
4181 libcfs_nid2str(msg->gnm_srcnid),
4182 libcfs_nid2str(peer->gnp_nid));
4187 if (msg->gnm_connstamp != conn->gnc_peer_connstamp) {
4188 GNIDBG_MSG(D_NETERROR, msg, "Unexpected connstamp %#llx(%#llx"
4189 " expected) from %s",
4190 msg->gnm_connstamp, conn->gnc_peer_connstamp,
4191 libcfs_nid2str(peer->gnp_nid));
4196 if (msg->gnm_seq != seq) {
4197 GNIDBG_MSG(D_NETERROR, msg, "Unexpected sequence number %d(%d expected) from %s",
4198 msg->gnm_seq, seq, libcfs_nid2str(peer->gnp_nid));
4203 atomic_inc(&conn->gnc_device->gnd_short_nrx);
4205 if (msg->gnm_type == GNILND_MSG_CLOSE) {
4206 CDEBUG(D_NETTRACE, "%s sent us CLOSE msg\n",
4207 libcfs_nid2str(conn->gnc_peer->gnp_nid));
4208 write_lock(&kgnilnd_data.kgn_peer_conn_lock);
4209 conn->gnc_close_recvd = GNILND_CLOSE_RX;
4210 conn->gnc_peer_error = msg->gnm_u.completion.gncm_retval;
4211 /* double check state with lock held */
4212 if (conn->gnc_state == GNILND_CONN_ESTABLISHED) {
4213 /* only error if we are not already closing */
4214 if (conn->gnc_peer_error == -ETIMEDOUT) {
4215 unsigned long now = jiffies;
4216 CNETERR("peer 0x%p->%s closed connection 0x%p due to timeout. "
4218 "RX %d @ %lus/%lus; TX %d @ %lus/%lus; "
4219 "NOOP %lus/%lus/%lus; sched %lus/%lus/%lus ago\n",
4220 conn->gnc_peer, libcfs_nid2str(conn->gnc_peer->gnp_nid),
4222 cfs_duration_sec(now - timestamp),
4223 cfs_duration_sec(now - conn->gnc_last_rx_cq),
4224 atomic_read(&conn->gnc_tx_seq),
4225 cfs_duration_sec(now - conn->gnc_last_tx),
4226 cfs_duration_sec(now - conn->gnc_last_tx_cq),
4227 cfs_duration_sec(now - conn->gnc_last_noop_want),
4228 cfs_duration_sec(now - conn->gnc_last_noop_sent),
4229 cfs_duration_sec(now - conn->gnc_last_noop_cq),
4230 cfs_duration_sec(now - conn->gnc_last_sched_ask),
4231 cfs_duration_sec(now - conn->gnc_last_sched_do),
4232 cfs_duration_sec(now - conn->gnc_device->gnd_sched_alive));
4234 kgnilnd_close_conn_locked(conn, -ECONNRESET);
4236 write_unlock(&kgnilnd_data.kgn_peer_conn_lock);
4240 if (conn->gnc_close_recvd) {
4241 GNIDBG_MSG(D_NETERROR, msg, "Unexpected message %s(%d/%d) after CLOSE from %s",
4242 kgnilnd_msgtype2str(msg->gnm_type),
4243 msg->gnm_type, conn->gnc_close_recvd,
4244 libcfs_nid2str(conn->gnc_peer->gnp_nid));
4249 if (conn->gnc_state != GNILND_CONN_ESTABLISHED) {
4250 /* XXX Nic: log message received on bad connection state */
4254 switch (msg->gnm_type) {
4255 case GNILND_MSG_NOOP:
4256 /* Nothing to do; just a keepalive */
4259 case GNILND_MSG_IMMEDIATE:
4260 /* only get SMSG payload for IMMEDIATE */
4261 atomic64_add(msg->gnm_payload_len, &conn->gnc_device->gnd_short_rxbytes);
4262 rc = lnet_parse(net->gnn_ni, &msg->gnm_u.immediate.gnim_hdr,
4263 msg->gnm_srcnid, rx, 0);
4266 case GNILND_MSG_GET_REQ_REV:
4267 case GNILND_MSG_PUT_REQ:
4268 rc = lnet_parse(net->gnn_ni, &msg->gnm_u.putreq.gnprm_hdr,
4269 msg->gnm_srcnid, rx, 1);
4272 case GNILND_MSG_GET_NAK_REV:
4273 tx = kgnilnd_match_reply_either(conn, GNILND_MSG_GET_REQ_REV, GNILND_MSG_GET_ACK_REV,
4274 msg->gnm_u.completion.gncm_cookie);
4278 kgnilnd_complete_tx(tx, msg->gnm_u.completion.gncm_retval);
4280 case GNILND_MSG_PUT_NAK:
4281 tx = kgnilnd_match_reply_either(conn, GNILND_MSG_PUT_REQ, GNILND_MSG_PUT_ACK,
4282 msg->gnm_u.completion.gncm_cookie);
4286 kgnilnd_complete_tx(tx, msg->gnm_u.completion.gncm_retval);
4288 case GNILND_MSG_PUT_ACK:
4289 tx = kgnilnd_match_reply(conn, GNILND_MSG_PUT_REQ,
4290 msg->gnm_u.putack.gnpam_src_cookie);
4294 /* store putack data for later: deferred rdma or re-try */
4295 tx->tx_putinfo = msg->gnm_u.putack;
4298 spin_lock(&tx->tx_conn->gnc_list_lock);
4300 GNITX_ASSERTF(tx, tx->tx_state & GNILND_TX_WAITING_REPLY,
4301 "not waiting for reply", NULL);
4303 tx->tx_state &= ~GNILND_TX_WAITING_REPLY;
4305 if (likely(!(tx->tx_state & GNILND_TX_WAITING_COMPLETION))) {
4306 kgnilnd_tx_del_state_locked(tx, NULL, conn, GNILND_TX_ALLOCD);
4307 /* sample under lock as follow on steps require gnc_list_lock
4308 * - or call kgnilnd_tx_done which requires no locks held over
4309 * call to lnet_finalize */
4312 /* cannot launch rdma if still waiting for fma-msg completion */
4313 CDEBUG(D_NET, "tx 0x%p type 0x%02x will need to "
4314 "wait for SMSG completion\n", tx, tx->tx_msg.gnm_type);
4315 tx->tx_state |= GNILND_TX_PENDING_RDMA;
4317 spin_unlock(&tx->tx_conn->gnc_list_lock);
4320 rc = kgnilnd_send_mapped_tx(tx, 0);
4322 kgnilnd_tx_done(tx, rc);
4325 case GNILND_MSG_GET_ACK_REV:
4326 tx = kgnilnd_match_reply(conn, GNILND_MSG_GET_REQ_REV,
4327 msg->gnm_u.putack.gnpam_src_cookie);
4331 /* store putack data for later: deferred rdma or re-try */
4332 tx->tx_putinfo = msg->gnm_u.putack;
4334 spin_lock(&tx->tx_conn->gnc_list_lock);
4336 GNITX_ASSERTF(tx, tx->tx_state & GNILND_TX_WAITING_REPLY,
4337 "not waiting for reply", NULL);
4339 tx->tx_state &= ~GNILND_TX_WAITING_REPLY;
4341 if (likely(!(tx->tx_state & GNILND_TX_WAITING_COMPLETION))) {
4342 kgnilnd_tx_del_state_locked(tx, NULL, conn, GNILND_TX_ALLOCD);
4343 /* sample under lock as follow on steps require gnc_list_lock
4344 * - or call kgnilnd_tx_done which requires no locks held over
4345 * call to lnet_finalize */
4348 /* cannot launch rdma if still waiting for fma-msg completion */
4349 CDEBUG(D_NET, "tx 0x%p type 0x%02x will need to "
4350 "wait for SMSG completion\n", tx, tx->tx_msg.gnm_type);
4351 tx->tx_state |= GNILND_TX_PENDING_RDMA;
4353 spin_unlock(&tx->tx_conn->gnc_list_lock);
4356 rc = kgnilnd_send_mapped_tx(tx, 0);
4358 kgnilnd_tx_done(tx, rc);
4361 case GNILND_MSG_PUT_DONE:
4362 tx = kgnilnd_match_reply(conn, GNILND_MSG_PUT_ACK,
4363 msg->gnm_u.completion.gncm_cookie);
4367 GNITX_ASSERTF(tx, tx->tx_buftype == GNILND_BUF_PHYS_MAPPED,
4368 "bad tx buftype %d", tx->tx_buftype);
4370 kgnilnd_finalize_rx_done(tx, msg);
4372 case GNILND_MSG_PUT_REQ_REV:
4373 case GNILND_MSG_GET_REQ:
4374 rc = lnet_parse(net->gnn_ni, &msg->gnm_u.get.gngm_hdr,
4375 msg->gnm_srcnid, rx, 1);
4379 case GNILND_MSG_GET_NAK:
4380 tx = kgnilnd_match_reply(conn, GNILND_MSG_GET_REQ,
4381 msg->gnm_u.completion.gncm_cookie);
4385 GNITX_ASSERTF(tx, tx->tx_buftype == GNILND_BUF_PHYS_MAPPED,
4386 "bad tx buftype %d", tx->tx_buftype);
4388 kgnilnd_complete_tx(tx, msg->gnm_u.completion.gncm_retval);
4391 case GNILND_MSG_GET_DONE:
4392 tx = kgnilnd_match_reply(conn, GNILND_MSG_GET_REQ,
4393 msg->gnm_u.completion.gncm_cookie);
4397 GNITX_ASSERTF(tx, tx->tx_buftype == GNILND_BUF_PHYS_MAPPED,
4398 "bad tx buftype %d", tx->tx_buftype);
4400 lnet_set_reply_msg_len(net->gnn_ni, tx->tx_lntmsg[1],
4401 msg->gnm_u.completion.gncm_retval);
4403 kgnilnd_finalize_rx_done(tx, msg);
4405 case GNILND_MSG_GET_DONE_REV:
4406 tx = kgnilnd_match_reply(conn, GNILND_MSG_GET_ACK_REV,
4407 msg->gnm_u.completion.gncm_cookie);
4411 GNITX_ASSERTF(tx, tx->tx_buftype == GNILND_BUF_PHYS_MAPPED,
4412 "bad tx buftype %d", tx->tx_buftype);
4414 kgnilnd_finalize_rx_done(tx, msg);
4417 case GNILND_MSG_PUT_DONE_REV:
4418 tx = kgnilnd_match_reply(conn, GNILND_MSG_PUT_REQ_REV,
4419 msg->gnm_u.completion.gncm_cookie);
4424 GNITX_ASSERTF(tx, tx->tx_buftype == GNILND_BUF_PHYS_MAPPED,
4425 "bad tx buftype %d", tx->tx_buftype);
4427 kgnilnd_finalize_rx_done(tx, msg);
4429 case GNILND_MSG_PUT_NAK_REV:
4430 tx = kgnilnd_match_reply(conn, GNILND_MSG_PUT_REQ_REV,
4431 msg->gnm_u.completion.gncm_cookie);
4436 GNITX_ASSERTF(tx, tx->tx_buftype == GNILND_BUF_PHYS_MAPPED,
4437 "bad tx buftype %d", tx->tx_buftype);
4439 kgnilnd_complete_tx(tx, msg->gnm_u.completion.gncm_retval);
4444 if (rc < 0) /* protocol/comms error */
4445 kgnilnd_close_conn(conn, rc);
4447 if (repost && rx != NULL) {
4448 kgnilnd_consume_rx(rx);
4451 /* we got an event so assume more there and call for reschedule */
4453 kgnilnd_schedule_conn(conn);
4457 /* Do the failure injections that we need to affect conn processing in the following function.
4458 * When writing tests that use this function make sure to use a fail_loc with a fail mask.
4459 * If you dont you can cause the scheduler threads to spin on the conn without it leaving
4462 * intent is used to signal the calling function whether or not the conn needs to be rescheduled.
4466 kgnilnd_check_conn_fail_loc(kgn_device_t *dev, kgn_conn_t *conn, int *intent)
4470 /* short circuit out when not set */
4471 if (likely(!cfs_fail_loc)) {
4475 /* failure injection to test for stack reset clean ups */
4476 if (CFS_FAIL_CHECK(CFS_FAIL_GNI_DROP_CLOSING)) {
4477 /* we can't rely on busy loops being nice enough to get the
4478 * stack reset triggered - it'd just spin on this conn */
4479 CFS_RACE(CFS_FAIL_GNI_DROP_CLOSING);
4482 GOTO(did_fail_loc, rc);
4485 if (conn->gnc_state == GNILND_CONN_DESTROY_EP) {
4486 /* DESTROY_EP set in kgnilnd_conn_decref on gnc_refcount = 1 */
4488 if (CFS_FAIL_CHECK(CFS_FAIL_GNI_DROP_DESTROY_EP)) {
4489 CFS_RACE(CFS_FAIL_GNI_DROP_DESTROY_EP);
4492 GOTO(did_fail_loc, rc);
4496 /* CFS_FAIL_GNI_FINISH_PURG2 is used to stop a connection from fully closing. This scheduler
4497 * will spin on the CFS_FAIL_TIMEOUT until the fail_loc is cleared at which time the connection
4498 * will be closed by kgnilnd_complete_closed_conn.
4500 if ((conn->gnc_state == GNILND_CONN_CLOSED) && CFS_FAIL_CHECK(CFS_FAIL_GNI_FINISH_PURG2)) {
4501 while (CFS_FAIL_TIMEOUT(CFS_FAIL_GNI_FINISH_PURG2, 1)) {};
4504 GOTO(did_fail_loc, rc);
4507 /* this one is a bit gross - we can't hold the mutex from process_conns
4508 * across a CFS_RACE here - it'd block the conn threads from doing an ep_bind
4509 * and moving onto finish_connect
4510 * so, we'll just set the rc - kgnilnd_process_conns will clear
4511 * found_work on a fail_loc, getting the scheduler thread to call schedule()
4512 * and effectively getting this thread to sleep */
4513 if ((conn->gnc_state == GNILND_CONN_CLOSED) && CFS_FAIL_CHECK(CFS_FAIL_GNI_FINISH_PURG)) {
4516 GOTO(did_fail_loc, rc);
4524 kgnilnd_send_conn_close(kgn_conn_t *conn)
4528 /* we are closing the conn - we will try to send the CLOSE msg
4529 * but will not wait for anything else to flush */
4531 /* send the close if not already done so or received one */
4532 if (!conn->gnc_close_sent && !conn->gnc_close_recvd) {
4533 /* set close_sent regardless of the success of the
4534 * CLOSE message. We are going to try once and then
4535 * kick him out of the sandbox */
4536 conn->gnc_close_sent = 1;
4539 /* EP might be null already if remote side initiated a new connection.
4540 * kgnilnd_finish_connect destroys existing ep_handles before wiring up the new connection,
4541 * so this check is here to make sure we dont attempt to send with a null ep_handle.
4543 if (conn->gnc_ephandle != NULL) {
4546 tx = kgnilnd_new_tx_msg(GNILND_MSG_CLOSE, conn->gnc_peer->gnp_net->gnn_ni->ni_nid);
4548 tx->tx_msg.gnm_u.completion.gncm_retval = conn->gnc_error;
4549 tx->tx_state = GNILND_TX_WAITING_COMPLETION;
4550 tx->tx_qtime = jiffies;
4552 if (tx->tx_id.txe_idx == 0) {
4553 rc = kgnilnd_set_tx_id(tx, conn);
4555 kgnilnd_tx_done(tx, rc);
4559 CDEBUG(D_NETTRACE, "sending close with errno %d\n",
4562 if (CFS_FAIL_CHECK(CFS_FAIL_GNI_CLOSE_SEND)) {
4563 kgnilnd_tx_done(tx, -EAGAIN);
4565 rc = kgnilnd_sendmsg(tx, NULL, 0, NULL, GNILND_TX_FMAQ);
4567 /* It wasnt sent and we dont care. */
4568 kgnilnd_tx_done(tx, rc);
4576 /* When changing gnc_state we need to take the kgn_peer_conn_lock */
4577 write_lock(&kgnilnd_data.kgn_peer_conn_lock);
4578 conn->gnc_state = GNILND_CONN_CLOSED;
4579 write_unlock(&kgnilnd_data.kgn_peer_conn_lock);
4580 /* mark this conn as CLOSED now that we processed it
4581 * do after TX, so we can use CLOSING in asserts */
4585 if (CFS_FAIL_CHECK(CFS_FAIL_GNI_RX_CLOSE_CLOSED)) {
4586 /* simulate a RX CLOSE after the timeout but before
4587 * the scheduler thread gets it */
4588 conn->gnc_close_recvd = GNILND_CLOSE_INJECT2;
4589 conn->gnc_peer_error = -ETIMEDOUT;
4591 /* schedule to allow potential CLOSE and get the complete phase run */
4592 kgnilnd_schedule_conn(conn);
4596 kgnilnd_process_mapped_tx(kgn_device_t *dev)
4601 int fast_remaps = GNILND_FAST_MAPPING_TRY;
4602 int log_retrans, log_retrans_level;
4603 static int last_map_version;
4606 spin_lock(&dev->gnd_lock);
4607 if (list_empty(&dev->gnd_map_tx)) {
4608 /* if the list is empty make sure we dont have a timer running */
4609 del_singleshot_timer_sync(&dev->gnd_map_timer);
4610 spin_unlock(&dev->gnd_lock);
4614 dev->gnd_sched_alive = jiffies;
4616 /* we'll retry as fast as possible up to 25% of the limit, then we start
4617 * backing off until our map version changes - indicating we unmapped
4619 tx = list_first_entry(&dev->gnd_map_tx, kgn_tx_t, tx_list);
4620 if (likely(dev->gnd_map_attempt == 0) ||
4621 time_after_eq(jiffies, dev->gnd_next_map) ||
4622 last_map_version != dev->gnd_map_version) {
4624 /* if this is our first attempt at mapping set last mapped to current
4625 * jiffies so we can timeout our attempt correctly.
4627 if (dev->gnd_map_attempt == 0)
4628 dev->gnd_last_map = jiffies;
4630 GNIDBG_TX(D_NET, tx, "waiting for mapping event event to retry", NULL);
4631 spin_unlock(&dev->gnd_lock);
4635 /* delete the previous timer if it exists */
4636 del_singleshot_timer_sync(&dev->gnd_map_timer);
4637 /* stash the last map version to let us know when a good one was seen */
4638 last_map_version = dev->gnd_map_version;
4640 /* we need to to take the lock and continually refresh the head of the list as
4641 * kgnilnd_complete_closed_conn might be nuking stuff and we are cycling the lock
4642 * allowing them to squeeze in */
4644 while (!list_empty(&dev->gnd_map_tx)) {
4645 /* make sure we break out early on quiesce */
4646 if (unlikely(kgnilnd_data.kgn_quiesce_trigger)) {
4647 /* always break with lock held - we unlock outside loop */
4651 tx = list_first_entry(&dev->gnd_map_tx, kgn_tx_t, tx_list);
4653 kgnilnd_tx_del_state_locked(tx, NULL, tx->tx_conn, GNILND_TX_ALLOCD);
4656 /* sample with lock held, serializing with kgnilnd_complete_closed_conn */
4657 if (tx->tx_conn->gnc_state != GNILND_CONN_ESTABLISHED) {
4658 /* if conn is dying, mark tx in tx_ref_table for
4659 * kgnilnd_complete_closed_conn to finish up */
4660 kgnilnd_tx_add_state_locked(tx, NULL, tx->tx_conn, GNILND_TX_DYING, 1);
4663 /* tx was moved to DYING, get next */
4667 spin_unlock(&dev->gnd_lock);
4668 rc = kgnilnd_send_mapped_tx(tx, 1);
4670 /* We made it! skip error handling.. */
4672 /* OK to continue on +ve errors as it won't get seen until
4673 * this function is called again - we operate on a copy of the original
4674 * list and not the live list */
4675 spin_lock(&dev->gnd_lock);
4676 /* reset map attempts back to zero we successfully
4677 * mapped so we can reset our timers */
4678 dev->gnd_map_attempt = 0;
4680 } else if (rc == -EAGAIN) {
4681 spin_lock(&dev->gnd_lock);
4682 mod_timer(&dev->gnd_map_timer, dev->gnd_next_map);
4683 spin_unlock(&dev->gnd_lock);
4684 GOTO(get_out_mapped, rc);
4685 } else if (rc != -ENOMEM) {
4686 /* carp, failure we can't handle */
4687 kgnilnd_tx_done(tx, rc);
4688 spin_lock(&dev->gnd_lock);
4689 /* reset map attempts back to zero we dont know what happened but it
4690 * wasnt a failed mapping
4692 dev->gnd_map_attempt = 0;
4696 /* time to handle the retry cases.. lock so we dont have 2 threads
4697 * mucking with gnd_map_attempt, or gnd_next_map at the same time.
4699 spin_lock(&dev->gnd_lock);
4700 dev->gnd_map_attempt++;
4701 if (dev->gnd_map_attempt < fast_remaps) {
4702 /* do nothing we just want it to go as fast as possible.
4703 * just set gnd_next_map to current jiffies so it will process
4704 * as fast as possible.
4706 dev->gnd_next_map = jiffies;
4708 /* Retry based on GNILND_MAP_RETRY_RATE */
4709 dev->gnd_next_map = jiffies + GNILND_MAP_RETRY_RATE;
4712 /* only log occasionally once we've retried fast_remaps */
4713 log_retrans = (dev->gnd_map_attempt >= fast_remaps) &&
4714 ((dev->gnd_map_attempt % fast_remaps) == 0);
4715 log_retrans_level = log_retrans ? D_NETERROR : D_NET;
4717 /* make sure we are not off in the weeds with this tx */
4718 if (time_after(jiffies, dev->gnd_last_map + GNILND_MAP_TIMEOUT)) {
4719 GNIDBG_TX(D_NETERROR, tx,
4720 "giving up on TX, too many retries", NULL);
4721 spin_unlock(&dev->gnd_lock);
4722 if (tx->tx_msg.gnm_type == GNILND_MSG_PUT_REQ ||
4723 tx->tx_msg.gnm_type == GNILND_MSG_GET_REQ_REV) {
4724 kgnilnd_nak_rdma(tx->tx_conn, tx->tx_msg.gnm_type,
4726 tx->tx_putinfo.gnpam_dst_cookie,
4727 tx->tx_msg.gnm_srcnid);
4729 kgnilnd_nak_rdma(tx->tx_conn, tx->tx_msg.gnm_type,
4731 tx->tx_getinfo.gngm_cookie,
4732 tx->tx_msg.gnm_srcnid);
4734 kgnilnd_tx_done(tx, -ENOMEM);
4735 GOTO(get_out_mapped, rc);
4737 GNIDBG_TX(log_retrans_level, tx,
4738 "transient map failure #%d %d pages/%d bytes phys %u@%u "
4739 "nq_map %d mdd# %d/%d GART %ld",
4740 dev->gnd_map_attempt, tx->tx_phys_npages, tx->tx_nob,
4741 dev->gnd_map_nphys, dev->gnd_map_physnop * PAGE_SIZE,
4742 atomic_read(&dev->gnd_nq_map),
4743 atomic_read(&dev->gnd_n_mdd), atomic_read(&dev->gnd_n_mdd_held),
4744 atomic64_read(&dev->gnd_nbytes_map));
4747 /* we need to stop processing the rest of the list, so add it back in */
4748 /* set timer to wake device when we need to schedule this tx */
4749 mod_timer(&dev->gnd_map_timer, dev->gnd_next_map);
4750 kgnilnd_tx_add_state_locked(tx, NULL, tx->tx_conn, GNILND_TX_MAPQ, 0);
4751 spin_unlock(&dev->gnd_lock);
4752 GOTO(get_out_mapped, rc);
4754 spin_unlock(&dev->gnd_lock);
4760 kgnilnd_process_conns(kgn_device_t *dev, unsigned long deadline)
4765 int error_inject = 0;
4769 spin_lock(&dev->gnd_lock);
4770 while (!list_empty(&dev->gnd_ready_conns) && time_before(jiffies, deadline)) {
4771 dev->gnd_sched_alive = jiffies;
4775 if (unlikely(kgnilnd_data.kgn_quiesce_trigger)) {
4776 /* break with lock held */
4780 conn = list_first_entry(&dev->gnd_ready_conns, kgn_conn_t, gnc_schedlist);
4781 list_del_init(&conn->gnc_schedlist);
4783 * Since we are processing conn now, we don't need to be on the delaylist any longer.
4786 if (!list_empty(&conn->gnc_delaylist))
4787 list_del_init(&conn->gnc_delaylist);
4788 spin_unlock(&dev->gnd_lock);
4790 conn_sched = xchg(&conn->gnc_scheduled, GNILND_CONN_PROCESS);
4792 LASSERTF(conn_sched != GNILND_CONN_IDLE &&
4793 conn_sched != GNILND_CONN_PROCESS,
4794 "conn %p on ready list but in bad state: %d\n",
4797 CDEBUG(D_INFO, "conn %p@%s for processing\n",
4798 conn, kgnilnd_conn_state2str(conn));
4801 set_mb(conn->gnc_last_sched_do, jiffies);
4803 if (kgnilnd_check_conn_fail_loc(dev, conn, &intent)) {
4805 /* based on intent see if we should run again. */
4806 rc = kgnilnd_schedule_process_conn(conn, intent);
4808 /* drop ref from gnd_ready_conns */
4809 if (atomic_read(&conn->gnc_refcount) == 1 && rc != 1) {
4810 down_write(&dev->gnd_conn_sem);
4811 kgnilnd_conn_decref(conn);
4812 up_write(&dev->gnd_conn_sem);
4813 } else if (rc != 1) {
4814 kgnilnd_conn_decref(conn);
4816 /* clear this so that scheduler thread doesn't spin */
4818 /* break with lock held... */
4819 spin_lock(&dev->gnd_lock);
4823 if (unlikely(conn->gnc_state == GNILND_CONN_CLOSED)) {
4824 down_write(&dev->gnd_conn_sem);
4826 /* CONN_CLOSED set in procces_fmaq when CLOSE is sent */
4827 if (unlikely(atomic_read(&conn->gnc_tx_in_use))) {
4828 /* If there are tx's currently in use in another
4829 * thread we dont want to complete the close
4830 * yet. Cycle this conn back through
4832 kgnilnd_schedule_conn(conn);
4834 kgnilnd_complete_closed_conn(conn);
4836 up_write(&dev->gnd_conn_sem);
4837 } else if (unlikely(conn->gnc_state == GNILND_CONN_DESTROY_EP)) {
4838 /* DESTROY_EP set in kgnilnd_conn_decref on gnc_refcount = 1 */
4839 /* serialize SMSG CQs with ep_bind and smsg_release */
4840 down_write(&dev->gnd_conn_sem);
4841 kgnilnd_destroy_conn_ep(conn);
4842 up_write(&dev->gnd_conn_sem);
4843 } else if (unlikely(conn->gnc_state == GNILND_CONN_CLOSING)) {
4844 /* if we need to do some CLOSE sending, etc done here do it */
4845 down_write(&dev->gnd_conn_sem);
4846 kgnilnd_send_conn_close(conn);
4847 kgnilnd_check_fma_rx(conn);
4848 up_write(&dev->gnd_conn_sem);
4849 } else if (atomic_read(&conn->gnc_peer->gnp_dirty_eps) == 0) {
4850 /* start moving traffic if the old conns are cleared out */
4851 down_read(&dev->gnd_conn_sem);
4852 kgnilnd_check_fma_rx(conn);
4853 kgnilnd_process_fmaq(conn);
4854 up_read(&dev->gnd_conn_sem);
4857 rc = kgnilnd_schedule_process_conn(conn, 0);
4859 /* drop ref from gnd_ready_conns */
4860 if (atomic_read(&conn->gnc_refcount) == 1 && rc != 1) {
4861 down_write(&dev->gnd_conn_sem);
4862 kgnilnd_conn_decref(conn);
4863 up_write(&dev->gnd_conn_sem);
4864 } else if (rc != 1) {
4865 kgnilnd_conn_decref(conn);
4868 /* check list again with lock held */
4869 spin_lock(&dev->gnd_lock);
4872 /* If we are short circuiting due to timing we want to be scheduled
4873 * as soon as possible.
4875 if (!list_empty(&dev->gnd_ready_conns) && !error_inject)
4878 spin_unlock(&dev->gnd_lock);
4884 kgnilnd_scheduler(void *arg)
4886 int threadno = (long)arg;
4889 unsigned long deadline = 0;
4892 dev = &kgnilnd_data.kgn_devices[(threadno + 1) % kgnilnd_data.kgn_ndevs];
4894 /* all gnilnd threads need to run fairly urgently */
4895 set_user_nice(current, *kgnilnd_tunables.kgn_sched_nice);
4896 deadline = jiffies + cfs_time_seconds(*kgnilnd_tunables.kgn_sched_timeout);
4897 while (!kgnilnd_data.kgn_shutdown) {
4899 /* Safe: kgn_shutdown only set when quiescent */
4901 /* to quiesce or to not quiesce, that is the question */
4903 if (unlikely(kgnilnd_data.kgn_quiesce_trigger)) {
4904 KGNILND_SPIN_QUIESCE;
4907 /* tracking for when thread goes AWOL */
4908 dev->gnd_sched_alive = jiffies;
4910 CFS_FAIL_TIMEOUT(CFS_FAIL_GNI_SCHED_DEADLINE,
4911 (*kgnilnd_tunables.kgn_sched_timeout + 1));
4912 /* let folks know we are up and kicking
4913 * - they can use this for latency savings, etc
4914 * - only change if IRQ, if IDLE leave alone as that
4915 * schedule_device calls to put us back to IRQ */
4916 (void)cmpxchg(&dev->gnd_ready, GNILND_DEV_IRQ, GNILND_DEV_LOOP);
4918 down_read(&dev->gnd_conn_sem);
4919 /* always check these - they are super low cost */
4920 found_work += kgnilnd_check_fma_send_cq(dev);
4921 found_work += kgnilnd_check_fma_rcv_cq(dev);
4923 /* rdma CQ doesn't care about eps */
4924 found_work += kgnilnd_check_rdma_cq(dev);
4926 /* move some RDMA ? */
4927 found_work += kgnilnd_process_rdmaq(dev);
4929 /* map some pending RDMA requests ? */
4930 found_work += kgnilnd_process_mapped_tx(dev);
4932 /* the EP for a conn is not destroyed until all the references
4933 * to it are gone, so these checks should be safe
4934 * even if run in parallel with the CQ checking functions
4935 * _AND_ a thread that processes the CLOSED->DONE
4939 up_read(&dev->gnd_conn_sem);
4941 /* process all conns ready now */
4942 found_work += kgnilnd_process_conns(dev, deadline);
4944 /* do an eager check to avoid the IRQ disabling in
4945 * prepare_to_wait and friends */
4948 (busy_loops++ < *kgnilnd_tunables.kgn_loops) &&
4949 time_before(jiffies, deadline)) {
4951 if ((busy_loops % 10) == 0) {
4952 /* tickle heartbeat and watchdog to ensure our
4953 * piggishness doesn't turn into heartbeat failure */
4954 touch_nmi_watchdog();
4960 /* if we got here, found_work was zero or busy_loops means we
4961 * need to take a break. We'll clear gnd_ready but we'll check
4962 * one last time if there is an IRQ that needs processing */
4964 prepare_to_wait(&dev->gnd_waitq, &wait, TASK_INTERRUPTIBLE);
4966 /* the first time this will go LOOP -> IDLE and let us do one final check
4967 * during which we might get an IRQ, then IDLE->IDLE and schedule()
4968 * - this might allow other threads to block us for a bit if they
4969 * try to get the mutex, but that is good as we'd need to wake
4970 * up soon to handle the CQ or other processing anyways */
4972 found_work += xchg(&dev->gnd_ready, GNILND_DEV_IDLE);
4974 if ((busy_loops >= *kgnilnd_tunables.kgn_loops) ||
4975 time_after_eq(jiffies, deadline)) {
4977 "yeilding: found_work %d busy_loops %d\n",
4978 found_work, busy_loops);
4980 /* use yield if we are bailing due to busy_loops
4981 * - this will ensure we wake up soonish. This closes
4982 * a race with kgnilnd_device_callback - where it'd
4983 * not call wake_up() because gnd_ready == 1, but then
4984 * we come down and schedule() because of busy_loops.
4985 * We'd not be woken up until something poked our waitq
4986 * again. yield() ensures we wake up without another
4987 * waitq poke in that case */
4988 atomic_inc(&dev->gnd_n_yield);
4989 kgnilnd_data.kgn_last_condresched = jiffies;
4991 CDEBUG(D_INFO, "awake after yeild\n");
4992 deadline = jiffies + cfs_time_seconds(*kgnilnd_tunables.kgn_sched_timeout);
4993 } else if (found_work == GNILND_DEV_IDLE) {
4994 /* busy_loops is low and there is nothing to do,
4995 * go to sleep and wait for a waitq poke */
4997 "scheduling: found_work %d busy_loops %d\n",
4998 found_work, busy_loops);
4999 atomic_inc(&dev->gnd_n_schedule);
5000 kgnilnd_data.kgn_last_scheduled = jiffies;
5002 CDEBUG(D_INFO, "awake after schedule\n");
5003 deadline = jiffies + cfs_time_seconds(*kgnilnd_tunables.kgn_sched_timeout);
5005 finish_wait(&dev->gnd_waitq, &wait);
5008 kgnilnd_thread_fini();