On Mon, 14 Jan 2013, Christoph Lameter wrote: > Subject: Fix: Always provide a name to create_boot_cache even during early boot. Argh. Wrong variable. My kvm does not work right and I also have not been able to fully test this one yet. But it builds fine. Subject: Fix: Always provide a name to create_boot_cache even during early boot. Signed-off-by: Christoph Lameter <cl@xxxxxxxxx> Index: linux/mm/slab_common.c =================================================================== --- linux.orig/mm/slab_common.c 2013-01-14 12:43:41.581429175 -0600 +++ linux/mm/slab_common.c 2013-01-14 12:44:43.282380404 -0600 @@ -313,7 +313,7 @@ struct kmem_cache *__init create_kmalloc if (!s) panic("Out of memory when creating slab %s\n", name); - create_boot_cache(s, name, size, flags); + create_boot_cache(s, name ? name : "kmalloc", size, flags); list_add(&s->list, &slab_caches); s->refcount = 1; return s; -- To unsubscribe, send a message with 'unsubscribe linux-mm' in the body to majordomo@xxxxxxxxx. For more info on Linux MM, see: http://www.linux-mm.org/ . Don't email: <a href=mailto:"dont@xxxxxxxxx"> email@xxxxxxxxx </a>