On Fri, 4 May 2007, Pekka Enberg wrote: > > which would calculate the worst case memory scenario for allocation the > > number of indicated objects? > > IIRC this looks more or less what Peter had initially. I don't like the API > because there's no way for slab (perhaps this is different for slub) how many > pages you really need due to per-node and per-cpu caches, etc.
SLAB can calculate exactly how many pages are needed. The per cpu and per node stuff is setup at boot and does not change. We are talking about the worst case scenario here. True in case of an off slab we have additional overhead that would also have to go into worst case scenario. > It's better that the slab tells you what it actually knows and lets the > callers figure out what a worst-case upper bound is. They do not have the data. For that they would need to know how to deal with alignments, (in case of SLAB) the location of the struct slab, the distinction between the differrent sizes, padding etc. I think this has to be done by the allocator. If we ever have another allocator with another structure then this will nicely isolate that functionality. Otherwise we may have to change the callers depending on how the slab organizes its data. SLUB organizes its data more effectively so SLUB will return a lower number than SLAB f.e. - To unsubscribe from this list: send the line "unsubscribe netdev" in the body of a message to [EMAIL PROTECTED] More majordomo info at http://vger.kernel.org/majordomo-info.html