CVSROOT: /cvs Module name: src Changes by: [email protected] 2012/03/15 16:22:28
Modified files:
sys/uvm : uvm_map.c
Log message:
Fix vmmap SMALL_KERNEL introduced bug.
The
if (min < VMMAP_MIN_ADDR)
min = VMMAP_MIN_ADDR;
code should have moved across when the small_kernel diff moved the
initialization from uvm_map_setup() to uvm_map_setup_md().
Prevents a nasty panic on hppa, sparc64 (and possibly other archs).
kettenis: the diff make some sense to me
