Whamcloud - gitweb
LU-482 tests: cleanup clients/OSTs after MDS error
[fs/lustre-release.git] / lnet / lnet / lib-move.c
1 /*
2  * GPL HEADER START
3  *
4  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
5  *
6  * This program is free software; you can redistribute it and/or modify
7  * it under the terms of the GNU General Public License version 2 only,
8  * as published by the Free Software Foundation.
9  *
10  * This program is distributed in the hope that it will be useful, but
11  * WITHOUT ANY WARRANTY; without even the implied warranty of
12  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
13  * General Public License version 2 for more details (a copy is included
14  * in the LICENSE file that accompanied this code).
15  *
16  * You should have received a copy of the GNU General Public License
17  * version 2 along with this program; If not, see
18  * http://www.sun.com/software/products/lustre/docs/GPLv2.pdf
19  *
20  * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara,
21  * CA 95054 USA or visit www.sun.com if you need additional information or
22  * have any questions.
23  *
24  * GPL HEADER END
25  */
26 /*
27  * Copyright (c) 2003, 2010, Oracle and/or its affiliates. All rights reserved.
28  * Use is subject to license terms.
29  */
30 /*
31  * This file is part of Lustre, http://www.lustre.org/
32  * Lustre is a trademark of Sun Microsystems, Inc.
33  *
34  * lnet/lnet/lib-move.c
35  *
36  * Data movement routines
37  */
38
39 #define DEBUG_SUBSYSTEM S_LNET
40
41 #include <lnet/lib-lnet.h>
42
43 static int local_nid_dist_zero = 1;
44 CFS_MODULE_PARM(local_nid_dist_zero, "i", int, 0444,
45                 "Reserved");
46
47 int
48 lnet_fail_nid (lnet_nid_t nid, unsigned int threshold)
49 {
50         lnet_test_peer_t  *tp;
51         cfs_list_t        *el;
52         cfs_list_t        *next;
53         cfs_list_t         cull;
54
55         LASSERT (the_lnet.ln_init);
56
57         if (threshold != 0) {
58                 /* Adding a new entry */
59                 LIBCFS_ALLOC(tp, sizeof(*tp));
60                 if (tp == NULL)
61                         return -ENOMEM;
62
63                 tp->tp_nid = nid;
64                 tp->tp_threshold = threshold;
65
66                 LNET_LOCK();
67                 cfs_list_add_tail (&tp->tp_list, &the_lnet.ln_test_peers);
68                 LNET_UNLOCK();
69                 return 0;
70         }
71
72         /* removing entries */
73         CFS_INIT_LIST_HEAD (&cull);
74
75         LNET_LOCK();
76
77         cfs_list_for_each_safe (el, next, &the_lnet.ln_test_peers) {
78                 tp = cfs_list_entry (el, lnet_test_peer_t, tp_list);
79
80                 if (tp->tp_threshold == 0 ||    /* needs culling anyway */
81                     nid == LNET_NID_ANY ||       /* removing all entries */
82                     tp->tp_nid == nid)          /* matched this one */
83                 {
84                         cfs_list_del (&tp->tp_list);
85                         cfs_list_add (&tp->tp_list, &cull);
86                 }
87         }
88
89         LNET_UNLOCK();
90
91         while (!cfs_list_empty (&cull)) {
92                 tp = cfs_list_entry (cull.next, lnet_test_peer_t, tp_list);
93
94                 cfs_list_del (&tp->tp_list);
95                 LIBCFS_FREE(tp, sizeof (*tp));
96         }
97         return 0;
98 }
99
100 static int
101 fail_peer (lnet_nid_t nid, int outgoing)
102 {
103         lnet_test_peer_t *tp;
104         cfs_list_t       *el;
105         cfs_list_t       *next;
106         cfs_list_t        cull;
107         int               fail = 0;
108
109         CFS_INIT_LIST_HEAD (&cull);
110
111         LNET_LOCK();
112
113         cfs_list_for_each_safe (el, next, &the_lnet.ln_test_peers) {
114                 tp = cfs_list_entry (el, lnet_test_peer_t, tp_list);
115
116                 if (tp->tp_threshold == 0) {
117                         /* zombie entry */
118                         if (outgoing) {
119                                 /* only cull zombies on outgoing tests,
120                                  * since we may be at interrupt priority on
121                                  * incoming messages. */
122                                 cfs_list_del (&tp->tp_list);
123                                 cfs_list_add (&tp->tp_list, &cull);
124                         }
125                         continue;
126                 }
127
128                 if (tp->tp_nid == LNET_NID_ANY || /* fail every peer */
129                     nid == tp->tp_nid) {        /* fail this peer */
130                         fail = 1;
131
132                         if (tp->tp_threshold != LNET_MD_THRESH_INF) {
133                                 tp->tp_threshold--;
134                                 if (outgoing &&
135                                     tp->tp_threshold == 0) {
136                                         /* see above */
137                                         cfs_list_del (&tp->tp_list);
138                                         cfs_list_add (&tp->tp_list, &cull);
139                                 }
140                         }
141                         break;
142                 }
143         }
144
145         LNET_UNLOCK ();
146
147         while (!cfs_list_empty (&cull)) {
148                 tp = cfs_list_entry (cull.next, lnet_test_peer_t, tp_list);
149                 cfs_list_del (&tp->tp_list);
150
151                 LIBCFS_FREE(tp, sizeof (*tp));
152         }
153
154         return (fail);
155 }
156
157 unsigned int
158 lnet_iov_nob (unsigned int niov, struct iovec *iov)
159 {
160         unsigned int nob = 0;
161
162         while (niov-- > 0)
163                 nob += (iov++)->iov_len;
164
165         return (nob);
166 }
167
168 void
169 lnet_copy_iov2iov (unsigned int ndiov, struct iovec *diov, unsigned int doffset,
170                    unsigned int nsiov, struct iovec *siov, unsigned int soffset,
171                    unsigned int nob)
172 {
173         /* NB diov, siov are READ-ONLY */
174         unsigned int  this_nob;
175
176         if (nob == 0)
177                 return;
178
179         /* skip complete frags before 'doffset' */
180         LASSERT (ndiov > 0);
181         while (doffset >= diov->iov_len) {
182                 doffset -= diov->iov_len;
183                 diov++;
184                 ndiov--;
185                 LASSERT (ndiov > 0);
186         }
187
188         /* skip complete frags before 'soffset' */
189         LASSERT (nsiov > 0);
190         while (soffset >= siov->iov_len) {
191                 soffset -= siov->iov_len;
192                 siov++;
193                 nsiov--;
194                 LASSERT (nsiov > 0);
195         }
196
197         do {
198                 LASSERT (ndiov > 0);
199                 LASSERT (nsiov > 0);
200                 this_nob = MIN(diov->iov_len - doffset,
201                                siov->iov_len - soffset);
202                 this_nob = MIN(this_nob, nob);
203
204                 memcpy ((char *)diov->iov_base + doffset,
205                         (char *)siov->iov_base + soffset, this_nob);
206                 nob -= this_nob;
207
208                 if (diov->iov_len > doffset + this_nob) {
209                         doffset += this_nob;
210                 } else {
211                         diov++;
212                         ndiov--;
213                         doffset = 0;
214                 }
215
216                 if (siov->iov_len > soffset + this_nob) {
217                         soffset += this_nob;
218                 } else {
219                         siov++;
220                         nsiov--;
221                         soffset = 0;
222                 }
223         } while (nob > 0);
224 }
225
226 int
227 lnet_extract_iov (int dst_niov, struct iovec *dst,
228                   int src_niov, struct iovec *src,
229                   unsigned int offset, unsigned int len)
230 {
231         /* Initialise 'dst' to the subset of 'src' starting at 'offset',
232          * for exactly 'len' bytes, and return the number of entries.
233          * NB not destructive to 'src' */
234         unsigned int    frag_len;
235         unsigned int    niov;
236
237         if (len == 0)                           /* no data => */
238                 return (0);                     /* no frags */
239
240         LASSERT (src_niov > 0);
241         while (offset >= src->iov_len) {      /* skip initial frags */
242                 offset -= src->iov_len;
243                 src_niov--;
244                 src++;
245                 LASSERT (src_niov > 0);
246         }
247
248         niov = 1;
249         for (;;) {
250                 LASSERT (src_niov > 0);
251                 LASSERT ((int)niov <= dst_niov);
252
253                 frag_len = src->iov_len - offset;
254                 dst->iov_base = ((char *)src->iov_base) + offset;
255
256                 if (len <= frag_len) {
257                         dst->iov_len = len;
258                         return (niov);
259                 }
260
261                 dst->iov_len = frag_len;
262
263                 len -= frag_len;
264                 dst++;
265                 src++;
266                 niov++;
267                 src_niov--;
268                 offset = 0;
269         }
270 }
271
272 #ifndef __KERNEL__
273 unsigned int
274 lnet_kiov_nob (unsigned int niov, lnet_kiov_t *kiov)
275 {
276         LASSERT (0);
277         return (0);
278 }
279
280 void
281 lnet_copy_kiov2kiov (unsigned int ndkiov, lnet_kiov_t *dkiov, unsigned int doffset,
282                      unsigned int nskiov, lnet_kiov_t *skiov, unsigned int soffset,
283                      unsigned int nob)
284 {
285         LASSERT (0);
286 }
287
288 void
289 lnet_copy_kiov2iov (unsigned int niov, struct iovec *iov, unsigned int iovoffset,
290                     unsigned int nkiov, lnet_kiov_t *kiov, unsigned int kiovoffset,
291                     unsigned int nob)
292 {
293         LASSERT (0);
294 }
295
296 void
297 lnet_copy_iov2kiov (unsigned int nkiov, lnet_kiov_t *kiov, unsigned int kiovoffset,
298                     unsigned int niov, struct iovec *iov, unsigned int iovoffset,
299                     unsigned int nob)
300 {
301         LASSERT (0);
302 }
303
304 int
305 lnet_extract_kiov (int dst_niov, lnet_kiov_t *dst,
306                    int src_niov, lnet_kiov_t *src,
307                    unsigned int offset, unsigned int len)
308 {
309         LASSERT (0);
310 }
311
312 #else /* __KERNEL__ */
313
314 unsigned int
315 lnet_kiov_nob (unsigned int niov, lnet_kiov_t *kiov)
316 {
317         unsigned int  nob = 0;
318
319         while (niov-- > 0)
320                 nob += (kiov++)->kiov_len;
321
322         return (nob);
323 }
324
325 void
326 lnet_copy_kiov2kiov (unsigned int ndiov, lnet_kiov_t *diov, unsigned int doffset,
327                      unsigned int nsiov, lnet_kiov_t *siov, unsigned int soffset,
328                      unsigned int nob)
329 {
330         /* NB diov, siov are READ-ONLY */
331         unsigned int    this_nob;
332         char           *daddr = NULL;
333         char           *saddr = NULL;
334
335         if (nob == 0)
336                 return;
337
338         LASSERT (!cfs_in_interrupt ());
339
340         LASSERT (ndiov > 0);
341         while (doffset >= diov->kiov_len) {
342                 doffset -= diov->kiov_len;
343                 diov++;
344                 ndiov--;
345                 LASSERT (ndiov > 0);
346         }
347
348         LASSERT (nsiov > 0);
349         while (soffset >= siov->kiov_len) {
350                 soffset -= siov->kiov_len;
351                 siov++;
352                 nsiov--;
353                 LASSERT (nsiov > 0);
354         }
355
356         do {
357                 LASSERT (ndiov > 0);
358                 LASSERT (nsiov > 0);
359                 this_nob = MIN(diov->kiov_len - doffset,
360                                siov->kiov_len - soffset);
361                 this_nob = MIN(this_nob, nob);
362
363                 if (daddr == NULL)
364                         daddr = ((char *)cfs_kmap(diov->kiov_page)) + 
365                                 diov->kiov_offset + doffset;
366                 if (saddr == NULL)
367                         saddr = ((char *)cfs_kmap(siov->kiov_page)) + 
368                                 siov->kiov_offset + soffset;
369
370                 /* Vanishing risk of kmap deadlock when mapping 2 pages.
371                  * However in practice at least one of the kiovs will be mapped
372                  * kernel pages and the map/unmap will be NOOPs */
373
374                 memcpy (daddr, saddr, this_nob);
375                 nob -= this_nob;
376
377                 if (diov->kiov_len > doffset + this_nob) {
378                         daddr += this_nob;
379                         doffset += this_nob;
380                 } else {
381                         cfs_kunmap(diov->kiov_page);
382                         daddr = NULL;
383                         diov++;
384                         ndiov--;
385                         doffset = 0;
386                 }
387
388                 if (siov->kiov_len > soffset + this_nob) {
389                         saddr += this_nob;
390                         soffset += this_nob;
391                 } else {
392                         cfs_kunmap(siov->kiov_page);
393                         saddr = NULL;
394                         siov++;
395                         nsiov--;
396                         soffset = 0;
397                 }
398         } while (nob > 0);
399
400         if (daddr != NULL)
401                 cfs_kunmap(diov->kiov_page);
402         if (saddr != NULL)
403                 cfs_kunmap(siov->kiov_page);
404 }
405
406 void
407 lnet_copy_kiov2iov (unsigned int niov, struct iovec *iov, unsigned int iovoffset,
408                     unsigned int nkiov, lnet_kiov_t *kiov, unsigned int kiovoffset,
409                     unsigned int nob)
410 {
411         /* NB iov, kiov are READ-ONLY */
412         unsigned int    this_nob;
413         char           *addr = NULL;
414
415         if (nob == 0)
416                 return;
417
418         LASSERT (!cfs_in_interrupt ());
419
420         LASSERT (niov > 0);
421         while (iovoffset >= iov->iov_len) {
422                 iovoffset -= iov->iov_len;
423                 iov++;
424                 niov--;
425                 LASSERT (niov > 0);
426         }
427
428         LASSERT (nkiov > 0);
429         while (kiovoffset >= kiov->kiov_len) {
430                 kiovoffset -= kiov->kiov_len;
431                 kiov++;
432                 nkiov--;
433                 LASSERT (nkiov > 0);
434         }
435
436         do {
437                 LASSERT (niov > 0);
438                 LASSERT (nkiov > 0);
439                 this_nob = MIN(iov->iov_len - iovoffset,
440                                kiov->kiov_len - kiovoffset);
441                 this_nob = MIN(this_nob, nob);
442
443                 if (addr == NULL)
444                         addr = ((char *)cfs_kmap(kiov->kiov_page)) + 
445                                 kiov->kiov_offset + kiovoffset;
446
447                 memcpy ((char *)iov->iov_base + iovoffset, addr, this_nob);
448                 nob -= this_nob;
449
450                 if (iov->iov_len > iovoffset + this_nob) {
451                         iovoffset += this_nob;
452                 } else {
453                         iov++;
454                         niov--;
455                         iovoffset = 0;
456                 }
457
458                 if (kiov->kiov_len > kiovoffset + this_nob) {
459                         addr += this_nob;
460                         kiovoffset += this_nob;
461                 } else {
462                         cfs_kunmap(kiov->kiov_page);
463                         addr = NULL;
464                         kiov++;
465                         nkiov--;
466                         kiovoffset = 0;
467                 }
468
469         } while (nob > 0);
470
471         if (addr != NULL)
472                 cfs_kunmap(kiov->kiov_page);
473 }
474
475 void
476 lnet_copy_iov2kiov (unsigned int nkiov, lnet_kiov_t *kiov, unsigned int kiovoffset,
477                     unsigned int niov, struct iovec *iov, unsigned int iovoffset,
478                     unsigned int nob)
479 {
480         /* NB kiov, iov are READ-ONLY */
481         unsigned int    this_nob;
482         char           *addr = NULL;
483
484         if (nob == 0)
485                 return;
486
487         LASSERT (!cfs_in_interrupt ());
488
489         LASSERT (nkiov > 0);
490         while (kiovoffset >= kiov->kiov_len) {
491                 kiovoffset -= kiov->kiov_len;
492                 kiov++;
493                 nkiov--;
494                 LASSERT (nkiov > 0);
495         }
496
497         LASSERT (niov > 0);
498         while (iovoffset >= iov->iov_len) {
499                 iovoffset -= iov->iov_len;
500                 iov++;
501                 niov--;
502                 LASSERT (niov > 0);
503         }
504
505         do {
506                 LASSERT (nkiov > 0);
507                 LASSERT (niov > 0);
508                 this_nob = MIN(kiov->kiov_len - kiovoffset,
509                                iov->iov_len - iovoffset);
510                 this_nob = MIN(this_nob, nob);
511
512                 if (addr == NULL)
513                         addr = ((char *)cfs_kmap(kiov->kiov_page)) + 
514                                 kiov->kiov_offset + kiovoffset;
515
516                 memcpy (addr, (char *)iov->iov_base + iovoffset, this_nob);
517                 nob -= this_nob;
518
519                 if (kiov->kiov_len > kiovoffset + this_nob) {
520                         addr += this_nob;
521                         kiovoffset += this_nob;
522                 } else {
523                         cfs_kunmap(kiov->kiov_page);
524                         addr = NULL;
525                         kiov++;
526                         nkiov--;
527                         kiovoffset = 0;
528                 }
529
530                 if (iov->iov_len > iovoffset + this_nob) {
531                         iovoffset += this_nob;
532                 } else {
533                         iov++;
534                         niov--;
535                         iovoffset = 0;
536                 }
537         } while (nob > 0);
538
539         if (addr != NULL)
540                 cfs_kunmap(kiov->kiov_page);
541 }
542
543 int
544 lnet_extract_kiov (int dst_niov, lnet_kiov_t *dst,
545                    int src_niov, lnet_kiov_t *src,
546                    unsigned int offset, unsigned int len)
547 {
548         /* Initialise 'dst' to the subset of 'src' starting at 'offset',
549          * for exactly 'len' bytes, and return the number of entries.
550          * NB not destructive to 'src' */
551         unsigned int    frag_len;
552         unsigned int    niov;
553
554         if (len == 0)                           /* no data => */
555                 return (0);                     /* no frags */
556
557         LASSERT (src_niov > 0);
558         while (offset >= src->kiov_len) {      /* skip initial frags */
559                 offset -= src->kiov_len;
560                 src_niov--;
561                 src++;
562                 LASSERT (src_niov > 0);
563         }
564
565         niov = 1;
566         for (;;) {
567                 LASSERT (src_niov > 0);
568                 LASSERT ((int)niov <= dst_niov);
569
570                 frag_len = src->kiov_len - offset;
571                 dst->kiov_page = src->kiov_page;
572                 dst->kiov_offset = src->kiov_offset + offset;
573
574                 if (len <= frag_len) {
575                         dst->kiov_len = len;
576                         LASSERT (dst->kiov_offset + dst->kiov_len <= CFS_PAGE_SIZE);
577                         return (niov);
578                 }
579
580                 dst->kiov_len = frag_len;
581                 LASSERT (dst->kiov_offset + dst->kiov_len <= CFS_PAGE_SIZE);
582
583                 len -= frag_len;
584                 dst++;
585                 src++;
586                 niov++;
587                 src_niov--;
588                 offset = 0;
589         }
590 }
591 #endif
592
593 void
594 lnet_ni_recv(lnet_ni_t *ni, void *private, lnet_msg_t *msg, int delayed,
595              unsigned int offset, unsigned int mlen, unsigned int rlen)
596 {
597         unsigned int  niov = 0;
598         struct iovec *iov = NULL;
599         lnet_kiov_t  *kiov = NULL;
600         int           rc;
601
602         LASSERT (!cfs_in_interrupt ());
603         LASSERT (mlen == 0 || msg != NULL);
604
605         if (msg != NULL) {
606                 LASSERT(msg->msg_receiving);
607                 LASSERT(!msg->msg_sending);
608                 LASSERT(rlen == msg->msg_len);
609                 LASSERT(mlen <= msg->msg_len);
610
611                 msg->msg_wanted = mlen;
612                 msg->msg_offset = offset;
613                 msg->msg_receiving = 0;
614
615                 if (mlen != 0) {
616                         niov = msg->msg_niov;
617                         iov  = msg->msg_iov;
618                         kiov = msg->msg_kiov;
619
620                         LASSERT (niov > 0);
621                         LASSERT ((iov == NULL) != (kiov == NULL));
622                 }
623         }
624
625         rc = (ni->ni_lnd->lnd_recv)(ni, private, msg, delayed,
626                                     niov, iov, kiov, offset, mlen, rlen);
627         if (rc < 0)
628                 lnet_finalize(ni, msg, rc);
629 }
630
631 int
632 lnet_compare_routes(lnet_route_t *r1, lnet_route_t *r2)
633 {
634         lnet_peer_t *p1 = r1->lr_gateway;
635         lnet_peer_t *p2 = r2->lr_gateway;
636
637         if (r1->lr_hops < r2->lr_hops)
638                 return 1;
639
640         if (r1->lr_hops > r2->lr_hops)
641                 return -1;
642
643         if (p1->lp_txqnob < p2->lp_txqnob)
644                 return 1;
645
646         if (p1->lp_txqnob > p2->lp_txqnob)
647                 return -1;
648
649         if (p1->lp_txcredits > p2->lp_txcredits)
650                 return 1;
651
652         if (p1->lp_txcredits < p2->lp_txcredits)
653                 return -1;
654
655         return 0;
656 }
657
658
659 void
660 lnet_setpayloadbuffer(lnet_msg_t *msg)
661 {
662         lnet_libmd_t *md = msg->msg_md;
663
664         LASSERT (msg->msg_len > 0);
665         LASSERT (!msg->msg_routing);
666         LASSERT (md != NULL);
667         LASSERT (msg->msg_niov == 0);
668         LASSERT (msg->msg_iov == NULL);
669         LASSERT (msg->msg_kiov == NULL);
670
671         msg->msg_niov = md->md_niov;
672         if ((md->md_options & LNET_MD_KIOV) != 0)
673                 msg->msg_kiov = md->md_iov.kiov;
674         else
675                 msg->msg_iov = md->md_iov.iov;
676 }
677
678 void
679 lnet_prep_send(lnet_msg_t *msg, int type, lnet_process_id_t target,
680                unsigned int offset, unsigned int len) 
681 {
682         msg->msg_type = type;
683         msg->msg_target = target;
684         msg->msg_len = len;
685         msg->msg_offset = offset;
686
687         if (len != 0)
688                 lnet_setpayloadbuffer(msg);
689
690         memset (&msg->msg_hdr, 0, sizeof (msg->msg_hdr));
691         msg->msg_hdr.type           = cpu_to_le32(type);
692         msg->msg_hdr.dest_nid       = cpu_to_le64(target.nid);
693         msg->msg_hdr.dest_pid       = cpu_to_le32(target.pid);
694         /* src_nid will be set later */
695         msg->msg_hdr.src_pid        = cpu_to_le32(the_lnet.ln_pid);
696         msg->msg_hdr.payload_length = cpu_to_le32(len);
697 }
698
699 void
700 lnet_ni_send(lnet_ni_t *ni, lnet_msg_t *msg)
701 {
702         void   *priv = msg->msg_private;
703         int     rc;
704
705         LASSERT (!cfs_in_interrupt ());
706         LASSERT (LNET_NETTYP(LNET_NIDNET(ni->ni_nid)) == LOLND ||
707                  (msg->msg_txcredit && msg->msg_peertxcredit));
708
709         rc = (ni->ni_lnd->lnd_send)(ni, priv, msg);
710         if (rc < 0)
711                 lnet_finalize(ni, msg, rc);
712 }
713
714 int
715 lnet_eager_recv_locked(lnet_msg_t *msg)
716 {
717         lnet_peer_t *peer;
718         lnet_ni_t   *ni;
719         int          rc = 0;
720
721         LASSERT (!msg->msg_delayed);
722         msg->msg_delayed = 1;
723
724         LASSERT (msg->msg_receiving);
725         LASSERT (!msg->msg_sending);
726
727         peer = msg->msg_rxpeer;
728         ni   = peer->lp_ni;
729
730         if (ni->ni_lnd->lnd_eager_recv != NULL) {
731                 LNET_UNLOCK();
732
733                 rc = (ni->ni_lnd->lnd_eager_recv)(ni, msg->msg_private, msg,
734                                                   &msg->msg_private);
735                 if (rc != 0) {
736                         CERROR("recv from %s / send to %s aborted: "
737                                "eager_recv failed %d\n",
738                                libcfs_nid2str(peer->lp_nid),
739                                libcfs_id2str(msg->msg_target), rc);
740                         LASSERT (rc < 0); /* required by my callers */
741                 }
742
743                 LNET_LOCK();
744         }
745
746         return rc;
747 }
748
749 /* NB: caller shall hold a ref on 'lp' as I'd drop LNET_LOCK */
750 void
751 lnet_ni_peer_alive(lnet_peer_t *lp)
752 {
753         cfs_time_t  last_alive = 0;
754         lnet_ni_t  *ni = lp->lp_ni;
755
756         LASSERT (lnet_peer_aliveness_enabled(lp));
757         LASSERT (ni->ni_lnd->lnd_query != NULL);
758         LASSERT (the_lnet.ln_routing == 1);
759
760         LNET_UNLOCK();
761         (ni->ni_lnd->lnd_query)(ni, lp->lp_nid, &last_alive);
762         LNET_LOCK();
763
764         lp->lp_last_query = cfs_time_current();
765
766         if (last_alive != 0) /* NI has updated timestamp */
767                 lp->lp_last_alive = last_alive;
768 }
769
770 /* NB: always called with LNET_LOCK held */
771 static inline int
772 lnet_peer_is_alive (lnet_peer_t *lp, cfs_time_t now)
773 {
774         int        alive;
775         cfs_time_t deadline;
776
777         LASSERT (lnet_peer_aliveness_enabled(lp));
778         LASSERT (the_lnet.ln_routing == 1);
779
780         /* Trust lnet_notify() if it has more recent aliveness news, but
781          * ignore the initial assumed death (see lnet_peers_start_down()).
782          */
783         if (!lp->lp_alive && lp->lp_alive_count > 0 &&
784             cfs_time_aftereq(lp->lp_timestamp, lp->lp_last_alive))
785                 return 0;
786
787         deadline = cfs_time_add(lp->lp_last_alive,
788                                 cfs_time_seconds(lp->lp_ni->ni_peertimeout));
789         alive = cfs_time_after(deadline, now);
790
791         /* Update obsolete lp_alive except for routers assumed to be dead
792          * initially, because router checker would update aliveness in this
793          * case, and moreover lp_last_alive at peer creation is assumed.
794          */
795         if (alive && !lp->lp_alive &&
796             !(lnet_isrouter(lp) && lp->lp_alive_count == 0))
797                 lnet_notify_locked(lp, 0, 1, lp->lp_last_alive);
798
799         return alive;
800 }
801
802
803 /* NB: returns 1 when alive, 0 when dead, negative when error;
804  *     may drop the LNET_LOCK */
805 int
806 lnet_peer_alive_locked (lnet_peer_t *lp)
807 {
808         cfs_time_t now = cfs_time_current();
809
810         /* LU-630: only router checks peer health. */
811         if (the_lnet.ln_routing == 0)
812                 return 1;
813
814         if (!lnet_peer_aliveness_enabled(lp))
815                 return -ENODEV;
816
817         if (lnet_peer_is_alive(lp, now))
818                 return 1;
819
820         /* Peer appears dead, but we should avoid frequent NI queries (at
821          * most once per lnet_queryinterval seconds). */
822         if (lp->lp_last_query != 0) {
823                 static const int lnet_queryinterval = 1;
824
825                 cfs_time_t next_query =
826                            cfs_time_add(lp->lp_last_query,
827                                         cfs_time_seconds(lnet_queryinterval));
828
829                 if (cfs_time_before(now, next_query)) {
830                         if (lp->lp_alive)
831                                 CWARN("Unexpected aliveness of peer %s: "
832                                       "%d < %d (%d/%d)\n",
833                                       libcfs_nid2str(lp->lp_nid),
834                                       (int)now, (int)next_query,
835                                       lnet_queryinterval,
836                                       lp->lp_ni->ni_peertimeout);
837                         return 0;
838                 }
839         }
840
841         /* query NI for latest aliveness news */
842         lnet_ni_peer_alive(lp);
843
844         if (lnet_peer_is_alive(lp, now))
845                 return 1;
846
847         lnet_notify_locked(lp, 0, 0, lp->lp_last_alive);
848         return 0;
849 }
850
851 int
852 lnet_post_send_locked (lnet_msg_t *msg, int do_send)
853 {
854         /* lnet_send is going to LNET_UNLOCK immediately after this, so it sets
855          * do_send FALSE and I don't do the unlock/send/lock bit.  I return
856          * EAGAIN if msg blocked, EHOSTUNREACH if msg_txpeer appears dead, and
857          * 0 if sent or OK to send */
858         lnet_peer_t *lp = msg->msg_txpeer;
859         lnet_ni_t   *ni = lp->lp_ni;
860
861         /* non-lnet_send() callers have checked before */
862         LASSERT (!do_send || msg->msg_delayed);
863         LASSERT (!msg->msg_receiving);
864
865         /* NB 'lp' is always the next hop */
866         if ((msg->msg_target.pid & LNET_PID_USERFLAG) == 0 &&
867             lnet_peer_alive_locked(lp) == 0) {
868                 the_lnet.ln_counters.drop_count++;
869                 the_lnet.ln_counters.drop_length += msg->msg_len;
870                 LNET_UNLOCK();
871
872                 CNETERR("Dropping message for %s: peer not alive\n",
873                         libcfs_id2str(msg->msg_target));
874                 if (do_send)
875                         lnet_finalize(ni, msg, -EHOSTUNREACH);
876
877                 LNET_LOCK();
878                 return EHOSTUNREACH;
879         }
880
881         if (!msg->msg_peertxcredit) {
882                 LASSERT ((lp->lp_txcredits < 0) ==
883                          !cfs_list_empty(&lp->lp_txq));
884
885                 msg->msg_peertxcredit = 1;
886                 lp->lp_txqnob += msg->msg_len + sizeof(lnet_hdr_t);
887                 lp->lp_txcredits--;
888
889                 if (lp->lp_txcredits < lp->lp_mintxcredits)
890                         lp->lp_mintxcredits = lp->lp_txcredits;
891
892                 if (lp->lp_txcredits < 0) {
893                         msg->msg_delayed = 1;
894                         cfs_list_add_tail(&msg->msg_list, &lp->lp_txq);
895                         return EAGAIN;
896                 }
897         }
898
899         if (!msg->msg_txcredit) {
900                 LASSERT ((ni->ni_txcredits < 0) ==
901                          !cfs_list_empty(&ni->ni_txq));
902
903                 msg->msg_txcredit = 1;
904                 ni->ni_txcredits--;
905
906                 if (ni->ni_txcredits < ni->ni_mintxcredits)
907                         ni->ni_mintxcredits = ni->ni_txcredits;
908
909                 if (ni->ni_txcredits < 0) {
910                         msg->msg_delayed = 1;
911                         cfs_list_add_tail(&msg->msg_list, &ni->ni_txq);
912                         return EAGAIN;
913                 }
914         }
915
916         if (do_send) {
917                 LNET_UNLOCK();
918                 lnet_ni_send(ni, msg);
919                 LNET_LOCK();
920         }
921         return 0;
922 }
923
924 #ifdef __KERNEL__
925 static void
926 lnet_commit_routedmsg (lnet_msg_t *msg)
927 {
928         /* ALWAYS called holding the LNET_LOCK */
929         LASSERT (msg->msg_routing);
930
931         the_lnet.ln_counters.msgs_alloc++;
932         if (the_lnet.ln_counters.msgs_alloc >
933             the_lnet.ln_counters.msgs_max)
934                 the_lnet.ln_counters.msgs_max =
935                         the_lnet.ln_counters.msgs_alloc;
936
937         the_lnet.ln_counters.route_count++;
938         the_lnet.ln_counters.route_length += msg->msg_len;
939
940         LASSERT (!msg->msg_onactivelist);
941         msg->msg_onactivelist = 1;
942         cfs_list_add(&msg->msg_activelist,
943                      &the_lnet.ln_msg_container.msc_active);
944 }
945
946 lnet_rtrbufpool_t *
947 lnet_msg2bufpool(lnet_msg_t *msg)
948 {
949         lnet_rtrbufpool_t *rbp = &the_lnet.ln_rtrpools[0];
950
951         LASSERT (msg->msg_len <= LNET_MTU);
952         while (msg->msg_len > (unsigned int)rbp->rbp_npages * CFS_PAGE_SIZE) {
953                 rbp++;
954                 LASSERT (rbp < &the_lnet.ln_rtrpools[LNET_NRBPOOLS]);
955         }
956
957         return rbp;
958 }
959
960 int
961 lnet_post_routed_recv_locked (lnet_msg_t *msg, int do_recv)
962 {
963         /* lnet_parse is going to LNET_UNLOCK immediately after this, so it
964          * sets do_recv FALSE and I don't do the unlock/send/lock bit.  I
965          * return EAGAIN if msg blocked and 0 if received or OK to receive */
966         lnet_peer_t         *lp = msg->msg_rxpeer;
967         lnet_rtrbufpool_t   *rbp;
968         lnet_rtrbuf_t       *rb;
969
970         LASSERT (msg->msg_iov == NULL);
971         LASSERT (msg->msg_kiov == NULL);
972         LASSERT (msg->msg_niov == 0);
973         LASSERT (msg->msg_routing);
974         LASSERT (msg->msg_receiving);
975         LASSERT (!msg->msg_sending);
976
977         /* non-lnet_parse callers only send delayed messages */
978         LASSERT (!do_recv || msg->msg_delayed);
979
980         if (!msg->msg_peerrtrcredit) {
981                 LASSERT ((lp->lp_rtrcredits < 0) ==
982                          !cfs_list_empty(&lp->lp_rtrq));
983
984                 msg->msg_peerrtrcredit = 1;
985                 lp->lp_rtrcredits--;
986                 if (lp->lp_rtrcredits < lp->lp_minrtrcredits)
987                         lp->lp_minrtrcredits = lp->lp_rtrcredits;
988
989                 if (lp->lp_rtrcredits < 0) {
990                         /* must have checked eager_recv before here */
991                         LASSERT (msg->msg_delayed);
992                         cfs_list_add_tail(&msg->msg_list, &lp->lp_rtrq);
993                         return EAGAIN;
994                 }
995         }
996
997         rbp = lnet_msg2bufpool(msg);
998
999         if (!msg->msg_rtrcredit) {
1000                 LASSERT ((rbp->rbp_credits < 0) ==
1001                          !cfs_list_empty(&rbp->rbp_msgs));
1002
1003                 msg->msg_rtrcredit = 1;
1004                 rbp->rbp_credits--;
1005                 if (rbp->rbp_credits < rbp->rbp_mincredits)
1006                         rbp->rbp_mincredits = rbp->rbp_credits;
1007
1008                 if (rbp->rbp_credits < 0) {
1009                         /* must have checked eager_recv before here */
1010                         LASSERT (msg->msg_delayed);
1011                         cfs_list_add_tail(&msg->msg_list, &rbp->rbp_msgs);
1012                         return EAGAIN;
1013                 }
1014         }
1015
1016         LASSERT (!cfs_list_empty(&rbp->rbp_bufs));
1017         rb = cfs_list_entry(rbp->rbp_bufs.next, lnet_rtrbuf_t, rb_list);
1018         cfs_list_del(&rb->rb_list);
1019
1020         msg->msg_niov = rbp->rbp_npages;
1021         msg->msg_kiov = &rb->rb_kiov[0];
1022
1023         if (do_recv) {
1024                 LNET_UNLOCK();
1025                 lnet_ni_recv(lp->lp_ni, msg->msg_private, msg, 1,
1026                              0, msg->msg_len, msg->msg_len);
1027                 LNET_LOCK();
1028         }
1029         return 0;
1030 }
1031 #endif
1032
1033 void
1034 lnet_return_credits_locked (lnet_msg_t *msg)
1035 {
1036         lnet_peer_t       *txpeer = msg->msg_txpeer;
1037         lnet_peer_t       *rxpeer = msg->msg_rxpeer;
1038         lnet_msg_t        *msg2;
1039         lnet_ni_t         *ni;
1040
1041         if (msg->msg_txcredit) {
1042                 /* give back NI txcredits */
1043                 msg->msg_txcredit = 0;
1044                 ni = txpeer->lp_ni;
1045
1046                 LASSERT((ni->ni_txcredits < 0) == !cfs_list_empty(&ni->ni_txq));
1047
1048                 ni->ni_txcredits++;
1049                 if (ni->ni_txcredits <= 0) {
1050                         msg2 = cfs_list_entry(ni->ni_txq.next, lnet_msg_t,
1051                                               msg_list);
1052                         cfs_list_del(&msg2->msg_list);
1053
1054                         LASSERT(msg2->msg_txpeer->lp_ni == ni);
1055                         LASSERT(msg2->msg_delayed);
1056
1057                         (void) lnet_post_send_locked(msg2, 1);
1058                 }
1059         }
1060
1061         if (msg->msg_peertxcredit) {
1062                 /* give back peer txcredits */
1063                 msg->msg_peertxcredit = 0;
1064
1065                 LASSERT((txpeer->lp_txcredits < 0) ==
1066                         !cfs_list_empty(&txpeer->lp_txq));
1067
1068                 txpeer->lp_txqnob -= msg->msg_len + sizeof(lnet_hdr_t);
1069                 LASSERT (txpeer->lp_txqnob >= 0);
1070
1071                 txpeer->lp_txcredits++;
1072                 if (txpeer->lp_txcredits <= 0) {
1073                         msg2 = cfs_list_entry(txpeer->lp_txq.next,
1074                                               lnet_msg_t, msg_list);
1075                         cfs_list_del(&msg2->msg_list);
1076
1077                         LASSERT (msg2->msg_txpeer == txpeer);
1078                         LASSERT (msg2->msg_delayed);
1079
1080                         (void) lnet_post_send_locked(msg2, 1);
1081                 }
1082         }
1083
1084         if (txpeer != NULL) {
1085                 msg->msg_txpeer = NULL;
1086                 lnet_peer_decref_locked(txpeer);
1087         }
1088
1089 #ifdef __KERNEL__
1090         if (msg->msg_rtrcredit) {
1091                 /* give back global router credits */
1092                 lnet_rtrbuf_t     *rb;
1093                 lnet_rtrbufpool_t *rbp;
1094
1095                 /* NB If a msg ever blocks for a buffer in rbp_msgs, it stays
1096                  * there until it gets one allocated, or aborts the wait
1097                  * itself */
1098                 LASSERT (msg->msg_kiov != NULL);
1099
1100                 rb = cfs_list_entry(msg->msg_kiov, lnet_rtrbuf_t, rb_kiov[0]);
1101                 rbp = rb->rb_pool;
1102                 LASSERT (rbp == lnet_msg2bufpool(msg));
1103
1104                 msg->msg_kiov = NULL;
1105                 msg->msg_rtrcredit = 0;
1106
1107                 LASSERT((rbp->rbp_credits < 0) ==
1108                         !cfs_list_empty(&rbp->rbp_msgs));
1109                 LASSERT((rbp->rbp_credits > 0) ==
1110                         !cfs_list_empty(&rbp->rbp_bufs));
1111
1112                 cfs_list_add(&rb->rb_list, &rbp->rbp_bufs);
1113                 rbp->rbp_credits++;
1114                 if (rbp->rbp_credits <= 0) {
1115                         msg2 = cfs_list_entry(rbp->rbp_msgs.next,
1116                                               lnet_msg_t, msg_list);
1117                         cfs_list_del(&msg2->msg_list);
1118
1119                         (void) lnet_post_routed_recv_locked(msg2, 1);
1120                 }
1121         }
1122
1123         if (msg->msg_peerrtrcredit) {
1124                 /* give back peer router credits */
1125                 msg->msg_peerrtrcredit = 0;
1126
1127                 LASSERT((rxpeer->lp_rtrcredits < 0) ==
1128                         !cfs_list_empty(&rxpeer->lp_rtrq));
1129
1130                 rxpeer->lp_rtrcredits++;
1131                 if (rxpeer->lp_rtrcredits <= 0) {
1132                         msg2 = cfs_list_entry(rxpeer->lp_rtrq.next,
1133                                               lnet_msg_t, msg_list);
1134                         cfs_list_del(&msg2->msg_list);
1135
1136                         (void) lnet_post_routed_recv_locked(msg2, 1);
1137                 }
1138         }
1139 #else
1140         LASSERT (!msg->msg_rtrcredit);
1141         LASSERT (!msg->msg_peerrtrcredit);
1142 #endif
1143         if (rxpeer != NULL) {
1144                 msg->msg_rxpeer = NULL;
1145                 lnet_peer_decref_locked(rxpeer);
1146         }
1147 }
1148
1149 int
1150 lnet_send(lnet_nid_t src_nid, lnet_msg_t *msg)
1151 {
1152         lnet_nid_t        dst_nid = msg->msg_target.nid;
1153         lnet_ni_t        *src_ni;
1154         lnet_ni_t        *local_ni;
1155         lnet_remotenet_t *rnet;
1156         lnet_route_t     *route;
1157         lnet_route_t     *best_route;
1158         cfs_list_t       *tmp;
1159         lnet_peer_t      *lp;
1160         lnet_peer_t      *lp2;
1161         int               rc;
1162
1163         LASSERT (msg->msg_txpeer == NULL);
1164         LASSERT (!msg->msg_sending);
1165         LASSERT (!msg->msg_target_is_router);
1166         LASSERT (!msg->msg_receiving);
1167
1168         msg->msg_sending = 1;
1169
1170         /* NB! ni != NULL == interface pre-determined (ACK/REPLY) */
1171
1172         LNET_LOCK();
1173
1174         if (the_lnet.ln_shutdown) {
1175                 LNET_UNLOCK();
1176                 return -ESHUTDOWN;
1177         }
1178
1179         if (src_nid == LNET_NID_ANY) {
1180                 src_ni = NULL;
1181         } else {
1182                 src_ni = lnet_nid2ni_locked(src_nid);
1183                 if (src_ni == NULL) {
1184                         LNET_UNLOCK();
1185                         LCONSOLE_WARN("Can't send to %s: src %s is not a "
1186                                       "local nid\n", libcfs_nid2str(dst_nid),
1187                                       libcfs_nid2str(src_nid));
1188                         return -EINVAL;
1189                 }
1190                 LASSERT (!msg->msg_routing);
1191         }
1192
1193         /* Is this for someone on a local network? */
1194         local_ni = lnet_net2ni_locked(LNET_NIDNET(dst_nid));
1195
1196         if (local_ni != NULL) {
1197                 if (src_ni == NULL) {
1198                         src_ni = local_ni;
1199                         src_nid = src_ni->ni_nid;
1200                 } else if (src_ni == local_ni) {
1201                         lnet_ni_decref_locked(local_ni);
1202                 } else {
1203                         lnet_ni_decref_locked(local_ni);
1204                         lnet_ni_decref_locked(src_ni);
1205                         LNET_UNLOCK();
1206                         LCONSOLE_WARN("No route to %s via from %s\n",
1207                                       libcfs_nid2str(dst_nid),
1208                                       libcfs_nid2str(src_nid));
1209                         return -EINVAL;
1210                 }
1211
1212                 LASSERT (src_nid != LNET_NID_ANY);
1213
1214                 if (!msg->msg_routing)
1215                         msg->msg_hdr.src_nid = cpu_to_le64(src_nid);
1216
1217                 if (src_ni == the_lnet.ln_loni) {
1218                         /* No send credit hassles with LOLND */
1219                         LNET_UNLOCK();
1220                         lnet_ni_send(src_ni, msg);
1221                         lnet_ni_decref(src_ni);
1222                         return 0;
1223                 }
1224
1225                 rc = lnet_nid2peer_locked(&lp, dst_nid);
1226                 lnet_ni_decref_locked(src_ni);  /* lp has ref on src_ni; lose mine */
1227                 if (rc != 0) {
1228                         LNET_UNLOCK();
1229                         LCONSOLE_WARN("Error %d finding peer %s\n", rc,
1230                                       libcfs_nid2str(dst_nid));
1231                         /* ENOMEM or shutting down */
1232                         return rc;
1233                 }
1234                 LASSERT (lp->lp_ni == src_ni);
1235         } else {
1236 #ifndef __KERNEL__
1237                 LNET_UNLOCK();
1238
1239                 /* NB
1240                  * - once application finishes computation, check here to update
1241                  *   router states before it waits for pending IO in LNetEQPoll
1242                  * - recursion breaker: router checker sends no message
1243                  *   to remote networks */
1244                 if (the_lnet.ln_rc_state == LNET_RC_STATE_RUNNING)
1245                         lnet_router_checker();
1246
1247                 LNET_LOCK();
1248 #endif
1249                 /* sending to a remote network */
1250                 rnet = lnet_find_net_locked(LNET_NIDNET(dst_nid));
1251                 if (rnet == NULL) {
1252                         if (src_ni != NULL)
1253                                 lnet_ni_decref_locked(src_ni);
1254                         LNET_UNLOCK();
1255                         LCONSOLE_WARN("No route to %s\n",
1256                                       libcfs_id2str(msg->msg_target));
1257                         return -EHOSTUNREACH;
1258                 }
1259
1260                 /* Find the best gateway I can use */
1261                 lp = NULL;
1262                 best_route = NULL;
1263                 cfs_list_for_each(tmp, &rnet->lrn_routes) {
1264                         route = cfs_list_entry(tmp, lnet_route_t, lr_list);
1265                         lp2 = route->lr_gateway;
1266
1267                         if (lp2->lp_alive &&
1268                             lnet_router_down_ni(lp2, rnet->lrn_net) <= 0 &&
1269                             (src_ni == NULL || lp2->lp_ni == src_ni) &&
1270                             (lp == NULL ||
1271                              lnet_compare_routes(route, best_route) > 0)) {
1272                                 best_route = route;
1273                                 lp = lp2;
1274                         }
1275                 }
1276
1277                 if (lp == NULL) {
1278                         if (src_ni != NULL)
1279                                 lnet_ni_decref_locked(src_ni);
1280                         LNET_UNLOCK();
1281
1282                         LCONSOLE_WARN("No route to %s via %s "
1283                                       "(all routers down)\n",
1284                                       libcfs_id2str(msg->msg_target),
1285                                       libcfs_nid2str(src_nid));
1286                         return -EHOSTUNREACH;
1287                 }
1288
1289                 /* Place selected route at the end of the route list to ensure
1290                  * fairness; everything else being equal... */
1291                 cfs_list_del(&best_route->lr_list);
1292                 cfs_list_add_tail(&best_route->lr_list, &rnet->lrn_routes);
1293                 CDEBUG(D_NET, "Best route to %s via %s for %s %d\n",
1294                        libcfs_nid2str(dst_nid), libcfs_nid2str(lp->lp_nid),
1295                        lnet_msgtyp2str(msg->msg_type), msg->msg_len);
1296
1297                 if (src_ni == NULL) {
1298                         src_ni = lp->lp_ni;
1299                         src_nid = src_ni->ni_nid;
1300                 } else {
1301                         LASSERT (src_ni == lp->lp_ni);
1302                         lnet_ni_decref_locked(src_ni);
1303                 }
1304
1305                 lnet_peer_addref_locked(lp);
1306
1307                 LASSERT (src_nid != LNET_NID_ANY);
1308
1309                 if (!msg->msg_routing) {
1310                         /* I'm the source and now I know which NI to send on */
1311                         msg->msg_hdr.src_nid = cpu_to_le64(src_nid);
1312                 }
1313
1314                 msg->msg_target_is_router = 1;
1315                 msg->msg_target.nid = lp->lp_nid;
1316                 msg->msg_target.pid = LUSTRE_SRV_LNET_PID;
1317         }
1318
1319         /* 'lp' is our best choice of peer */
1320
1321         LASSERT (!msg->msg_peertxcredit);
1322         LASSERT (!msg->msg_txcredit);
1323         LASSERT (msg->msg_txpeer == NULL);
1324
1325         msg->msg_txpeer = lp;                   /* msg takes my ref on lp */
1326
1327         rc = lnet_post_send_locked(msg, 0);
1328         LNET_UNLOCK();
1329
1330         if (rc == EHOSTUNREACH)
1331                 return -EHOSTUNREACH;
1332
1333         if (rc == 0)
1334                 lnet_ni_send(src_ni, msg);
1335
1336         return 0;
1337 }
1338
1339 void
1340 lnet_commit_md (lnet_libmd_t *md, lnet_msg_t *msg)
1341 {
1342         /* ALWAYS called holding the LNET_LOCK */
1343         /* Here, we commit the MD to a network OP by marking it busy and
1344          * decrementing its threshold.  Come what may, the network "owns"
1345          * the MD until a call to lnet_finalize() signals completion. */
1346         LASSERT (!msg->msg_routing);
1347
1348         msg->msg_md = md;
1349
1350         md->md_refcount++;
1351         if (md->md_threshold != LNET_MD_THRESH_INF) {
1352                 LASSERT (md->md_threshold > 0);
1353                 md->md_threshold--;
1354         }
1355
1356         the_lnet.ln_counters.msgs_alloc++;
1357         if (the_lnet.ln_counters.msgs_alloc > 
1358             the_lnet.ln_counters.msgs_max)
1359                 the_lnet.ln_counters.msgs_max = 
1360                         the_lnet.ln_counters.msgs_alloc;
1361
1362         LASSERT (!msg->msg_onactivelist);
1363         msg->msg_onactivelist = 1;
1364         cfs_list_add(&msg->msg_activelist,
1365                      &the_lnet.ln_msg_container.msc_active);
1366 }
1367
1368 static void
1369 lnet_drop_message (lnet_ni_t *ni, void *private, unsigned int nob)
1370 {
1371         LNET_LOCK();
1372         the_lnet.ln_counters.drop_count++;
1373         the_lnet.ln_counters.drop_length += nob;
1374         LNET_UNLOCK();
1375
1376         lnet_ni_recv(ni, private, NULL, 0, 0, 0, nob);
1377 }
1378
1379 static void
1380 lnet_recv_put(lnet_libmd_t *md, lnet_msg_t *msg, int delayed,
1381               unsigned int offset, unsigned int mlength)
1382 {
1383         lnet_hdr_t       *hdr = &msg->msg_hdr;
1384
1385         LNET_LOCK();
1386
1387         the_lnet.ln_counters.recv_count++;
1388         the_lnet.ln_counters.recv_length += mlength;
1389
1390         LNET_UNLOCK();
1391
1392         if (mlength != 0)
1393                 lnet_setpayloadbuffer(msg);
1394
1395         msg->msg_ev.type       = LNET_EVENT_PUT;
1396         msg->msg_ev.target.pid = hdr->dest_pid;
1397         msg->msg_ev.target.nid = hdr->dest_nid;
1398         msg->msg_ev.hdr_data   = hdr->msg.put.hdr_data;
1399
1400         /* Must I ACK?  If so I'll grab the ack_wmd out of the header and put
1401          * it back into the ACK during lnet_finalize() */
1402         msg->msg_ack = (!lnet_is_wire_handle_none(&hdr->msg.put.ack_wmd) &&
1403                         (md->md_options & LNET_MD_ACK_DISABLE) == 0);
1404
1405         lnet_ni_recv(msg->msg_rxpeer->lp_ni,
1406                      msg->msg_private,
1407                      msg, delayed, offset, mlength,
1408                      hdr->payload_length);
1409 }
1410
1411 static int
1412 lnet_parse_put(lnet_ni_t *ni, lnet_msg_t *msg)
1413 {
1414         int               rc;
1415         int               index;
1416         __u64             version;
1417         lnet_hdr_t       *hdr = &msg->msg_hdr;
1418         unsigned int      rlength = hdr->payload_length;
1419         unsigned int      mlength = 0;
1420         unsigned int      offset = 0;
1421         lnet_process_id_t src= {0};
1422         lnet_libmd_t     *md;
1423         lnet_portal_t    *ptl;
1424
1425         src.nid = hdr->src_nid;
1426         src.pid = hdr->src_pid;
1427
1428         /* Convert put fields to host byte order */
1429         hdr->msg.put.match_bits = le64_to_cpu(hdr->msg.put.match_bits);
1430         hdr->msg.put.ptl_index = le32_to_cpu(hdr->msg.put.ptl_index);
1431         hdr->msg.put.offset = le32_to_cpu(hdr->msg.put.offset);
1432
1433         index = hdr->msg.put.ptl_index;
1434
1435         LNET_LOCK();
1436
1437  again:
1438         rc = lnet_match_md(index, LNET_MD_OP_PUT, src,
1439                            rlength, hdr->msg.put.offset,
1440                            hdr->msg.put.match_bits, msg,
1441                            &mlength, &offset, &md);
1442         switch (rc) {
1443         default:
1444                 LBUG();
1445
1446         case LNET_MATCHMD_OK:
1447                 LNET_UNLOCK();
1448                 lnet_recv_put(md, msg, msg->msg_delayed, offset, mlength);
1449                 return 0;
1450
1451         case LNET_MATCHMD_NONE:
1452                 ptl = the_lnet.ln_portals[index];
1453                 version = ptl->ptl_ml_version;
1454
1455                 rc = 0;
1456                 if (!msg->msg_delayed)
1457                         rc = lnet_eager_recv_locked(msg);
1458
1459                 if (rc == 0 &&
1460                     !the_lnet.ln_shutdown &&
1461                     lnet_ptl_is_lazy(ptl)) {
1462                         if (version != ptl->ptl_ml_version)
1463                                 goto again;
1464
1465                         cfs_list_add_tail(&msg->msg_list, &ptl->ptl_msgq);
1466                         ptl->ptl_msgq_version++;
1467                         LNET_UNLOCK();
1468
1469                         CDEBUG(D_NET, "Delaying PUT from %s portal %d match "
1470                                LPU64" offset %d length %d: no match \n",
1471                                libcfs_id2str(src), index,
1472                                hdr->msg.put.match_bits,
1473                                hdr->msg.put.offset, rlength);
1474                         return 0;
1475                 }
1476                 /* fall through */
1477
1478         case LNET_MATCHMD_DROP:
1479                 CNETERR("Dropping PUT from %s portal %d match "LPU64
1480                         " offset %d length %d: %d\n",
1481                         libcfs_id2str(src), index,
1482                         hdr->msg.put.match_bits,
1483                         hdr->msg.put.offset, rlength, rc);
1484                 LNET_UNLOCK();
1485
1486                 return ENOENT;          /* +ve: OK but no match */
1487         }
1488 }
1489
1490 static int
1491 lnet_parse_get(lnet_ni_t *ni, lnet_msg_t *msg, int rdma_get)
1492 {
1493         lnet_hdr_t        *hdr = &msg->msg_hdr;
1494         unsigned int       mlength = 0;
1495         unsigned int       offset = 0;
1496         lnet_process_id_t  src = {0};
1497         lnet_handle_wire_t reply_wmd;
1498         lnet_libmd_t      *md;
1499         int                rc;
1500
1501         src.nid = hdr->src_nid;
1502         src.pid = hdr->src_pid;
1503
1504         /* Convert get fields to host byte order */
1505         hdr->msg.get.match_bits = le64_to_cpu(hdr->msg.get.match_bits);
1506         hdr->msg.get.ptl_index = le32_to_cpu(hdr->msg.get.ptl_index);
1507         hdr->msg.get.sink_length = le32_to_cpu(hdr->msg.get.sink_length);
1508         hdr->msg.get.src_offset = le32_to_cpu(hdr->msg.get.src_offset);
1509
1510         LNET_LOCK();
1511
1512         rc = lnet_match_md(hdr->msg.get.ptl_index, LNET_MD_OP_GET, src,
1513                            hdr->msg.get.sink_length, hdr->msg.get.src_offset,
1514                            hdr->msg.get.match_bits, msg,
1515                            &mlength, &offset, &md);
1516         if (rc == LNET_MATCHMD_DROP) {
1517                 CNETERR("Dropping GET from %s portal %d match "LPU64
1518                         " offset %d length %d\n",
1519                         libcfs_id2str(src),
1520                         hdr->msg.get.ptl_index,
1521                         hdr->msg.get.match_bits,
1522                         hdr->msg.get.src_offset,
1523                         hdr->msg.get.sink_length);
1524                 LNET_UNLOCK();
1525                 return ENOENT;                  /* +ve: OK but no match */
1526         }
1527
1528         LASSERT (rc == LNET_MATCHMD_OK);
1529
1530         the_lnet.ln_counters.send_count++;
1531         the_lnet.ln_counters.send_length += mlength;
1532
1533         LNET_UNLOCK();
1534
1535         msg->msg_ev.type = LNET_EVENT_GET;
1536         msg->msg_ev.target.pid = hdr->dest_pid;
1537         msg->msg_ev.target.nid = hdr->dest_nid;
1538         msg->msg_ev.hdr_data = 0;
1539
1540         reply_wmd = hdr->msg.get.return_wmd;
1541
1542         lnet_prep_send(msg, LNET_MSG_REPLY, src, offset, mlength);
1543
1544         msg->msg_hdr.msg.reply.dst_wmd = reply_wmd;
1545
1546         if (rdma_get) {
1547                 /* The LND completes the REPLY from her recv procedure */
1548                 lnet_ni_recv(ni, msg->msg_private, msg, 0,
1549                              msg->msg_offset, msg->msg_len, msg->msg_len);
1550                 return 0;
1551         }
1552
1553         lnet_ni_recv(ni, msg->msg_private, NULL, 0, 0, 0, 0);
1554         msg->msg_receiving = 0;
1555
1556         rc = lnet_send(ni->ni_nid, msg);
1557         if (rc < 0) {
1558                 /* didn't get as far as lnet_ni_send() */
1559                 CERROR("%s: Unable to send REPLY for GET from %s: %d\n",
1560                        libcfs_nid2str(ni->ni_nid), libcfs_id2str(src), rc);
1561
1562                 lnet_finalize(ni, msg, rc);
1563         }
1564
1565         return 0;
1566 }
1567
1568 static int
1569 lnet_parse_reply(lnet_ni_t *ni, lnet_msg_t *msg)
1570 {
1571         void             *private = msg->msg_private;
1572         lnet_hdr_t       *hdr = &msg->msg_hdr;
1573         lnet_process_id_t src = {0};
1574         lnet_libmd_t     *md;
1575         int               rlength;
1576         int               mlength;
1577
1578         LNET_LOCK();
1579
1580         src.nid = hdr->src_nid;
1581         src.pid = hdr->src_pid;
1582
1583         /* NB handles only looked up by creator (no flips) */
1584         md = lnet_wire_handle2md(&hdr->msg.reply.dst_wmd);
1585         if (md == NULL || md->md_threshold == 0 || md->md_me != NULL) {
1586                 CNETERR("%s: Dropping REPLY from %s for %s "
1587                         "MD "LPX64"."LPX64"\n",
1588                         libcfs_nid2str(ni->ni_nid), libcfs_id2str(src),
1589                         (md == NULL) ? "invalid" : "inactive",
1590                         hdr->msg.reply.dst_wmd.wh_interface_cookie,
1591                         hdr->msg.reply.dst_wmd.wh_object_cookie);
1592                 if (md != NULL && md->md_me != NULL)
1593                         CERROR("REPLY MD also attached to portal %d\n",
1594                                md->md_me->me_portal);
1595
1596                 LNET_UNLOCK();
1597                 return ENOENT;                  /* +ve: OK but no match */
1598         }
1599
1600         LASSERT (md->md_offset == 0);
1601
1602         rlength = hdr->payload_length;
1603         mlength = MIN(rlength, (int)md->md_length);
1604
1605         if (mlength < rlength &&
1606             (md->md_options & LNET_MD_TRUNCATE) == 0) {
1607                 CNETERR("%s: Dropping REPLY from %s length %d "
1608                         "for MD "LPX64" would overflow (%d)\n",
1609                         libcfs_nid2str(ni->ni_nid), libcfs_id2str(src),
1610                         rlength, hdr->msg.reply.dst_wmd.wh_object_cookie,
1611                         mlength);
1612                 LNET_UNLOCK();
1613                 return ENOENT;          /* +ve: OK but no match */
1614         }
1615
1616         CDEBUG(D_NET, "%s: Reply from %s of length %d/%d into md "LPX64"\n",
1617                libcfs_nid2str(ni->ni_nid), libcfs_id2str(src), 
1618                mlength, rlength, hdr->msg.reply.dst_wmd.wh_object_cookie);
1619
1620         lnet_commit_md(md, msg);
1621
1622         if (mlength != 0)
1623                 lnet_setpayloadbuffer(msg);
1624
1625         msg->msg_ev.type = LNET_EVENT_REPLY;
1626         msg->msg_ev.target.pid = hdr->dest_pid;
1627         msg->msg_ev.target.nid = hdr->dest_nid;
1628         msg->msg_ev.initiator = src;
1629         msg->msg_ev.rlength = rlength;
1630         msg->msg_ev.mlength = mlength;
1631         msg->msg_ev.offset = 0;
1632
1633         lnet_md_deconstruct(md, &msg->msg_ev.md);
1634         lnet_md2handle(&msg->msg_ev.md_handle, md);
1635
1636         the_lnet.ln_counters.recv_count++;
1637         the_lnet.ln_counters.recv_length += mlength;
1638
1639         LNET_UNLOCK();
1640
1641         lnet_ni_recv(ni, private, msg, 0, 0, mlength, rlength);
1642         return 0;
1643 }
1644
1645 static int
1646 lnet_parse_ack(lnet_ni_t *ni, lnet_msg_t *msg)
1647 {
1648         lnet_hdr_t       *hdr = &msg->msg_hdr;
1649         lnet_process_id_t src = {0};
1650         lnet_libmd_t     *md;
1651
1652         src.nid = hdr->src_nid;
1653         src.pid = hdr->src_pid;
1654
1655         /* Convert ack fields to host byte order */
1656         hdr->msg.ack.match_bits = le64_to_cpu(hdr->msg.ack.match_bits);
1657         hdr->msg.ack.mlength = le32_to_cpu(hdr->msg.ack.mlength);
1658
1659         LNET_LOCK();
1660
1661         /* NB handles only looked up by creator (no flips) */
1662         md = lnet_wire_handle2md(&hdr->msg.ack.dst_wmd);
1663         if (md == NULL || md->md_threshold == 0 || md->md_me != NULL) {
1664                 /* Don't moan; this is expected */
1665                 CDEBUG(D_NET,
1666                        "%s: Dropping ACK from %s to %s MD "LPX64"."LPX64"\n",
1667                        libcfs_nid2str(ni->ni_nid), libcfs_id2str(src),
1668                        (md == NULL) ? "invalid" : "inactive",
1669                        hdr->msg.ack.dst_wmd.wh_interface_cookie,
1670                        hdr->msg.ack.dst_wmd.wh_object_cookie);
1671                 if (md != NULL && md->md_me != NULL)
1672                         CERROR("Source MD also attached to portal %d\n",
1673                                md->md_me->me_portal);
1674
1675                 LNET_UNLOCK();
1676                 return ENOENT;                  /* +ve! */
1677         }
1678
1679         CDEBUG(D_NET, "%s: ACK from %s into md "LPX64"\n",
1680                libcfs_nid2str(ni->ni_nid), libcfs_id2str(src), 
1681                hdr->msg.ack.dst_wmd.wh_object_cookie);
1682
1683         lnet_commit_md(md, msg);
1684
1685         msg->msg_ev.type = LNET_EVENT_ACK;
1686         msg->msg_ev.target.pid = hdr->dest_pid;
1687         msg->msg_ev.target.nid = hdr->dest_nid;
1688         msg->msg_ev.initiator = src;
1689         msg->msg_ev.mlength = hdr->msg.ack.mlength;
1690         msg->msg_ev.match_bits = hdr->msg.ack.match_bits;
1691
1692         lnet_md_deconstruct(md, &msg->msg_ev.md);
1693         lnet_md2handle(&msg->msg_ev.md_handle, md);
1694
1695         the_lnet.ln_counters.recv_count++;
1696
1697         LNET_UNLOCK();
1698
1699         lnet_ni_recv(ni, msg->msg_private, msg, 0, 0, 0, msg->msg_len);
1700         return 0;
1701 }
1702
1703 char *
1704 lnet_msgtyp2str (int type)
1705 {
1706         switch (type) {
1707         case LNET_MSG_ACK:
1708                 return ("ACK");
1709         case LNET_MSG_PUT:
1710                 return ("PUT");
1711         case LNET_MSG_GET:
1712                 return ("GET");
1713         case LNET_MSG_REPLY:
1714                 return ("REPLY");
1715         case LNET_MSG_HELLO:
1716                 return ("HELLO");
1717         default:
1718                 return ("<UNKNOWN>");
1719         }
1720 }
1721
1722 void
1723 lnet_print_hdr(lnet_hdr_t * hdr)
1724 {
1725         lnet_process_id_t src = {0};
1726         lnet_process_id_t dst = {0};
1727         char *type_str = lnet_msgtyp2str (hdr->type);
1728
1729         src.nid = hdr->src_nid;
1730         src.pid = hdr->src_pid;
1731
1732         dst.nid = hdr->dest_nid;
1733         dst.pid = hdr->dest_pid;
1734
1735         CWARN("P3 Header at %p of type %s\n", hdr, type_str);
1736         CWARN("    From %s\n", libcfs_id2str(src));
1737         CWARN("    To   %s\n", libcfs_id2str(dst));
1738
1739         switch (hdr->type) {
1740         default:
1741                 break;
1742
1743         case LNET_MSG_PUT:
1744                 CWARN("    Ptl index %d, ack md "LPX64"."LPX64", "
1745                       "match bits "LPU64"\n",
1746                       hdr->msg.put.ptl_index,
1747                       hdr->msg.put.ack_wmd.wh_interface_cookie,
1748                       hdr->msg.put.ack_wmd.wh_object_cookie,
1749                       hdr->msg.put.match_bits);
1750                 CWARN("    Length %d, offset %d, hdr data "LPX64"\n",
1751                       hdr->payload_length, hdr->msg.put.offset,
1752                       hdr->msg.put.hdr_data);
1753                 break;
1754
1755         case LNET_MSG_GET:
1756                 CWARN("    Ptl index %d, return md "LPX64"."LPX64", "
1757                       "match bits "LPU64"\n", hdr->msg.get.ptl_index,
1758                       hdr->msg.get.return_wmd.wh_interface_cookie,
1759                       hdr->msg.get.return_wmd.wh_object_cookie,
1760                       hdr->msg.get.match_bits);
1761                 CWARN("    Length %d, src offset %d\n",
1762                       hdr->msg.get.sink_length,
1763                       hdr->msg.get.src_offset);
1764                 break;
1765
1766         case LNET_MSG_ACK:
1767                 CWARN("    dst md "LPX64"."LPX64", "
1768                       "manipulated length %d\n",
1769                       hdr->msg.ack.dst_wmd.wh_interface_cookie,
1770                       hdr->msg.ack.dst_wmd.wh_object_cookie,
1771                       hdr->msg.ack.mlength);
1772                 break;
1773
1774         case LNET_MSG_REPLY:
1775                 CWARN("    dst md "LPX64"."LPX64", "
1776                       "length %d\n",
1777                       hdr->msg.reply.dst_wmd.wh_interface_cookie,
1778                       hdr->msg.reply.dst_wmd.wh_object_cookie,
1779                       hdr->payload_length);
1780         }
1781
1782 }
1783
1784 int
1785 lnet_parse(lnet_ni_t *ni, lnet_hdr_t *hdr, lnet_nid_t from_nid, 
1786            void *private, int rdma_req)
1787 {
1788         int            rc = 0;
1789         int            for_me;
1790         lnet_msg_t    *msg;
1791         lnet_pid_t     dest_pid;
1792         lnet_nid_t     dest_nid;
1793         lnet_nid_t     src_nid;
1794         __u32          payload_length;
1795         __u32          type;
1796
1797         LASSERT (!cfs_in_interrupt ());
1798
1799         type = le32_to_cpu(hdr->type);
1800         src_nid = le64_to_cpu(hdr->src_nid);
1801         dest_nid = le64_to_cpu(hdr->dest_nid);
1802         dest_pid = le32_to_cpu(hdr->dest_pid);
1803         payload_length = le32_to_cpu(hdr->payload_length);
1804
1805         for_me = (ni->ni_nid == dest_nid);
1806
1807         switch (type) {
1808         case LNET_MSG_ACK:
1809         case LNET_MSG_GET:
1810                 if (payload_length > 0) {
1811                         CERROR("%s, src %s: bad %s payload %d (0 expected)\n",
1812                                libcfs_nid2str(from_nid),
1813                                libcfs_nid2str(src_nid),
1814                                lnet_msgtyp2str(type), payload_length);
1815                         return -EPROTO;
1816                 }
1817                 break;
1818
1819         case LNET_MSG_PUT:
1820         case LNET_MSG_REPLY:
1821                 if (payload_length > (__u32)(for_me ? LNET_MAX_PAYLOAD : LNET_MTU)) {
1822                         CERROR("%s, src %s: bad %s payload %d "
1823                                "(%d max expected)\n",
1824                                libcfs_nid2str(from_nid),
1825                                libcfs_nid2str(src_nid),
1826                                lnet_msgtyp2str(type),
1827                                payload_length,
1828                                for_me ? LNET_MAX_PAYLOAD : LNET_MTU);
1829                         return -EPROTO;
1830                 }
1831                 break;
1832
1833         default:
1834                 CERROR("%s, src %s: Bad message type 0x%x\n",
1835                        libcfs_nid2str(from_nid),
1836                        libcfs_nid2str(src_nid), type);
1837                 return -EPROTO;
1838         }
1839
1840         if (the_lnet.ln_routing) {
1841                 cfs_time_t now = cfs_time_current();
1842
1843                 LNET_LOCK();
1844
1845                 ni->ni_last_alive = now;
1846                 if (ni->ni_status != NULL &&
1847                     ni->ni_status->ns_status == LNET_NI_STATUS_DOWN)
1848                         ni->ni_status->ns_status = LNET_NI_STATUS_UP;
1849
1850                 LNET_UNLOCK();
1851         }
1852
1853         /* Regard a bad destination NID as a protocol error.  Senders should
1854          * know what they're doing; if they don't they're misconfigured, buggy
1855          * or malicious so we chop them off at the knees :) */
1856
1857         if (!for_me) {
1858                 if (LNET_NIDNET(dest_nid) == LNET_NIDNET(ni->ni_nid)) {
1859                         /* should have gone direct */
1860                         CERROR ("%s, src %s: Bad dest nid %s "
1861                                 "(should have been sent direct)\n",
1862                                 libcfs_nid2str(from_nid),
1863                                 libcfs_nid2str(src_nid),
1864                                 libcfs_nid2str(dest_nid));
1865                         return -EPROTO;
1866                 }
1867
1868                 if (lnet_islocalnid(dest_nid)) {
1869                         /* dest is another local NI; sender should have used
1870                          * this node's NID on its own network */
1871                         CERROR ("%s, src %s: Bad dest nid %s "
1872                                 "(it's my nid but on a different network)\n",
1873                                 libcfs_nid2str(from_nid),
1874                                 libcfs_nid2str(src_nid),
1875                                 libcfs_nid2str(dest_nid));
1876                         return -EPROTO;
1877                 }
1878
1879                 if (rdma_req && type == LNET_MSG_GET) {
1880                         CERROR ("%s, src %s: Bad optimized GET for %s "
1881                                 "(final destination must be me)\n",
1882                                 libcfs_nid2str(from_nid),
1883                                 libcfs_nid2str(src_nid),
1884                                 libcfs_nid2str(dest_nid));
1885                         return -EPROTO;
1886                 }
1887
1888                 if (!the_lnet.ln_routing) {
1889                         CERROR ("%s, src %s: Dropping message for %s "
1890                                 "(routing not enabled)\n",
1891                                 libcfs_nid2str(from_nid),
1892                                 libcfs_nid2str(src_nid),
1893                                 libcfs_nid2str(dest_nid));
1894                         goto drop;
1895                 }
1896         }
1897
1898         /* Message looks OK; we're not going to return an error, so we MUST
1899          * call back lnd_recv() come what may... */
1900
1901         if (!cfs_list_empty (&the_lnet.ln_test_peers) && /* normally we don't */
1902             fail_peer (src_nid, 0))             /* shall we now? */
1903         {
1904                 CERROR("%s, src %s: Dropping %s to simulate failure\n",
1905                        libcfs_nid2str(from_nid), libcfs_nid2str(src_nid),
1906                        lnet_msgtyp2str(type));
1907                 goto drop;
1908         }
1909
1910         msg = lnet_msg_alloc();
1911         if (msg == NULL) {
1912                 CERROR("%s, src %s: Dropping %s (out of memory)\n",
1913                        libcfs_nid2str(from_nid), libcfs_nid2str(src_nid), 
1914                        lnet_msgtyp2str(type));
1915                 goto drop;
1916         }
1917
1918         /* msg zeroed in lnet_msg_alloc; i.e. flags all clear, pointers NULL etc */
1919
1920         msg->msg_type = type;
1921         msg->msg_private = private;
1922         msg->msg_receiving = 1;
1923         msg->msg_len = msg->msg_wanted = payload_length;
1924         msg->msg_offset = 0;
1925         msg->msg_hdr = *hdr;
1926
1927         LNET_LOCK();
1928         rc = lnet_nid2peer_locked(&msg->msg_rxpeer, from_nid);
1929         if (rc != 0) {
1930                 LNET_UNLOCK();
1931                 CERROR("%s, src %s: Dropping %s "
1932                        "(error %d looking up sender)\n",
1933                        libcfs_nid2str(from_nid), libcfs_nid2str(src_nid),
1934                        lnet_msgtyp2str(type), rc);
1935                 goto free_drop;
1936         }
1937         LNET_UNLOCK();
1938
1939 #ifndef __KERNEL__
1940         LASSERT (for_me);
1941 #else
1942         if (!for_me) {
1943                 msg->msg_target.pid = dest_pid;
1944                 msg->msg_target.nid = dest_nid;
1945                 msg->msg_routing = 1;
1946                 msg->msg_offset = 0;
1947
1948                 LNET_LOCK();
1949                 if (msg->msg_rxpeer->lp_rtrcredits <= 0 ||
1950                     lnet_msg2bufpool(msg)->rbp_credits <= 0) {
1951                         rc = lnet_eager_recv_locked(msg);
1952                         if (rc != 0) {
1953                                 LNET_UNLOCK();
1954                                 goto free_drop;
1955                         }
1956                 }
1957                 lnet_commit_routedmsg(msg);
1958                 rc = lnet_post_routed_recv_locked(msg, 0);
1959                 LNET_UNLOCK();
1960
1961                 if (rc == 0)
1962                         lnet_ni_recv(ni, msg->msg_private, msg, 0,
1963                                      0, payload_length, payload_length);
1964                 return 0;
1965         }
1966 #endif
1967         /* convert common msg->hdr fields to host byteorder */
1968         msg->msg_hdr.type = type;
1969         msg->msg_hdr.src_nid = src_nid;
1970         msg->msg_hdr.src_pid = le32_to_cpu(msg->msg_hdr.src_pid);
1971         msg->msg_hdr.dest_nid = dest_nid;
1972         msg->msg_hdr.dest_pid = dest_pid;
1973         msg->msg_hdr.payload_length = payload_length;
1974
1975         msg->msg_ev.sender = from_nid;
1976
1977         switch (type) {
1978         case LNET_MSG_ACK:
1979                 rc = lnet_parse_ack(ni, msg);
1980                 break;
1981         case LNET_MSG_PUT:
1982                 rc = lnet_parse_put(ni, msg);
1983                 break;
1984         case LNET_MSG_GET:
1985                 rc = lnet_parse_get(ni, msg, rdma_req);
1986                 break;
1987         case LNET_MSG_REPLY:
1988                 rc = lnet_parse_reply(ni, msg);
1989                 break;
1990         default:
1991                 LASSERT(0);
1992                 goto free_drop;  /* prevent an unused label if !kernel */
1993         }
1994
1995         if (rc == 0)
1996                 return 0;
1997
1998         LASSERT (rc == ENOENT);
1999
2000  free_drop:
2001         LASSERT (msg->msg_md == NULL);
2002         LNET_LOCK();
2003         if (msg->msg_rxpeer != NULL) {
2004                 lnet_peer_decref_locked(msg->msg_rxpeer);
2005                 msg->msg_rxpeer = NULL;
2006         }
2007         lnet_msg_free_locked(msg);      /* expects LNET_LOCK held */
2008         LNET_UNLOCK();
2009
2010  drop:
2011         lnet_drop_message(ni, private, payload_length);
2012         return 0;
2013 }
2014
2015 void
2016 lnet_drop_delayed_msg_list(cfs_list_t *head, char *reason)
2017 {
2018         while (!cfs_list_empty(head)) {
2019                 lnet_process_id_t       id = {0};
2020                 lnet_msg_t              *msg;
2021
2022                 msg = cfs_list_entry(head->next, lnet_msg_t, msg_list);
2023                 cfs_list_del(&msg->msg_list);
2024
2025                 id.nid = msg->msg_hdr.src_nid;
2026                 id.pid = msg->msg_hdr.src_pid;
2027
2028                 LASSERT(msg->msg_md == NULL);
2029                 LASSERT(msg->msg_delayed);
2030                 LASSERT(msg->msg_rxpeer != NULL);
2031                 LASSERT(msg->msg_hdr.type == LNET_MSG_PUT);
2032
2033                 CWARN("Dropping delayed PUT from %s portal %d match "LPU64
2034                       " offset %d length %d: %s\n",
2035                       libcfs_id2str(id),
2036                       msg->msg_hdr.msg.put.ptl_index,
2037                       msg->msg_hdr.msg.put.match_bits,
2038                       msg->msg_hdr.msg.put.offset,
2039                       msg->msg_hdr.payload_length, reason);
2040
2041                 /* NB I can't drop msg's ref on msg_rxpeer until after I've
2042                  * called lnet_drop_message(), so I just hang onto msg as well
2043                  * until that's done */
2044
2045                 lnet_drop_message(msg->msg_rxpeer->lp_ni,
2046                                   msg->msg_private, msg->msg_len);
2047
2048                 LNET_LOCK();
2049                 lnet_peer_decref_locked(msg->msg_rxpeer);
2050                 LNET_UNLOCK();
2051
2052                 lnet_msg_free(msg);
2053         }
2054 }
2055
2056 void
2057 lnet_recv_delayed_msg_list(cfs_list_t *head)
2058 {
2059         while (!cfs_list_empty(head)) {
2060                 lnet_msg_t        *msg;
2061                 lnet_process_id_t  id;
2062
2063                 msg = cfs_list_entry(head->next, lnet_msg_t, msg_list);
2064                 cfs_list_del(&msg->msg_list);
2065
2066                 /* md won't disappear under me, since each msg
2067                  * holds a ref on it */
2068
2069                 id.nid = msg->msg_hdr.src_nid;
2070                 id.pid = msg->msg_hdr.src_pid;
2071
2072                 LASSERT(msg->msg_delayed);
2073                 LASSERT(msg->msg_md != NULL);
2074                 LASSERT(msg->msg_rxpeer != NULL);
2075                 LASSERT(msg->msg_hdr.type == LNET_MSG_PUT);
2076
2077                 CDEBUG(D_NET, "Resuming delayed PUT from %s portal %d "
2078                        "match "LPU64" offset %d length %d.\n",
2079                         libcfs_id2str(id), msg->msg_hdr.msg.put.ptl_index,
2080                         msg->msg_hdr.msg.put.match_bits,
2081                         msg->msg_hdr.msg.put.offset,
2082                         msg->msg_hdr.payload_length);
2083
2084                 lnet_recv_put(msg->msg_md, msg, 1,
2085                               msg->msg_ev.offset, msg->msg_ev.mlength);
2086         }
2087 }
2088
2089 /**
2090  * Initiate an asynchronous PUT operation.
2091  *
2092  * There are several events associated with a PUT: completion of the send on
2093  * the initiator node (LNET_EVENT_SEND), and when the send completes
2094  * successfully, the receipt of an acknowledgment (LNET_EVENT_ACK) indicating
2095  * that the operation was accepted by the target. The event LNET_EVENT_PUT is
2096  * used at the target node to indicate the completion of incoming data
2097  * delivery.
2098  *
2099  * The local events will be logged in the EQ associated with the MD pointed to
2100  * by \a mdh handle. Using a MD without an associated EQ results in these
2101  * events being discarded. In this case, the caller must have another
2102  * mechanism (e.g., a higher level protocol) for determining when it is safe
2103  * to modify the memory region associated with the MD.
2104  *
2105  * Note that LNet does not guarantee the order of LNET_EVENT_SEND and
2106  * LNET_EVENT_ACK, though intuitively ACK should happen after SEND.
2107  *
2108  * \param self Indicates the NID of a local interface through which to send
2109  * the PUT request. Use LNET_NID_ANY to let LNet choose one by itself.
2110  * \param mdh A handle for the MD that describes the memory to be sent. The MD
2111  * must be "free floating" (See LNetMDBind()).
2112  * \param ack Controls whether an acknowledgment is requested.
2113  * Acknowledgments are only sent when they are requested by the initiating
2114  * process and the target MD enables them.
2115  * \param target A process identifier for the target process.
2116  * \param portal The index in the \a target's portal table.
2117  * \param match_bits The match bits to use for MD selection at the target
2118  * process.
2119  * \param offset The offset into the target MD (only used when the target
2120  * MD has the LNET_MD_MANAGE_REMOTE option set).
2121  * \param hdr_data 64 bits of user data that can be included in the message
2122  * header. This data is written to an event queue entry at the target if an
2123  * EQ is present on the matching MD.
2124  *
2125  * \retval  0      Success, and only in this case events will be generated
2126  * and logged to EQ (if it exists).
2127  * \retval -EIO    Simulated failure.
2128  * \retval -ENOMEM Memory allocation failure.
2129  * \retval -ENOENT Invalid MD object.
2130  *
2131  * \see lnet_event_t::hdr_data and lnet_event_kind_t.
2132  */
2133 int
2134 LNetPut(lnet_nid_t self, lnet_handle_md_t mdh, lnet_ack_req_t ack,
2135         lnet_process_id_t target, unsigned int portal,
2136         __u64 match_bits, unsigned int offset,
2137         __u64 hdr_data)
2138 {
2139         lnet_msg_t       *msg;
2140         lnet_libmd_t     *md;
2141         int               rc;
2142
2143         LASSERT (the_lnet.ln_init);
2144         LASSERT (the_lnet.ln_refcount > 0);
2145
2146         if (!cfs_list_empty (&the_lnet.ln_test_peers) && /* normally we don't */
2147             fail_peer (target.nid, 1))          /* shall we now? */
2148         {
2149                 CERROR("Dropping PUT to %s: simulated failure\n",
2150                        libcfs_id2str(target));
2151                 return -EIO;
2152         }
2153
2154         msg = lnet_msg_alloc();
2155         if (msg == NULL) {
2156                 CERROR("Dropping PUT to %s: ENOMEM on lnet_msg_t\n",
2157                        libcfs_id2str(target));
2158                 return -ENOMEM;
2159         }
2160         msg->msg_vmflush = !!cfs_memory_pressure_get();
2161
2162         LNET_LOCK();
2163
2164         md = lnet_handle2md(&mdh);
2165         if (md == NULL || md->md_threshold == 0 || md->md_me != NULL) {
2166                 lnet_msg_free_locked(msg);
2167
2168                 CERROR("Dropping PUT ("LPU64":%d:%s): MD (%d) invalid\n",
2169                        match_bits, portal, libcfs_id2str(target),
2170                        md == NULL ? -1 : md->md_threshold);
2171                 if (md != NULL && md->md_me != NULL)
2172                         CERROR("Source MD also attached to portal %d\n",
2173                                md->md_me->me_portal);
2174
2175                 LNET_UNLOCK();
2176                 return -ENOENT;
2177         }
2178
2179         CDEBUG(D_NET, "LNetPut -> %s\n", libcfs_id2str(target));
2180
2181         lnet_commit_md(md, msg);
2182
2183         lnet_prep_send(msg, LNET_MSG_PUT, target, 0, md->md_length);
2184
2185         msg->msg_hdr.msg.put.match_bits = cpu_to_le64(match_bits);
2186         msg->msg_hdr.msg.put.ptl_index = cpu_to_le32(portal);
2187         msg->msg_hdr.msg.put.offset = cpu_to_le32(offset);
2188         msg->msg_hdr.msg.put.hdr_data = hdr_data;
2189
2190         /* NB handles only looked up by creator (no flips) */
2191         if (ack == LNET_ACK_REQ) {
2192                 msg->msg_hdr.msg.put.ack_wmd.wh_interface_cookie = 
2193                         the_lnet.ln_interface_cookie;
2194                 msg->msg_hdr.msg.put.ack_wmd.wh_object_cookie = 
2195                         md->md_lh.lh_cookie;
2196         } else {
2197                 msg->msg_hdr.msg.put.ack_wmd.wh_interface_cookie = 
2198                         LNET_WIRE_HANDLE_COOKIE_NONE;
2199                 msg->msg_hdr.msg.put.ack_wmd.wh_object_cookie = 
2200                         LNET_WIRE_HANDLE_COOKIE_NONE;
2201         }
2202
2203         msg->msg_ev.type = LNET_EVENT_SEND;
2204         msg->msg_ev.initiator.nid = LNET_NID_ANY;
2205         msg->msg_ev.initiator.pid = the_lnet.ln_pid;
2206         msg->msg_ev.target = target;
2207         msg->msg_ev.sender = LNET_NID_ANY;
2208         msg->msg_ev.pt_index = portal;
2209         msg->msg_ev.match_bits = match_bits;
2210         msg->msg_ev.rlength = md->md_length;
2211         msg->msg_ev.mlength = md->md_length;
2212         msg->msg_ev.offset = offset;
2213         msg->msg_ev.hdr_data = hdr_data;
2214
2215         lnet_md_deconstruct(md, &msg->msg_ev.md);
2216         lnet_md2handle(&msg->msg_ev.md_handle, md);
2217
2218         the_lnet.ln_counters.send_count++;
2219         the_lnet.ln_counters.send_length += md->md_length;
2220
2221         LNET_UNLOCK();
2222
2223         rc = lnet_send(self, msg);
2224         if (rc != 0) {
2225                 CNETERR( "Error sending PUT to %s: %d\n",
2226                        libcfs_id2str(target), rc);
2227                 lnet_finalize (NULL, msg, rc);
2228         }
2229
2230         /* completion will be signalled by an event */
2231         return 0;
2232 }
2233
2234 lnet_msg_t *
2235 lnet_create_reply_msg (lnet_ni_t *ni, lnet_msg_t *getmsg)
2236 {
2237         /* The LND can DMA direct to the GET md (i.e. no REPLY msg).  This
2238          * returns a msg for the LND to pass to lnet_finalize() when the sink
2239          * data has been received.
2240          *
2241          * CAVEAT EMPTOR: 'getmsg' is the original GET, which is freed when
2242          * lnet_finalize() is called on it, so the LND must call this first */
2243
2244         lnet_msg_t        *msg = lnet_msg_alloc();
2245         lnet_libmd_t      *getmd = getmsg->msg_md;
2246         lnet_process_id_t  peer_id = getmsg->msg_target;
2247
2248         LASSERT (!getmsg->msg_target_is_router);
2249         LASSERT (!getmsg->msg_routing);
2250
2251         LNET_LOCK();
2252
2253         LASSERT (getmd->md_refcount > 0);
2254
2255         if (msg == NULL) {
2256                 CERROR ("%s: Dropping REPLY from %s: can't allocate msg\n",
2257                         libcfs_nid2str(ni->ni_nid), libcfs_id2str(peer_id));
2258                 goto drop;
2259         }
2260
2261         if (getmd->md_threshold == 0) {
2262                 CERROR ("%s: Dropping REPLY from %s for inactive MD %p\n",
2263                         libcfs_nid2str(ni->ni_nid), libcfs_id2str(peer_id), 
2264                         getmd);
2265                 goto drop_msg;
2266         }
2267
2268         LASSERT (getmd->md_offset == 0);
2269
2270         CDEBUG(D_NET, "%s: Reply from %s md %p\n", 
2271                libcfs_nid2str(ni->ni_nid), libcfs_id2str(peer_id), getmd);
2272
2273         lnet_commit_md (getmd, msg);
2274
2275         msg->msg_type = LNET_MSG_GET; /* flag this msg as an "optimized" GET */
2276
2277         msg->msg_ev.type = LNET_EVENT_REPLY;
2278         msg->msg_ev.initiator = peer_id;
2279         msg->msg_ev.sender = peer_id.nid;  /* optimized GETs can't be routed */
2280         msg->msg_ev.rlength = msg->msg_ev.mlength = getmd->md_length;
2281         msg->msg_ev.offset = 0;
2282
2283         lnet_md_deconstruct(getmd, &msg->msg_ev.md);
2284         lnet_md2handle(&msg->msg_ev.md_handle, getmd);
2285
2286         the_lnet.ln_counters.recv_count++;
2287         the_lnet.ln_counters.recv_length += getmd->md_length;
2288
2289         LNET_UNLOCK();
2290
2291         return msg;
2292
2293  drop_msg:
2294         lnet_msg_free_locked(msg);
2295  drop:
2296         the_lnet.ln_counters.drop_count++;
2297         the_lnet.ln_counters.drop_length += getmd->md_length;
2298
2299         LNET_UNLOCK ();
2300
2301         return NULL;
2302 }
2303
2304 void
2305 lnet_set_reply_msg_len(lnet_ni_t *ni, lnet_msg_t *reply, unsigned int len)
2306 {
2307         /* Set the REPLY length, now the RDMA that elides the REPLY message has
2308          * completed and I know it. */
2309         LASSERT (reply != NULL);
2310         LASSERT (reply->msg_type == LNET_MSG_GET);
2311         LASSERT (reply->msg_ev.type == LNET_EVENT_REPLY);
2312
2313         /* NB I trusted my peer to RDMA.  If she tells me she's written beyond
2314          * the end of my buffer, I might as well be dead. */
2315         LASSERT (len <= reply->msg_ev.mlength);
2316
2317         reply->msg_ev.mlength = len;
2318 }
2319
2320 /**
2321  * Initiate an asynchronous GET operation.
2322  *
2323  * On the initiator node, an LNET_EVENT_SEND is logged when the GET request
2324  * is sent, and an LNET_EVENT_REPLY is logged when the data returned from
2325  * the target node in the REPLY has been written to local MD.
2326  *
2327  * On the target node, an LNET_EVENT_GET is logged when the GET request
2328  * arrives and is accepted into a MD.
2329  *
2330  * \param self,target,portal,match_bits,offset See the discussion in LNetPut().
2331  * \param mdh A handle for the MD that describes the memory into which the
2332  * requested data will be received. The MD must be "free floating" (See LNetMDBind()).
2333  *
2334  * \retval  0      Success, and only in this case events will be generated
2335  * and logged to EQ (if it exists) of the MD.
2336  * \retval -EIO    Simulated failure.
2337  * \retval -ENOMEM Memory allocation failure.
2338  * \retval -ENOENT Invalid MD object.
2339  */
2340 int
2341 LNetGet(lnet_nid_t self, lnet_handle_md_t mdh, 
2342         lnet_process_id_t target, unsigned int portal, 
2343         __u64 match_bits, unsigned int offset)
2344 {
2345         lnet_msg_t       *msg;
2346         lnet_libmd_t     *md;
2347         int               rc;
2348
2349         LASSERT (the_lnet.ln_init);
2350         LASSERT (the_lnet.ln_refcount > 0);
2351
2352         if (!cfs_list_empty (&the_lnet.ln_test_peers) && /* normally we don't */
2353             fail_peer (target.nid, 1))          /* shall we now? */
2354         {
2355                 CERROR("Dropping GET to %s: simulated failure\n",
2356                        libcfs_id2str(target));
2357                 return -EIO;
2358         }
2359
2360         msg = lnet_msg_alloc();
2361         if (msg == NULL) {
2362                 CERROR("Dropping GET to %s: ENOMEM on lnet_msg_t\n",
2363                        libcfs_id2str(target));
2364                 return -ENOMEM;
2365         }
2366
2367         LNET_LOCK();
2368
2369         md = lnet_handle2md(&mdh);
2370         if (md == NULL || md->md_threshold == 0 || md->md_me != NULL) {
2371                 lnet_msg_free_locked(msg);
2372
2373                 CERROR("Dropping GET ("LPU64":%d:%s): MD (%d) invalid\n",
2374                        match_bits, portal, libcfs_id2str(target),
2375                        md == NULL ? -1 : md->md_threshold);
2376                 if (md != NULL && md->md_me != NULL)
2377                         CERROR("REPLY MD also attached to portal %d\n",
2378                                md->md_me->me_portal);
2379
2380                 LNET_UNLOCK();
2381                 return -ENOENT;
2382         }
2383
2384         CDEBUG(D_NET, "LNetGet -> %s\n", libcfs_id2str(target));
2385
2386         lnet_commit_md(md, msg);
2387
2388         lnet_prep_send(msg, LNET_MSG_GET, target, 0, 0);
2389
2390         msg->msg_hdr.msg.get.match_bits = cpu_to_le64(match_bits);
2391         msg->msg_hdr.msg.get.ptl_index = cpu_to_le32(portal);
2392         msg->msg_hdr.msg.get.src_offset = cpu_to_le32(offset);
2393         msg->msg_hdr.msg.get.sink_length = cpu_to_le32(md->md_length);
2394
2395         /* NB handles only looked up by creator (no flips) */
2396         msg->msg_hdr.msg.get.return_wmd.wh_interface_cookie = 
2397                 the_lnet.ln_interface_cookie;
2398         msg->msg_hdr.msg.get.return_wmd.wh_object_cookie = 
2399                 md->md_lh.lh_cookie;
2400
2401         msg->msg_ev.type = LNET_EVENT_SEND;
2402         msg->msg_ev.initiator.nid = LNET_NID_ANY;
2403         msg->msg_ev.initiator.pid = the_lnet.ln_pid;
2404         msg->msg_ev.target = target;
2405         msg->msg_ev.sender = LNET_NID_ANY;
2406         msg->msg_ev.pt_index = portal;
2407         msg->msg_ev.match_bits = match_bits;
2408         msg->msg_ev.rlength = md->md_length;
2409         msg->msg_ev.mlength = md->md_length;
2410         msg->msg_ev.offset = offset;
2411         msg->msg_ev.hdr_data = 0;
2412
2413         lnet_md_deconstruct(md, &msg->msg_ev.md);
2414         lnet_md2handle(&msg->msg_ev.md_handle, md);
2415
2416         the_lnet.ln_counters.send_count++;
2417
2418         LNET_UNLOCK();
2419
2420         rc = lnet_send(self, msg);
2421         if (rc < 0) {
2422                 CNETERR( "Error sending GET to %s: %d\n",
2423                        libcfs_id2str(target), rc);
2424                 lnet_finalize (NULL, msg, rc);
2425         }
2426
2427         /* completion will be signalled by an event */
2428         return 0;
2429 }
2430
2431 /**
2432  * Calculate distance to node at \a dstnid.
2433  *
2434  * \param dstnid Target NID.
2435  * \param srcnidp If not NULL, NID of the local interface to reach \a dstnid
2436  * is saved here.
2437  * \param orderp If not NULL, order of the route to reach \a dstnid is saved
2438  * here.
2439  *
2440  * \retval 0 If \a dstnid belongs to a local interface, and reserved option
2441  * local_nid_dist_zero is set, which is the default.
2442  * \retval positives Distance to target NID, i.e. number of hops plus one.
2443  * \retval -EHOSTUNREACH If \a dstnid is not reachable.
2444  */
2445 int
2446 LNetDist (lnet_nid_t dstnid, lnet_nid_t *srcnidp, __u32 *orderp)
2447 {
2448         cfs_list_t       *e;
2449         lnet_ni_t        *ni;
2450         lnet_remotenet_t *rnet;
2451         __u32             dstnet = LNET_NIDNET(dstnid);
2452         int               hops;
2453         __u32             order = 2;
2454
2455         /* if !local_nid_dist_zero, I don't return a distance of 0 ever
2456          * (when lustre sees a distance of 0, it substitutes 0@lo), so I
2457          * keep order 0 free for 0@lo and order 1 free for a local NID
2458          * match */
2459
2460         LASSERT (the_lnet.ln_init);
2461         LASSERT (the_lnet.ln_refcount > 0);
2462
2463         LNET_LOCK();
2464
2465         cfs_list_for_each (e, &the_lnet.ln_nis) {
2466                 ni = cfs_list_entry(e, lnet_ni_t, ni_list);
2467
2468                 if (ni->ni_nid == dstnid) {
2469                         if (srcnidp != NULL)
2470                                 *srcnidp = dstnid;
2471                         if (orderp != NULL) {
2472                                 if (LNET_NETTYP(LNET_NIDNET(dstnid)) == LOLND)
2473                                         *orderp = 0;
2474                                 else
2475                                         *orderp = 1;
2476                         }
2477                         LNET_UNLOCK();
2478
2479                         return local_nid_dist_zero ? 0 : 1;
2480                 }
2481
2482                 if (LNET_NIDNET(ni->ni_nid) == dstnet) {
2483                         if (srcnidp != NULL)
2484                                 *srcnidp = ni->ni_nid;
2485                         if (orderp != NULL)
2486                                 *orderp = order;
2487                         LNET_UNLOCK();
2488                         return 1;
2489                 }
2490
2491                 order++;
2492         }
2493
2494         cfs_list_for_each (e, &the_lnet.ln_remote_nets) {
2495                 rnet = cfs_list_entry(e, lnet_remotenet_t, lrn_list);
2496
2497                 if (rnet->lrn_net == dstnet) {
2498                         lnet_route_t *route;
2499                         lnet_route_t *shortest = NULL;
2500
2501                         LASSERT (!cfs_list_empty(&rnet->lrn_routes));
2502
2503                         cfs_list_for_each_entry(route, &rnet->lrn_routes,
2504                                                 lr_list) {
2505                                 if (shortest == NULL ||
2506                                     route->lr_hops < shortest->lr_hops)
2507                                         shortest = route;
2508                         }
2509
2510                         LASSERT (shortest != NULL);
2511                         hops = shortest->lr_hops;
2512                         if (srcnidp != NULL)
2513                                 *srcnidp = shortest->lr_gateway->lp_ni->ni_nid;
2514                         if (orderp != NULL)
2515                                 *orderp = order;
2516                         LNET_UNLOCK();
2517                         return hops + 1;
2518                 }
2519                 order++;
2520         }
2521
2522         LNET_UNLOCK();
2523         return -EHOSTUNREACH;
2524 }
2525
2526 /**
2527  * Set the number of asynchronous messages expected from a target process.
2528  *
2529  * This function is only meaningful for userspace callers. It's a no-op when
2530  * called from kernel.
2531  *
2532  * Asynchronous messages are those that can come from a target when the
2533  * userspace process is not waiting for IO to complete; e.g., AST callbacks
2534  * from Lustre servers. Specifying the expected number of such messages
2535  * allows them to be eagerly received when user process is not running in
2536  * LNet; otherwise network errors may occur.
2537  *
2538  * \param id Process ID of the target process.
2539  * \param nasync Number of asynchronous messages expected from the target.
2540  *
2541  * \return 0 on success, and an error code otherwise.
2542  */
2543 int
2544 LNetSetAsync(lnet_process_id_t id, int nasync)
2545 {
2546 #ifdef __KERNEL__
2547         return 0;
2548 #else
2549         lnet_ni_t        *ni;
2550         lnet_remotenet_t *rnet;
2551         cfs_list_t       *tmp;
2552         lnet_route_t     *route;
2553         lnet_nid_t       *nids;
2554         int               nnids;
2555         int               maxnids = 256;
2556         int               rc = 0;
2557         int               rc2;
2558
2559         /* Target on a local network? */
2560         ni = lnet_net2ni(LNET_NIDNET(id.nid));
2561         if (ni != NULL) {
2562                 if (ni->ni_lnd->lnd_setasync != NULL) 
2563                         rc = (ni->ni_lnd->lnd_setasync)(ni, id, nasync);
2564                 lnet_ni_decref(ni);
2565                 return rc;
2566         }
2567
2568         /* Target on a remote network: apply to routers */
2569  again:
2570         LIBCFS_ALLOC(nids, maxnids * sizeof(*nids));
2571         if (nids == NULL)
2572                 return -ENOMEM;
2573         nnids = 0;
2574
2575         /* Snapshot all the router NIDs */
2576         LNET_LOCK();
2577         rnet = lnet_find_net_locked(LNET_NIDNET(id.nid));
2578         if (rnet != NULL) {
2579                 cfs_list_for_each(tmp, &rnet->lrn_routes) {
2580                         if (nnids == maxnids) {
2581                                 LNET_UNLOCK();
2582                                 LIBCFS_FREE(nids, maxnids * sizeof(*nids));
2583                                 maxnids *= 2;
2584                                 goto again;
2585                         }
2586
2587                         route = cfs_list_entry(tmp, lnet_route_t, lr_list);
2588                         nids[nnids++] = route->lr_gateway->lp_nid;
2589                 }
2590         }
2591         LNET_UNLOCK();
2592
2593         /* set async on all the routers */
2594         while (nnids-- > 0) {
2595                 id.pid = LUSTRE_SRV_LNET_PID;
2596                 id.nid = nids[nnids];
2597
2598                 ni = lnet_net2ni(LNET_NIDNET(id.nid));
2599                 if (ni == NULL)
2600                         continue;
2601
2602                 if (ni->ni_lnd->lnd_setasync != NULL) {
2603                         rc2 = (ni->ni_lnd->lnd_setasync)(ni, id, nasync);
2604                         if (rc2 != 0)
2605                                 rc = rc2;
2606                 }
2607                 lnet_ni_decref(ni);
2608         }
2609
2610         LIBCFS_FREE(nids, maxnids * sizeof(*nids));
2611         return rc;
2612 #endif
2613 }