Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
b=21103 Make asymmetric router failure parameters tunable
Change-Id: Ie36f79d01c35d4c11c4532187abdeb9473ea60b4
Signed-off-by: Christopher J. Morrone <morrone2@llnl.gov>
  • Loading branch information
Joseph Herring authored and morrone committed Feb 27, 2012
1 parent d61da3f commit ae7aefa
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions lnet/lnet/router.c
Expand Up @@ -78,19 +78,19 @@ CFS_MODULE_PARM(check_routers_before_use, "i", int, 0444,
"Assume routers are down and ping them before use");

static int avoid_asym_router_failure = 0;
CFS_MODULE_PARM(avoid_asym_router_failure, "i", int, 0444,
CFS_MODULE_PARM(avoid_asym_router_failure, "i", int, 0644,
"Avoid asymmetrical failures: reserved, use at your own risk");

static int dead_router_check_interval = 0;
CFS_MODULE_PARM(dead_router_check_interval, "i", int, 0444,
CFS_MODULE_PARM(dead_router_check_interval, "i", int, 0644,
"Seconds between dead router health checks (<= 0 to disable)");

static int live_router_check_interval = 0;
CFS_MODULE_PARM(live_router_check_interval, "i", int, 0444,
CFS_MODULE_PARM(live_router_check_interval, "i", int, 0644,
"Seconds between live router health checks (<= 0 to disable)");

static int router_ping_timeout = 50;
CFS_MODULE_PARM(router_ping_timeout, "i", int, 0444,
CFS_MODULE_PARM(router_ping_timeout, "i", int, 0644,
"Seconds to wait for the reply to a router health query");

int
Expand Down

0 comments on commit ae7aefa

Please sign in to comment.