diff options
author | Samuel Thibault <samuel.thibault@ens-lyon.org> | 2007-09-03 23:40:16 +0000 |
---|---|---|
committer | Thomas Schwinge <tschwinge@gnu.org> | 2009-06-18 00:27:12 +0200 |
commit | ea0bf97096beee434b4179eab56c4d9c6923a330 (patch) | |
tree | f024a4862e34157f3512293fad7f664eb6247fc7 | |
parent | 4a2a8b039c53b2dd1b530a2592eac54634144dc4 (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).
-rw-r--r-- | ChangeLog | 5 | ||||
-rw-r--r-- | kern/zalloc.c | 1 |
2 files changed, 6 insertions, 0 deletions
@@ -1,3 +1,8 @@ +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). + 2007-08-16 Samuel Thibault <samuel.thibault@ens-lyon.org> * Makefile.am (clib_routines): Add udivdi3, __udivdi3 and _end. Fix 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; } |