diff options
| author | Wanpeng Li <liwanp@linux.vnet.ibm.com> | 2013-07-08 08:08:28 +0800 |
|---|---|---|
| committer | Moyster <oysterized@gmail.com> | 2016-09-28 15:14:26 +0200 |
| commit | 3aebfda108d366cd16efd17eb1cd730635fb2546 (patch) | |
| tree | 1fe01ab81f169e170ef95fe916196db385baed71 /mm/slab.c | |
| parent | 250935a51002a8bc179330cf98cdb44b399a20e4 (diff) | |
| download | android_kernel_m2note-3aebfda108d366cd16efd17eb1cd730635fb2546.tar.gz | |
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>
Signed-off-by: W4TCH0UT <ateekujjawal@gmail.com>
Diffstat (limited to 'mm/slab.c')
| -rw-r--r-- | mm/slab.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -4439,8 +4439,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, }; |
