diff options
author | Wanpeng Li <liwanp@linux.vnet.ibm.com> | 2013-07-07 20:08:28 -0400 |
---|---|---|
committer | Pekka Enberg <penberg@kernel.org> | 2013-07-08 04:02:17 -0400 |
commit | 276a2439ce7917b8c3043af7ad6bf17bbcc24030 (patch) | |
tree | a8349275ddc91336c949550e32f739caef0debd9 /mm/slab.c | |
parent | c1e854e924f354657ea2ad08fd7b38aac81c59b1 (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.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -4440,8 +4440,8 @@ static int leaks_show(struct seq_file *m, void *p) | |||
4440 | 4440 | ||
4441 | static const struct seq_operations slabstats_op = { | 4441 | static 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 | ||