Pekka Enberg wrote: >> General interested question -- I recently "accidentally" read some of >> slub and I believe that it doesn't feature the cache colouring support >> that slab did? Is that true, and if so, wasn't it needed/useful? > > I don't know why Christoph decided not to implement it. Christoph? IMHO cache coloring issues seem to be mostly taken care of by newer more associative cpu caching designs. Note that the SLAB design origin is Solaris (See the paper by Jeff Bonwick in 1994 that is quoted in mm/slab.c). Logic for cache coloring is mostly avoided today due to the complexity it would introduce. See also http://en.wikipedia.org/wiki/CPU_cache. What one could add to support cache coloring in SLUB is a prearrangement of the order of object allocation order by constructing the initial freelist for a page in a certain way. See mm/slub.c::new_slab() -- To unsubscribe from this list: send the line "unsubscribe linux-fsdevel" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html