On Thu, 2 Aug 2012, Shawn Joo wrote: > 1. How to allocate/increase the number of object on "size-65536"? I would suggest to use the page allocator directly for large allocations like this. The slab allocators specialize in cutting 4k pages up in smaller units and serving those units effectively. > 2. Where is the new allocated memory from? (from buddy?) Ultimately yes but the slab allocators may have their own caching layer on top given the slow as molasses page allocator. The caching effect is excellent for small objects but not for large objects such as yours. -- 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>