summaryrefslogtreecommitdiff
path: root/kern
diff options
context:
space:
mode:
authorSamuel Thibault <samuel.thibault@ens-lyon.org>2007-09-03 23:40:16 +0000
committerThomas Schwinge <tschwinge@gnu.org>2009-06-18 00:27:12 +0200
commitea0bf97096beee434b4179eab56c4d9c6923a330 (patch)
treef024a4862e34157f3512293fad7f664eb6247fc7 /kern
parent4a2a8b039c53b2dd1b530a2592eac54634144dc4 (diff)
2007-09-03 Samuel Thibault <samuel.thibault@ens-lyon.org>
* kern/zalloc.c (zget_space): Align zalloc_next_space again after calling kmem_alloc_wired (which may sleep).
Diffstat (limited to 'kern')
-rw-r--r--kern/zalloc.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/kern/zalloc.c b/kern/zalloc.c
index 126937e..54a3ffe 100644
--- a/kern/zalloc.c
+++ b/kern/zalloc.c
@@ -320,6 +320,7 @@ static vm_offset_t zget_space(vm_offset_t size, vm_size_t align)
zone_page_init(new_space, space_to_add,
ZONE_PAGE_USED);
simple_lock(&zget_space_lock);
+ ALIGN_SIZE_UP(zalloc_next_space, align);
continue;
}