staging: lustre: Allocate the correct number of rtr buffers
[deliverable/linux.git] / drivers / staging / lustre / lnet / lnet / router.c
CommitLineData
d7e09d03
PT
1/*
2 * Copyright (c) 2007, 2010, Oracle and/or its affiliates. All rights reserved.
3 *
1dc563a6 4 * Copyright (c) 2011, 2015, Intel Corporation.
d7e09d03
PT
5 *
6 * This file is part of Portals
7 * http://sourceforge.net/projects/sandiaportals/
8 *
9 * Portals is free software; you can redistribute it and/or
10 * modify it under the terms of version 2 of the GNU General Public
11 * License as published by the Free Software Foundation.
12 *
13 * Portals is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 * GNU General Public License for more details.
17 *
d7e09d03
PT
18 */
19
20#define DEBUG_SUBSYSTEM S_LNET
9fdaf8c0 21#include "../../include/linux/lnet/lib-lnet.h"
d7e09d03 22
d7e09d03
PT
23#define LNET_NRB_TINY_MIN 512 /* min value for each CPT */
24#define LNET_NRB_TINY (LNET_NRB_TINY_MIN * 4)
25#define LNET_NRB_SMALL_MIN 4096 /* min value for each CPT */
26#define LNET_NRB_SMALL (LNET_NRB_SMALL_MIN * 4)
86ef6250 27#define LNET_NRB_SMALL_PAGES 1
d7e09d03
PT
28#define LNET_NRB_LARGE_MIN 256 /* min value for each CPT */
29#define LNET_NRB_LARGE (LNET_NRB_LARGE_MIN * 4)
86ef6250
AS
30#define LNET_NRB_LARGE_PAGES ((LNET_MTU + PAGE_CACHE_SIZE - 1) >> \
31 PAGE_CACHE_SHIFT)
d7e09d03
PT
32
33static char *forwarding = "";
8cc7b4b9
PT
34module_param(forwarding, charp, 0444);
35MODULE_PARM_DESC(forwarding, "Explicitly enable/disable forwarding between networks");
d7e09d03
PT
36
37static int tiny_router_buffers;
8cc7b4b9
PT
38module_param(tiny_router_buffers, int, 0444);
39MODULE_PARM_DESC(tiny_router_buffers, "# of 0 payload messages to buffer in the router");
d7e09d03 40static int small_router_buffers;
8cc7b4b9
PT
41module_param(small_router_buffers, int, 0444);
42MODULE_PARM_DESC(small_router_buffers, "# of small (1 page) messages to buffer in the router");
d7e09d03 43static int large_router_buffers;
8cc7b4b9
PT
44module_param(large_router_buffers, int, 0444);
45MODULE_PARM_DESC(large_router_buffers, "# of large messages to buffer in the router");
f96d1d7e 46static int peer_buffer_credits;
8cc7b4b9
PT
47module_param(peer_buffer_credits, int, 0444);
48MODULE_PARM_DESC(peer_buffer_credits, "# router buffer credits per peer");
d7e09d03
PT
49
50static int auto_down = 1;
8cc7b4b9
PT
51module_param(auto_down, int, 0444);
52MODULE_PARM_DESC(auto_down, "Automatically mark peers down on comms error");
d7e09d03
PT
53
54int
55lnet_peer_buffer_credits(lnet_ni_t *ni)
56{
57 /* NI option overrides LNet default */
58 if (ni->ni_peerrtrcredits > 0)
59 return ni->ni_peerrtrcredits;
60 if (peer_buffer_credits > 0)
61 return peer_buffer_credits;
62
4420cfd3
JS
63 /*
64 * As an approximation, allow this peer the same number of router
65 * buffers as it is allowed outstanding sends
66 */
d7e09d03
PT
67 return ni->ni_peertxcredits;
68}
69
70/* forward ref's */
71static int lnet_router_checker(void *);
d7e09d03 72
f96d1d7e 73static int check_routers_before_use;
8cc7b4b9
PT
74module_param(check_routers_before_use, int, 0444);
75MODULE_PARM_DESC(check_routers_before_use, "Assume routers are down and ping them before use");
d7e09d03 76
af3fa7c7 77int avoid_asym_router_failure = 1;
8cc7b4b9
PT
78module_param(avoid_asym_router_failure, int, 0644);
79MODULE_PARM_DESC(avoid_asym_router_failure, "Avoid asymmetrical router failures (0 to disable)");
d7e09d03
PT
80
81static int dead_router_check_interval = 60;
8cc7b4b9
PT
82module_param(dead_router_check_interval, int, 0644);
83MODULE_PARM_DESC(dead_router_check_interval, "Seconds between dead router health checks (<= 0 to disable)");
d7e09d03
PT
84
85static int live_router_check_interval = 60;
8cc7b4b9
PT
86module_param(live_router_check_interval, int, 0644);
87MODULE_PARM_DESC(live_router_check_interval, "Seconds between live router health checks (<= 0 to disable)");
d7e09d03
PT
88
89static int router_ping_timeout = 50;
8cc7b4b9
PT
90module_param(router_ping_timeout, int, 0644);
91MODULE_PARM_DESC(router_ping_timeout, "Seconds to wait for the reply to a router health query");
d7e09d03
PT
92
93int
94lnet_peers_start_down(void)
95{
96 return check_routers_before_use;
97}
98
99void
e6157b1b
RG
100lnet_notify_locked(lnet_peer_t *lp, int notifylnd, int alive,
101 unsigned long when)
d7e09d03 102{
699503bc 103 if (time_before(when, lp->lp_timestamp)) { /* out of date information */
d7e09d03
PT
104 CDEBUG(D_NET, "Out of date\n");
105 return;
106 }
107
108 lp->lp_timestamp = when; /* update timestamp */
109 lp->lp_ping_deadline = 0; /* disable ping timeout */
110
5fd88337 111 if (lp->lp_alive_count && /* got old news */
d7e09d03
PT
112 (!lp->lp_alive) == (!alive)) { /* new date for old news */
113 CDEBUG(D_NET, "Old news\n");
114 return;
115 }
116
117 /* Flag that notification is outstanding */
118
119 lp->lp_alive_count++;
120 lp->lp_alive = !(!alive); /* 1 bit! */
121 lp->lp_notify = 1;
122 lp->lp_notifylnd |= notifylnd;
123 if (lp->lp_alive)
124 lp->lp_ping_feats = LNET_PING_FEAT_INVAL; /* reset */
125
126 CDEBUG(D_NET, "set %s %d\n", libcfs_nid2str(lp->lp_nid), alive);
127}
128
24008203 129static void
d7e09d03
PT
130lnet_ni_notify_locked(lnet_ni_t *ni, lnet_peer_t *lp)
131{
7e7ab095
MS
132 int alive;
133 int notifylnd;
d7e09d03 134
4420cfd3
JS
135 /*
136 * Notify only in 1 thread at any time to ensure ordered notification.
d7e09d03 137 * NB individual events can be missed; the only guarantee is that you
4420cfd3
JS
138 * always get the most recent news
139 */
06ace26e 140 if (lp->lp_notifying || !ni)
d7e09d03
PT
141 return;
142
143 lp->lp_notifying = 1;
144
145 while (lp->lp_notify) {
7e7ab095 146 alive = lp->lp_alive;
d7e09d03
PT
147 notifylnd = lp->lp_notifylnd;
148
149 lp->lp_notifylnd = 0;
150 lp->lp_notify = 0;
151
06ace26e 152 if (notifylnd && ni->ni_lnd->lnd_notify) {
d7e09d03
PT
153 lnet_net_unlock(lp->lp_cpt);
154
4420cfd3
JS
155 /*
156 * A new notification could happen now; I'll handle it
157 * when control returns to me
158 */
0eee6778 159 ni->ni_lnd->lnd_notify(ni, lp->lp_nid, alive);
d7e09d03
PT
160
161 lnet_net_lock(lp->lp_cpt);
162 }
163 }
164
165 lp->lp_notifying = 0;
166}
167
d7e09d03
PT
168static void
169lnet_rtr_addref_locked(lnet_peer_t *lp)
170{
171 LASSERT(lp->lp_refcount > 0);
172 LASSERT(lp->lp_rtr_refcount >= 0);
173
174 /* lnet_net_lock must be exclusively locked */
175 lp->lp_rtr_refcount++;
176 if (lp->lp_rtr_refcount == 1) {
177 struct list_head *pos;
178
179 /* a simple insertion sort */
180 list_for_each_prev(pos, &the_lnet.ln_routers) {
181 lnet_peer_t *rtr = list_entry(pos, lnet_peer_t,
c314c319 182 lp_rtr_list);
d7e09d03
PT
183
184 if (rtr->lp_nid < lp->lp_nid)
185 break;
186 }
187
188 list_add(&lp->lp_rtr_list, pos);
189 /* addref for the_lnet.ln_routers */
190 lnet_peer_addref_locked(lp);
191 the_lnet.ln_routers_version++;
192 }
193}
194
195static void
196lnet_rtr_decref_locked(lnet_peer_t *lp)
197{
198 LASSERT(lp->lp_refcount > 0);
199 LASSERT(lp->lp_rtr_refcount > 0);
200
201 /* lnet_net_lock must be exclusively locked */
202 lp->lp_rtr_refcount--;
5fd88337 203 if (!lp->lp_rtr_refcount) {
d7e09d03
PT
204 LASSERT(list_empty(&lp->lp_routes));
205
06ace26e 206 if (lp->lp_rcd) {
d7e09d03 207 list_add(&lp->lp_rcd->rcd_list,
c314c319 208 &the_lnet.ln_rcd_deathrow);
d7e09d03
PT
209 lp->lp_rcd = NULL;
210 }
211
212 list_del(&lp->lp_rtr_list);
213 /* decref for the_lnet.ln_routers */
214 lnet_peer_decref_locked(lp);
215 the_lnet.ln_routers_version++;
216 }
217}
218
219lnet_remotenet_t *
939af333 220lnet_find_net_locked(__u32 net)
d7e09d03 221{
7e7ab095
MS
222 lnet_remotenet_t *rnet;
223 struct list_head *tmp;
224 struct list_head *rn_list;
d7e09d03
PT
225
226 LASSERT(!the_lnet.ln_shutdown);
227
228 rn_list = lnet_net2rnethash(net);
229 list_for_each(tmp, rn_list) {
230 rnet = list_entry(tmp, lnet_remotenet_t, lrn_list);
231
232 if (rnet->lrn_net == net)
233 return rnet;
234 }
235 return NULL;
236}
237
238static void lnet_shuffle_seed(void)
239{
f96d1d7e 240 static int seeded;
80feb1ef 241 __u32 lnd_type, seed[2];
1f4fc343 242 struct timespec64 ts;
d7e09d03
PT
243 lnet_ni_t *ni;
244 struct list_head *tmp;
245
246 if (seeded)
247 return;
248
249 cfs_get_random_bytes(seed, sizeof(seed));
250
4420cfd3
JS
251 /*
252 * Nodes with small feet have little entropy
253 * the NID for this node gives the most entropy in the low bits
254 */
d7e09d03
PT
255 list_for_each(tmp, &the_lnet.ln_nis) {
256 ni = list_entry(tmp, lnet_ni_t, ni_list);
257 lnd_type = LNET_NETTYP(LNET_NIDNET(ni->ni_nid));
258
259 if (lnd_type != LOLND)
260 seed[0] ^= (LNET_NIDADDR(ni->ni_nid) | lnd_type);
261 }
262
1f4fc343
AB
263 ktime_get_ts64(&ts);
264 cfs_srand(ts.tv_sec ^ seed[0], ts.tv_nsec ^ seed[1]);
d7e09d03 265 seeded = 1;
d7e09d03
PT
266}
267
268/* NB expects LNET_LOCK held */
24008203 269static void
939af333 270lnet_add_route_to_rnet(lnet_remotenet_t *rnet, lnet_route_t *route)
d7e09d03 271{
7e7ab095
MS
272 unsigned int len = 0;
273 unsigned int offset = 0;
274 struct list_head *e;
d7e09d03
PT
275
276 lnet_shuffle_seed();
277
939af333 278 list_for_each(e, &rnet->lrn_routes) {
d7e09d03
PT
279 len++;
280 }
281
282 /* len+1 positions to add a new entry, also prevents division by 0 */
283 offset = cfs_rand() % (len + 1);
939af333 284 list_for_each(e, &rnet->lrn_routes) {
5fd88337 285 if (!offset)
d7e09d03
PT
286 break;
287 offset--;
288 }
289 list_add(&route->lr_list, e);
290 list_add(&route->lr_gwlist, &route->lr_gateway->lp_routes);
291
292 the_lnet.ln_remote_nets_version++;
293 lnet_rtr_addref_locked(route->lr_gateway);
294}
295
296int
e75fb87f
DO
297lnet_add_route(__u32 net, unsigned int hops, lnet_nid_t gateway,
298 unsigned int priority)
d7e09d03 299{
7e7ab095
MS
300 struct list_head *e;
301 lnet_remotenet_t *rnet;
302 lnet_remotenet_t *rnet2;
303 lnet_route_t *route;
304 lnet_ni_t *ni;
305 int add_route;
306 int rc;
d7e09d03 307
e75fb87f
DO
308 CDEBUG(D_NET, "Add route: net %s hops %u priority %u gw %s\n",
309 libcfs_net2str(net), hops, priority, libcfs_nid2str(gateway));
d7e09d03
PT
310
311 if (gateway == LNET_NID_ANY ||
312 LNET_NETTYP(LNET_NIDNET(gateway)) == LOLND ||
313 net == LNET_NIDNET(LNET_NID_ANY) ||
314 LNET_NETTYP(net) == LOLND ||
315 LNET_NIDNET(gateway) == net ||
316 hops < 1 || hops > 255)
fbe7c6c7 317 return -EINVAL;
d7e09d03
PT
318
319 if (lnet_islocalnet(net)) /* it's a local network */
be8240ac 320 return -EEXIST;
d7e09d03
PT
321
322 /* Assume net, route, all new */
323 LIBCFS_ALLOC(route, sizeof(*route));
324 LIBCFS_ALLOC(rnet, sizeof(*rnet));
06ace26e 325 if (!route || !rnet) {
d7e09d03
PT
326 CERROR("Out of memory creating route %s %d %s\n",
327 libcfs_net2str(net), hops, libcfs_nid2str(gateway));
06ace26e 328 if (route)
d7e09d03 329 LIBCFS_FREE(route, sizeof(*route));
06ace26e 330 if (rnet)
d7e09d03
PT
331 LIBCFS_FREE(rnet, sizeof(*rnet));
332 return -ENOMEM;
333 }
334
335 INIT_LIST_HEAD(&rnet->lrn_routes);
336 rnet->lrn_net = net;
337 route->lr_hops = hops;
338 route->lr_net = net;
e75fb87f 339 route->lr_priority = priority;
d7e09d03
PT
340
341 lnet_net_lock(LNET_LOCK_EX);
342
343 rc = lnet_nid2peer_locked(&route->lr_gateway, gateway, LNET_LOCK_EX);
5fd88337 344 if (rc) {
d7e09d03
PT
345 lnet_net_unlock(LNET_LOCK_EX);
346
347 LIBCFS_FREE(route, sizeof(*route));
348 LIBCFS_FREE(rnet, sizeof(*rnet));
349
ec523735 350 if (rc == -EHOSTUNREACH) /* gateway is not on a local net */
be8240ac 351 return rc; /* ignore the route entry */
ec523735
RG
352 CERROR("Error %d creating route %s %d %s\n", rc,
353 libcfs_net2str(net), hops,
354 libcfs_nid2str(gateway));
d7e09d03
PT
355 return rc;
356 }
357
939af333 358 LASSERT(!the_lnet.ln_shutdown);
d7e09d03
PT
359
360 rnet2 = lnet_find_net_locked(net);
06ace26e 361 if (!rnet2) {
d7e09d03
PT
362 /* new network */
363 list_add_tail(&rnet->lrn_list, lnet_net2rnethash(net));
364 rnet2 = rnet;
365 }
366
367 /* Search for a duplicate route (it's a NOOP if it is) */
368 add_route = 1;
939af333 369 list_for_each(e, &rnet2->lrn_routes) {
d7e09d03
PT
370 lnet_route_t *route2 = list_entry(e, lnet_route_t, lr_list);
371
372 if (route2->lr_gateway == route->lr_gateway) {
373 add_route = 0;
374 break;
375 }
376
377 /* our lookups must be true */
939af333 378 LASSERT(route2->lr_gateway->lp_nid != gateway);
d7e09d03
PT
379 }
380
381 if (add_route) {
382 lnet_peer_addref_locked(route->lr_gateway); /* +1 for notify */
383 lnet_add_route_to_rnet(rnet2, route);
384
385 ni = route->lr_gateway->lp_ni;
386 lnet_net_unlock(LNET_LOCK_EX);
387
388 /* XXX Assume alive */
06ace26e 389 if (ni->ni_lnd->lnd_notify)
0eee6778 390 ni->ni_lnd->lnd_notify(ni, gateway, 1);
d7e09d03
PT
391
392 lnet_net_lock(LNET_LOCK_EX);
393 }
394
395 /* -1 for notify or !add_route */
396 lnet_peer_decref_locked(route->lr_gateway);
397 lnet_net_unlock(LNET_LOCK_EX);
be8240ac 398 rc = 0;
d7e09d03 399
be8240ac
AS
400 if (!add_route) {
401 rc = -EEXIST;
d7e09d03 402 LIBCFS_FREE(route, sizeof(*route));
be8240ac 403 }
d7e09d03
PT
404
405 if (rnet != rnet2)
406 LIBCFS_FREE(rnet, sizeof(*rnet));
407
7f8b70e0
AS
408 /* indicate to startup the router checker if configured */
409 wake_up(&the_lnet.ln_rc_waitq);
410
be8240ac 411 return rc;
d7e09d03
PT
412}
413
414int
415lnet_check_routes(void)
416{
7e7ab095
MS
417 lnet_remotenet_t *rnet;
418 lnet_route_t *route;
419 lnet_route_t *route2;
420 struct list_head *e1;
421 struct list_head *e2;
422 int cpt;
423 struct list_head *rn_list;
424 int i;
d7e09d03
PT
425
426 cpt = lnet_net_lock_current();
427
428 for (i = 0; i < LNET_REMOTE_NETS_HASH_SIZE; i++) {
429 rn_list = &the_lnet.ln_remote_nets_hash[i];
430 list_for_each(e1, rn_list) {
431 rnet = list_entry(e1, lnet_remotenet_t, lrn_list);
432
433 route2 = NULL;
434 list_for_each(e2, &rnet->lrn_routes) {
7e7ab095
MS
435 lnet_nid_t nid1;
436 lnet_nid_t nid2;
437 int net;
d7e09d03 438
c314c319 439 route = list_entry(e2, lnet_route_t, lr_list);
d7e09d03 440
06ace26e 441 if (!route2) {
d7e09d03
PT
442 route2 = route;
443 continue;
444 }
445
446 if (route->lr_gateway->lp_ni ==
447 route2->lr_gateway->lp_ni)
448 continue;
449
450 nid1 = route->lr_gateway->lp_nid;
451 nid2 = route2->lr_gateway->lp_nid;
452 net = rnet->lrn_net;
453
454 lnet_net_unlock(cpt);
455
2d00bd17 456 CERROR("Routes to %s via %s and %s not supported\n",
d7e09d03
PT
457 libcfs_net2str(net),
458 libcfs_nid2str(nid1),
459 libcfs_nid2str(nid2));
460 return -EINVAL;
461 }
462 }
463 }
464
465 lnet_net_unlock(cpt);
466 return 0;
467}
468
469int
470lnet_del_route(__u32 net, lnet_nid_t gw_nid)
471{
7e7ab095
MS
472 struct lnet_peer *gateway;
473 lnet_remotenet_t *rnet;
474 lnet_route_t *route;
475 struct list_head *e1;
476 struct list_head *e2;
477 int rc = -ENOENT;
478 struct list_head *rn_list;
479 int idx = 0;
d7e09d03
PT
480
481 CDEBUG(D_NET, "Del route: net %s : gw %s\n",
482 libcfs_net2str(net), libcfs_nid2str(gw_nid));
483
4420cfd3
JS
484 /*
485 * NB Caller may specify either all routes via the given gateway
486 * or a specific route entry actual NIDs)
487 */
d7e09d03
PT
488 lnet_net_lock(LNET_LOCK_EX);
489 if (net == LNET_NIDNET(LNET_NID_ANY))
490 rn_list = &the_lnet.ln_remote_nets_hash[0];
491 else
492 rn_list = lnet_net2rnethash(net);
493
494 again:
495 list_for_each(e1, rn_list) {
496 rnet = list_entry(e1, lnet_remotenet_t, lrn_list);
497
498 if (!(net == LNET_NIDNET(LNET_NID_ANY) ||
c314c319 499 net == rnet->lrn_net))
d7e09d03
PT
500 continue;
501
502 list_for_each(e2, &rnet->lrn_routes) {
503 route = list_entry(e2, lnet_route_t, lr_list);
504
505 gateway = route->lr_gateway;
506 if (!(gw_nid == LNET_NID_ANY ||
507 gw_nid == gateway->lp_nid))
508 continue;
509
510 list_del(&route->lr_list);
511 list_del(&route->lr_gwlist);
512 the_lnet.ln_remote_nets_version++;
513
514 if (list_empty(&rnet->lrn_routes))
515 list_del(&rnet->lrn_list);
516 else
517 rnet = NULL;
518
519 lnet_rtr_decref_locked(gateway);
520 lnet_peer_decref_locked(gateway);
521
522 lnet_net_unlock(LNET_LOCK_EX);
523
524 LIBCFS_FREE(route, sizeof(*route));
525
06ace26e 526 if (rnet)
d7e09d03
PT
527 LIBCFS_FREE(rnet, sizeof(*rnet));
528
529 rc = 0;
530 lnet_net_lock(LNET_LOCK_EX);
531 goto again;
532 }
533 }
534
535 if (net == LNET_NIDNET(LNET_NID_ANY) &&
536 ++idx < LNET_REMOTE_NETS_HASH_SIZE) {
537 rn_list = &the_lnet.ln_remote_nets_hash[idx];
538 goto again;
539 }
540 lnet_net_unlock(LNET_LOCK_EX);
541
542 return rc;
543}
544
545void
939af333 546lnet_destroy_routes(void)
d7e09d03
PT
547{
548 lnet_del_route(LNET_NIDNET(LNET_NID_ANY), LNET_NID_ANY);
549}
550
edeb5d8c
AS
551int lnet_get_rtr_pool_cfg(int idx, struct lnet_ioctl_pool_cfg *pool_cfg)
552{
553 int i, rc = -ENOENT, j;
554
555 if (!the_lnet.ln_rtrpools)
556 return rc;
557
558 for (i = 0; i < LNET_NRBPOOLS; i++) {
559 lnet_rtrbufpool_t *rbp;
560
561 lnet_net_lock(LNET_LOCK_EX);
562 cfs_percpt_for_each(rbp, j, the_lnet.ln_rtrpools) {
563 if (i++ != idx)
564 continue;
565
566 pool_cfg->pl_pools[i].pl_npages = rbp[i].rbp_npages;
567 pool_cfg->pl_pools[i].pl_nbuffers = rbp[i].rbp_nbuffers;
568 pool_cfg->pl_pools[i].pl_credits = rbp[i].rbp_credits;
569 pool_cfg->pl_pools[i].pl_mincredits = rbp[i].rbp_mincredits;
570 rc = 0;
571 break;
572 }
573 lnet_net_unlock(LNET_LOCK_EX);
574 }
575
576 lnet_net_lock(LNET_LOCK_EX);
577 pool_cfg->pl_routing = the_lnet.ln_routing;
578 lnet_net_unlock(LNET_LOCK_EX);
579
580 return rc;
581}
582
d7e09d03
PT
583int
584lnet_get_route(int idx, __u32 *net, __u32 *hops,
e75fb87f 585 lnet_nid_t *gateway, __u32 *alive, __u32 *priority)
d7e09d03 586{
7e7ab095
MS
587 struct list_head *e1;
588 struct list_head *e2;
589 lnet_remotenet_t *rnet;
590 lnet_route_t *route;
591 int cpt;
592 int i;
593 struct list_head *rn_list;
d7e09d03
PT
594
595 cpt = lnet_net_lock_current();
596
597 for (i = 0; i < LNET_REMOTE_NETS_HASH_SIZE; i++) {
598 rn_list = &the_lnet.ln_remote_nets_hash[i];
599 list_for_each(e1, rn_list) {
600 rnet = list_entry(e1, lnet_remotenet_t, lrn_list);
601
602 list_for_each(e2, &rnet->lrn_routes) {
c314c319 603 route = list_entry(e2, lnet_route_t, lr_list);
d7e09d03 604
5fd88337 605 if (!idx--) {
7e7ab095
MS
606 *net = rnet->lrn_net;
607 *hops = route->lr_hops;
e75fb87f
DO
608 *priority = route->lr_priority;
609 *gateway = route->lr_gateway->lp_nid;
86ef6250
AS
610 *alive = route->lr_gateway->lp_alive &&
611 !route->lr_downis;
d7e09d03
PT
612 lnet_net_unlock(cpt);
613 return 0;
614 }
615 }
616 }
617 }
618
619 lnet_net_unlock(cpt);
620 return -ENOENT;
621}
622
623void
624lnet_swap_pinginfo(lnet_ping_info_t *info)
625{
7e7ab095 626 int i;
d7e09d03
PT
627 lnet_ni_status_t *stat;
628
629 __swab32s(&info->pi_magic);
630 __swab32s(&info->pi_features);
631 __swab32s(&info->pi_pid);
632 __swab32s(&info->pi_nnis);
633 for (i = 0; i < info->pi_nnis && i < LNET_MAX_RTR_NIS; i++) {
634 stat = &info->pi_ni[i];
635 __swab64s(&stat->ns_nid);
636 __swab32s(&stat->ns_status);
637 }
d7e09d03
PT
638}
639
640/**
641 * parse router-checker pinginfo, record number of down NIs for remote
642 * networks on that router.
643 */
644static void
645lnet_parse_rc_info(lnet_rc_data_t *rcd)
646{
7e7ab095
MS
647 lnet_ping_info_t *info = rcd->rcd_pinginfo;
648 struct lnet_peer *gw = rcd->rcd_gateway;
86ef6250 649 lnet_route_t *rte;
d7e09d03
PT
650
651 if (!gw->lp_alive)
652 return;
653
654 if (info->pi_magic == __swab32(LNET_PROTO_PING_MAGIC))
655 lnet_swap_pinginfo(info);
656
657 /* NB always racing with network! */
658 if (info->pi_magic != LNET_PROTO_PING_MAGIC) {
659 CDEBUG(D_NET, "%s: Unexpected magic %08x\n",
660 libcfs_nid2str(gw->lp_nid), info->pi_magic);
661 gw->lp_ping_feats = LNET_PING_FEAT_INVAL;
662 return;
663 }
664
665 gw->lp_ping_feats = info->pi_features;
5fd88337 666 if (!(gw->lp_ping_feats & LNET_PING_FEAT_MASK)) {
d7e09d03
PT
667 CDEBUG(D_NET, "%s: Unexpected features 0x%x\n",
668 libcfs_nid2str(gw->lp_nid), gw->lp_ping_feats);
669 return; /* nothing I can understand */
670 }
671
5fd88337 672 if (!(gw->lp_ping_feats & LNET_PING_FEAT_NI_STATUS))
d7e09d03
PT
673 return; /* can't carry NI status info */
674
86ef6250 675 list_for_each_entry(rte, &gw->lp_routes, lr_gwlist) {
7e7ab095
MS
676 int down = 0;
677 int up = 0;
678 int i;
d7e09d03 679
86ef6250
AS
680 if (gw->lp_ping_feats & LNET_PING_FEAT_RTE_DISABLED) {
681 rte->lr_downis = 1;
682 continue;
683 }
684
d7e09d03
PT
685 for (i = 0; i < info->pi_nnis && i < LNET_MAX_RTR_NIS; i++) {
686 lnet_ni_status_t *stat = &info->pi_ni[i];
7e7ab095 687 lnet_nid_t nid = stat->ns_nid;
d7e09d03
PT
688
689 if (nid == LNET_NID_ANY) {
690 CDEBUG(D_NET, "%s: unexpected LNET_NID_ANY\n",
691 libcfs_nid2str(gw->lp_nid));
692 gw->lp_ping_feats = LNET_PING_FEAT_INVAL;
693 return;
694 }
695
696 if (LNET_NETTYP(LNET_NIDNET(nid)) == LOLND)
697 continue;
698
699 if (stat->ns_status == LNET_NI_STATUS_DOWN) {
764d2e9a 700 down++;
d7e09d03
PT
701 continue;
702 }
703
704 if (stat->ns_status == LNET_NI_STATUS_UP) {
86ef6250 705 if (LNET_NIDNET(nid) == rte->lr_net) {
d7e09d03
PT
706 up = 1;
707 break;
708 }
d7e09d03
PT
709 continue;
710 }
711
712 CDEBUG(D_NET, "%s: Unexpected status 0x%x\n",
713 libcfs_nid2str(gw->lp_nid), stat->ns_status);
714 gw->lp_ping_feats = LNET_PING_FEAT_INVAL;
715 return;
716 }
717
718 if (up) { /* ignore downed NIs if NI for dest network is up */
86ef6250 719 rte->lr_downis = 0;
d7e09d03
PT
720 continue;
721 }
86ef6250 722 rte->lr_downis = down;
d7e09d03
PT
723 }
724}
725
726static void
727lnet_router_checker_event(lnet_event_t *event)
728{
7e7ab095
MS
729 lnet_rc_data_t *rcd = event->md.user_ptr;
730 struct lnet_peer *lp;
d7e09d03 731
06ace26e 732 LASSERT(rcd);
d7e09d03
PT
733
734 if (event->unlinked) {
735 LNetInvalidateHandle(&rcd->rcd_mdh);
736 return;
737 }
738
739 LASSERT(event->type == LNET_EVENT_SEND ||
740 event->type == LNET_EVENT_REPLY);
741
742 lp = rcd->rcd_gateway;
06ace26e 743 LASSERT(lp);
d7e09d03 744
4420cfd3
JS
745 /*
746 * NB: it's called with holding lnet_res_lock, we have a few
747 * places need to hold both locks at the same time, please take
748 * care of lock ordering
749 */
d7e09d03
PT
750 lnet_net_lock(lp->lp_cpt);
751 if (!lnet_isrouter(lp) || lp->lp_rcd != rcd) {
752 /* ignore if no longer a router or rcd is replaced */
753 goto out;
754 }
755
756 if (event->type == LNET_EVENT_SEND) {
757 lp->lp_ping_notsent = 0;
5fd88337 758 if (!event->status)
d7e09d03
PT
759 goto out;
760 }
761
762 /* LNET_EVENT_REPLY */
4420cfd3
JS
763 /*
764 * A successful REPLY means the router is up. If _any_ comms
d7e09d03
PT
765 * to the router fail I assume it's down (this will happen if
766 * we ping alive routers to try to detect router death before
4420cfd3
JS
767 * apps get burned).
768 */
5fd88337 769 lnet_notify_locked(lp, 1, !event->status, cfs_time_current());
4420cfd3
JS
770
771 /*
772 * The router checker will wake up very shortly and do the
d7e09d03
PT
773 * actual notification.
774 * XXX If 'lp' stops being a router before then, it will still
4420cfd3
JS
775 * have the notification pending!!!
776 */
5fd88337 777 if (avoid_asym_router_failure && !event->status)
d7e09d03
PT
778 lnet_parse_rc_info(rcd);
779
780 out:
781 lnet_net_unlock(lp->lp_cpt);
782}
783
2595fa36 784static void
d7e09d03
PT
785lnet_wait_known_routerstate(void)
786{
7e7ab095
MS
787 lnet_peer_t *rtr;
788 struct list_head *entry;
789 int all_known;
d7e09d03 790
939af333 791 LASSERT(the_lnet.ln_rc_state == LNET_RC_STATE_RUNNING);
d7e09d03
PT
792
793 for (;;) {
7e7ab095 794 int cpt = lnet_net_lock_current();
d7e09d03
PT
795
796 all_known = 1;
939af333 797 list_for_each(entry, &the_lnet.ln_routers) {
d7e09d03
PT
798 rtr = list_entry(entry, lnet_peer_t, lp_rtr_list);
799
5fd88337 800 if (!rtr->lp_alive_count) {
d7e09d03
PT
801 all_known = 0;
802 break;
803 }
804 }
805
806 lnet_net_unlock(cpt);
807
808 if (all_known)
809 return;
810
d3caf4d5
PT
811 set_current_state(TASK_UNINTERRUPTIBLE);
812 schedule_timeout(cfs_time_seconds(1));
d7e09d03
PT
813 }
814}
815
af3fa7c7
LZ
816void
817lnet_router_ni_update_locked(lnet_peer_t *gw, __u32 net)
818{
819 lnet_route_t *rte;
820
5fd88337 821 if ((gw->lp_ping_feats & LNET_PING_FEAT_NI_STATUS)) {
af3fa7c7
LZ
822 list_for_each_entry(rte, &gw->lp_routes, lr_gwlist) {
823 if (rte->lr_net == net) {
824 rte->lr_downis = 0;
825 break;
826 }
827 }
828 }
829}
830
2595fa36 831static void
d7e09d03
PT
832lnet_update_ni_status_locked(void)
833{
7e7ab095 834 lnet_ni_t *ni;
ec0067d1 835 time64_t now;
7e7ab095 836 int timeout;
d7e09d03
PT
837
838 LASSERT(the_lnet.ln_routing);
839
840 timeout = router_ping_timeout +
0c575417 841 max(live_router_check_interval, dead_router_check_interval);
d7e09d03 842
ec0067d1 843 now = ktime_get_real_seconds();
d7e09d03
PT
844 list_for_each_entry(ni, &the_lnet.ln_nis, ni_list) {
845 if (ni->ni_lnd->lnd_type == LOLND)
846 continue;
847
848 if (now < ni->ni_last_alive + timeout)
849 continue;
850
851 lnet_ni_lock(ni);
852 /* re-check with lock */
853 if (now < ni->ni_last_alive + timeout) {
854 lnet_ni_unlock(ni);
855 continue;
856 }
857
06ace26e 858 LASSERT(ni->ni_status);
d7e09d03
PT
859
860 if (ni->ni_status->ns_status != LNET_NI_STATUS_DOWN) {
861 CDEBUG(D_NET, "NI(%s:%d) status changed to down\n",
862 libcfs_nid2str(ni->ni_nid), timeout);
4420cfd3
JS
863 /*
864 * NB: so far, this is the only place to set
865 * NI status to "down"
866 */
d7e09d03
PT
867 ni->ni_status->ns_status = LNET_NI_STATUS_DOWN;
868 }
869 lnet_ni_unlock(ni);
870 }
871}
872
2595fa36 873static void
d7e09d03
PT
874lnet_destroy_rc_data(lnet_rc_data_t *rcd)
875{
876 LASSERT(list_empty(&rcd->rcd_list));
877 /* detached from network */
878 LASSERT(LNetHandleIsInvalid(rcd->rcd_mdh));
879
06ace26e 880 if (rcd->rcd_gateway) {
d7e09d03
PT
881 int cpt = rcd->rcd_gateway->lp_cpt;
882
883 lnet_net_lock(cpt);
884 lnet_peer_decref_locked(rcd->rcd_gateway);
885 lnet_net_unlock(cpt);
886 }
887
06ace26e 888 if (rcd->rcd_pinginfo)
d7e09d03
PT
889 LIBCFS_FREE(rcd->rcd_pinginfo, LNET_PINGINFO_SIZE);
890
891 LIBCFS_FREE(rcd, sizeof(*rcd));
892}
893
2595fa36 894static lnet_rc_data_t *
d7e09d03
PT
895lnet_create_rc_data_locked(lnet_peer_t *gateway)
896{
7e7ab095
MS
897 lnet_rc_data_t *rcd = NULL;
898 lnet_ping_info_t *pi;
899 int rc;
900 int i;
d7e09d03
PT
901
902 lnet_net_unlock(gateway->lp_cpt);
903
904 LIBCFS_ALLOC(rcd, sizeof(*rcd));
06ace26e 905 if (!rcd)
d7e09d03
PT
906 goto out;
907
908 LNetInvalidateHandle(&rcd->rcd_mdh);
909 INIT_LIST_HEAD(&rcd->rcd_list);
910
911 LIBCFS_ALLOC(pi, LNET_PINGINFO_SIZE);
06ace26e 912 if (!pi)
d7e09d03
PT
913 goto out;
914
d7e09d03
PT
915 for (i = 0; i < LNET_MAX_RTR_NIS; i++) {
916 pi->pi_ni[i].ns_nid = LNET_NID_ANY;
917 pi->pi_ni[i].ns_status = LNET_NI_STATUS_INVALID;
918 }
919 rcd->rcd_pinginfo = pi;
920
939af333 921 LASSERT(!LNetHandleIsInvalid(the_lnet.ln_rc_eqh));
d7e09d03
PT
922 rc = LNetMDBind((lnet_md_t){.start = pi,
923 .user_ptr = rcd,
924 .length = LNET_PINGINFO_SIZE,
925 .threshold = LNET_MD_THRESH_INF,
926 .options = LNET_MD_TRUNCATE,
927 .eq_handle = the_lnet.ln_rc_eqh},
928 LNET_UNLINK,
929 &rcd->rcd_mdh);
930 if (rc < 0) {
931 CERROR("Can't bind MD: %d\n", rc);
932 goto out;
933 }
5fd88337 934 LASSERT(!rc);
d7e09d03
PT
935
936 lnet_net_lock(gateway->lp_cpt);
937 /* router table changed or someone has created rcd for this gateway */
06ace26e 938 if (!lnet_isrouter(gateway) || gateway->lp_rcd) {
d7e09d03
PT
939 lnet_net_unlock(gateway->lp_cpt);
940 goto out;
941 }
942
943 lnet_peer_addref_locked(gateway);
944 rcd->rcd_gateway = gateway;
945 gateway->lp_rcd = rcd;
946 gateway->lp_ping_notsent = 0;
947
948 return rcd;
949
950 out:
06ace26e 951 if (rcd) {
d7e09d03
PT
952 if (!LNetHandleIsInvalid(rcd->rcd_mdh)) {
953 rc = LNetMDUnlink(rcd->rcd_mdh);
5fd88337 954 LASSERT(!rc);
d7e09d03
PT
955 }
956 lnet_destroy_rc_data(rcd);
957 }
958
959 lnet_net_lock(gateway->lp_cpt);
960 return gateway->lp_rcd;
961}
962
963static int
939af333 964lnet_router_check_interval(lnet_peer_t *rtr)
d7e09d03
PT
965{
966 int secs;
967
968 secs = rtr->lp_alive ? live_router_check_interval :
969 dead_router_check_interval;
970 if (secs < 0)
971 secs = 0;
972
973 return secs;
974}
975
976static void
939af333 977lnet_ping_router_locked(lnet_peer_t *rtr)
d7e09d03
PT
978{
979 lnet_rc_data_t *rcd = NULL;
7e7ab095
MS
980 unsigned long now = cfs_time_current();
981 int secs;
d7e09d03
PT
982
983 lnet_peer_addref_locked(rtr);
984
5fd88337 985 if (rtr->lp_ping_deadline && /* ping timed out? */
d7e09d03
PT
986 cfs_time_after(now, rtr->lp_ping_deadline))
987 lnet_notify_locked(rtr, 1, 0, now);
988
989 /* Run any outstanding notifications */
990 lnet_ni_notify_locked(rtr->lp_ni, rtr);
991
992 if (!lnet_isrouter(rtr) ||
993 the_lnet.ln_rc_state != LNET_RC_STATE_RUNNING) {
994 /* router table changed or router checker is shutting down */
995 lnet_peer_decref_locked(rtr);
996 return;
997 }
998
06ace26e 999 rcd = rtr->lp_rcd ?
d7e09d03
PT
1000 rtr->lp_rcd : lnet_create_rc_data_locked(rtr);
1001
06ace26e 1002 if (!rcd)
d7e09d03
PT
1003 return;
1004
1005 secs = lnet_router_check_interval(rtr);
1006
1007 CDEBUG(D_NET,
2d00bd17 1008 "rtr %s %d: deadline %lu ping_notsent %d alive %d alive_count %d lp_ping_timestamp %lu\n",
d7e09d03
PT
1009 libcfs_nid2str(rtr->lp_nid), secs,
1010 rtr->lp_ping_deadline, rtr->lp_ping_notsent,
1011 rtr->lp_alive, rtr->lp_alive_count, rtr->lp_ping_timestamp);
1012
5fd88337 1013 if (secs && !rtr->lp_ping_notsent &&
d7e09d03
PT
1014 cfs_time_after(now, cfs_time_add(rtr->lp_ping_timestamp,
1015 cfs_time_seconds(secs)))) {
7e7ab095 1016 int rc;
d7e09d03 1017 lnet_process_id_t id;
7e7ab095 1018 lnet_handle_md_t mdh;
d7e09d03
PT
1019
1020 id.nid = rtr->lp_nid;
fe7cb65d 1021 id.pid = LNET_PID_LUSTRE;
d7e09d03
PT
1022 CDEBUG(D_NET, "Check: %s\n", libcfs_id2str(id));
1023
1024 rtr->lp_ping_notsent = 1;
1025 rtr->lp_ping_timestamp = now;
1026
1027 mdh = rcd->rcd_mdh;
1028
5fd88337 1029 if (!rtr->lp_ping_deadline) {
d7e09d03
PT
1030 rtr->lp_ping_deadline =
1031 cfs_time_shift(router_ping_timeout);
1032 }
1033
1034 lnet_net_unlock(rtr->lp_cpt);
1035
1036 rc = LNetGet(LNET_NID_ANY, mdh, id, LNET_RESERVED_PORTAL,
1037 LNET_PROTO_PING_MATCHBITS, 0);
1038
1039 lnet_net_lock(rtr->lp_cpt);
5fd88337 1040 if (rc)
d7e09d03
PT
1041 rtr->lp_ping_notsent = 0; /* no event pending */
1042 }
1043
1044 lnet_peer_decref_locked(rtr);
d7e09d03
PT
1045}
1046
1047int
1048lnet_router_checker_start(void)
1049{
060c2820 1050 struct task_struct *task;
7e7ab095 1051 int rc;
94bfb3cf 1052 int eqsz = 0;
d7e09d03 1053
939af333 1054 LASSERT(the_lnet.ln_rc_state == LNET_RC_STATE_SHUTDOWN);
d7e09d03
PT
1055
1056 if (check_routers_before_use &&
1057 dead_router_check_interval <= 0) {
2d00bd17 1058 LCONSOLE_ERROR_MSG(0x10a, "'dead_router_check_interval' must be set if 'check_routers_before_use' is set\n");
d7e09d03
PT
1059 return -EINVAL;
1060 }
1061
d7e09d03 1062 sema_init(&the_lnet.ln_rc_signal, 0);
94bfb3cf
JH
1063
1064 rc = LNetEQAlloc(0, lnet_router_checker_event, &the_lnet.ln_rc_eqh);
5fd88337 1065 if (rc) {
d7e09d03
PT
1066 CERROR("Can't allocate EQ(%d): %d\n", eqsz, rc);
1067 return -ENOMEM;
1068 }
1069
1070 the_lnet.ln_rc_state = LNET_RC_STATE_RUNNING;
060c2820
JH
1071 task = kthread_run(lnet_router_checker, NULL, "router_checker");
1072 if (IS_ERR(task)) {
1073 rc = PTR_ERR(task);
d7e09d03
PT
1074 CERROR("Can't start router checker thread: %d\n", rc);
1075 /* block until event callback signals exit */
1076 down(&the_lnet.ln_rc_signal);
1077 rc = LNetEQFree(the_lnet.ln_rc_eqh);
5fd88337 1078 LASSERT(!rc);
d7e09d03
PT
1079 the_lnet.ln_rc_state = LNET_RC_STATE_SHUTDOWN;
1080 return -ENOMEM;
1081 }
1082
1083 if (check_routers_before_use) {
4420cfd3
JS
1084 /*
1085 * Note that a helpful side-effect of pinging all known routers
d7e09d03 1086 * at startup is that it makes them drop stale connections they
4420cfd3
JS
1087 * may have to a previous instance of me.
1088 */
d7e09d03
PT
1089 lnet_wait_known_routerstate();
1090 }
1091
1092 return 0;
1093}
1094
1095void
939af333 1096lnet_router_checker_stop(void)
d7e09d03
PT
1097{
1098 int rc;
1099
1100 if (the_lnet.ln_rc_state == LNET_RC_STATE_SHUTDOWN)
1101 return;
1102
939af333 1103 LASSERT(the_lnet.ln_rc_state == LNET_RC_STATE_RUNNING);
d7e09d03 1104 the_lnet.ln_rc_state = LNET_RC_STATE_STOPPING;
7f8b70e0
AS
1105 /* wakeup the RC thread if it's sleeping */
1106 wake_up(&the_lnet.ln_rc_waitq);
d7e09d03
PT
1107
1108 /* block until event callback signals exit */
1109 down(&the_lnet.ln_rc_signal);
1110 LASSERT(the_lnet.ln_rc_state == LNET_RC_STATE_SHUTDOWN);
1111
1112 rc = LNetEQFree(the_lnet.ln_rc_eqh);
5fd88337 1113 LASSERT(!rc);
d7e09d03
PT
1114}
1115
1116static void
1117lnet_prune_rc_data(int wait_unlink)
1118{
7e7ab095
MS
1119 lnet_rc_data_t *rcd;
1120 lnet_rc_data_t *tmp;
1121 lnet_peer_t *lp;
1122 struct list_head head;
1123 int i = 2;
d7e09d03
PT
1124
1125 if (likely(the_lnet.ln_rc_state == LNET_RC_STATE_RUNNING &&
1126 list_empty(&the_lnet.ln_rcd_deathrow) &&
1127 list_empty(&the_lnet.ln_rcd_zombie)))
1128 return;
1129
1130 INIT_LIST_HEAD(&head);
1131
1132 lnet_net_lock(LNET_LOCK_EX);
1133
1134 if (the_lnet.ln_rc_state != LNET_RC_STATE_RUNNING) {
1135 /* router checker is stopping, prune all */
1136 list_for_each_entry(lp, &the_lnet.ln_routers,
c314c319 1137 lp_rtr_list) {
06ace26e 1138 if (!lp->lp_rcd)
d7e09d03
PT
1139 continue;
1140
1141 LASSERT(list_empty(&lp->lp_rcd->rcd_list));
1142 list_add(&lp->lp_rcd->rcd_list,
c314c319 1143 &the_lnet.ln_rcd_deathrow);
d7e09d03
PT
1144 lp->lp_rcd = NULL;
1145 }
1146 }
1147
1148 /* unlink all RCDs on deathrow list */
1149 list_splice_init(&the_lnet.ln_rcd_deathrow, &head);
1150
1151 if (!list_empty(&head)) {
1152 lnet_net_unlock(LNET_LOCK_EX);
1153
1154 list_for_each_entry(rcd, &head, rcd_list)
1155 LNetMDUnlink(rcd->rcd_mdh);
1156
1157 lnet_net_lock(LNET_LOCK_EX);
1158 }
1159
1160 list_splice_init(&head, &the_lnet.ln_rcd_zombie);
1161
1162 /* release all zombie RCDs */
1163 while (!list_empty(&the_lnet.ln_rcd_zombie)) {
1164 list_for_each_entry_safe(rcd, tmp, &the_lnet.ln_rcd_zombie,
c314c319 1165 rcd_list) {
d7e09d03
PT
1166 if (LNetHandleIsInvalid(rcd->rcd_mdh))
1167 list_move(&rcd->rcd_list, &head);
1168 }
1169
1170 wait_unlink = wait_unlink &&
1171 !list_empty(&the_lnet.ln_rcd_zombie);
1172
1173 lnet_net_unlock(LNET_LOCK_EX);
1174
1175 while (!list_empty(&head)) {
1176 rcd = list_entry(head.next,
c314c319 1177 lnet_rc_data_t, rcd_list);
d7e09d03
PT
1178 list_del_init(&rcd->rcd_list);
1179 lnet_destroy_rc_data(rcd);
1180 }
1181
1182 if (!wait_unlink)
1183 return;
1184
1185 i++;
1186 CDEBUG(((i & (-i)) == i) ? D_WARNING : D_NET,
1187 "Waiting for rc buffers to unlink\n");
d3caf4d5
PT
1188 set_current_state(TASK_UNINTERRUPTIBLE);
1189 schedule_timeout(cfs_time_seconds(1) / 4);
d7e09d03
PT
1190
1191 lnet_net_lock(LNET_LOCK_EX);
1192 }
1193
1194 lnet_net_unlock(LNET_LOCK_EX);
1195}
1196
7f8b70e0
AS
1197/*
1198 * This function is called to check if the RC should block indefinitely.
1199 * It's called from lnet_router_checker() as well as being passed to
1200 * wait_event_interruptible() to avoid the lost wake_up problem.
1201 *
1202 * When it's called from wait_event_interruptible() it is necessary to
1203 * also not sleep if the rc state is not running to avoid a deadlock
1204 * when the system is shutting down
1205 */
1206static inline bool
1207lnet_router_checker_active(void)
1208{
1209 if (the_lnet.ln_rc_state != LNET_RC_STATE_RUNNING)
1210 return true;
1211
1212 /*
1213 * Router Checker thread needs to run when routing is enabled in
1214 * order to call lnet_update_ni_status_locked()
1215 */
1216 if (the_lnet.ln_routing)
1217 return true;
1218
1219 return !list_empty(&the_lnet.ln_routers) &&
1220 (live_router_check_interval > 0 ||
1221 dead_router_check_interval > 0);
1222}
1223
d7e09d03
PT
1224static int
1225lnet_router_checker(void *arg)
1226{
7e7ab095
MS
1227 lnet_peer_t *rtr;
1228 struct list_head *entry;
d7e09d03
PT
1229
1230 cfs_block_allsigs();
1231
939af333 1232 LASSERT(the_lnet.ln_rc_state == LNET_RC_STATE_RUNNING);
d7e09d03
PT
1233
1234 while (the_lnet.ln_rc_state == LNET_RC_STATE_RUNNING) {
7e7ab095
MS
1235 __u64 version;
1236 int cpt;
1237 int cpt2;
d7e09d03
PT
1238
1239 cpt = lnet_net_lock_current();
1240rescan:
1241 version = the_lnet.ln_routers_version;
1242
1243 list_for_each(entry, &the_lnet.ln_routers) {
1244 rtr = list_entry(entry, lnet_peer_t, lp_rtr_list);
1245
1246 cpt2 = lnet_cpt_of_nid_locked(rtr->lp_nid);
1247 if (cpt != cpt2) {
1248 lnet_net_unlock(cpt);
1249 cpt = cpt2;
1250 lnet_net_lock(cpt);
1251 /* the routers list has changed */
1252 if (version != the_lnet.ln_routers_version)
1253 goto rescan;
1254 }
1255
1256 lnet_ping_router_locked(rtr);
1257
1258 /* NB dropped lock */
1259 if (version != the_lnet.ln_routers_version) {
1260 /* the routers list has changed */
1261 goto rescan;
1262 }
1263 }
1264
1265 if (the_lnet.ln_routing)
1266 lnet_update_ni_status_locked();
1267
1268 lnet_net_unlock(cpt);
1269
1270 lnet_prune_rc_data(0); /* don't wait for UNLINK */
1271
4420cfd3
JS
1272 /*
1273 * Call schedule_timeout() here always adds 1 to load average
d7e09d03 1274 * because kernel counts # active tasks as nr_running
4420cfd3
JS
1275 * + nr_uninterruptible.
1276 */
7f8b70e0
AS
1277 /*
1278 * if there are any routes then wakeup every second. If
1279 * there are no routes then sleep indefinitely until woken
1280 * up by a user adding a route
1281 */
1282 if (!lnet_router_checker_active())
1283 wait_event_interruptible(the_lnet.ln_rc_waitq,
1284 lnet_router_checker_active());
1285 else
1286 wait_event_interruptible_timeout(the_lnet.ln_rc_waitq,
1287 false,
1288 cfs_time_seconds(1));
d7e09d03
PT
1289 }
1290
1291 LASSERT(the_lnet.ln_rc_state == LNET_RC_STATE_STOPPING);
1292
1293 lnet_prune_rc_data(1); /* wait for UNLINK */
1294
1295 the_lnet.ln_rc_state = LNET_RC_STATE_SHUTDOWN;
1296 up(&the_lnet.ln_rc_signal);
1297 /* The unlink event callback will signal final completion */
1298 return 0;
1299}
1300
86ef6250 1301void
d7e09d03
PT
1302lnet_destroy_rtrbuf(lnet_rtrbuf_t *rb, int npages)
1303{
1304 int sz = offsetof(lnet_rtrbuf_t, rb_kiov[npages]);
1305
1306 while (--npages >= 0)
1307 __free_page(rb->rb_kiov[npages].kiov_page);
1308
1309 LIBCFS_FREE(rb, sz);
1310}
1311
2595fa36 1312static lnet_rtrbuf_t *
d7e09d03
PT
1313lnet_new_rtrbuf(lnet_rtrbufpool_t *rbp, int cpt)
1314{
7e7ab095
MS
1315 int npages = rbp->rbp_npages;
1316 int sz = offsetof(lnet_rtrbuf_t, rb_kiov[npages]);
1317 struct page *page;
d7e09d03 1318 lnet_rtrbuf_t *rb;
7e7ab095 1319 int i;
d7e09d03
PT
1320
1321 LIBCFS_CPT_ALLOC(rb, lnet_cpt_table(), cpt, sz);
06ace26e 1322 if (!rb)
d7e09d03
PT
1323 return NULL;
1324
1325 rb->rb_pool = rbp;
1326
1327 for (i = 0; i < npages; i++) {
49c02a75
PT
1328 page = alloc_pages_node(
1329 cfs_cpt_spread_node(lnet_cpt_table(), cpt),
40113370 1330 GFP_KERNEL | __GFP_ZERO, 0);
06ace26e 1331 if (!page) {
d7e09d03
PT
1332 while (--i >= 0)
1333 __free_page(rb->rb_kiov[i].kiov_page);
1334
1335 LIBCFS_FREE(rb, sz);
1336 return NULL;
1337 }
1338
1339 rb->rb_kiov[i].kiov_len = PAGE_CACHE_SIZE;
1340 rb->rb_kiov[i].kiov_offset = 0;
1341 rb->rb_kiov[i].kiov_page = page;
1342 }
1343
1344 return rb;
1345}
1346
2595fa36 1347static void
86ef6250 1348lnet_rtrpool_free_bufs(lnet_rtrbufpool_t *rbp, int cpt)
d7e09d03 1349{
7e7ab095 1350 int npages = rbp->rbp_npages;
86ef6250 1351 struct list_head tmp;
7e7ab095 1352 lnet_rtrbuf_t *rb;
d7e09d03 1353
5fd88337 1354 if (!rbp->rbp_nbuffers) /* not initialized or already freed */
d7e09d03
PT
1355 return;
1356
86ef6250 1357 INIT_LIST_HEAD(&tmp);
d7e09d03 1358
86ef6250
AS
1359 lnet_net_lock(cpt);
1360 lnet_drop_routed_msgs_locked(&rbp->rbp_msgs, cpt);
1361 list_splice_init(&rbp->rbp_bufs, &tmp);
95fc2938 1362 rbp->rbp_req_nbuffers = 0;
86ef6250
AS
1363 rbp->rbp_nbuffers = 0;
1364 rbp->rbp_credits = 0;
1365 rbp->rbp_mincredits = 0;
1366 lnet_net_unlock(cpt);
d7e09d03 1367
86ef6250
AS
1368 /* Free buffers on the free list. */
1369 while (!list_empty(&tmp)) {
1370 rb = list_entry(tmp.next, lnet_rtrbuf_t, rb_list);
d7e09d03
PT
1371 list_del(&rb->rb_list);
1372 lnet_destroy_rtrbuf(rb, npages);
d7e09d03 1373 }
d7e09d03
PT
1374}
1375
2595fa36 1376static int
86ef6250 1377lnet_rtrpool_adjust_bufs(lnet_rtrbufpool_t *rbp, int nbufs, int cpt)
d7e09d03 1378{
86ef6250 1379 struct list_head rb_list;
d7e09d03 1380 lnet_rtrbuf_t *rb;
86ef6250
AS
1381 int num_rb;
1382 int num_buffers = 0;
95fc2938 1383 int old_req_nbufs;
86ef6250 1384 int npages = rbp->rbp_npages;
d7e09d03 1385
95fc2938 1386 lnet_net_lock(cpt);
86ef6250
AS
1387 /*
1388 * If we are called for less buffers than already in the pool, we
95fc2938 1389 * just lower the req_nbuffers number and excess buffers will be
86ef6250
AS
1390 * thrown away as they are returned to the free list. Credits
1391 * then get adjusted as well.
95fc2938
AS
1392 * If we already have enough buffers allocated to serve the
1393 * increase requested, then we can treat that the same way as we
1394 * do the decrease.
86ef6250 1395 */
95fc2938
AS
1396 num_rb = nbufs - rbp->rbp_nbuffers;
1397 if (nbufs <= rbp->rbp_req_nbuffers || num_rb <= 0) {
1398 rbp->rbp_req_nbuffers = nbufs;
86ef6250 1399 lnet_net_unlock(cpt);
d7e09d03
PT
1400 return 0;
1401 }
95fc2938
AS
1402 /*
1403 * store the older value of rbp_req_nbuffers and then set it to
1404 * the new request to prevent lnet_return_rx_credits_locked() from
1405 * freeing buffers that we need to keep around
1406 */
1407 old_req_nbufs = rbp->rbp_req_nbuffers;
1408 rbp->rbp_req_nbuffers = nbufs;
1409 lnet_net_unlock(cpt);
d7e09d03 1410
86ef6250 1411 INIT_LIST_HEAD(&rb_list);
d7e09d03 1412
86ef6250
AS
1413 /*
1414 * allocate the buffers on a local list first. If all buffers are
1415 * allocated successfully then join this list to the rbp buffer
1416 * list. If not then free all allocated buffers.
1417 */
95fc2938 1418 while (num_rb-- > 0) {
86ef6250 1419 rb = lnet_new_rtrbuf(rbp, cpt);
06ace26e 1420 if (!rb) {
86ef6250
AS
1421 CERROR("Failed to allocate %d route bufs of %d pages\n",
1422 nbufs, npages);
95fc2938
AS
1423
1424 lnet_net_lock(cpt);
1425 rbp->rbp_req_nbuffers = old_req_nbufs;
1426 lnet_net_unlock(cpt);
1427
86ef6250 1428 goto failed;
d7e09d03
PT
1429 }
1430
86ef6250
AS
1431 list_add(&rb->rb_list, &rb_list);
1432 num_buffers++;
d7e09d03
PT
1433 }
1434
86ef6250
AS
1435 lnet_net_lock(cpt);
1436
1437 list_splice_tail(&rb_list, &rbp->rbp_bufs);
1438 rbp->rbp_nbuffers += num_buffers;
1439 rbp->rbp_credits += num_buffers;
1440 rbp->rbp_mincredits = rbp->rbp_credits;
1441 /*
1442 * We need to schedule blocked msg using the newly
1443 * added buffers.
1444 */
1445 while (!list_empty(&rbp->rbp_bufs) &&
1446 !list_empty(&rbp->rbp_msgs))
1447 lnet_schedule_blocked_locked(rbp);
1448
1449 lnet_net_unlock(cpt);
1450
d7e09d03 1451 return 0;
86ef6250
AS
1452
1453failed:
1454 while (!list_empty(&rb_list)) {
1455 rb = list_entry(rb_list.next, lnet_rtrbuf_t, rb_list);
1456 list_del(&rb->rb_list);
1457 lnet_destroy_rtrbuf(rb, npages);
1458 }
1459
1460 return -ENOMEM;
d7e09d03
PT
1461}
1462
2595fa36 1463static void
d7e09d03
PT
1464lnet_rtrpool_init(lnet_rtrbufpool_t *rbp, int npages)
1465{
1466 INIT_LIST_HEAD(&rbp->rbp_msgs);
1467 INIT_LIST_HEAD(&rbp->rbp_bufs);
1468
1469 rbp->rbp_npages = npages;
1470 rbp->rbp_credits = 0;
1471 rbp->rbp_mincredits = 0;
1472}
1473
1474void
86ef6250 1475lnet_rtrpools_free(int keep_pools)
d7e09d03
PT
1476{
1477 lnet_rtrbufpool_t *rtrp;
7e7ab095 1478 int i;
d7e09d03 1479
06ace26e 1480 if (!the_lnet.ln_rtrpools) /* uninitialized or freed */
d7e09d03
PT
1481 return;
1482
1483 cfs_percpt_for_each(rtrp, i, the_lnet.ln_rtrpools) {
86ef6250
AS
1484 lnet_rtrpool_free_bufs(&rtrp[LNET_TINY_BUF_IDX], i);
1485 lnet_rtrpool_free_bufs(&rtrp[LNET_SMALL_BUF_IDX], i);
1486 lnet_rtrpool_free_bufs(&rtrp[LNET_LARGE_BUF_IDX], i);
d7e09d03
PT
1487 }
1488
86ef6250
AS
1489 if (!keep_pools) {
1490 cfs_percpt_free(the_lnet.ln_rtrpools);
1491 the_lnet.ln_rtrpools = NULL;
1492 }
d7e09d03
PT
1493}
1494
1495static int
86ef6250 1496lnet_nrb_tiny_calculate(void)
d7e09d03 1497{
7e7ab095 1498 int nrbs = LNET_NRB_TINY;
d7e09d03
PT
1499
1500 if (tiny_router_buffers < 0) {
1501 LCONSOLE_ERROR_MSG(0x10c,
2d00bd17
JP
1502 "tiny_router_buffers=%d invalid when routing enabled\n",
1503 tiny_router_buffers);
d7e09d03
PT
1504 return -1;
1505 }
1506
1507 if (tiny_router_buffers > 0)
1508 nrbs = tiny_router_buffers;
1509
1510 nrbs /= LNET_CPT_NUMBER;
1511 return max(nrbs, LNET_NRB_TINY_MIN);
1512}
1513
1514static int
86ef6250 1515lnet_nrb_small_calculate(void)
d7e09d03 1516{
7e7ab095 1517 int nrbs = LNET_NRB_SMALL;
d7e09d03
PT
1518
1519 if (small_router_buffers < 0) {
1520 LCONSOLE_ERROR_MSG(0x10c,
2d00bd17
JP
1521 "small_router_buffers=%d invalid when routing enabled\n",
1522 small_router_buffers);
d7e09d03
PT
1523 return -1;
1524 }
1525
1526 if (small_router_buffers > 0)
1527 nrbs = small_router_buffers;
1528
1529 nrbs /= LNET_CPT_NUMBER;
1530 return max(nrbs, LNET_NRB_SMALL_MIN);
1531}
1532
1533static int
86ef6250 1534lnet_nrb_large_calculate(void)
d7e09d03 1535{
7e7ab095 1536 int nrbs = LNET_NRB_LARGE;
d7e09d03
PT
1537
1538 if (large_router_buffers < 0) {
1539 LCONSOLE_ERROR_MSG(0x10c,
2d00bd17
JP
1540 "large_router_buffers=%d invalid when routing enabled\n",
1541 large_router_buffers);
d7e09d03
PT
1542 return -1;
1543 }
1544
1545 if (large_router_buffers > 0)
1546 nrbs = large_router_buffers;
1547
1548 nrbs /= LNET_CPT_NUMBER;
1549 return max(nrbs, LNET_NRB_LARGE_MIN);
1550}
1551
1552int
1553lnet_rtrpools_alloc(int im_a_router)
1554{
1555 lnet_rtrbufpool_t *rtrp;
7e7ab095
MS
1556 int nrb_tiny;
1557 int nrb_small;
1558 int nrb_large;
1559 int rc;
1560 int i;
d7e09d03
PT
1561
1562 if (!strcmp(forwarding, "")) {
1563 /* not set either way */
1564 if (!im_a_router)
1565 return 0;
1566 } else if (!strcmp(forwarding, "disabled")) {
1567 /* explicitly disabled */
1568 return 0;
1569 } else if (!strcmp(forwarding, "enabled")) {
1570 /* explicitly enabled */
1571 } else {
2d00bd17 1572 LCONSOLE_ERROR_MSG(0x10b, "'forwarding' not set to either 'enabled' or 'disabled'\n");
d7e09d03
PT
1573 return -EINVAL;
1574 }
1575
86ef6250 1576 nrb_tiny = lnet_nrb_tiny_calculate();
d7e09d03
PT
1577 if (nrb_tiny < 0)
1578 return -EINVAL;
1579
86ef6250 1580 nrb_small = lnet_nrb_small_calculate();
d7e09d03
PT
1581 if (nrb_small < 0)
1582 return -EINVAL;
1583
86ef6250 1584 nrb_large = lnet_nrb_large_calculate();
d7e09d03
PT
1585 if (nrb_large < 0)
1586 return -EINVAL;
1587
1588 the_lnet.ln_rtrpools = cfs_percpt_alloc(lnet_cpt_table(),
1589 LNET_NRBPOOLS *
1590 sizeof(lnet_rtrbufpool_t));
06ace26e 1591 if (!the_lnet.ln_rtrpools) {
d7e09d03
PT
1592 LCONSOLE_ERROR_MSG(0x10c,
1593 "Failed to initialize router buffe pool\n");
1594 return -ENOMEM;
1595 }
1596
1597 cfs_percpt_for_each(rtrp, i, the_lnet.ln_rtrpools) {
86ef6250
AS
1598 lnet_rtrpool_init(&rtrp[LNET_TINY_BUF_IDX], 0);
1599 rc = lnet_rtrpool_adjust_bufs(&rtrp[LNET_TINY_BUF_IDX],
1600 nrb_tiny, i);
5fd88337 1601 if (rc)
d7e09d03
PT
1602 goto failed;
1603
86ef6250
AS
1604 lnet_rtrpool_init(&rtrp[LNET_SMALL_BUF_IDX],
1605 LNET_NRB_SMALL_PAGES);
1606 rc = lnet_rtrpool_adjust_bufs(&rtrp[LNET_SMALL_BUF_IDX],
1607 nrb_small, i);
5fd88337 1608 if (rc)
d7e09d03
PT
1609 goto failed;
1610
86ef6250
AS
1611 lnet_rtrpool_init(&rtrp[LNET_LARGE_BUF_IDX],
1612 LNET_NRB_LARGE_PAGES);
1613 rc = lnet_rtrpool_adjust_bufs(&rtrp[LNET_LARGE_BUF_IDX],
1614 nrb_large, i);
5fd88337 1615 if (rc)
d7e09d03
PT
1616 goto failed;
1617 }
1618
1619 lnet_net_lock(LNET_LOCK_EX);
1620 the_lnet.ln_routing = 1;
1621 lnet_net_unlock(LNET_LOCK_EX);
1622
1623 return 0;
1624
1625 failed:
86ef6250 1626 lnet_rtrpools_free(0);
d7e09d03
PT
1627 return rc;
1628}
1629
edeb5d8c
AS
1630static int
1631lnet_rtrpools_adjust_helper(int tiny, int small, int large)
86ef6250
AS
1632{
1633 int nrb = 0;
1634 int rc = 0;
1635 int i;
1636 lnet_rtrbufpool_t *rtrp;
1637
86ef6250
AS
1638 /*
1639 * If the provided values for each buffer pool are different than the
1640 * configured values, we need to take action.
1641 */
edeb5d8c 1642 if (tiny >= 0) {
86ef6250
AS
1643 tiny_router_buffers = tiny;
1644 nrb = lnet_nrb_tiny_calculate();
1645 cfs_percpt_for_each(rtrp, i, the_lnet.ln_rtrpools) {
1646 rc = lnet_rtrpool_adjust_bufs(&rtrp[LNET_TINY_BUF_IDX],
1647 nrb, i);
1648 if (rc)
1649 return rc;
1650 }
1651 }
edeb5d8c 1652 if (small >= 0) {
86ef6250
AS
1653 small_router_buffers = small;
1654 nrb = lnet_nrb_small_calculate();
1655 cfs_percpt_for_each(rtrp, i, the_lnet.ln_rtrpools) {
1656 rc = lnet_rtrpool_adjust_bufs(&rtrp[LNET_SMALL_BUF_IDX],
1657 nrb, i);
1658 if (rc)
1659 return rc;
1660 }
1661 }
edeb5d8c 1662 if (large >= 0) {
86ef6250
AS
1663 large_router_buffers = large;
1664 nrb = lnet_nrb_large_calculate();
1665 cfs_percpt_for_each(rtrp, i, the_lnet.ln_rtrpools) {
1666 rc = lnet_rtrpool_adjust_bufs(&rtrp[LNET_LARGE_BUF_IDX],
1667 nrb, i);
1668 if (rc)
1669 return rc;
1670 }
1671 }
1672
1673 return 0;
1674}
1675
edeb5d8c
AS
1676int
1677lnet_rtrpools_adjust(int tiny, int small, int large)
1678{
1679 /*
1680 * this function doesn't revert the changes if adding new buffers
1681 * failed. It's up to the user space caller to revert the
1682 * changes.
1683 */
1684 if (!the_lnet.ln_routing)
1685 return 0;
1686
1687 return lnet_rtrpools_adjust_helper(tiny, small, large);
1688}
1689
86ef6250
AS
1690int
1691lnet_rtrpools_enable(void)
1692{
1693 int rc;
1694
1695 if (the_lnet.ln_routing)
1696 return 0;
1697
1698 if (!the_lnet.ln_rtrpools)
1699 /*
1700 * If routing is turned off, and we have never
1701 * initialized the pools before, just call the
1702 * standard buffer pool allocation routine as
1703 * if we are just configuring this for the first
1704 * time.
1705 */
1706 return lnet_rtrpools_alloc(1);
1707
edeb5d8c 1708 rc = lnet_rtrpools_adjust_helper(0, 0, 0);
86ef6250
AS
1709 if (rc)
1710 return rc;
1711
1712 lnet_net_lock(LNET_LOCK_EX);
1713 the_lnet.ln_routing = 1;
1714
1715 the_lnet.ln_ping_info->pi_features &= ~LNET_PING_FEAT_RTE_DISABLED;
1716 lnet_net_unlock(LNET_LOCK_EX);
1717
1718 return 0;
1719}
1720
1721void
1722lnet_rtrpools_disable(void)
1723{
1724 if (!the_lnet.ln_routing)
1725 return;
1726
1727 lnet_net_lock(LNET_LOCK_EX);
1728 the_lnet.ln_routing = 0;
1729 the_lnet.ln_ping_info->pi_features |= LNET_PING_FEAT_RTE_DISABLED;
1730
1731 tiny_router_buffers = 0;
1732 small_router_buffers = 0;
1733 large_router_buffers = 0;
1734 lnet_net_unlock(LNET_LOCK_EX);
1735 lnet_rtrpools_free(1);
1736}
1737
d7e09d03 1738int
a649ad1d 1739lnet_notify(lnet_ni_t *ni, lnet_nid_t nid, int alive, unsigned long when)
d7e09d03 1740{
7e7ab095
MS
1741 struct lnet_peer *lp = NULL;
1742 unsigned long now = cfs_time_current();
1743 int cpt = lnet_cpt_of_nid(nid);
d7e09d03 1744
59cfb96f 1745 LASSERT(!in_interrupt());
d7e09d03 1746
939af333 1747 CDEBUG(D_NET, "%s notifying %s: %s\n",
06ace26e 1748 !ni ? "userspace" : libcfs_nid2str(ni->ni_nid),
c314c319
JS
1749 libcfs_nid2str(nid),
1750 alive ? "up" : "down");
d7e09d03 1751
06ace26e 1752 if (ni &&
d7e09d03 1753 LNET_NIDNET(ni->ni_nid) != LNET_NIDNET(nid)) {
939af333 1754 CWARN("Ignoring notification of %s %s by %s (different net)\n",
c314c319
JS
1755 libcfs_nid2str(nid), alive ? "birth" : "death",
1756 libcfs_nid2str(ni->ni_nid));
d7e09d03
PT
1757 return -EINVAL;
1758 }
1759
1760 /* can't do predictions... */
1761 if (cfs_time_after(when, now)) {
2d00bd17 1762 CWARN("Ignoring prediction from %s of %s %s %ld seconds in the future\n",
06ace26e 1763 !ni ? "userspace" : libcfs_nid2str(ni->ni_nid),
2d00bd17
JP
1764 libcfs_nid2str(nid), alive ? "up" : "down",
1765 cfs_duration_sec(cfs_time_sub(when, now)));
d7e09d03
PT
1766 return -EINVAL;
1767 }
1768
06ace26e 1769 if (ni && !alive && /* LND telling me she's down */
d7e09d03
PT
1770 !auto_down) { /* auto-down disabled */
1771 CDEBUG(D_NET, "Auto-down disabled\n");
1772 return 0;
1773 }
1774
1775 lnet_net_lock(cpt);
1776
1777 if (the_lnet.ln_shutdown) {
1778 lnet_net_unlock(cpt);
1779 return -ESHUTDOWN;
1780 }
1781
1782 lp = lnet_find_peer_locked(the_lnet.ln_peer_tables[cpt], nid);
06ace26e 1783 if (!lp) {
d7e09d03
PT
1784 /* nid not found */
1785 lnet_net_unlock(cpt);
1786 CDEBUG(D_NET, "%s not found\n", libcfs_nid2str(nid));
1787 return 0;
1788 }
1789
4420cfd3
JS
1790 /*
1791 * We can't fully trust LND on reporting exact peer last_alive
d7e09d03
PT
1792 * if he notifies us about dead peer. For example ksocklnd can
1793 * call us with when == _time_when_the_node_was_booted_ if
4420cfd3
JS
1794 * no connections were successfully established
1795 */
06ace26e 1796 if (ni && !alive && when < lp->lp_last_alive)
d7e09d03
PT
1797 when = lp->lp_last_alive;
1798
06ace26e 1799 lnet_notify_locked(lp, !ni, alive, when);
d7e09d03
PT
1800
1801 lnet_ni_notify_locked(ni, lp);
1802
1803 lnet_peer_decref_locked(lp);
1804
1805 lnet_net_unlock(cpt);
1806 return 0;
1807}
1808EXPORT_SYMBOL(lnet_notify);
This page took 0.524382 seconds and 5 git commands to generate.