Whamcloud - gitweb
28b69e6f2f70bcc92fb0573eab1179bda329946c
[fs/lustre-release.git] / lnet / include / lnet / lib-lnet.h
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/include/lnet/lib-lnet.h
35  *
36  * Top level include for library side routines
37  */
38
39 #ifndef __LNET_LIB_LNET_H__
40 #define __LNET_LIB_LNET_H__
41
42 #if defined(__linux__)
43 #include <lnet/linux/lib-lnet.h>
44 #elif defined(__APPLE__)
45 #include <lnet/darwin/lib-lnet.h>
46 #elif defined(__WINNT__)
47 #include <lnet/winnt/lib-lnet.h>
48 #else
49 #error Unsupported Operating System
50 #endif
51
52 #include <libcfs/libcfs.h>
53 #include <lnet/types.h>
54 #include <lnet/lnet.h>
55 #include <lnet/lib-types.h>
56
57 extern lnet_t  the_lnet;                        /* THE network */
58
59 static inline int lnet_is_wire_handle_none (lnet_handle_wire_t *wh)
60 {
61         return (wh->wh_interface_cookie == LNET_WIRE_HANDLE_COOKIE_NONE &&
62                 wh->wh_object_cookie == LNET_WIRE_HANDLE_COOKIE_NONE);
63 }
64
65 static inline int lnet_md_exhausted (lnet_libmd_t *md)
66 {
67         return (md->md_threshold == 0 ||
68                 ((md->md_options & LNET_MD_MAX_SIZE) != 0 &&
69                  md->md_offset + md->md_max_size > md->md_length));
70 }
71
72 static inline int lnet_md_unlinkable (lnet_libmd_t *md)
73 {
74         /* Should unlink md when its refcount is 0 and either:
75          *  - md has been flagged for deletion (by auto unlink or LNetM[DE]Unlink,
76          *    in the latter case md may not be exhausted).
77          *  - auto unlink is on and md is exhausted.
78          */
79         if (md->md_refcount != 0)
80                 return 0;
81
82         if ((md->md_flags & LNET_MD_FLAG_ZOMBIE) != 0)
83                 return 1;
84
85         return ((md->md_flags & LNET_MD_FLAG_AUTO_UNLINK) != 0 &&
86                 lnet_md_exhausted(md));
87 }
88
89 static inline unsigned int
90 lnet_match_to_hash(lnet_process_id_t id, __u64 mbits)
91 {
92         mbits += id.nid + id.pid;
93         return cfs_hash_long((unsigned long)mbits, LNET_PORTAL_HASH_BITS);
94 }
95
96 #ifdef __KERNEL__
97 #define LNET_LOCK()        cfs_spin_lock(&the_lnet.ln_lock)
98 #define LNET_UNLOCK()      cfs_spin_unlock(&the_lnet.ln_lock)
99 #define LNET_MUTEX_LOCK(m)   cfs_mutex_lock(m)
100 #define LNET_MUTEX_UNLOCK(m) cfs_mutex_unlock(m)
101 #else
102 # ifndef HAVE_LIBPTHREAD
103 #define LNET_SINGLE_THREADED_LOCK(l)            \
104 do {                                            \
105         LASSERT ((l) == 0);                     \
106         (l) = 1;                                \
107 } while (0)
108
109 #define LNET_SINGLE_THREADED_UNLOCK(l)          \
110 do {                                            \
111         LASSERT ((l) == 1);                     \
112         (l) = 0;                                \
113 } while (0)
114
115 #define LNET_LOCK()        LNET_SINGLE_THREADED_LOCK(the_lnet.ln_lock)
116 #define LNET_UNLOCK()      LNET_SINGLE_THREADED_UNLOCK(the_lnet.ln_lock)
117 #define LNET_MUTEX_LOCK(m)     LNET_SINGLE_THREADED_LOCK(*(m))
118 #define LNET_MUTEX_UNLOCK(m)   LNET_SINGLE_THREADED_UNLOCK(*(m))
119 # else
120 #define LNET_LOCK()        pthread_mutex_lock(&the_lnet.ln_lock)
121 #define LNET_UNLOCK()      pthread_mutex_unlock(&the_lnet.ln_lock)
122 #define LNET_MUTEX_LOCK(m)     pthread_mutex_lock(m)
123 #define LNET_MUTEX_UNLOCK(m)   pthread_mutex_unlock(m)
124 # endif
125 #endif
126
127 #define MAX_PORTALS     64
128
129 /* these are only used by code with LNET_USE_LIB_FREELIST, but we still
130  * exported them to !LNET_USE_LIB_FREELIST for easy implemetation */
131 #define LNET_FL_MAX_MES         2048
132 #define LNET_FL_MAX_MDS         2048
133 #define LNET_FL_MAX_EQS         512
134 #define LNET_FL_MAX_MSGS        2048    /* Outstanding messages */
135
136 #ifdef LNET_USE_LIB_FREELIST
137
138 int lnet_freelist_init(lnet_freelist_t *fl, int n, int size);
139 void lnet_freelist_fini(lnet_freelist_t *fl);
140
141 static inline void *
142 lnet_freelist_alloc (lnet_freelist_t *fl)
143 {
144         /* ALWAYS called with liblock held */
145         lnet_freeobj_t *o;
146
147         if (cfs_list_empty (&fl->fl_list))
148                 return (NULL);
149
150         o = cfs_list_entry (fl->fl_list.next, lnet_freeobj_t, fo_list);
151         cfs_list_del (&o->fo_list);
152         return ((void *)&o->fo_contents);
153 }
154
155 static inline void
156 lnet_freelist_free (lnet_freelist_t *fl, void *obj)
157 {
158         /* ALWAYS called with liblock held */
159         lnet_freeobj_t *o = cfs_list_entry (obj, lnet_freeobj_t, fo_contents);
160
161         cfs_list_add (&o->fo_list, &fl->fl_list);
162 }
163
164
165 static inline lnet_eq_t *
166 lnet_eq_alloc (void)
167 {
168         /* NEVER called with resource lock held */
169         struct lnet_res_container *rec = &the_lnet.ln_eq_container;
170         lnet_eq_t                 *eq;
171
172         LNET_LOCK();
173         eq = (lnet_eq_t *)lnet_freelist_alloc(&rec->rec_freelist);
174         LNET_UNLOCK();
175
176         return eq;
177 }
178
179 static inline void
180 lnet_eq_free_locked(lnet_eq_t *eq)
181 {
182         /* ALWAYS called with resource lock held */
183         struct lnet_res_container *rec = &the_lnet.ln_eq_container;
184
185         lnet_freelist_free(&rec->rec_freelist, eq);
186 }
187
188 static inline void
189 lnet_eq_free(lnet_eq_t *eq)
190 {
191         LNET_LOCK();
192         lnet_eq_free_locked(eq);
193         LNET_UNLOCK();
194 }
195
196 static inline lnet_libmd_t *
197 lnet_md_alloc (lnet_md_t *umd)
198 {
199         /* NEVER called with resource lock held */
200         struct lnet_res_container *rec = &the_lnet.ln_md_container;
201         lnet_libmd_t              *md;
202
203         LNET_LOCK();
204         md = (lnet_libmd_t *)lnet_freelist_alloc(&rec->rec_freelist);
205         LNET_UNLOCK();
206
207         if (md != NULL)
208                 CFS_INIT_LIST_HEAD(&md->md_list);
209
210         return md;
211 }
212
213 static inline void
214 lnet_md_free_locked(lnet_libmd_t *md)
215 {
216         /* ALWAYS called with resource lock held */
217         struct lnet_res_container *rec = &the_lnet.ln_md_container;
218
219         lnet_freelist_free(&rec->rec_freelist, md);
220 }
221
222 static inline void
223 lnet_md_free(lnet_libmd_t *md)
224 {
225         LNET_LOCK();
226         lnet_md_free_locked(md);
227         LNET_UNLOCK();
228 }
229
230 static inline lnet_me_t *
231 lnet_me_alloc(void)
232 {
233         /* NEVER called with resource lock held */
234         struct lnet_res_container *rec = &the_lnet.ln_me_container;
235         lnet_me_t                 *me;
236
237         LNET_LOCK();
238         me = (lnet_me_t *)lnet_freelist_alloc(&rec->rec_freelist);
239         LNET_UNLOCK();
240
241         return me;
242 }
243
244 static inline void
245 lnet_me_free_locked(lnet_me_t *me)
246 {
247         /* ALWAYS called with resource lock held */
248         struct lnet_res_container *rec = &the_lnet.ln_me_container;
249
250         lnet_freelist_free(&rec->rec_freelist, me);
251 }
252
253 static inline void
254 lnet_me_free(lnet_me_t *me)
255 {
256         LNET_LOCK();
257         lnet_me_free_locked(me);
258         LNET_UNLOCK();
259 }
260
261 static inline lnet_msg_t *
262 lnet_msg_alloc (void)
263 {
264         /* NEVER called with liblock held */
265         lnet_msg_t    *msg;
266
267         LNET_LOCK();
268         msg = (lnet_msg_t *)lnet_freelist_alloc(&the_lnet.ln_free_msgs);
269         LNET_UNLOCK();
270
271         if (msg != NULL) {
272                 /* NULL pointers, clear flags etc */
273                 memset (msg, 0, sizeof (*msg));
274 #ifdef CRAY_XT3
275                 msg->msg_ev.uid = LNET_UID_ANY;
276 #endif
277         }
278         return(msg);
279 }
280
281 static inline void
282 lnet_msg_free_locked(lnet_msg_t *msg)
283 {
284         /* ALWAYS called with network lock held */
285         LASSERT(!msg->msg_onactivelist);
286         lnet_freelist_free(&the_lnet.ln_free_msgs, msg);
287 }
288
289 static inline void
290 lnet_msg_free (lnet_msg_t *msg)
291 {
292         LNET_LOCK();
293         lnet_msg_free_locked(msg);
294         LNET_UNLOCK();
295 }
296
297 #else /* !LNET_USE_LIB_FREELIST */
298
299 static inline lnet_eq_t *
300 lnet_eq_alloc (void)
301 {
302         /* NEVER called with liblock held */
303         lnet_eq_t *eq;
304
305         LIBCFS_ALLOC(eq, sizeof(*eq));
306         return (eq);
307 }
308
309 static inline void
310 lnet_eq_free(lnet_eq_t *eq)
311 {
312         /* ALWAYS called with resource lock held */
313         LIBCFS_FREE(eq, sizeof(*eq));
314 }
315
316 static inline lnet_libmd_t *
317 lnet_md_alloc (lnet_md_t *umd)
318 {
319         /* NEVER called with liblock held */
320         lnet_libmd_t *md;
321         unsigned int  size;
322         unsigned int  niov;
323
324         if ((umd->options & LNET_MD_KIOV) != 0) {
325                 niov = umd->length;
326                 size = offsetof(lnet_libmd_t, md_iov.kiov[niov]);
327         } else {
328                 niov = ((umd->options & LNET_MD_IOVEC) != 0) ?
329                        umd->length : 1;
330                 size = offsetof(lnet_libmd_t, md_iov.iov[niov]);
331         }
332
333         LIBCFS_ALLOC(md, size);
334
335         if (md != NULL) {
336                 /* Set here in case of early free */
337                 md->md_options = umd->options;
338                 md->md_niov = niov;
339                 CFS_INIT_LIST_HEAD(&md->md_list);
340         }
341
342         return (md);
343 }
344
345 static inline void
346 lnet_md_free(lnet_libmd_t *md)
347 {
348         /* ALWAYS called with resource lock held */
349         unsigned int  size;
350
351         if ((md->md_options & LNET_MD_KIOV) != 0)
352                 size = offsetof(lnet_libmd_t, md_iov.kiov[md->md_niov]);
353         else
354                 size = offsetof(lnet_libmd_t, md_iov.iov[md->md_niov]);
355
356         LIBCFS_FREE(md, size);
357 }
358
359 static inline lnet_me_t *
360 lnet_me_alloc (void)
361 {
362         /* NEVER called with liblock held */
363         lnet_me_t *me;
364
365         LIBCFS_ALLOC(me, sizeof(*me));
366         return (me);
367 }
368
369 static inline void
370 lnet_me_free(lnet_me_t *me)
371 {
372         /* ALWAYS called with resource lock held */
373         LIBCFS_FREE(me, sizeof(*me));
374 }
375
376 static inline lnet_msg_t *
377 lnet_msg_alloc(void)
378 {
379         /* NEVER called with liblock held */
380         lnet_msg_t *msg;
381
382         LIBCFS_ALLOC(msg, sizeof(*msg));
383
384         /* no need to zero, LIBCFS_ALLOC does for us */
385
386 #ifdef CRAY_XT3
387         if (msg != NULL) {
388                 msg->msg_ev.uid = LNET_UID_ANY;
389         }
390 #endif
391         return (msg);
392 }
393
394 static inline void
395 lnet_msg_free(lnet_msg_t *msg)
396 {
397         /* ALWAYS called with network lock held */
398         LASSERT(!msg->msg_onactivelist);
399         LIBCFS_FREE(msg, sizeof(*msg));
400 }
401
402 #define lnet_eq_free_locked(eq)         lnet_eq_free(eq)
403 #define lnet_md_free_locked(md)         lnet_md_free(md)
404 #define lnet_me_free_locked(me)         lnet_me_free(me)
405 #define lnet_msg_free_locked(msg)       lnet_msg_free(msg)
406
407 #endif /* LNET_USE_LIB_FREELIST */
408
409 lnet_libhandle_t *lnet_res_lh_lookup(struct lnet_res_container *rec,
410                                      __u64 cookie);
411 void lnet_res_lh_initialize(struct lnet_res_container *rec,
412                             lnet_libhandle_t *lh);
413 static inline void
414 lnet_res_lh_invalidate(lnet_libhandle_t *lh)
415 {
416         /* ALWAYS called with resource lock held */
417         cfs_list_del(&lh->lh_hash_chain);
418 }
419
420 static inline void
421 lnet_eq2handle (lnet_handle_eq_t *handle, lnet_eq_t *eq)
422 {
423         if (eq == NULL) {
424                 LNetInvalidateHandle(handle);
425                 return;
426         }
427
428         handle->cookie = eq->eq_lh.lh_cookie;
429 }
430
431 static inline lnet_eq_t *
432 lnet_handle2eq(lnet_handle_eq_t *handle)
433 {
434         /* ALWAYS called with resource lock held */
435         lnet_libhandle_t *lh;
436
437         lh = lnet_res_lh_lookup(&the_lnet.ln_eq_container, handle->cookie);
438         if (lh == NULL)
439                 return NULL;
440
441         return lh_entry(lh, lnet_eq_t, eq_lh);
442 }
443
444 static inline void
445 lnet_md2handle (lnet_handle_md_t *handle, lnet_libmd_t *md)
446 {
447         handle->cookie = md->md_lh.lh_cookie;
448 }
449
450 static inline lnet_libmd_t *
451 lnet_handle2md(lnet_handle_md_t *handle)
452 {
453         /* ALWAYS called with resource lock held */
454         lnet_libhandle_t *lh;
455
456         lh = lnet_res_lh_lookup(&the_lnet.ln_md_container, handle->cookie);
457         if (lh == NULL)
458                 return NULL;
459
460         return lh_entry(lh, lnet_libmd_t, md_lh);
461 }
462
463 static inline lnet_libmd_t *
464 lnet_wire_handle2md(lnet_handle_wire_t *wh)
465 {
466         /* ALWAYS called with resource lock held */
467         lnet_libhandle_t *lh;
468
469         if (wh->wh_interface_cookie != the_lnet.ln_interface_cookie)
470                 return NULL;
471
472         lh = lnet_res_lh_lookup(&the_lnet.ln_md_container,
473                                 wh->wh_object_cookie);
474         if (lh == NULL)
475                 return NULL;
476
477         return lh_entry(lh, lnet_libmd_t, md_lh);
478 }
479
480 static inline void
481 lnet_me2handle (lnet_handle_me_t *handle, lnet_me_t *me)
482 {
483         handle->cookie = me->me_lh.lh_cookie;
484 }
485
486 static inline lnet_me_t *
487 lnet_handle2me(lnet_handle_me_t *handle)
488 {
489         /* ALWAYS called with resource lock held */
490         lnet_libhandle_t *lh;
491
492         lh = lnet_res_lh_lookup(&the_lnet.ln_me_container, handle->cookie);
493         if (lh == NULL)
494                 return NULL;
495
496         return lh_entry(lh, lnet_me_t, me_lh);
497 }
498
499 static inline int
500 lnet_portal_is_lazy(lnet_portal_t *ptl)
501 {
502         return !!(ptl->ptl_options & LNET_PTL_LAZY);
503 }
504
505 static inline int
506 lnet_portal_is_unique(lnet_portal_t *ptl)
507 {
508         return !!(ptl->ptl_options & LNET_PTL_MATCH_UNIQUE); 
509 }
510
511 static inline int
512 lnet_portal_is_wildcard(lnet_portal_t *ptl)
513 {
514         return !!(ptl->ptl_options & LNET_PTL_MATCH_WILDCARD);
515 }
516
517 static inline void
518 lnet_portal_setopt(lnet_portal_t *ptl, int opt)
519 {
520         ptl->ptl_options |= opt;
521 }
522
523 static inline void
524 lnet_portal_unsetopt(lnet_portal_t *ptl, int opt)
525 {
526         ptl->ptl_options &= ~opt;
527 }
528
529 static inline int
530 lnet_match_is_unique(lnet_process_id_t match_id,
531                      __u64 match_bits, __u64 ignore_bits)
532 {
533         return ignore_bits == 0 &&
534                match_id.nid != LNET_NID_ANY &&
535                match_id.pid != LNET_PID_ANY;
536 }
537
538 static inline cfs_list_t *
539 lnet_portal_me_head(int index, lnet_process_id_t id, __u64 mbits)
540 {
541         lnet_portal_t *ptl = &the_lnet.ln_portals[index];
542
543         if (lnet_portal_is_wildcard(ptl)) {
544                 return &ptl->ptl_mlist;
545         } else if (lnet_portal_is_unique(ptl)) {
546                 LASSERT (ptl->ptl_mhash != NULL);
547                 return &ptl->ptl_mhash[lnet_match_to_hash(id, mbits)];
548         }
549         return NULL;
550 }
551
552 cfs_list_t *lnet_portal_mhash_alloc(void);
553 void lnet_portal_mhash_free(cfs_list_t *mhash);
554
555 static inline void
556 lnet_peer_addref_locked(lnet_peer_t *lp)
557 {
558         LASSERT (lp->lp_refcount > 0);
559         lp->lp_refcount++;
560 }
561
562 extern void lnet_destroy_peer_locked(lnet_peer_t *lp);
563
564 static inline void
565 lnet_peer_decref_locked(lnet_peer_t *lp)
566 {
567         LASSERT (lp->lp_refcount > 0);
568         lp->lp_refcount--;
569         if (lp->lp_refcount == 0)
570                 lnet_destroy_peer_locked(lp);
571 }
572
573 static inline int
574 lnet_isrouter(lnet_peer_t *lp)
575 {
576         return lp->lp_rtr_refcount != 0;
577 }
578
579 static inline void
580 lnet_ni_addref_locked(lnet_ni_t *ni)
581 {
582         LASSERT (ni->ni_refcount > 0);
583         ni->ni_refcount++;
584 }
585
586 static inline void
587 lnet_ni_addref(lnet_ni_t *ni)
588 {
589         LNET_LOCK();
590         lnet_ni_addref_locked(ni);
591         LNET_UNLOCK();
592 }
593
594 static inline void
595 lnet_ni_decref_locked(lnet_ni_t *ni)
596 {
597         LASSERT (ni->ni_refcount > 0);
598         ni->ni_refcount--;
599         if (ni->ni_refcount == 0)
600                 cfs_list_add_tail(&ni->ni_list, &the_lnet.ln_zombie_nis);
601 }
602
603 static inline void
604 lnet_ni_decref(lnet_ni_t *ni)
605 {
606         LNET_LOCK();
607         lnet_ni_decref_locked(ni);
608         LNET_UNLOCK();
609 }
610
611 static inline cfs_list_t *
612 lnet_nid2peerhash (lnet_nid_t nid)
613 {
614         unsigned int idx = LNET_NIDADDR(nid) % LNET_PEER_HASHSIZE;
615
616         return &the_lnet.ln_peer_hash[idx];
617 }
618
619 extern lnd_t the_lolnd;
620
621 #ifndef __KERNEL__
622 /* unconditional registration */
623 #define LNET_REGISTER_ULND(lnd)                 \
624 do {                                            \
625         extern lnd_t lnd;                       \
626                                                 \
627         lnet_register_lnd(&(lnd));              \
628 } while (0)
629
630 /* conditional registration */
631 #define LNET_REGISTER_ULND_IF_PRESENT(lnd)                              \
632 do {                                                                    \
633         extern lnd_t lnd __attribute__ ((weak, alias("the_lolnd")));    \
634                                                                         \
635         if (&(lnd) != &the_lolnd)                                       \
636                 lnet_register_lnd(&(lnd));                              \
637 } while (0)
638 #endif
639
640 #ifdef CRAY_XT3
641 inline static void
642 lnet_set_msg_uid(lnet_ni_t *ni, lnet_msg_t *msg, lnet_uid_t uid)
643 {
644         LASSERT (msg->msg_ev.uid == LNET_UID_ANY);
645         msg->msg_ev.uid = uid;
646 }
647 #endif
648
649 extern lnet_ni_t *lnet_nid2ni_locked (lnet_nid_t nid);
650 extern lnet_ni_t *lnet_net2ni_locked (__u32 net);
651 static inline lnet_ni_t *
652 lnet_net2ni (__u32 net)
653 {
654         lnet_ni_t *ni;
655
656         LNET_LOCK();
657         ni = lnet_net2ni_locked(net);
658         LNET_UNLOCK();
659
660         return ni;
661 }
662
663 int lnet_notify(lnet_ni_t *ni, lnet_nid_t peer, int alive, cfs_time_t when);
664 void lnet_notify_locked(lnet_peer_t *lp, int notifylnd, int alive, cfs_time_t when);
665 int lnet_add_route(__u32 net, unsigned int hops, lnet_nid_t gateway_nid);
666 int lnet_check_routes(void);
667 int lnet_del_route(__u32 net, lnet_nid_t gw_nid);
668 void lnet_destroy_routes(void);
669 int lnet_get_route(int idx, __u32 *net, __u32 *hops,
670                    lnet_nid_t *gateway, __u32 *alive);
671 void lnet_proc_init(void);
672 void lnet_proc_fini(void);
673 void lnet_init_rtrpools(void);
674 int  lnet_alloc_rtrpools(int im_a_router);
675 void lnet_free_rtrpools(void);
676 lnet_remotenet_t *lnet_find_net_locked (__u32 net);
677
678 int lnet_islocalnid(lnet_nid_t nid);
679 int lnet_islocalnet(__u32 net);
680
681 void lnet_build_unlink_event(lnet_libmd_t *md, lnet_event_t *ev);
682 void lnet_enq_event_locked(lnet_eq_t *eq, lnet_event_t *ev);
683 void lnet_prep_send(lnet_msg_t *msg, int type, lnet_process_id_t target,
684                     unsigned int offset, unsigned int len);
685 int lnet_send(lnet_nid_t nid, lnet_msg_t *msg);
686 void lnet_return_credits_locked (lnet_msg_t *msg);
687 void lnet_match_blocked_msg(lnet_libmd_t *md);
688 int lnet_parse (lnet_ni_t *ni, lnet_hdr_t *hdr,
689                 lnet_nid_t fromnid, void *private, int rdma_req);
690 void lnet_recv(lnet_ni_t *ni, void *private, lnet_msg_t *msg, int delayed,
691                unsigned int offset, unsigned int mlen, unsigned int rlen);
692 lnet_msg_t *lnet_create_reply_msg (lnet_ni_t *ni, lnet_msg_t *get_msg);
693 void lnet_set_reply_msg_len(lnet_ni_t *ni, lnet_msg_t *msg, unsigned int len);
694 void lnet_finalize(lnet_ni_t *ni, lnet_msg_t *msg, int rc);
695
696 char *lnet_msgtyp2str (int type);
697 void lnet_print_hdr (lnet_hdr_t * hdr);
698 int lnet_fail_nid(lnet_nid_t nid, unsigned int threshold);
699
700 unsigned int lnet_iov_nob (unsigned int niov, struct iovec *iov);
701 int lnet_extract_iov (int dst_niov, struct iovec *dst,
702                       int src_niov, struct iovec *src,
703                       unsigned int offset, unsigned int len);
704
705 unsigned int lnet_kiov_nob (unsigned int niov, lnet_kiov_t *iov);
706 int lnet_extract_kiov (int dst_niov, lnet_kiov_t *dst,
707                       int src_niov, lnet_kiov_t *src,
708                       unsigned int offset, unsigned int len);
709
710 void lnet_copy_iov2iov (unsigned int ndiov, struct iovec *diov,
711                         unsigned int doffset,
712                         unsigned int nsiov, struct iovec *siov,
713                         unsigned int soffset, unsigned int nob);
714 void lnet_copy_kiov2iov (unsigned int niov, struct iovec *iov,
715                          unsigned int iovoffset,
716                          unsigned int nkiov, lnet_kiov_t *kiov,
717                          unsigned int kiovoffset, unsigned int nob);
718 void lnet_copy_iov2kiov (unsigned int nkiov, lnet_kiov_t *kiov,
719                          unsigned int kiovoffset,
720                          unsigned int niov, struct iovec *iov,
721                          unsigned int iovoffset, unsigned int nob);
722 void lnet_copy_kiov2kiov (unsigned int ndkiov, lnet_kiov_t *dkiov,
723                           unsigned int doffset,
724                           unsigned int nskiov, lnet_kiov_t *skiov,
725                           unsigned int soffset, unsigned int nob);
726
727 static inline void
728 lnet_copy_iov2flat(int dlen, void *dest, unsigned int doffset,
729                    unsigned int nsiov, struct iovec *siov, unsigned int soffset,
730                    unsigned int nob)
731 {
732         struct iovec diov = {/*.iov_base = */ dest, /*.iov_len = */ dlen};
733
734         lnet_copy_iov2iov(1, &diov, doffset,
735                           nsiov, siov, soffset, nob);
736 }
737
738 static inline void
739 lnet_copy_kiov2flat(int dlen, void *dest, unsigned int doffset,
740                     unsigned int nsiov, lnet_kiov_t *skiov, unsigned int soffset,
741                     unsigned int nob)
742 {
743         struct iovec diov = {/* .iov_base = */ dest, /* .iov_len = */ dlen};
744
745         lnet_copy_kiov2iov(1, &diov, doffset,
746                            nsiov, skiov, soffset, nob);
747 }
748
749 static inline void
750 lnet_copy_flat2iov(unsigned int ndiov, struct iovec *diov, unsigned int doffset,
751                    int slen, void *src, unsigned int soffset, unsigned int nob)
752 {
753         struct iovec siov = {/*.iov_base = */ src, /*.iov_len = */slen};
754         lnet_copy_iov2iov(ndiov, diov, doffset,
755                           1, &siov, soffset, nob);
756 }
757
758 static inline void
759 lnet_copy_flat2kiov(unsigned int ndiov, lnet_kiov_t *dkiov, unsigned int doffset,
760                     int slen, void *src, unsigned int soffset, unsigned int nob)
761 {
762         struct iovec siov = {/* .iov_base = */ src, /* .iov_len = */ slen};
763         lnet_copy_iov2kiov(ndiov, dkiov, doffset,
764                            1, &siov, soffset, nob);
765 }
766
767 void lnet_me_unlink(lnet_me_t *me);
768
769 void lnet_md_unlink(lnet_libmd_t *md);
770 void lnet_md_deconstruct(lnet_libmd_t *lmd, lnet_md_t *umd);
771
772 void lnet_register_lnd(lnd_t *lnd);
773 void lnet_unregister_lnd(lnd_t *lnd);
774 int lnet_set_ip_niaddr (lnet_ni_t *ni);
775
776 #ifdef __KERNEL__
777 int lnet_connect(cfs_socket_t **sockp, lnet_nid_t peer_nid,
778                  __u32 local_ip, __u32 peer_ip, int peer_port);
779 void lnet_connect_console_error(int rc, lnet_nid_t peer_nid,
780                                 __u32 peer_ip, int port);
781 int lnet_count_acceptor_nis(void);
782 int lnet_acceptor_timeout(void);
783 int lnet_acceptor_port(void);
784 #else
785 void lnet_router_checker(void);
786 #endif
787
788 #ifdef HAVE_LIBPTHREAD
789 int lnet_count_acceptor_nis(void);
790 int lnet_acceptor_port(void);
791 #endif
792
793 int lnet_acceptor_start(void);
794 void lnet_acceptor_stop(void);
795
796 void lnet_get_tunables(void);
797 int lnet_peers_start_down(void);
798 int lnet_peer_buffer_credits(lnet_ni_t *ni);
799
800 int lnet_router_checker_start(void);
801 void lnet_router_checker_stop(void);
802 void lnet_swap_pinginfo(lnet_ping_info_t *info);
803 int lnet_router_down_ni(lnet_peer_t *rtr, __u32 net);
804
805 int lnet_ping_target_init(void);
806 void lnet_ping_target_fini(void);
807 int lnet_ping(lnet_process_id_t id, int timeout_ms,
808               lnet_process_id_t *ids, int n_ids);
809
810 int lnet_parse_ip2nets (char **networksp, char *ip2nets);
811 int lnet_parse_routes (char *route_str, int *im_a_router);
812 int lnet_parse_networks (cfs_list_t *nilist, char *networks);
813
814 int lnet_nid2peer_locked(lnet_peer_t **lpp, lnet_nid_t nid);
815 lnet_peer_t *lnet_find_peer_locked (lnet_nid_t nid);
816 void lnet_clear_peer_table(void);
817 void lnet_destroy_peer_table(void);
818 int lnet_create_peer_table(void);
819 void lnet_debug_peer(lnet_nid_t nid);
820
821 #ifndef __KERNEL__
822 static inline int
823 lnet_parse_int_tunable(int *value, char *name)
824 {
825         char    *env = getenv(name);
826         char    *end;
827
828         if (env == NULL)
829                 return 0;
830
831         *value = strtoull(env, &end, 0);
832         if (*end == 0)
833                 return 0;
834
835         CERROR("Can't parse tunable %s=%s\n", name, env);
836         return -EINVAL;
837 }
838 #endif
839
840 #endif