freebsd-dev/lib/libmemstat
Jeff Roberson fc03d22b17 Refine UMA bucket allocation to reduce space consumption and improve
performance.

 - Always free to the alloc bucket if there is space.  This gives LIFO
   allocation order to improve hot-cache performance.  This also allows
   for zones with a single bucket per-cpu rather than a pair if the entire
   working set fits in one bucket.
 - Enable per-cpu caches of buckets.  To prevent recursive bucket
   allocation one bucket zone still has per-cpu caches disabled.
 - Pick the initial bucket size based on a table driven maximum size
   per-bucket rather than the number of items per-page.  This gives
   more sane initial sizes.
 - Only grow the bucket size when we face contention on the zone lock, this
   causes bucket sizes to grow more slowly.
 - Adjust the number of items per-bucket to account for the header space.
   This packs the buckets more efficiently per-page while making them
   not quite powers of two.
 - Eliminate the per-zone free bucket list.  Always return buckets back
   to the bucket zone.  This ensures that as zones grow into larger
   bucket sizes they eventually discard the smaller sizes.  It persists
   fewer buckets in the system.  The locking is slightly trickier.
 - Only switch buckets in zalloc, not zfree, this eliminates pathological
   cases where we ping-pong between two buckets.
 - Ensure that the thread that fills a new bucket gets to allocate from
   it to give a better upper bound on allocation time.

Sponsored by:	EMC / Isilon Storage Division
2013-06-18 04:50:20 +00:00
..
libmemstat.3 Fix various typos in manual pages. 2012-02-25 14:31:25 +00:00
Makefile Bump the version of all non-symbol-versioned shared libraries in 2009-07-19 17:25:24 +00:00
memstat_all.c Teach libmemstat(3) how to extract malloc(9) statistics using kvm(3), 2005-08-06 13:54:03 +00:00
memstat_internal.h Get rid of MAXCPU knowledge used for internal needs only. Switch to 2011-08-01 09:43:35 +00:00
memstat_malloc.c Get rid of MAXCPU knowledge used for internal needs only. Switch to 2011-08-01 09:43:35 +00:00
memstat_uma.c Refine UMA bucket allocation to reduce space consumption and improve 2013-06-18 04:50:20 +00:00
memstat.c Get rid of MAXCPU knowledge used for internal needs only. Switch to 2011-08-01 09:43:35 +00:00
memstat.h Get rid of MAXCPU knowledge used for internal needs only. Switch to 2011-08-01 09:43:35 +00:00