aboutsummaryrefslogtreecommitdiffstats
path: root/mm/slab.c
diff options
context:
space:
mode:
authorWanpeng Li <liwanp@linux.vnet.ibm.com>2013-07-07 20:08:28 -0400
committerPekka Enberg <penberg@kernel.org>2013-07-08 04:02:17 -0400
commit276a2439ce7917b8c3043af7ad6bf17bbcc24030 (patch)
treea8349275ddc91336c949550e32f739caef0debd9 /mm/slab.c
parentc1e854e924f354657ea2ad08fd7b38aac81c59b1 (diff)
mm/slab: Give s_next and s_stop slab-specific names
Give s_next and s_stop slab-specific names instead of exporting "s_next" and "s_stop". Signed-off-by: Wanpeng Li <liwanp@linux.vnet.ibm.com> Signed-off-by: Pekka Enberg <penberg@kernel.org>
Diffstat (limited to 'mm/slab.c')
-rw-r--r--mm/slab.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/mm/slab.c b/mm/slab.c
index 9bf225162fcb..57ab42297d96 100644
--- a/mm/slab.c
+++ b/mm/slab.c
@@ -4440,8 +4440,8 @@ static int leaks_show(struct seq_file *m, void *p)
4440 4440
4441static const struct seq_operations slabstats_op = { 4441static const struct seq_operations slabstats_op = {
4442 .start = leaks_start, 4442 .start = leaks_start,
4443 .next = s_next, 4443 .next = slab_next,
4444 .stop = s_stop, 4444 .stop = slab_stop,
4445 .show = leaks_show, 4445 .show = leaks_show,
4446}; 4446};
4447 4447