Commit 5f45aa16 authored by Lisa Nguyen's avatar Lisa Nguyen Committed by Greg Kroah-Hartman

staging/lustre/lnet: Remove unnecessary spaces in router_proc.c

Remove unnecessary spaces between function names and open
parentheses in router_proc.c to meet kernel coding style.
Signed-off-by: default avatarLisa Nguyen <lisa@xenapiadmin.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent 28ad960e
...@@ -158,7 +158,7 @@ int LL_PROC_PROTO(proc_lnet_routes) ...@@ -158,7 +158,7 @@ int LL_PROC_PROTO(proc_lnet_routes)
off = LNET_PROC_HOFF_GET(*ppos); off = LNET_PROC_HOFF_GET(*ppos);
ver = LNET_PROC_VER_GET(*ppos); ver = LNET_PROC_VER_GET(*ppos);
LASSERT (!write); LASSERT(!write);
if (*lenp == 0) if (*lenp == 0)
return 0; return 0;
...@@ -172,11 +172,11 @@ int LL_PROC_PROTO(proc_lnet_routes) ...@@ -172,11 +172,11 @@ int LL_PROC_PROTO(proc_lnet_routes)
if (*ppos == 0) { if (*ppos == 0) {
s += snprintf(s, tmpstr + tmpsiz - s, "Routing %s\n", s += snprintf(s, tmpstr + tmpsiz - s, "Routing %s\n",
the_lnet.ln_routing ? "enabled" : "disabled"); the_lnet.ln_routing ? "enabled" : "disabled");
LASSERT (tmpstr + tmpsiz - s > 0); LASSERT(tmpstr + tmpsiz - s > 0);
s += snprintf(s, tmpstr + tmpsiz - s, "%-8s %4s %7s %s\n", s += snprintf(s, tmpstr + tmpsiz - s, "%-8s %4s %7s %s\n",
"net", "hops", "state", "router"); "net", "hops", "state", "router");
LASSERT (tmpstr + tmpsiz - s > 0); LASSERT(tmpstr + tmpsiz - s > 0);
lnet_net_lock(0); lnet_net_lock(0);
ver = (unsigned int)the_lnet.ln_remote_nets_version; ver = (unsigned int)the_lnet.ln_remote_nets_version;
...@@ -281,7 +281,7 @@ int LL_PROC_PROTO(proc_lnet_routers) ...@@ -281,7 +281,7 @@ int LL_PROC_PROTO(proc_lnet_routers)
off = LNET_PROC_HOFF_GET(*ppos); off = LNET_PROC_HOFF_GET(*ppos);
ver = LNET_PROC_VER_GET(*ppos); ver = LNET_PROC_VER_GET(*ppos);
LASSERT (!write); LASSERT(!write);
if (*lenp == 0) if (*lenp == 0)
return 0; return 0;
...@@ -375,7 +375,7 @@ int LL_PROC_PROTO(proc_lnet_routers) ...@@ -375,7 +375,7 @@ int LL_PROC_PROTO(proc_lnet_routers)
pingsent, pingsent,
cfs_duration_sec(cfs_time_sub(deadline, now)), cfs_duration_sec(cfs_time_sub(deadline, now)),
down_ni, libcfs_nid2str(nid)); down_ni, libcfs_nid2str(nid));
LASSERT (tmpstr + tmpsiz - s > 0); LASSERT(tmpstr + tmpsiz - s > 0);
} }
lnet_net_unlock(0); lnet_net_unlock(0);
...@@ -437,7 +437,7 @@ int LL_PROC_PROTO(proc_lnet_peers) ...@@ -437,7 +437,7 @@ int LL_PROC_PROTO(proc_lnet_peers)
"%-24s %4s %5s %5s %5s %5s %5s %5s %5s %s\n", "%-24s %4s %5s %5s %5s %5s %5s %5s %5s %s\n",
"nid", "refs", "state", "last", "max", "nid", "refs", "state", "last", "max",
"rtr", "min", "tx", "min", "queue"); "rtr", "min", "tx", "min", "queue");
LASSERT (tmpstr + tmpsiz - s > 0); LASSERT(tmpstr + tmpsiz - s > 0);
hoff++; hoff++;
} else { } else {
...@@ -534,7 +534,7 @@ int LL_PROC_PROTO(proc_lnet_peers) ...@@ -534,7 +534,7 @@ int LL_PROC_PROTO(proc_lnet_peers)
libcfs_nid2str(nid), nrefs, aliveness, libcfs_nid2str(nid), nrefs, aliveness,
lastalive, maxcr, rtrcr, minrtrcr, txcr, lastalive, maxcr, rtrcr, minrtrcr, txcr,
mintxcr, txqnob); mintxcr, txqnob);
LASSERT (tmpstr + tmpsiz - s > 0); LASSERT(tmpstr + tmpsiz - s > 0);
} else { /* peer is NULL */ } else { /* peer is NULL */
lnet_net_unlock(cpt); lnet_net_unlock(cpt);
...@@ -592,7 +592,7 @@ static int __proc_lnet_buffers(void *data, int write, ...@@ -592,7 +592,7 @@ static int __proc_lnet_buffers(void *data, int write,
s += snprintf(s, tmpstr + tmpsiz - s, s += snprintf(s, tmpstr + tmpsiz - s,
"%5s %5s %7s %7s\n", "%5s %5s %7s %7s\n",
"pages", "count", "credits", "min"); "pages", "count", "credits", "min");
LASSERT (tmpstr + tmpsiz - s > 0); LASSERT(tmpstr + tmpsiz - s > 0);
if (the_lnet.ln_rtrpools == NULL) if (the_lnet.ln_rtrpools == NULL)
goto out; /* I'm not a router */ goto out; /* I'm not a router */
...@@ -638,7 +638,7 @@ int LL_PROC_PROTO(proc_lnet_nis) ...@@ -638,7 +638,7 @@ int LL_PROC_PROTO(proc_lnet_nis)
DECLARE_LL_PROC_PPOS_DECL; DECLARE_LL_PROC_PPOS_DECL;
LASSERT (!write); LASSERT(!write);
if (*lenp == 0) if (*lenp == 0)
return 0; return 0;
...@@ -654,7 +654,7 @@ int LL_PROC_PROTO(proc_lnet_nis) ...@@ -654,7 +654,7 @@ int LL_PROC_PROTO(proc_lnet_nis)
"%-24s %6s %5s %4s %4s %4s %5s %5s %5s\n", "%-24s %6s %5s %4s %4s %4s %5s %5s %5s\n",
"nid", "status", "alive", "refs", "peer", "nid", "status", "alive", "refs", "peer",
"rtr", "max", "tx", "min"); "rtr", "max", "tx", "min");
LASSERT (tmpstr + tmpsiz - s > 0); LASSERT(tmpstr + tmpsiz - s > 0);
} else { } else {
struct list_head *n; struct list_head *n;
lnet_ni_t *ni = NULL; lnet_ni_t *ni = NULL;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment