diff options
author | Wanpeng Li <liwanp@linux.vnet.ibm.com> | 2013-07-08 08:08:28 +0800 |
---|---|---|
committer | Pekka Enberg <penberg@kernel.org> | 2013-07-08 11:02:17 +0300 |
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
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) static const struct seq_operations slabstats_op = { .start = leaks_start, - .next = s_next, - .stop = s_stop, + .next = slab_next, + .stop = slab_stop, .show = leaks_show, }; |