Instead of just trying to do it for arm, make sure vm_kmem_size is properly
aligned in kmeminit(), where it'll work for any arch. Suggested by: alc
This commit is contained in:
parent
bdd1acb296
commit
e137643ef3
@ -165,8 +165,8 @@
|
||||
* Ceiling on the size of the kmem submap: 40% of the kernel map.
|
||||
*/
|
||||
#ifndef VM_KMEM_SIZE_MAX
|
||||
#define VM_KMEM_SIZE_MAX (((vm_max_kernel_address - \
|
||||
VM_MIN_KERNEL_ADDRESS + 1) * 2 / 5) &~ PAGE_MASK)
|
||||
#define VM_KMEM_SIZE_MAX ((vm_max_kernel_address - \
|
||||
VM_MIN_KERNEL_ADDRESS + 1) * 2 / 5)
|
||||
#endif
|
||||
|
||||
#ifdef ARM_USE_SMALL_ALLOC
|
||||
|
@ -740,6 +740,7 @@ kmeminit(void)
|
||||
if (vm_kmem_size / 2 / PAGE_SIZE > mem_size)
|
||||
vm_kmem_size = 2 * mem_size * PAGE_SIZE;
|
||||
|
||||
vm_kmem_size = round_page(vm_kmem_size);
|
||||
#ifdef DEBUG_MEMGUARD
|
||||
tmp = memguard_fudge(vm_kmem_size, kernel_map);
|
||||
#else
|
||||
|
Loading…
x
Reference in New Issue
Block a user