CVSROOT: /cvs
Module name: src
Changes by: [EMAIL PROTECTED] 2008/09/29 06:34:18
Modified files:
sys/kern : kern_malloc.c
sys/sys : malloc.h param.h
sys/uvm : uvm_init.c
Log message:
Use pools to do allocations for all sizes <= PAGE_SIZE.
This will allow us to escape the limitations of kmem_map.
At this moment, the per-type limits are still enforced for all sizes,
but we might loosen that limit in the future after some thinking.
Original diff from Mickey in kernel/5761 , I massaged it a little to
obey the per-type limits.
miod@ ok