aboutsummaryrefslogtreecommitdiffstats
path: root/mm/slab.c
diff options
context:
space:
mode:
authorWanpeng Li <liwanp@linux.vnet.ibm.com>2013-07-04 08:33:23 +0800
committerPekka Enberg <penberg@kernel.org>2013-07-07 18:37:47 +0300
commite25839f67948ca54fa55a45686d72c266f65f099 (patch)
tree485ed28182d02b2a86d3308f0da932e796b57b00 /mm/slab.c
parentmm/slab: Fix drain freelist excessively (diff)
downloadlinux-dev-e25839f67948ca54fa55a45686d72c266f65f099.tar.xz
linux-dev-e25839f67948ca54fa55a45686d72c266f65f099.zip
mm/slab: Sharing s_next and s_stop between slab and slub
This patch shares s_next and s_stop between slab and slub. Acked-by: Christoph Lameter <cl@linux.com> 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.c10
1 files changed, 0 insertions, 10 deletions
diff --git a/mm/slab.c b/mm/slab.c
index c9b4da9a1fe5..4a907a072669 100644
--- a/mm/slab.c
+++ b/mm/slab.c
@@ -4438,16 +4438,6 @@ static int leaks_show(struct seq_file *m, void *p)
return 0;
}
-static void *s_next(struct seq_file *m, void *p, loff_t *pos)
-{
- return seq_list_next(p, &slab_caches, pos);
-}
-
-static void s_stop(struct seq_file *m, void *p)
-{
- mutex_unlock(&slab_mutex);
-}
-
static const struct seq_operations slabstats_op = {
.start = leaks_start,
.next = s_next,