The patch titled slob: handle SLAB_PANIC flag has been removed from the -mm tree. Its filename was slob-handle-slab_panic-flag.patch This patch was dropped because it was merged into mainline or a subsystem tree ------------------------------------------------------ Subject: slob: handle SLAB_PANIC flag From: Akinobu Mita <akinobu.mita@xxxxxxxxx> kmem_cache_create() for slob doesn't handle SLAB_PANIC. Signed-off-by: Matt Mackall <mpm@xxxxxxxxxxx> Signed-off-by: Akinobu Mita <akinobu.mita@xxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> --- mm/slob.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff -puN mm/slob.c~slob-handle-slab_panic-flag mm/slob.c --- a/mm/slob.c~slob-handle-slab_panic-flag +++ a/mm/slob.c @@ -298,7 +298,8 @@ struct kmem_cache *kmem_cache_create(con c->align = (flags & SLAB_MUST_HWCACHE_ALIGN) ? SLOB_ALIGN : 0; if (c->align < align) c->align = align; - } + } else if (flags & SLAB_PANIC) + panic("Cannot create slab cache %s\n", name); return c; } _ Patches currently in -mm which might be from akinobu.mita@xxxxxxxxx are origin.patch git-alsa.patch auth_gss-unregister-gss_domain-when-unloading-module.patch fault-injection-disable-stacktrace-filter-for-x86-64.patch use-slab_panic-flag-cleanup.patch simplify-the-stacktrace-code.patch dtlk-fix-error-checks-in-module_init.patch procfs-use-simple_read_from_buffer.patch cm4000_cs-fix-error-paths.patch cm4000_cs-use-bitrev.patch use-simple_read_from_buffer-in-fs.patch use-simple_read_from_buffer-in-kernel.patch sunrpc-fix-error-path-in-module_init.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