On Sat, 30 Jan 2016 02:09:30 -0500 Valdis.Kletnieks@xxxxxx wrote: > On Thu, 28 Jan 2016 18:47:49 +0100, Jesper Dangaard Brouer said: > > I cannot reproduce below problem... have enabled all kind of debugging > > and also lockdep. > > > > Can I get a version of the .config file used? > > I'm not the 0day bot, but my laptop hits the same issue at boot. Thank you! I'm now able to reproduce, and I've found the issue. It only happens for SLAB, and with FAILSLAB disabled. The problem were introduced in the patch before: http://ozlabs.org/~akpm/mmots/broken-out/mm-fault-inject-take-over-bootstrap-kmem_cache-check.patch which moved the check function: static bool slab_should_failslab(struct kmem_cache *cachep, gfp_t flags) { if (unlikely(cachep == kmem_cache)) return false; return should_failslab(cachep->object_size, flags, cachep->flags); } into the fault injection framework, call of should_failslab(). That change was wrong, as some very early boot code depend on SLAB failing, when still allocating from the bootstrap kmem_cache. SLUB seem to handle this better. In this case the percpu system, have a workqueue function, calling pcpu_extend_area_map() which sort-of probe the slab-allocator, and depending on it fails, until it is fully ready. I will fix up my patches, reverting this change... and let them go through Andrews quilt process. Let me know, if the linux-next tree need's an explicit fix? -- Best regards, Jesper Dangaard Brouer MSc.CS, Principal Kernel Engineer at Red Hat Author of http://www.iptv-analyzer.org LinkedIn: http://www.linkedin.com/in/brouer -- 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>