summaryrefslogtreecommitdiff
path: root/mm/slub.c
diff options
context:
space:
mode:
authorAndrew Morton <akpm@linux-foundation.org>2014-07-10 10:25:29 +1000
committerStephen Rothwell <sfr@canb.auug.org.au>2014-07-10 10:25:29 +1000
commit3b34da140d5981bd26fc7db6f600969835db07d3 (patch)
tree9efe432803bb0d270ebf8c88a72754de2746f046 /mm/slub.c
parentff191a08a44b9437217298baa340ceb1523c116e (diff)
slub-use-new-node-functions-checkpatch-fixes
ERROR: space required before the open parenthesis '(' #189: FILE: mm/slub.c:4350: + for(node = 0; node < nr_node_ids; node++) total: 1 errors, 0 warnings, 192 lines checked ./patches/slub-use-new-node-functions.patch has style problems, please review. If any of these errors are false positives, please report them to the maintainer, see CHECKPATCH in MAINTAINERS. Please run checkpatch prior to sending patches Cc: Christoph Lameter <cl@linux.com> Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Diffstat (limited to 'mm/slub.c')
-rw-r--r--mm/slub.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/mm/slub.c b/mm/slub.c
index 6e40e3d08c17..6f2d8c93f7f8 100644
--- a/mm/slub.c
+++ b/mm/slub.c
@@ -4347,7 +4347,7 @@ static ssize_t show_slab_objects(struct kmem_cache *s,
}
x = sprintf(buf, "%lu", total);
#ifdef CONFIG_NUMA
- for(node = 0; node < nr_node_ids; node++)
+ for (node = 0; node < nr_node_ids; node++)
if (nodes[node])
x += sprintf(buf + x, " N%d=%lu",
node, nodes[node]);