On Mon, 1 Dec 2008, Pekka Enberg wrote: > Why do you think Nick's patch is going to _increase_ memory consumption? > SLUB _already_ merges the ACPI caches with kmalloc caches so you won't > see any difference there. For SLAB, it's a gain because there's not > enough activity going on which results in lots of unused space in the > slabs (which is, btw, the reason SLUB does slab merging in the first > place). The patch is going to increase memory consumption because the use of the kmalloc array means that the allocated object sizes are rounded up to the next power of two. I would recommend to keep the caches. Subsystem specific caches help to simplify debugging and track the memory allocated for various purposes in addition to saving the rounding up to power of two overhead. And with SLUB the creation of such caches usually does not require additional memory. Maybe it would be best to avoid kmalloc as much as possible. -- To unsubscribe from this list: send the line "unsubscribe linux-acpi" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html