diff options
-rw-r--r-- | sys/vm/uma_core.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/sys/vm/uma_core.c b/sys/vm/uma_core.c index 08811a7..89dc746 100644 --- a/sys/vm/uma_core.c +++ b/sys/vm/uma_core.c @@ -835,8 +835,10 @@ obj_alloc(uma_zone_t zone, int bytes, u_int8_t *flags, int wait) * This looks a little weird since we're getting one page at a time */ while (bytes > 0) { + VM_OBJECT_LOCK(zone->uz_obj); p = vm_page_alloc(zone->uz_obj, pages, VM_ALLOC_INTERRUPT); + VM_OBJECT_UNLOCK(zone->uz_obj); if (p == NULL) return (NULL); |