diff options
author | Samuel Thibault <samuel.thibault@ens-lyon.org> | 2016-02-14 22:39:03 +0100 |
---|---|---|
committer | Samuel Thibault <samuel.thibault@ens-lyon.org> | 2016-02-14 22:39:03 +0100 |
commit | 4e48ff1d81e7a36d257c7d70b61fe1e5bf500a6e (patch) | |
tree | 002756b7ec8ea34f079a8fdde000a3391a4194d0 /i386 | |
parent | cc146aeb61efc46bdb157ba87f7fb72e117067cb (diff) | |
download | gnumach-4e48ff1d81e7a36d257c7d70b61fe1e5bf500a6e.tar.gz gnumach-4e48ff1d81e7a36d257c7d70b61fe1e5bf500a6e.tar.bz2 gnumach-4e48ff1d81e7a36d257c7d70b61fe1e5bf500a6e.zip |
Reduce VM_KERNEL_MAP_SIZE
Now that KMEM_MAP_SIZE (128MiB) has been removed.
* i386/i386/vm_param.h (VM_KERNEL_MAP_SIZE): Decrease by 128MiB.
Diffstat (limited to 'i386')
-rw-r--r-- | i386/i386/vm_param.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/i386/i386/vm_param.h b/i386/i386/vm_param.h index 3769ef70..2635c2cd 100644 --- a/i386/i386/vm_param.h +++ b/i386/i386/vm_param.h @@ -58,9 +58,9 @@ /* Reserve mapping room for kmem. */ #ifdef MACH_XEN -#define VM_KERNEL_MAP_SIZE (256 * 1024 * 1024) +#define VM_KERNEL_MAP_SIZE (128 * 1024 * 1024) #else -#define VM_KERNEL_MAP_SIZE (224 * 1024 * 1024) +#define VM_KERNEL_MAP_SIZE (96 * 1024 * 1024) #endif /* The kernel virtual address space is actually located |