diff options
author | Samuel Thibault <samuel.thibault@ens-lyon.org> | 2011-04-22 11:10:32 +0200 |
---|---|---|
committer | Samuel Thibault <samuel.thibault@ens-lyon.org> | 2011-04-22 11:10:32 +0200 |
commit | 07dc2f7b615f1b6af4acbbc034615856557ef7cd (patch) | |
tree | 3fcacbd367ef4256bed161daa12847618eef8e10 /i386 | |
parent | 67d4e8403fe12592f99cf6fc51e4f33684899d6b (diff) |
Update constants to nowadays standards
Follow-up to fa6c711d
* vm/vm_object.c (DEVICE_IO_MAP_SIZE): Increase to 16MiB.
* kern/kalloc.c (kalloc_map_size): Increase to 64MiB.
* i386/intel/pmap.c (morevm): Increase to 128MiB.
Diffstat (limited to 'i386')
-rw-r--r-- | i386/intel/pmap.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/i386/intel/pmap.c b/i386/intel/pmap.c index 3505f52..0b8ae90 100644 --- a/i386/intel/pmap.c +++ b/i386/intel/pmap.c @@ -156,7 +156,7 @@ vm_offset_t kernel_virtual_start; vm_offset_t kernel_virtual_end; /* XXX stupid fixed limit - get rid */ -vm_size_t morevm = 40 * 1024 * 1024; /* VM space for kernel map */ +vm_size_t morevm = 128 * 1024 * 1024; /* VM space for kernel map */ /* * Index into pv_head table, its lock bits, and the modify/reference |