CVSROOT: /cvs
Module name: src
Changes by: [email protected] 2015/05/10 09:56:28
Modified files:
sys/arch/arm/include: vmparam.h
sys/arch/armish/armish: armish_machdep.c
sys/arch/armish/include: vmparam.h
sys/arch/armv7/armv7: armv7_machdep.c
sys/arch/armv7/include: vmparam.h
sys/arch/zaurus/include: vmparam.h
sys/arch/zaurus/zaurus: zaurus_machdep.c
Log message:
VM_MAX_KERNEL_ADDRESS is the end of the kva range not the end of
addressable virtual memory space but arm ports were using a value of
0xffffffff for this.
Instead of using a shared VM_MAX_KERNEL_ADDRESS define add md
VM_KERNEL_SPACE_SIZE defines based on the KERNEL_VM_SIZE values
from the respective machdep.c files.
djm's novena was hitting "panic: bufinit: can't reserve VM for buffers"
without a similiar change.
ok miod@