staging: lustre: lnet: lnet: trailing statements should be on next line
This patch fixes the checkpatch.pl issue Error: trailing statements should be on next line Signed-off-by: Balavasu <kp.balavasu@gmail.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
parent
88ee4bde2d
commit
5e0db1a3a8
1 changed files with 6 additions and 3 deletions
|
@ -1664,13 +1664,16 @@ lnet_get_tunables (void)
|
||||||
char *s;
|
char *s;
|
||||||
|
|
||||||
s = getenv("LNET_ROUTER_PING_TIMEOUT");
|
s = getenv("LNET_ROUTER_PING_TIMEOUT");
|
||||||
if (s != NULL) router_ping_timeout = atoi(s);
|
if (s != NULL)
|
||||||
|
router_ping_timeout = atoi(s);
|
||||||
|
|
||||||
s = getenv("LNET_LIVE_ROUTER_CHECK_INTERVAL");
|
s = getenv("LNET_LIVE_ROUTER_CHECK_INTERVAL");
|
||||||
if (s != NULL) live_router_check_interval = atoi(s);
|
if (s != NULL)
|
||||||
|
live_router_check_interval = atoi(s);
|
||||||
|
|
||||||
s = getenv("LNET_DEAD_ROUTER_CHECK_INTERVAL");
|
s = getenv("LNET_DEAD_ROUTER_CHECK_INTERVAL");
|
||||||
if (s != NULL) dead_router_check_interval = atoi(s);
|
if (s != NULL)
|
||||||
|
dead_router_check_interval = atoi(s);
|
||||||
|
|
||||||
/* This replaces old lnd_notify mechanism */
|
/* This replaces old lnd_notify mechanism */
|
||||||
check_routers_before_use = 1;
|
check_routers_before_use = 1;
|
||||||
|
|
Loading…
Add table
Reference in a new issue