The patch titled Fix /proc/slab_allocators re seq_list_next() conversion has been removed from the -mm tree. Its filename was make-proc-slabinfo-use-seq_list_xxx-helpers-fix.patch This patch was dropped because it was folded into make-proc-slabinfo-use-seq_list_xxx-helpers.patch ------------------------------------------------------ Subject: Fix /proc/slab_allocators re seq_list_next() conversion From: Alexey Dobriyan <adobriyan@xxxxx> Wrong pointer was used as kmem_cache pointer. [Here /proc/slab_allocators appears as empty file, but it's just me, probably] Signed-off-by: Alexey Dobriyan <adobriyan@xxxxx> Acked-by: Pavel Emelianov <xemul@xxxxxxxxxx> Cc: Christoph Lameter <clameter@xxxxxxx> Cc: Pekka Enberg <penberg@xxxxxxxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> --- mm/slab.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff -puN mm/slab.c~make-proc-slabinfo-use-seq_list_xxx-helpers-fix mm/slab.c --- a/mm/slab.c~make-proc-slabinfo-use-seq_list_xxx-helpers-fix +++ a/mm/slab.c @@ -4412,7 +4412,7 @@ static void show_symbol(struct seq_file static int leaks_show(struct seq_file *m, void *p) { - struct kmem_cache *cachep = p; + struct kmem_cache *cachep = list_entry(p, struct kmem_cache, next); struct slab *slabp; struct kmem_list3 *l3; const char *name; _ Patches currently in -mm which might be from adobriyan@xxxxx are make-proc-slabinfo-use-seq_list_xxx-helpers.patch make-proc-slabinfo-use-seq_list_xxx-helpers-fix.patch fix-rmmod-read-write-races-in-proc-entries.patch fix-rmmod-read-write-races-in-proc-entries-cleanup.patch fix-rmmod-read-write-races-in-proc-entries-fix.patch proc-environ-wrong-placing-of-ptrace_may_attach-check.patch mutex_unlock-later-in-seq_lseek.patch seq_file-more-atomicity-in-traverse.patch gitignore-update.patch - To unsubscribe from this list: send the line "unsubscribe mm-commits" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html