xref: /illumos-gate/usr/src/lib/libumem/common/vmem.c (revision fcf3ce44)
1 /*
2  * CDDL HEADER START
3  *
4  * The contents of this file are subject to the terms of the
5  * Common Development and Distribution License (the "License").
6  * You may not use this file except in compliance with the License.
7  *
8  * You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
9  * or http://www.opensolaris.org/os/licensing.
10  * See the License for the specific language governing permissions
11  * and limitations under the License.
12  *
13  * When distributing Covered Code, include this CDDL HEADER in each
14  * file and include the License file at usr/src/OPENSOLARIS.LICENSE.
15  * If applicable, add the following below this CDDL HEADER, with the
16  * fields enclosed by brackets "[]" replaced with your own identifying
17  * information: Portions Copyright [yyyy] [name of copyright owner]
18  *
19  * CDDL HEADER END
20  */
21 
22 /*
23  * Copyright 2008 Sun Microsystems, Inc.  All rights reserved.
24  * Use is subject to license terms.
25  */
26 
27 #pragma ident	"%Z%%M%	%I%	%E% SMI"
28 
29 /*
30  * For a more complete description of the main ideas, see:
31  *
32  *	Jeff Bonwick and Jonathan Adams,
33  *
34  *	Magazines and vmem: Extending the Slab Allocator to Many CPUs and
35  *	Arbitrary Resources.
36  *
37  *	Proceedings of the 2001 Usenix Conference.
38  *	Available as /shared/sac/PSARC/2000/550/materials/vmem.pdf.
39  *
40  * For the "Big Theory Statement", see usr/src/uts/common/os/vmem.c
41  *
42  * 1. Overview of changes
43  * ------------------------------
44  * There have been a few changes to vmem in order to support umem.  The
45  * main areas are:
46  *
47  *	* VM_SLEEP unsupported
48  *
49  *	* Reaping changes
50  *
51  *	* initialization changes
52  *
53  *	* _vmem_extend_alloc
54  *
55  *
56  * 2. VM_SLEEP Removed
57  * -------------------
58  * Since VM_SLEEP allocations can hold locks (in vmem_populate()) for
59  * possibly infinite amounts of time, they are not supported in this
60  * version of vmem.  Sleep-like behavior can be achieved through
61  * UMEM_NOFAIL umem allocations.
62  *
63  *
64  * 3. Reaping changes
65  * ------------------
66  * Unlike kmem_reap(), which just asynchronously schedules work, umem_reap()
67  * can do allocations and frees synchronously.  This is a problem if it
68  * occurs during a vmem_populate() allocation.
69  *
70  * Instead, we delay reaps while populates are active.
71  *
72  *
73  * 4. Initialization changes
74  * -------------------------
75  * In the kernel, vmem_init() allows you to create a single, top-level arena,
76  * which has vmem_internal_arena as a child.  For umem, we want to be able
77  * to extend arenas dynamically.  It is much easier to support this if we
78  * allow a two-level "heap" arena:
79  *
80  *	+----------+
81  *	|  "fake"  |
82  *	+----------+
83  *	      |
84  *	+----------+
85  *	|  "heap"  |
86  *	+----------+
87  *	  |    \ \
88  *	  |     +-+-- ... <other children>
89  *	  |
90  *	+---------------+
91  *	| vmem_internal |
92  *	+---------------+
93  *	    | | | |
94  *	   <children>
95  *
96  * The new vmem_init() allows you to specify a "parent" of the heap, along
97  * with allocation functions.
98  *
99  *
100  * 5. _vmem_extend_alloc
101  * ---------------------
102  * The other part of extending is _vmem_extend_alloc.  This function allows
103  * you to extend (expand current spans, if possible) an arena and allocate
104  * a chunk of the newly extened span atomically.  This is needed to support
105  * extending the heap while vmem_populate()ing it.
106  *
107  * In order to increase the usefulness of extending, non-imported spans are
108  * sorted in address order.
109  */
110 
111 #include <sys/vmem_impl_user.h>
112 #include <alloca.h>
113 #include <sys/sysmacros.h>
114 #include <stdio.h>
115 #include <strings.h>
116 #include <atomic.h>
117 
118 #include "vmem_base.h"
119 #include "umem_base.h"
120 
121 #define	VMEM_INITIAL		6	/* early vmem arenas */
122 #define	VMEM_SEG_INITIAL	100	/* early segments */
123 
124 /*
125  * Adding a new span to an arena requires two segment structures: one to
126  * represent the span, and one to represent the free segment it contains.
127  */
128 #define	VMEM_SEGS_PER_SPAN_CREATE	2
129 
130 /*
131  * Allocating a piece of an existing segment requires 0-2 segment structures
132  * depending on how much of the segment we're allocating.
133  *
134  * To allocate the entire segment, no new segment structures are needed; we
135  * simply move the existing segment structure from the freelist to the
136  * allocation hash table.
137  *
138  * To allocate a piece from the left or right end of the segment, we must
139  * split the segment into two pieces (allocated part and remainder), so we
140  * need one new segment structure to represent the remainder.
141  *
142  * To allocate from the middle of a segment, we need two new segment strucures
143  * to represent the remainders on either side of the allocated part.
144  */
145 #define	VMEM_SEGS_PER_EXACT_ALLOC	0
146 #define	VMEM_SEGS_PER_LEFT_ALLOC	1
147 #define	VMEM_SEGS_PER_RIGHT_ALLOC	1
148 #define	VMEM_SEGS_PER_MIDDLE_ALLOC	2
149 
150 /*
151  * vmem_populate() preallocates segment structures for vmem to do its work.
152  * It must preallocate enough for the worst case, which is when we must import
153  * a new span and then allocate from the middle of it.
154  */
155 #define	VMEM_SEGS_PER_ALLOC_MAX		\
156 	(VMEM_SEGS_PER_SPAN_CREATE + VMEM_SEGS_PER_MIDDLE_ALLOC)
157 
158 /*
159  * The segment structures themselves are allocated from vmem_seg_arena, so
160  * we have a recursion problem when vmem_seg_arena needs to populate itself.
161  * We address this by working out the maximum number of segment structures
162  * this act will require, and multiplying by the maximum number of threads
163  * that we'll allow to do it simultaneously.
164  *
165  * The worst-case segment consumption to populate vmem_seg_arena is as
166  * follows (depicted as a stack trace to indicate why events are occurring):
167  *
168  * vmem_alloc(vmem_seg_arena)		-> 2 segs (span create + exact alloc)
169  *  vmem_alloc(vmem_internal_arena)	-> 2 segs (span create + exact alloc)
170  *   heap_alloc(heap_arena)
171  *    vmem_alloc(heap_arena)		-> 4 seg (span create + alloc)
172  *     parent_alloc(parent_arena)
173  *	_vmem_extend_alloc(parent_arena) -> 3 seg (span create + left alloc)
174  *
175  * Note:  The reservation for heap_arena must be 4, since vmem_xalloc()
176  * is overly pessimistic on allocations where parent_arena has a stricter
177  * alignment than heap_arena.
178  *
179  * The worst-case consumption for any arena is 4 segment structures.
180  * For now, we only support VM_NOSLEEP allocations, so as long as we
181  * serialize all vmem_populates, a 4-seg reserve is sufficient.
182  */
183 #define	VMEM_POPULATE_SEGS_PER_ARENA	4
184 #define	VMEM_POPULATE_LOCKS		1
185 
186 #define	VMEM_POPULATE_RESERVE		\
187 	(VMEM_POPULATE_SEGS_PER_ARENA * VMEM_POPULATE_LOCKS)
188 
189 /*
190  * vmem_populate() ensures that each arena has VMEM_MINFREE seg structures
191  * so that it can satisfy the worst-case allocation *and* participate in
192  * worst-case allocation from vmem_seg_arena.
193  */
194 #define	VMEM_MINFREE	(VMEM_POPULATE_RESERVE + VMEM_SEGS_PER_ALLOC_MAX)
195 
196 /* Don't assume new statics are zeroed - see vmem_startup() */
197 static vmem_t vmem0[VMEM_INITIAL];
198 static vmem_t *vmem_populator[VMEM_INITIAL];
199 static uint32_t vmem_id;
200 static uint32_t vmem_populators;
201 static vmem_seg_t vmem_seg0[VMEM_SEG_INITIAL];
202 static vmem_seg_t *vmem_segfree;
203 static mutex_t vmem_list_lock;
204 static mutex_t vmem_segfree_lock;
205 static vmem_populate_lock_t vmem_nosleep_lock;
206 #define	IN_POPULATE()	(vmem_nosleep_lock.vmpl_thr == thr_self())
207 static vmem_t *vmem_list;
208 static vmem_t *vmem_internal_arena;
209 static vmem_t *vmem_seg_arena;
210 static vmem_t *vmem_hash_arena;
211 static vmem_t *vmem_vmem_arena;
212 
213 vmem_t *vmem_heap;
214 vmem_alloc_t *vmem_heap_alloc;
215 vmem_free_t *vmem_heap_free;
216 
217 uint32_t vmem_mtbf;		/* mean time between failures [default: off] */
218 size_t vmem_seg_size = sizeof (vmem_seg_t);
219 
220 /*
221  * Insert/delete from arena list (type 'a') or next-of-kin list (type 'k').
222  */
223 #define	VMEM_INSERT(vprev, vsp, type)					\
224 {									\
225 	vmem_seg_t *vnext = (vprev)->vs_##type##next;			\
226 	(vsp)->vs_##type##next = (vnext);				\
227 	(vsp)->vs_##type##prev = (vprev);				\
228 	(vprev)->vs_##type##next = (vsp);				\
229 	(vnext)->vs_##type##prev = (vsp);				\
230 }
231 
232 #define	VMEM_DELETE(vsp, type)						\
233 {									\
234 	vmem_seg_t *vprev = (vsp)->vs_##type##prev;			\
235 	vmem_seg_t *vnext = (vsp)->vs_##type##next;			\
236 	(vprev)->vs_##type##next = (vnext);				\
237 	(vnext)->vs_##type##prev = (vprev);				\
238 }
239 
240 /*
241  * Get a vmem_seg_t from the global segfree list.
242  */
243 static vmem_seg_t *
244 vmem_getseg_global(void)
245 {
246 	vmem_seg_t *vsp;
247 
248 	(void) mutex_lock(&vmem_segfree_lock);
249 	if ((vsp = vmem_segfree) != NULL)
250 		vmem_segfree = vsp->vs_knext;
251 	(void) mutex_unlock(&vmem_segfree_lock);
252 
253 	return (vsp);
254 }
255 
256 /*
257  * Put a vmem_seg_t on the global segfree list.
258  */
259 static void
260 vmem_putseg_global(vmem_seg_t *vsp)
261 {
262 	(void) mutex_lock(&vmem_segfree_lock);
263 	vsp->vs_knext = vmem_segfree;
264 	vmem_segfree = vsp;
265 	(void) mutex_unlock(&vmem_segfree_lock);
266 }
267 
268 /*
269  * Get a vmem_seg_t from vmp's segfree list.
270  */
271 static vmem_seg_t *
272 vmem_getseg(vmem_t *vmp)
273 {
274 	vmem_seg_t *vsp;
275 
276 	ASSERT(vmp->vm_nsegfree > 0);
277 
278 	vsp = vmp->vm_segfree;
279 	vmp->vm_segfree = vsp->vs_knext;
280 	vmp->vm_nsegfree--;
281 
282 	return (vsp);
283 }
284 
285 /*
286  * Put a vmem_seg_t on vmp's segfree list.
287  */
288 static void
289 vmem_putseg(vmem_t *vmp, vmem_seg_t *vsp)
290 {
291 	vsp->vs_knext = vmp->vm_segfree;
292 	vmp->vm_segfree = vsp;
293 	vmp->vm_nsegfree++;
294 }
295 
296 /*
297  * Add vsp to the appropriate freelist.
298  */
299 static void
300 vmem_freelist_insert(vmem_t *vmp, vmem_seg_t *vsp)
301 {
302 	vmem_seg_t *vprev;
303 
304 	ASSERT(*VMEM_HASH(vmp, vsp->vs_start) != vsp);
305 
306 	vprev = (vmem_seg_t *)&vmp->vm_freelist[highbit(VS_SIZE(vsp)) - 1];
307 	vsp->vs_type = VMEM_FREE;
308 	vmp->vm_freemap |= VS_SIZE(vprev);
309 	VMEM_INSERT(vprev, vsp, k);
310 
311 	(void) cond_broadcast(&vmp->vm_cv);
312 }
313 
314 /*
315  * Take vsp from the freelist.
316  */
317 static void
318 vmem_freelist_delete(vmem_t *vmp, vmem_seg_t *vsp)
319 {
320 	ASSERT(*VMEM_HASH(vmp, vsp->vs_start) != vsp);
321 	ASSERT(vsp->vs_type == VMEM_FREE);
322 
323 	if (vsp->vs_knext->vs_start == 0 && vsp->vs_kprev->vs_start == 0) {
324 		/*
325 		 * The segments on both sides of 'vsp' are freelist heads,
326 		 * so taking vsp leaves the freelist at vsp->vs_kprev empty.
327 		 */
328 		ASSERT(vmp->vm_freemap & VS_SIZE(vsp->vs_kprev));
329 		vmp->vm_freemap ^= VS_SIZE(vsp->vs_kprev);
330 	}
331 	VMEM_DELETE(vsp, k);
332 }
333 
334 /*
335  * Add vsp to the allocated-segment hash table and update kstats.
336  */
337 static void
338 vmem_hash_insert(vmem_t *vmp, vmem_seg_t *vsp)
339 {
340 	vmem_seg_t **bucket;
341 
342 	vsp->vs_type = VMEM_ALLOC;
343 	bucket = VMEM_HASH(vmp, vsp->vs_start);
344 	vsp->vs_knext = *bucket;
345 	*bucket = vsp;
346 
347 	if (vmem_seg_size == sizeof (vmem_seg_t)) {
348 		vsp->vs_depth = (uint8_t)getpcstack(vsp->vs_stack,
349 		    VMEM_STACK_DEPTH, 0);
350 		vsp->vs_thread = thr_self();
351 		vsp->vs_timestamp = gethrtime();
352 	} else {
353 		vsp->vs_depth = 0;
354 	}
355 
356 	vmp->vm_kstat.vk_alloc++;
357 	vmp->vm_kstat.vk_mem_inuse += VS_SIZE(vsp);
358 }
359 
360 /*
361  * Remove vsp from the allocated-segment hash table and update kstats.
362  */
363 static vmem_seg_t *
364 vmem_hash_delete(vmem_t *vmp, uintptr_t addr, size_t size)
365 {
366 	vmem_seg_t *vsp, **prev_vspp;
367 
368 	prev_vspp = VMEM_HASH(vmp, addr);
369 	while ((vsp = *prev_vspp) != NULL) {
370 		if (vsp->vs_start == addr) {
371 			*prev_vspp = vsp->vs_knext;
372 			break;
373 		}
374 		vmp->vm_kstat.vk_lookup++;
375 		prev_vspp = &vsp->vs_knext;
376 	}
377 
378 	if (vsp == NULL) {
379 		umem_panic("vmem_hash_delete(%p, %lx, %lu): bad free",
380 		    vmp, addr, size);
381 	}
382 	if (VS_SIZE(vsp) != size) {
383 		umem_panic("vmem_hash_delete(%p, %lx, %lu): wrong size "
384 		    "(expect %lu)", vmp, addr, size, VS_SIZE(vsp));
385 	}
386 
387 	vmp->vm_kstat.vk_free++;
388 	vmp->vm_kstat.vk_mem_inuse -= size;
389 
390 	return (vsp);
391 }
392 
393 /*
394  * Create a segment spanning the range [start, end) and add it to the arena.
395  */
396 static vmem_seg_t *
397 vmem_seg_create(vmem_t *vmp, vmem_seg_t *vprev, uintptr_t start, uintptr_t end)
398 {
399 	vmem_seg_t *newseg = vmem_getseg(vmp);
400 
401 	newseg->vs_start = start;
402 	newseg->vs_end = end;
403 	newseg->vs_type = 0;
404 	newseg->vs_import = 0;
405 
406 	VMEM_INSERT(vprev, newseg, a);
407 
408 	return (newseg);
409 }
410 
411 /*
412  * Remove segment vsp from the arena.
413  */
414 static void
415 vmem_seg_destroy(vmem_t *vmp, vmem_seg_t *vsp)
416 {
417 	ASSERT(vsp->vs_type != VMEM_ROTOR);
418 	VMEM_DELETE(vsp, a);
419 
420 	vmem_putseg(vmp, vsp);
421 }
422 
423 /*
424  * Add the span [vaddr, vaddr + size) to vmp and update kstats.
425  */
426 static vmem_seg_t *
427 vmem_span_create(vmem_t *vmp, void *vaddr, size_t size, uint8_t import)
428 {
429 	vmem_seg_t *knext;
430 	vmem_seg_t *newseg, *span;
431 	uintptr_t start = (uintptr_t)vaddr;
432 	uintptr_t end = start + size;
433 
434 	knext = &vmp->vm_seg0;
435 	if (!import && vmp->vm_source_alloc == NULL) {
436 		vmem_seg_t *kend, *kprev;
437 		/*
438 		 * non-imported spans are sorted in address order.  This
439 		 * makes vmem_extend_unlocked() much more effective.
440 		 *
441 		 * We search in reverse order, since new spans are
442 		 * generally at higher addresses.
443 		 */
444 		kend = &vmp->vm_seg0;
445 		for (kprev = kend->vs_kprev; kprev != kend;
446 		    kprev = kprev->vs_kprev) {
447 			if (!kprev->vs_import && (kprev->vs_end - 1) < start)
448 				break;
449 		}
450 		knext = kprev->vs_knext;
451 	}
452 
453 	ASSERT(MUTEX_HELD(&vmp->vm_lock));
454 
455 	if ((start | end) & (vmp->vm_quantum - 1)) {
456 		umem_panic("vmem_span_create(%p, %p, %lu): misaligned",
457 		    vmp, vaddr, size);
458 	}
459 
460 	span = vmem_seg_create(vmp, knext->vs_aprev, start, end);
461 	span->vs_type = VMEM_SPAN;
462 	VMEM_INSERT(knext->vs_kprev, span, k);
463 
464 	newseg = vmem_seg_create(vmp, span, start, end);
465 	vmem_freelist_insert(vmp, newseg);
466 
467 	newseg->vs_import = import;
468 	if (import)
469 		vmp->vm_kstat.vk_mem_import += size;
470 	vmp->vm_kstat.vk_mem_total += size;
471 
472 	return (newseg);
473 }
474 
475 /*
476  * Remove span vsp from vmp and update kstats.
477  */
478 static void
479 vmem_span_destroy(vmem_t *vmp, vmem_seg_t *vsp)
480 {
481 	vmem_seg_t *span = vsp->vs_aprev;
482 	size_t size = VS_SIZE(vsp);
483 
484 	ASSERT(MUTEX_HELD(&vmp->vm_lock));
485 	ASSERT(span->vs_type == VMEM_SPAN);
486 
487 	if (vsp->vs_import)
488 		vmp->vm_kstat.vk_mem_import -= size;
489 	vmp->vm_kstat.vk_mem_total -= size;
490 
491 	VMEM_DELETE(span, k);
492 
493 	vmem_seg_destroy(vmp, vsp);
494 	vmem_seg_destroy(vmp, span);
495 }
496 
497 /*
498  * Allocate the subrange [addr, addr + size) from segment vsp.
499  * If there are leftovers on either side, place them on the freelist.
500  * Returns a pointer to the segment representing [addr, addr + size).
501  */
502 static vmem_seg_t *
503 vmem_seg_alloc(vmem_t *vmp, vmem_seg_t *vsp, uintptr_t addr, size_t size)
504 {
505 	uintptr_t vs_start = vsp->vs_start;
506 	uintptr_t vs_end = vsp->vs_end;
507 	size_t vs_size = vs_end - vs_start;
508 	size_t realsize = P2ROUNDUP(size, vmp->vm_quantum);
509 	uintptr_t addr_end = addr + realsize;
510 
511 	ASSERT(P2PHASE(vs_start, vmp->vm_quantum) == 0);
512 	ASSERT(P2PHASE(addr, vmp->vm_quantum) == 0);
513 	ASSERT(vsp->vs_type == VMEM_FREE);
514 	ASSERT(addr >= vs_start && addr_end - 1 <= vs_end - 1);
515 	ASSERT(addr - 1 <= addr_end - 1);
516 
517 	/*
518 	 * If we're allocating from the start of the segment, and the
519 	 * remainder will be on the same freelist, we can save quite
520 	 * a bit of work.
521 	 */
522 	if (P2SAMEHIGHBIT(vs_size, vs_size - realsize) && addr == vs_start) {
523 		ASSERT(highbit(vs_size) == highbit(vs_size - realsize));
524 		vsp->vs_start = addr_end;
525 		vsp = vmem_seg_create(vmp, vsp->vs_aprev, addr, addr + size);
526 		vmem_hash_insert(vmp, vsp);
527 		return (vsp);
528 	}
529 
530 	vmem_freelist_delete(vmp, vsp);
531 
532 	if (vs_end != addr_end)
533 		vmem_freelist_insert(vmp,
534 		    vmem_seg_create(vmp, vsp, addr_end, vs_end));
535 
536 	if (vs_start != addr)
537 		vmem_freelist_insert(vmp,
538 		    vmem_seg_create(vmp, vsp->vs_aprev, vs_start, addr));
539 
540 	vsp->vs_start = addr;
541 	vsp->vs_end = addr + size;
542 
543 	vmem_hash_insert(vmp, vsp);
544 	return (vsp);
545 }
546 
547 /*
548  * We cannot reap if we are in the middle of a vmem_populate().
549  */
550 void
551 vmem_reap(void)
552 {
553 	if (!IN_POPULATE())
554 		umem_reap();
555 }
556 
557 /*
558  * Populate vmp's segfree list with VMEM_MINFREE vmem_seg_t structures.
559  */
560 static int
561 vmem_populate(vmem_t *vmp, int vmflag)
562 {
563 	char *p;
564 	vmem_seg_t *vsp;
565 	ssize_t nseg;
566 	size_t size;
567 	vmem_populate_lock_t *lp;
568 	int i;
569 
570 	while (vmp->vm_nsegfree < VMEM_MINFREE &&
571 	    (vsp = vmem_getseg_global()) != NULL)
572 		vmem_putseg(vmp, vsp);
573 
574 	if (vmp->vm_nsegfree >= VMEM_MINFREE)
575 		return (1);
576 
577 	/*
578 	 * If we're already populating, tap the reserve.
579 	 */
580 	if (vmem_nosleep_lock.vmpl_thr == thr_self()) {
581 		ASSERT(vmp->vm_cflags & VMC_POPULATOR);
582 		return (1);
583 	}
584 
585 	(void) mutex_unlock(&vmp->vm_lock);
586 
587 	ASSERT(vmflag & VM_NOSLEEP);	/* we do not allow sleep allocations */
588 	lp = &vmem_nosleep_lock;
589 
590 	/*
591 	 * Cannot be just a mutex_lock(), since that has no effect if
592 	 * libthread is not linked.
593 	 */
594 	(void) mutex_lock(&lp->vmpl_mutex);
595 	ASSERT(lp->vmpl_thr == 0);
596 	lp->vmpl_thr = thr_self();
597 
598 	nseg = VMEM_MINFREE + vmem_populators * VMEM_POPULATE_RESERVE;
599 	size = P2ROUNDUP(nseg * vmem_seg_size, vmem_seg_arena->vm_quantum);
600 	nseg = size / vmem_seg_size;
601 
602 	/*
603 	 * The following vmem_alloc() may need to populate vmem_seg_arena
604 	 * and all the things it imports from.  When doing so, it will tap
605 	 * each arena's reserve to prevent recursion (see the block comment
606 	 * above the definition of VMEM_POPULATE_RESERVE).
607 	 *
608 	 * During this allocation, vmem_reap() is a no-op.  If the allocation
609 	 * fails, we call vmem_reap() after dropping the population lock.
610 	 */
611 	p = vmem_alloc(vmem_seg_arena, size, vmflag & VM_UMFLAGS);
612 	if (p == NULL) {
613 		lp->vmpl_thr = 0;
614 		(void) mutex_unlock(&lp->vmpl_mutex);
615 		vmem_reap();
616 
617 		(void) mutex_lock(&vmp->vm_lock);
618 		vmp->vm_kstat.vk_populate_fail++;
619 		return (0);
620 	}
621 	/*
622 	 * Restock the arenas that may have been depleted during population.
623 	 */
624 	for (i = 0; i < vmem_populators; i++) {
625 		(void) mutex_lock(&vmem_populator[i]->vm_lock);
626 		while (vmem_populator[i]->vm_nsegfree < VMEM_POPULATE_RESERVE)
627 			vmem_putseg(vmem_populator[i],
628 			    (vmem_seg_t *)(p + --nseg * vmem_seg_size));
629 		(void) mutex_unlock(&vmem_populator[i]->vm_lock);
630 	}
631 
632 	lp->vmpl_thr = 0;
633 	(void) mutex_unlock(&lp->vmpl_mutex);
634 	(void) mutex_lock(&vmp->vm_lock);
635 
636 	/*
637 	 * Now take our own segments.
638 	 */
639 	ASSERT(nseg >= VMEM_MINFREE);
640 	while (vmp->vm_nsegfree < VMEM_MINFREE)
641 		vmem_putseg(vmp, (vmem_seg_t *)(p + --nseg * vmem_seg_size));
642 
643 	/*
644 	 * Give the remainder to charity.
645 	 */
646 	while (nseg > 0)
647 		vmem_putseg_global((vmem_seg_t *)(p + --nseg * vmem_seg_size));
648 
649 	return (1);
650 }
651 
652 /*
653  * Advance a walker from its previous position to 'afterme'.
654  * Note: may drop and reacquire vmp->vm_lock.
655  */
656 static void
657 vmem_advance(vmem_t *vmp, vmem_seg_t *walker, vmem_seg_t *afterme)
658 {
659 	vmem_seg_t *vprev = walker->vs_aprev;
660 	vmem_seg_t *vnext = walker->vs_anext;
661 	vmem_seg_t *vsp = NULL;
662 
663 	VMEM_DELETE(walker, a);
664 
665 	if (afterme != NULL)
666 		VMEM_INSERT(afterme, walker, a);
667 
668 	/*
669 	 * The walker segment's presence may have prevented its neighbors
670 	 * from coalescing.  If so, coalesce them now.
671 	 */
672 	if (vprev->vs_type == VMEM_FREE) {
673 		if (vnext->vs_type == VMEM_FREE) {
674 			ASSERT(vprev->vs_end == vnext->vs_start);
675 			vmem_freelist_delete(vmp, vnext);
676 			vmem_freelist_delete(vmp, vprev);
677 			vprev->vs_end = vnext->vs_end;
678 			vmem_freelist_insert(vmp, vprev);
679 			vmem_seg_destroy(vmp, vnext);
680 		}
681 		vsp = vprev;
682 	} else if (vnext->vs_type == VMEM_FREE) {
683 		vsp = vnext;
684 	}
685 
686 	/*
687 	 * vsp could represent a complete imported span,
688 	 * in which case we must return it to the source.
689 	 */
690 	if (vsp != NULL && vsp->vs_import && vmp->vm_source_free != NULL &&
691 	    vsp->vs_aprev->vs_type == VMEM_SPAN &&
692 	    vsp->vs_anext->vs_type == VMEM_SPAN) {
693 		void *vaddr = (void *)vsp->vs_start;
694 		size_t size = VS_SIZE(vsp);
695 		ASSERT(size == VS_SIZE(vsp->vs_aprev));
696 		vmem_freelist_delete(vmp, vsp);
697 		vmem_span_destroy(vmp, vsp);
698 		(void) mutex_unlock(&vmp->vm_lock);
699 		vmp->vm_source_free(vmp->vm_source, vaddr, size);
700 		(void) mutex_lock(&vmp->vm_lock);
701 	}
702 }
703 
704 /*
705  * VM_NEXTFIT allocations deliberately cycle through all virtual addresses
706  * in an arena, so that we avoid reusing addresses for as long as possible.
707  * This helps to catch used-after-freed bugs.  It's also the perfect policy
708  * for allocating things like process IDs, where we want to cycle through
709  * all values in order.
710  */
711 static void *
712 vmem_nextfit_alloc(vmem_t *vmp, size_t size, int vmflag)
713 {
714 	vmem_seg_t *vsp, *rotor;
715 	uintptr_t addr;
716 	size_t realsize = P2ROUNDUP(size, vmp->vm_quantum);
717 	size_t vs_size;
718 
719 	(void) mutex_lock(&vmp->vm_lock);
720 
721 	if (vmp->vm_nsegfree < VMEM_MINFREE && !vmem_populate(vmp, vmflag)) {
722 		(void) mutex_unlock(&vmp->vm_lock);
723 		return (NULL);
724 	}
725 
726 	/*
727 	 * The common case is that the segment right after the rotor is free,
728 	 * and large enough that extracting 'size' bytes won't change which
729 	 * freelist it's on.  In this case we can avoid a *lot* of work.
730 	 * Instead of the normal vmem_seg_alloc(), we just advance the start
731 	 * address of the victim segment.  Instead of moving the rotor, we
732 	 * create the new segment structure *behind the rotor*, which has
733 	 * the same effect.  And finally, we know we don't have to coalesce
734 	 * the rotor's neighbors because the new segment lies between them.
735 	 */
736 	rotor = &vmp->vm_rotor;
737 	vsp = rotor->vs_anext;
738 	if (vsp->vs_type == VMEM_FREE && (vs_size = VS_SIZE(vsp)) > realsize &&
739 	    P2SAMEHIGHBIT(vs_size, vs_size - realsize)) {
740 		ASSERT(highbit(vs_size) == highbit(vs_size - realsize));
741 		addr = vsp->vs_start;
742 		vsp->vs_start = addr + realsize;
743 		vmem_hash_insert(vmp,
744 		    vmem_seg_create(vmp, rotor->vs_aprev, addr, addr + size));
745 		(void) mutex_unlock(&vmp->vm_lock);
746 		return ((void *)addr);
747 	}
748 
749 	/*
750 	 * Starting at the rotor, look for a segment large enough to
751 	 * satisfy the allocation.
752 	 */
753 	for (;;) {
754 		vmp->vm_kstat.vk_search++;
755 		if (vsp->vs_type == VMEM_FREE && VS_SIZE(vsp) >= size)
756 			break;
757 		vsp = vsp->vs_anext;
758 		if (vsp == rotor) {
759 			int cancel_state;
760 
761 			/*
762 			 * We've come full circle.  One possibility is that the
763 			 * there's actually enough space, but the rotor itself
764 			 * is preventing the allocation from succeeding because
765 			 * it's sitting between two free segments.  Therefore,
766 			 * we advance the rotor and see if that liberates a
767 			 * suitable segment.
768 			 */
769 			vmem_advance(vmp, rotor, rotor->vs_anext);
770 			vsp = rotor->vs_aprev;
771 			if (vsp->vs_type == VMEM_FREE && VS_SIZE(vsp) >= size)
772 				break;
773 			/*
774 			 * If there's a lower arena we can import from, or it's
775 			 * a VM_NOSLEEP allocation, let vmem_xalloc() handle it.
776 			 * Otherwise, wait until another thread frees something.
777 			 */
778 			if (vmp->vm_source_alloc != NULL ||
779 			    (vmflag & VM_NOSLEEP)) {
780 				(void) mutex_unlock(&vmp->vm_lock);
781 				return (vmem_xalloc(vmp, size, vmp->vm_quantum,
782 				    0, 0, NULL, NULL, vmflag & VM_UMFLAGS));
783 			}
784 			vmp->vm_kstat.vk_wait++;
785 			(void) pthread_setcancelstate(PTHREAD_CANCEL_DISABLE,
786 			    &cancel_state);
787 			(void) cond_wait(&vmp->vm_cv, &vmp->vm_lock);
788 			(void) pthread_setcancelstate(cancel_state, NULL);
789 			vsp = rotor->vs_anext;
790 		}
791 	}
792 
793 	/*
794 	 * We found a segment.  Extract enough space to satisfy the allocation.
795 	 */
796 	addr = vsp->vs_start;
797 	vsp = vmem_seg_alloc(vmp, vsp, addr, size);
798 	ASSERT(vsp->vs_type == VMEM_ALLOC &&
799 	    vsp->vs_start == addr && vsp->vs_end == addr + size);
800 
801 	/*
802 	 * Advance the rotor to right after the newly-allocated segment.
803 	 * That's where the next VM_NEXTFIT allocation will begin searching.
804 	 */
805 	vmem_advance(vmp, rotor, vsp);
806 	(void) mutex_unlock(&vmp->vm_lock);
807 	return ((void *)addr);
808 }
809 
810 /*
811  * Allocate size bytes at offset phase from an align boundary such that the
812  * resulting segment [addr, addr + size) is a subset of [minaddr, maxaddr)
813  * that does not straddle a nocross-aligned boundary.
814  */
815 void *
816 vmem_xalloc(vmem_t *vmp, size_t size, size_t align, size_t phase,
817 	size_t nocross, void *minaddr, void *maxaddr, int vmflag)
818 {
819 	vmem_seg_t *vsp;
820 	vmem_seg_t *vbest = NULL;
821 	uintptr_t addr, taddr, start, end;
822 	void *vaddr;
823 	int hb, flist, resv;
824 	uint32_t mtbf;
825 
826 	if (phase > 0 && phase >= align)
827 		umem_panic("vmem_xalloc(%p, %lu, %lu, %lu, %lu, %p, %p, %x): "
828 		    "invalid phase",
829 		    (void *)vmp, size, align, phase, nocross,
830 		    minaddr, maxaddr, vmflag);
831 
832 	if (align == 0)
833 		align = vmp->vm_quantum;
834 
835 	if ((align | phase | nocross) & (vmp->vm_quantum - 1)) {
836 		umem_panic("vmem_xalloc(%p, %lu, %lu, %lu, %lu, %p, %p, %x): "
837 		    "parameters not vm_quantum aligned",
838 		    (void *)vmp, size, align, phase, nocross,
839 		    minaddr, maxaddr, vmflag);
840 	}
841 
842 	if (nocross != 0 &&
843 	    (align > nocross || P2ROUNDUP(phase + size, align) > nocross)) {
844 		umem_panic("vmem_xalloc(%p, %lu, %lu, %lu, %lu, %p, %p, %x): "
845 		    "overconstrained allocation",
846 		    (void *)vmp, size, align, phase, nocross,
847 		    minaddr, maxaddr, vmflag);
848 	}
849 
850 	if ((mtbf = vmem_mtbf | vmp->vm_mtbf) != 0 && gethrtime() % mtbf == 0 &&
851 	    (vmflag & (VM_NOSLEEP | VM_PANIC)) == VM_NOSLEEP)
852 		return (NULL);
853 
854 	(void) mutex_lock(&vmp->vm_lock);
855 	for (;;) {
856 		int cancel_state;
857 
858 		if (vmp->vm_nsegfree < VMEM_MINFREE &&
859 		    !vmem_populate(vmp, vmflag))
860 			break;
861 
862 		/*
863 		 * highbit() returns the highest bit + 1, which is exactly
864 		 * what we want: we want to search the first freelist whose
865 		 * members are *definitely* large enough to satisfy our
866 		 * allocation.  However, there are certain cases in which we
867 		 * want to look at the next-smallest freelist (which *might*
868 		 * be able to satisfy the allocation):
869 		 *
870 		 * (1)	The size is exactly a power of 2, in which case
871 		 *	the smaller freelist is always big enough;
872 		 *
873 		 * (2)	All other freelists are empty;
874 		 *
875 		 * (3)	We're in the highest possible freelist, which is
876 		 *	always empty (e.g. the 4GB freelist on 32-bit systems);
877 		 *
878 		 * (4)	We're doing a best-fit or first-fit allocation.
879 		 */
880 		if ((size & (size - 1)) == 0) {
881 			flist = lowbit(P2ALIGN(vmp->vm_freemap, size));
882 		} else {
883 			hb = highbit(size);
884 			if ((vmp->vm_freemap >> hb) == 0 ||
885 			    hb == VMEM_FREELISTS ||
886 			    (vmflag & (VM_BESTFIT | VM_FIRSTFIT)))
887 				hb--;
888 			flist = lowbit(P2ALIGN(vmp->vm_freemap, 1UL << hb));
889 		}
890 
891 		for (vbest = NULL, vsp = (flist == 0) ? NULL :
892 		    vmp->vm_freelist[flist - 1].vs_knext;
893 		    vsp != NULL; vsp = vsp->vs_knext) {
894 			vmp->vm_kstat.vk_search++;
895 			if (vsp->vs_start == 0) {
896 				/*
897 				 * We're moving up to a larger freelist,
898 				 * so if we've already found a candidate,
899 				 * the fit can't possibly get any better.
900 				 */
901 				if (vbest != NULL)
902 					break;
903 				/*
904 				 * Find the next non-empty freelist.
905 				 */
906 				flist = lowbit(P2ALIGN(vmp->vm_freemap,
907 				    VS_SIZE(vsp)));
908 				if (flist-- == 0)
909 					break;
910 				vsp = (vmem_seg_t *)&vmp->vm_freelist[flist];
911 				ASSERT(vsp->vs_knext->vs_type == VMEM_FREE);
912 				continue;
913 			}
914 			if (vsp->vs_end - 1 < (uintptr_t)minaddr)
915 				continue;
916 			if (vsp->vs_start > (uintptr_t)maxaddr - 1)
917 				continue;
918 			start = MAX(vsp->vs_start, (uintptr_t)minaddr);
919 			end = MIN(vsp->vs_end - 1, (uintptr_t)maxaddr - 1) + 1;
920 			taddr = P2PHASEUP(start, align, phase);
921 			if (P2CROSS(taddr, taddr + size - 1, nocross))
922 				taddr +=
923 				    P2ROUNDUP(P2NPHASE(taddr, nocross), align);
924 			if ((taddr - start) + size > end - start ||
925 			    (vbest != NULL && VS_SIZE(vsp) >= VS_SIZE(vbest)))
926 				continue;
927 			vbest = vsp;
928 			addr = taddr;
929 			if (!(vmflag & VM_BESTFIT) || VS_SIZE(vbest) == size)
930 				break;
931 		}
932 		if (vbest != NULL)
933 			break;
934 		if (size == 0)
935 			umem_panic("vmem_xalloc(): size == 0");
936 		if (vmp->vm_source_alloc != NULL && nocross == 0 &&
937 		    minaddr == NULL && maxaddr == NULL) {
938 			size_t asize = P2ROUNDUP(size + phase,
939 			    MAX(align, vmp->vm_source->vm_quantum));
940 			if (asize < size) {		/* overflow */
941 				(void) mutex_unlock(&vmp->vm_lock);
942 				if (vmflag & VM_NOSLEEP)
943 					return (NULL);
944 
945 				umem_panic("vmem_xalloc(): "
946 				    "overflow on VM_SLEEP allocation");
947 			}
948 			/*
949 			 * Determine how many segment structures we'll consume.
950 			 * The calculation must be presise because if we're
951 			 * here on behalf of vmem_populate(), we are taking
952 			 * segments from a very limited reserve.
953 			 */
954 			resv = (size == asize) ?
955 			    VMEM_SEGS_PER_SPAN_CREATE +
956 			    VMEM_SEGS_PER_EXACT_ALLOC :
957 			    VMEM_SEGS_PER_ALLOC_MAX;
958 			ASSERT(vmp->vm_nsegfree >= resv);
959 			vmp->vm_nsegfree -= resv;	/* reserve our segs */
960 			(void) mutex_unlock(&vmp->vm_lock);
961 			vaddr = vmp->vm_source_alloc(vmp->vm_source, asize,
962 			    vmflag & VM_UMFLAGS);
963 			(void) mutex_lock(&vmp->vm_lock);
964 			vmp->vm_nsegfree += resv;	/* claim reservation */
965 			if (vaddr != NULL) {
966 				vbest = vmem_span_create(vmp, vaddr, asize, 1);
967 				addr = P2PHASEUP(vbest->vs_start, align, phase);
968 				break;
969 			}
970 		}
971 		(void) mutex_unlock(&vmp->vm_lock);
972 		vmem_reap();
973 		(void) mutex_lock(&vmp->vm_lock);
974 		if (vmflag & VM_NOSLEEP)
975 			break;
976 		vmp->vm_kstat.vk_wait++;
977 		(void) pthread_setcancelstate(PTHREAD_CANCEL_DISABLE,
978 		    &cancel_state);
979 		(void) cond_wait(&vmp->vm_cv, &vmp->vm_lock);
980 		(void) pthread_setcancelstate(cancel_state, NULL);
981 	}
982 	if (vbest != NULL) {
983 		ASSERT(vbest->vs_type == VMEM_FREE);
984 		ASSERT(vbest->vs_knext != vbest);
985 		(void) vmem_seg_alloc(vmp, vbest, addr, size);
986 		(void) mutex_unlock(&vmp->vm_lock);
987 		ASSERT(P2PHASE(addr, align) == phase);
988 		ASSERT(!P2CROSS(addr, addr + size - 1, nocross));
989 		ASSERT(addr >= (uintptr_t)minaddr);
990 		ASSERT(addr + size - 1 <= (uintptr_t)maxaddr - 1);
991 		return ((void *)addr);
992 	}
993 	vmp->vm_kstat.vk_fail++;
994 	(void) mutex_unlock(&vmp->vm_lock);
995 	if (vmflag & VM_PANIC)
996 		umem_panic("vmem_xalloc(%p, %lu, %lu, %lu, %lu, %p, %p, %x): "
997 		    "cannot satisfy mandatory allocation",
998 		    (void *)vmp, size, align, phase, nocross,
999 		    minaddr, maxaddr, vmflag);
1000 	return (NULL);
1001 }
1002 
1003 /*
1004  * Free the segment [vaddr, vaddr + size), where vaddr was a constrained
1005  * allocation.  vmem_xalloc() and vmem_xfree() must always be paired because
1006  * both routines bypass the quantum caches.
1007  */
1008 void
1009 vmem_xfree(vmem_t *vmp, void *vaddr, size_t size)
1010 {
1011 	vmem_seg_t *vsp, *vnext, *vprev;
1012 
1013 	(void) mutex_lock(&vmp->vm_lock);
1014 
1015 	vsp = vmem_hash_delete(vmp, (uintptr_t)vaddr, size);
1016 	vsp->vs_end = P2ROUNDUP(vsp->vs_end, vmp->vm_quantum);
1017 
1018 	/*
1019 	 * Attempt to coalesce with the next segment.
1020 	 */
1021 	vnext = vsp->vs_anext;
1022 	if (vnext->vs_type == VMEM_FREE) {
1023 		ASSERT(vsp->vs_end == vnext->vs_start);
1024 		vmem_freelist_delete(vmp, vnext);
1025 		vsp->vs_end = vnext->vs_end;
1026 		vmem_seg_destroy(vmp, vnext);
1027 	}
1028 
1029 	/*
1030 	 * Attempt to coalesce with the previous segment.
1031 	 */
1032 	vprev = vsp->vs_aprev;
1033 	if (vprev->vs_type == VMEM_FREE) {
1034 		ASSERT(vprev->vs_end == vsp->vs_start);
1035 		vmem_freelist_delete(vmp, vprev);
1036 		vprev->vs_end = vsp->vs_end;
1037 		vmem_seg_destroy(vmp, vsp);
1038 		vsp = vprev;
1039 	}
1040 
1041 	/*
1042 	 * If the entire span is free, return it to the source.
1043 	 */
1044 	if (vsp->vs_import && vmp->vm_source_free != NULL &&
1045 	    vsp->vs_aprev->vs_type == VMEM_SPAN &&
1046 	    vsp->vs_anext->vs_type == VMEM_SPAN) {
1047 		vaddr = (void *)vsp->vs_start;
1048 		size = VS_SIZE(vsp);
1049 		ASSERT(size == VS_SIZE(vsp->vs_aprev));
1050 		vmem_span_destroy(vmp, vsp);
1051 		(void) mutex_unlock(&vmp->vm_lock);
1052 		vmp->vm_source_free(vmp->vm_source, vaddr, size);
1053 	} else {
1054 		vmem_freelist_insert(vmp, vsp);
1055 		(void) mutex_unlock(&vmp->vm_lock);
1056 	}
1057 }
1058 
1059 /*
1060  * Allocate size bytes from arena vmp.  Returns the allocated address
1061  * on success, NULL on failure.  vmflag specifies VM_SLEEP or VM_NOSLEEP,
1062  * and may also specify best-fit, first-fit, or next-fit allocation policy
1063  * instead of the default instant-fit policy.  VM_SLEEP allocations are
1064  * guaranteed to succeed.
1065  */
1066 void *
1067 vmem_alloc(vmem_t *vmp, size_t size, int vmflag)
1068 {
1069 	vmem_seg_t *vsp;
1070 	uintptr_t addr;
1071 	int hb;
1072 	int flist = 0;
1073 	uint32_t mtbf;
1074 
1075 	if (size - 1 < vmp->vm_qcache_max) {
1076 		ASSERT(vmflag & VM_NOSLEEP);
1077 		return (_umem_cache_alloc(vmp->vm_qcache[(size - 1) >>
1078 		    vmp->vm_qshift], UMEM_DEFAULT));
1079 	}
1080 
1081 	if ((mtbf = vmem_mtbf | vmp->vm_mtbf) != 0 && gethrtime() % mtbf == 0 &&
1082 	    (vmflag & (VM_NOSLEEP | VM_PANIC)) == VM_NOSLEEP)
1083 		return (NULL);
1084 
1085 	if (vmflag & VM_NEXTFIT)
1086 		return (vmem_nextfit_alloc(vmp, size, vmflag));
1087 
1088 	if (vmflag & (VM_BESTFIT | VM_FIRSTFIT))
1089 		return (vmem_xalloc(vmp, size, vmp->vm_quantum, 0, 0,
1090 		    NULL, NULL, vmflag));
1091 
1092 	/*
1093 	 * Unconstrained instant-fit allocation from the segment list.
1094 	 */
1095 	(void) mutex_lock(&vmp->vm_lock);
1096 
1097 	if (vmp->vm_nsegfree >= VMEM_MINFREE || vmem_populate(vmp, vmflag)) {
1098 		if ((size & (size - 1)) == 0)
1099 			flist = lowbit(P2ALIGN(vmp->vm_freemap, size));
1100 		else if ((hb = highbit(size)) < VMEM_FREELISTS)
1101 			flist = lowbit(P2ALIGN(vmp->vm_freemap, 1UL << hb));
1102 	}
1103 
1104 	if (flist-- == 0) {
1105 		(void) mutex_unlock(&vmp->vm_lock);
1106 		return (vmem_xalloc(vmp, size, vmp->vm_quantum,
1107 		    0, 0, NULL, NULL, vmflag));
1108 	}
1109 
1110 	ASSERT(size <= (1UL << flist));
1111 	vsp = vmp->vm_freelist[flist].vs_knext;
1112 	addr = vsp->vs_start;
1113 	(void) vmem_seg_alloc(vmp, vsp, addr, size);
1114 	(void) mutex_unlock(&vmp->vm_lock);
1115 	return ((void *)addr);
1116 }
1117 
1118 /*
1119  * Free the segment [vaddr, vaddr + size).
1120  */
1121 void
1122 vmem_free(vmem_t *vmp, void *vaddr, size_t size)
1123 {
1124 	if (size - 1 < vmp->vm_qcache_max)
1125 		_umem_cache_free(vmp->vm_qcache[(size - 1) >> vmp->vm_qshift],
1126 		    vaddr);
1127 	else
1128 		vmem_xfree(vmp, vaddr, size);
1129 }
1130 
1131 /*
1132  * Determine whether arena vmp contains the segment [vaddr, vaddr + size).
1133  */
1134 int
1135 vmem_contains(vmem_t *vmp, void *vaddr, size_t size)
1136 {
1137 	uintptr_t start = (uintptr_t)vaddr;
1138 	uintptr_t end = start + size;
1139 	vmem_seg_t *vsp;
1140 	vmem_seg_t *seg0 = &vmp->vm_seg0;
1141 
1142 	(void) mutex_lock(&vmp->vm_lock);
1143 	vmp->vm_kstat.vk_contains++;
1144 	for (vsp = seg0->vs_knext; vsp != seg0; vsp = vsp->vs_knext) {
1145 		vmp->vm_kstat.vk_contains_search++;
1146 		ASSERT(vsp->vs_type == VMEM_SPAN);
1147 		if (start >= vsp->vs_start && end - 1 <= vsp->vs_end - 1)
1148 			break;
1149 	}
1150 	(void) mutex_unlock(&vmp->vm_lock);
1151 	return (vsp != seg0);
1152 }
1153 
1154 /*
1155  * Add the span [vaddr, vaddr + size) to arena vmp.
1156  */
1157 void *
1158 vmem_add(vmem_t *vmp, void *vaddr, size_t size, int vmflag)
1159 {
1160 	if (vaddr == NULL || size == 0) {
1161 		umem_panic("vmem_add(%p, %p, %lu): bad arguments",
1162 		    vmp, vaddr, size);
1163 	}
1164 
1165 	ASSERT(!vmem_contains(vmp, vaddr, size));
1166 
1167 	(void) mutex_lock(&vmp->vm_lock);
1168 	if (vmem_populate(vmp, vmflag))
1169 		(void) vmem_span_create(vmp, vaddr, size, 0);
1170 	else
1171 		vaddr = NULL;
1172 	(void) cond_broadcast(&vmp->vm_cv);
1173 	(void) mutex_unlock(&vmp->vm_lock);
1174 	return (vaddr);
1175 }
1176 
1177 /*
1178  * Adds the address range [addr, endaddr) to arena vmp, by either:
1179  *   1. joining two existing spans, [x, addr), and [endaddr, y) (which
1180  *      are in that order) into a single [x, y) span,
1181  *   2. expanding an existing [x, addr) span to [x, endaddr),
1182  *   3. expanding an existing [endaddr, x) span to [addr, x), or
1183  *   4. creating a new [addr, endaddr) span.
1184  *
1185  * Called with vmp->vm_lock held, and a successful vmem_populate() completed.
1186  * Cannot fail.  Returns the new segment.
1187  *
1188  * NOTE:  this algorithm is linear-time in the number of spans, but is
1189  *      constant-time when you are extending the last (highest-addressed)
1190  *      span.
1191  */
1192 static vmem_seg_t *
1193 vmem_extend_unlocked(vmem_t *vmp, uintptr_t addr, uintptr_t endaddr)
1194 {
1195 	vmem_seg_t *span;
1196 	vmem_seg_t *vsp;
1197 
1198 	vmem_seg_t *end = &vmp->vm_seg0;
1199 
1200 	ASSERT(MUTEX_HELD(&vmp->vm_lock));
1201 
1202 	/*
1203 	 * the second "if" clause below relies on the direction of this search
1204 	 */
1205 	for (span = end->vs_kprev; span != end; span = span->vs_kprev) {
1206 		if (span->vs_end == addr || span->vs_start == endaddr)
1207 			break;
1208 	}
1209 
1210 	if (span == end)
1211 		return (vmem_span_create(vmp, (void *)addr, endaddr - addr, 0));
1212 	if (span->vs_kprev->vs_end == addr && span->vs_start == endaddr) {
1213 		vmem_seg_t *prevspan = span->vs_kprev;
1214 		vmem_seg_t *nextseg = span->vs_anext;
1215 		vmem_seg_t *prevseg = span->vs_aprev;
1216 
1217 		/*
1218 		 * prevspan becomes the span marker for the full range
1219 		 */
1220 		prevspan->vs_end = span->vs_end;
1221 
1222 		/*
1223 		 * Notionally, span becomes a free segment representing
1224 		 * [addr, endaddr).
1225 		 *
1226 		 * However, if either of its neighbors are free, we coalesce
1227 		 * by destroying span and changing the free segment.
1228 		 */
1229 		if (prevseg->vs_type == VMEM_FREE &&
1230 		    nextseg->vs_type == VMEM_FREE) {
1231 			/*
1232 			 * coalesce both ways
1233 			 */
1234 			ASSERT(prevseg->vs_end == addr &&
1235 			    nextseg->vs_start == endaddr);
1236 
1237 			vmem_freelist_delete(vmp, prevseg);
1238 			prevseg->vs_end = nextseg->vs_end;
1239 
1240 			vmem_freelist_delete(vmp, nextseg);
1241 			VMEM_DELETE(span, k);
1242 			vmem_seg_destroy(vmp, nextseg);
1243 			vmem_seg_destroy(vmp, span);
1244 
1245 			vsp = prevseg;
1246 		} else if (prevseg->vs_type == VMEM_FREE) {
1247 			/*
1248 			 * coalesce left
1249 			 */
1250 			ASSERT(prevseg->vs_end == addr);
1251 
1252 			VMEM_DELETE(span, k);
1253 			vmem_seg_destroy(vmp, span);
1254 
1255 			vmem_freelist_delete(vmp, prevseg);
1256 			prevseg->vs_end = endaddr;
1257 
1258 			vsp = prevseg;
1259 		} else if (nextseg->vs_type == VMEM_FREE) {
1260 			/*
1261 			 * coalesce right
1262 			 */
1263 			ASSERT(nextseg->vs_start == endaddr);
1264 
1265 			VMEM_DELETE(span, k);
1266 			vmem_seg_destroy(vmp, span);
1267 
1268 			vmem_freelist_delete(vmp, nextseg);
1269 			nextseg->vs_start = addr;
1270 
1271 			vsp = nextseg;
1272 		} else {
1273 			/*
1274 			 * cannnot coalesce
1275 			 */
1276 			VMEM_DELETE(span, k);
1277 			span->vs_start = addr;
1278 			span->vs_end = endaddr;
1279 
1280 			vsp = span;
1281 		}
1282 	} else if (span->vs_end == addr) {
1283 		vmem_seg_t *oldseg = span->vs_knext->vs_aprev;
1284 		span->vs_end = endaddr;
1285 
1286 		ASSERT(oldseg->vs_type != VMEM_SPAN);
1287 		if (oldseg->vs_type == VMEM_FREE) {
1288 			ASSERT(oldseg->vs_end == addr);
1289 			vmem_freelist_delete(vmp, oldseg);
1290 			oldseg->vs_end = endaddr;
1291 			vsp = oldseg;
1292 		} else
1293 			vsp = vmem_seg_create(vmp, oldseg, addr, endaddr);
1294 	} else {
1295 		vmem_seg_t *oldseg = span->vs_anext;
1296 		ASSERT(span->vs_start == endaddr);
1297 		span->vs_start = addr;
1298 
1299 		ASSERT(oldseg->vs_type != VMEM_SPAN);
1300 		if (oldseg->vs_type == VMEM_FREE) {
1301 			ASSERT(oldseg->vs_start == endaddr);
1302 			vmem_freelist_delete(vmp, oldseg);
1303 			oldseg->vs_start = addr;
1304 			vsp = oldseg;
1305 		} else
1306 			vsp = vmem_seg_create(vmp, span, addr, endaddr);
1307 	}
1308 	vmem_freelist_insert(vmp, vsp);
1309 	vmp->vm_kstat.vk_mem_total += (endaddr - addr);
1310 	return (vsp);
1311 }
1312 
1313 /*
1314  * Does some error checking, calls vmem_extend_unlocked to add
1315  * [vaddr, vaddr+size) to vmp, then allocates alloc bytes from the
1316  * newly merged segment.
1317  */
1318 void *
1319 _vmem_extend_alloc(vmem_t *vmp, void *vaddr, size_t size, size_t alloc,
1320     int vmflag)
1321 {
1322 	uintptr_t addr = (uintptr_t)vaddr;
1323 	uintptr_t endaddr = addr + size;
1324 	vmem_seg_t *vsp;
1325 
1326 	ASSERT(vaddr != NULL && size != 0 && endaddr > addr);
1327 	ASSERT(alloc <= size && alloc != 0);
1328 	ASSERT(((addr | size | alloc) & (vmp->vm_quantum - 1)) == 0);
1329 
1330 	ASSERT(!vmem_contains(vmp, vaddr, size));
1331 
1332 	(void) mutex_lock(&vmp->vm_lock);
1333 	if (!vmem_populate(vmp, vmflag)) {
1334 		(void) mutex_unlock(&vmp->vm_lock);
1335 		return (NULL);
1336 	}
1337 	/*
1338 	 * if there is a source, we can't mess with the spans
1339 	 */
1340 	if (vmp->vm_source_alloc != NULL)
1341 		vsp = vmem_span_create(vmp, vaddr, size, 0);
1342 	else
1343 		vsp = vmem_extend_unlocked(vmp, addr, endaddr);
1344 
1345 	ASSERT(VS_SIZE(vsp) >= alloc);
1346 
1347 	addr = vsp->vs_start;
1348 	(void) vmem_seg_alloc(vmp, vsp, addr, alloc);
1349 	vaddr = (void *)addr;
1350 
1351 	(void) cond_broadcast(&vmp->vm_cv);
1352 	(void) mutex_unlock(&vmp->vm_lock);
1353 
1354 	return (vaddr);
1355 }
1356 
1357 /*
1358  * Walk the vmp arena, applying func to each segment matching typemask.
1359  * If VMEM_REENTRANT is specified, the arena lock is dropped across each
1360  * call to func(); otherwise, it is held for the duration of vmem_walk()
1361  * to ensure a consistent snapshot.  Note that VMEM_REENTRANT callbacks
1362  * are *not* necessarily consistent, so they may only be used when a hint
1363  * is adequate.
1364  */
1365 void
1366 vmem_walk(vmem_t *vmp, int typemask,
1367 	void (*func)(void *, void *, size_t), void *arg)
1368 {
1369 	vmem_seg_t *vsp;
1370 	vmem_seg_t *seg0 = &vmp->vm_seg0;
1371 	vmem_seg_t walker;
1372 
1373 	if (typemask & VMEM_WALKER)
1374 		return;
1375 
1376 	bzero(&walker, sizeof (walker));
1377 	walker.vs_type = VMEM_WALKER;
1378 
1379 	(void) mutex_lock(&vmp->vm_lock);
1380 	VMEM_INSERT(seg0, &walker, a);
1381 	for (vsp = seg0->vs_anext; vsp != seg0; vsp = vsp->vs_anext) {
1382 		if (vsp->vs_type & typemask) {
1383 			void *start = (void *)vsp->vs_start;
1384 			size_t size = VS_SIZE(vsp);
1385 			if (typemask & VMEM_REENTRANT) {
1386 				vmem_advance(vmp, &walker, vsp);
1387 				(void) mutex_unlock(&vmp->vm_lock);
1388 				func(arg, start, size);
1389 				(void) mutex_lock(&vmp->vm_lock);
1390 				vsp = &walker;
1391 			} else {
1392 				func(arg, start, size);
1393 			}
1394 		}
1395 	}
1396 	vmem_advance(vmp, &walker, NULL);
1397 	(void) mutex_unlock(&vmp->vm_lock);
1398 }
1399 
1400 /*
1401  * Return the total amount of memory whose type matches typemask.  Thus:
1402  *
1403  *	typemask VMEM_ALLOC yields total memory allocated (in use).
1404  *	typemask VMEM_FREE yields total memory free (available).
1405  *	typemask (VMEM_ALLOC | VMEM_FREE) yields total arena size.
1406  */
1407 size_t
1408 vmem_size(vmem_t *vmp, int typemask)
1409 {
1410 	uint64_t size = 0;
1411 
1412 	if (typemask & VMEM_ALLOC)
1413 		size += vmp->vm_kstat.vk_mem_inuse;
1414 	if (typemask & VMEM_FREE)
1415 		size += vmp->vm_kstat.vk_mem_total -
1416 		    vmp->vm_kstat.vk_mem_inuse;
1417 	return ((size_t)size);
1418 }
1419 
1420 /*
1421  * Create an arena called name whose initial span is [base, base + size).
1422  * The arena's natural unit of currency is quantum, so vmem_alloc()
1423  * guarantees quantum-aligned results.  The arena may import new spans
1424  * by invoking afunc() on source, and may return those spans by invoking
1425  * ffunc() on source.  To make small allocations fast and scalable,
1426  * the arena offers high-performance caching for each integer multiple
1427  * of quantum up to qcache_max.
1428  */
1429 vmem_t *
1430 vmem_create(const char *name, void *base, size_t size, size_t quantum,
1431 	vmem_alloc_t *afunc, vmem_free_t *ffunc, vmem_t *source,
1432 	size_t qcache_max, int vmflag)
1433 {
1434 	int i;
1435 	size_t nqcache;
1436 	vmem_t *vmp, *cur, **vmpp;
1437 	vmem_seg_t *vsp;
1438 	vmem_freelist_t *vfp;
1439 	uint32_t id = atomic_add_32_nv(&vmem_id, 1);
1440 
1441 	if (vmem_vmem_arena != NULL) {
1442 		vmp = vmem_alloc(vmem_vmem_arena, sizeof (vmem_t),
1443 		    vmflag & VM_UMFLAGS);
1444 	} else {
1445 		ASSERT(id <= VMEM_INITIAL);
1446 		vmp = &vmem0[id - 1];
1447 	}
1448 
1449 	if (vmp == NULL)
1450 		return (NULL);
1451 	bzero(vmp, sizeof (vmem_t));
1452 
1453 	(void) snprintf(vmp->vm_name, VMEM_NAMELEN, "%s", name);
1454 	(void) mutex_init(&vmp->vm_lock, USYNC_THREAD, NULL);
1455 	(void) cond_init(&vmp->vm_cv, USYNC_THREAD, NULL);
1456 	vmp->vm_cflags = vmflag;
1457 	vmflag &= VM_UMFLAGS;
1458 
1459 	vmp->vm_quantum = quantum;
1460 	vmp->vm_qshift = highbit(quantum) - 1;
1461 	nqcache = MIN(qcache_max >> vmp->vm_qshift, VMEM_NQCACHE_MAX);
1462 
1463 	for (i = 0; i <= VMEM_FREELISTS; i++) {
1464 		vfp = &vmp->vm_freelist[i];
1465 		vfp->vs_end = 1UL << i;
1466 		vfp->vs_knext = (vmem_seg_t *)(vfp + 1);
1467 		vfp->vs_kprev = (vmem_seg_t *)(vfp - 1);
1468 	}
1469 
1470 	vmp->vm_freelist[0].vs_kprev = NULL;
1471 	vmp->vm_freelist[VMEM_FREELISTS].vs_knext = NULL;
1472 	vmp->vm_freelist[VMEM_FREELISTS].vs_end = 0;
1473 	vmp->vm_hash_table = vmp->vm_hash0;
1474 	vmp->vm_hash_mask = VMEM_HASH_INITIAL - 1;
1475 	vmp->vm_hash_shift = highbit(vmp->vm_hash_mask);
1476 
1477 	vsp = &vmp->vm_seg0;
1478 	vsp->vs_anext = vsp;
1479 	vsp->vs_aprev = vsp;
1480 	vsp->vs_knext = vsp;
1481 	vsp->vs_kprev = vsp;
1482 	vsp->vs_type = VMEM_SPAN;
1483 
1484 	vsp = &vmp->vm_rotor;
1485 	vsp->vs_type = VMEM_ROTOR;
1486 	VMEM_INSERT(&vmp->vm_seg0, vsp, a);
1487 
1488 	vmp->vm_id = id;
1489 	if (source != NULL)
1490 		vmp->vm_kstat.vk_source_id = source->vm_id;
1491 	vmp->vm_source = source;
1492 	vmp->vm_source_alloc = afunc;
1493 	vmp->vm_source_free = ffunc;
1494 
1495 	if (nqcache != 0) {
1496 		vmp->vm_qcache_max = nqcache << vmp->vm_qshift;
1497 		for (i = 0; i < nqcache; i++) {
1498 			char buf[VMEM_NAMELEN + 21];
1499 			(void) snprintf(buf, sizeof (buf), "%s_%lu",
1500 			    vmp->vm_name, (long)((i + 1) * quantum));
1501 			vmp->vm_qcache[i] = umem_cache_create(buf,
1502 			    (i + 1) * quantum, quantum, NULL, NULL, NULL,
1503 			    NULL, vmp, UMC_QCACHE | UMC_NOTOUCH);
1504 			if (vmp->vm_qcache[i] == NULL) {
1505 				vmp->vm_qcache_max = i * quantum;
1506 				break;
1507 			}
1508 		}
1509 	}
1510 
1511 	(void) mutex_lock(&vmem_list_lock);
1512 	vmpp = &vmem_list;
1513 	while ((cur = *vmpp) != NULL)
1514 		vmpp = &cur->vm_next;
1515 	*vmpp = vmp;
1516 	(void) mutex_unlock(&vmem_list_lock);
1517 
1518 	if (vmp->vm_cflags & VMC_POPULATOR) {
1519 		uint_t pop_id = atomic_add_32_nv(&vmem_populators, 1);
1520 		ASSERT(pop_id <= VMEM_INITIAL);
1521 		vmem_populator[pop_id - 1] = vmp;
1522 		(void) mutex_lock(&vmp->vm_lock);
1523 		(void) vmem_populate(vmp, vmflag | VM_PANIC);
1524 		(void) mutex_unlock(&vmp->vm_lock);
1525 	}
1526 
1527 	if ((base || size) && vmem_add(vmp, base, size, vmflag) == NULL) {
1528 		vmem_destroy(vmp);
1529 		return (NULL);
1530 	}
1531 
1532 	return (vmp);
1533 }
1534 
1535 /*
1536  * Destroy arena vmp.
1537  */
1538 void
1539 vmem_destroy(vmem_t *vmp)
1540 {
1541 	vmem_t *cur, **vmpp;
1542 	vmem_seg_t *seg0 = &vmp->vm_seg0;
1543 	vmem_seg_t *vsp;
1544 	size_t leaked;
1545 	int i;
1546 
1547 	(void) mutex_lock(&vmem_list_lock);
1548 	vmpp = &vmem_list;
1549 	while ((cur = *vmpp) != vmp)
1550 		vmpp = &cur->vm_next;
1551 	*vmpp = vmp->vm_next;
1552 	(void) mutex_unlock(&vmem_list_lock);
1553 
1554 	for (i = 0; i < VMEM_NQCACHE_MAX; i++)
1555 		if (vmp->vm_qcache[i])
1556 			umem_cache_destroy(vmp->vm_qcache[i]);
1557 
1558 	leaked = vmem_size(vmp, VMEM_ALLOC);
1559 	if (leaked != 0)
1560 		umem_printf("vmem_destroy('%s'): leaked %lu bytes",
1561 		    vmp->vm_name, leaked);
1562 
1563 	if (vmp->vm_hash_table != vmp->vm_hash0)
1564 		vmem_free(vmem_hash_arena, vmp->vm_hash_table,
1565 		    (vmp->vm_hash_mask + 1) * sizeof (void *));
1566 
1567 	/*
1568 	 * Give back the segment structures for anything that's left in the
1569 	 * arena, e.g. the primary spans and their free segments.
1570 	 */
1571 	VMEM_DELETE(&vmp->vm_rotor, a);
1572 	for (vsp = seg0->vs_anext; vsp != seg0; vsp = vsp->vs_anext)
1573 		vmem_putseg_global(vsp);
1574 
1575 	while (vmp->vm_nsegfree > 0)
1576 		vmem_putseg_global(vmem_getseg(vmp));
1577 
1578 	(void) mutex_destroy(&vmp->vm_lock);
1579 	(void) cond_destroy(&vmp->vm_cv);
1580 	vmem_free(vmem_vmem_arena, vmp, sizeof (vmem_t));
1581 }
1582 
1583 /*
1584  * Resize vmp's hash table to keep the average lookup depth near 1.0.
1585  */
1586 static void
1587 vmem_hash_rescale(vmem_t *vmp)
1588 {
1589 	vmem_seg_t **old_table, **new_table, *vsp;
1590 	size_t old_size, new_size, h, nseg;
1591 
1592 	nseg = (size_t)(vmp->vm_kstat.vk_alloc - vmp->vm_kstat.vk_free);
1593 
1594 	new_size = MAX(VMEM_HASH_INITIAL, 1 << (highbit(3 * nseg + 4) - 2));
1595 	old_size = vmp->vm_hash_mask + 1;
1596 
1597 	if ((old_size >> 1) <= new_size && new_size <= (old_size << 1))
1598 		return;
1599 
1600 	new_table = vmem_alloc(vmem_hash_arena, new_size * sizeof (void *),
1601 	    VM_NOSLEEP);
1602 	if (new_table == NULL)
1603 		return;
1604 	bzero(new_table, new_size * sizeof (void *));
1605 
1606 	(void) mutex_lock(&vmp->vm_lock);
1607 
1608 	old_size = vmp->vm_hash_mask + 1;
1609 	old_table = vmp->vm_hash_table;
1610 
1611 	vmp->vm_hash_mask = new_size - 1;
1612 	vmp->vm_hash_table = new_table;
1613 	vmp->vm_hash_shift = highbit(vmp->vm_hash_mask);
1614 
1615 	for (h = 0; h < old_size; h++) {
1616 		vsp = old_table[h];
1617 		while (vsp != NULL) {
1618 			uintptr_t addr = vsp->vs_start;
1619 			vmem_seg_t *next_vsp = vsp->vs_knext;
1620 			vmem_seg_t **hash_bucket = VMEM_HASH(vmp, addr);
1621 			vsp->vs_knext = *hash_bucket;
1622 			*hash_bucket = vsp;
1623 			vsp = next_vsp;
1624 		}
1625 	}
1626 
1627 	(void) mutex_unlock(&vmp->vm_lock);
1628 
1629 	if (old_table != vmp->vm_hash0)
1630 		vmem_free(vmem_hash_arena, old_table,
1631 		    old_size * sizeof (void *));
1632 }
1633 
1634 /*
1635  * Perform periodic maintenance on all vmem arenas.
1636  */
1637 /*ARGSUSED*/
1638 void
1639 vmem_update(void *dummy)
1640 {
1641 	vmem_t *vmp;
1642 
1643 	(void) mutex_lock(&vmem_list_lock);
1644 	for (vmp = vmem_list; vmp != NULL; vmp = vmp->vm_next) {
1645 		/*
1646 		 * If threads are waiting for resources, wake them up
1647 		 * periodically so they can issue another vmem_reap()
1648 		 * to reclaim resources cached by the slab allocator.
1649 		 */
1650 		(void) cond_broadcast(&vmp->vm_cv);
1651 
1652 		/*
1653 		 * Rescale the hash table to keep the hash chains short.
1654 		 */
1655 		vmem_hash_rescale(vmp);
1656 	}
1657 	(void) mutex_unlock(&vmem_list_lock);
1658 }
1659 
1660 /*
1661  * If vmem_init is called again, we need to be able to reset the world.
1662  * That includes resetting the statics back to their original values.
1663  */
1664 void
1665 vmem_startup(void)
1666 {
1667 #ifdef UMEM_STANDALONE
1668 	vmem_id = 0;
1669 	vmem_populators = 0;
1670 	vmem_segfree = NULL;
1671 	vmem_list = NULL;
1672 	vmem_internal_arena = NULL;
1673 	vmem_seg_arena = NULL;
1674 	vmem_hash_arena = NULL;
1675 	vmem_vmem_arena = NULL;
1676 	vmem_heap = NULL;
1677 	vmem_heap_alloc = NULL;
1678 	vmem_heap_free = NULL;
1679 
1680 	bzero(vmem0, sizeof (vmem0));
1681 	bzero(vmem_populator, sizeof (vmem_populator));
1682 	bzero(vmem_seg0, sizeof (vmem_seg0));
1683 #endif
1684 }
1685 
1686 /*
1687  * Prepare vmem for use.
1688  */
1689 vmem_t *
1690 vmem_init(const char *parent_name, size_t parent_quantum,
1691     vmem_alloc_t *parent_alloc, vmem_free_t *parent_free,
1692     const char *heap_name, void *heap_start, size_t heap_size,
1693     size_t heap_quantum, vmem_alloc_t *heap_alloc, vmem_free_t *heap_free)
1694 {
1695 	uint32_t id;
1696 	int nseg = VMEM_SEG_INITIAL;
1697 	vmem_t *parent, *heap;
1698 
1699 	ASSERT(vmem_internal_arena == NULL);
1700 
1701 	while (--nseg >= 0)
1702 		vmem_putseg_global(&vmem_seg0[nseg]);
1703 
1704 	if (parent_name != NULL) {
1705 		parent = vmem_create(parent_name,
1706 		    heap_start, heap_size, parent_quantum,
1707 		    NULL, NULL, NULL, 0,
1708 		    VM_SLEEP | VMC_POPULATOR);
1709 		heap_start = NULL;
1710 		heap_size = 0;
1711 	} else {
1712 		ASSERT(parent_alloc == NULL && parent_free == NULL);
1713 		parent = NULL;
1714 	}
1715 
1716 	heap = vmem_create(heap_name,
1717 	    heap_start, heap_size, heap_quantum,
1718 	    parent_alloc, parent_free, parent, 0,
1719 	    VM_SLEEP | VMC_POPULATOR);
1720 
1721 	vmem_heap = heap;
1722 	vmem_heap_alloc = heap_alloc;
1723 	vmem_heap_free = heap_free;
1724 
1725 	vmem_internal_arena = vmem_create("vmem_internal",
1726 	    NULL, 0, heap_quantum,
1727 	    heap_alloc, heap_free, heap, 0,
1728 	    VM_SLEEP | VMC_POPULATOR);
1729 
1730 	vmem_seg_arena = vmem_create("vmem_seg",
1731 	    NULL, 0, heap_quantum,
1732 	    vmem_alloc, vmem_free, vmem_internal_arena, 0,
1733 	    VM_SLEEP | VMC_POPULATOR);
1734 
1735 	vmem_hash_arena = vmem_create("vmem_hash",
1736 	    NULL, 0, 8,
1737 	    vmem_alloc, vmem_free, vmem_internal_arena, 0,
1738 	    VM_SLEEP);
1739 
1740 	vmem_vmem_arena = vmem_create("vmem_vmem",
1741 	    vmem0, sizeof (vmem0), 1,
1742 	    vmem_alloc, vmem_free, vmem_internal_arena, 0,
1743 	    VM_SLEEP);
1744 
1745 	for (id = 0; id < vmem_id; id++)
1746 		(void) vmem_xalloc(vmem_vmem_arena, sizeof (vmem_t),
1747 		    1, 0, 0, &vmem0[id], &vmem0[id + 1],
1748 		    VM_NOSLEEP | VM_BESTFIT | VM_PANIC);
1749 
1750 	return (heap);
1751 }
1752 
1753 void
1754 vmem_no_debug(void)
1755 {
1756 	/*
1757 	 * This size must be a multiple of the minimum required alignment,
1758 	 * since vmem_populate allocates them compactly.
1759 	 */
1760 	vmem_seg_size = P2ROUNDUP(offsetof(vmem_seg_t, vs_thread),
1761 	    sizeof (hrtime_t));
1762 }
1763 
1764 /*
1765  * Lockup and release, for fork1(2) handling.
1766  */
1767 void
1768 vmem_lockup(void)
1769 {
1770 	vmem_t *cur;
1771 
1772 	(void) mutex_lock(&vmem_list_lock);
1773 	(void) mutex_lock(&vmem_nosleep_lock.vmpl_mutex);
1774 
1775 	/*
1776 	 * Lock up and broadcast all arenas.
1777 	 */
1778 	for (cur = vmem_list; cur != NULL; cur = cur->vm_next) {
1779 		(void) mutex_lock(&cur->vm_lock);
1780 		(void) cond_broadcast(&cur->vm_cv);
1781 	}
1782 
1783 	(void) mutex_lock(&vmem_segfree_lock);
1784 }
1785 
1786 void
1787 vmem_release(void)
1788 {
1789 	vmem_t *cur;
1790 
1791 	(void) mutex_unlock(&vmem_nosleep_lock.vmpl_mutex);
1792 
1793 	for (cur = vmem_list; cur != NULL; cur = cur->vm_next)
1794 		(void) mutex_unlock(&cur->vm_lock);
1795 
1796 	(void) mutex_unlock(&vmem_segfree_lock);
1797 	(void) mutex_unlock(&vmem_list_lock);
1798 }
1799