DragonFlyBSD Kernel Audit
sys/vm/vm_contig.c
← back
  1
  2
  3
  4
  5
  6
  7
  8
  9
 10
 11
 12
 13
 14
 15
 16
 17
 18
 19
 20
 21
 22
 23
 24
 25
 26
 27
 28
 29
 30
 31
 32
 33
 34
 35
 36
 37
 38
 39
 40
 41
 42
 43
 44
 45
 46
 47
 48
 49
 50
 51
 52
 53
 54
 55
 56
 57
 58
 59
 60
 61
 62
 63
 64
 65
 66
 67
 68
 69
 70
 71
 72
 73
 74
 75
 76
 77
 78
 79
 80
 81
 82
 83
 84
 85
 86
 87
 88
 89
 90
 91
 92
 93
 94
 95
 96
 97
 98
 99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
/*
 * Copyright (c) 2003, 2004 The DragonFly Project.  All rights reserved.
 *
 * This code is derived from software contributed to The DragonFly Project
 * by Hiten Pandya <hmp@backplane.com>.
 *
 * Redistribution and use in source and binary forms, with or without
 * modification, are permitted provided that the following conditions
 * are met:
 *
 * 1. Redistributions of source code must retain the above copyright
 *    notice, this list of conditions and the following disclaimer.
 * 2. Redistributions in binary form must reproduce the above copyright
 *    notice, this list of conditions and the following disclaimer in
 *    the documentation and/or other materials provided with the
 *    distribution.
 * 3. Neither the name of The DragonFly Project nor the names of its
 *    contributors may be used to endorse or promote products derived
 *    from this software without specific, prior written permission.
 *
 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
 * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
 * FOR A PARTICULAR PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE
 * COPYRIGHT HOLDERS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
 * INCIDENTAL, SPECIAL, EXEMPLARY OR CONSEQUENTIAL DAMAGES (INCLUDING,
 * BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
 * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED
 * AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
 * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT
 * OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
 * SUCH DAMAGE.
 *
 */
/*
 * Copyright (c) 1991 Regents of the University of California.
 * All rights reserved.
 *
 * This code is derived from software contributed to Berkeley by
 * The Mach Operating System project at Carnegie-Mellon University.
 *
 * Redistribution and use in source and binary forms, with or without
 * modification, are permitted provided that the following conditions
 * are met:
 * 1. Redistributions of source code must retain the above copyright
 *    notice, this list of conditions and the following disclaimer.
 * 2. Redistributions in binary form must reproduce the above copyright
 *    notice, this list of conditions and the following disclaimer in the
 *    documentation and/or other materials provided with the distribution.
 * 3. Neither the name of the University nor the names of its contributors
 *    may be used to endorse or promote products derived from this software
 *    without specific prior written permission.
 *
 * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
 * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
 * SUCH DAMAGE.
 *
 *	from: @(#)vm_page.c	7.4 (Berkeley) 5/7/91
 */

/*
 * Copyright (c) 1987, 1990 Carnegie-Mellon University.
 * All rights reserved.
 *
 * Authors: Avadis Tevanian, Jr., Michael Wayne Young
 *
 * Permission to use, copy, modify and distribute this software and
 * its documentation is hereby granted, provided that both the copyright
 * notice and this permission notice appear in all copies of the
 * software, derivative works or modified versions, and any portions
 * thereof, and that both notices appear in supporting documentation.
 *
 * CARNEGIE MELLON ALLOWS FREE USE OF THIS SOFTWARE IN ITS "AS IS"
 * CONDITION.  CARNEGIE MELLON DISCLAIMS ANY LIABILITY OF ANY KIND
 * FOR ANY DAMAGES WHATSOEVER RESULTING FROM THE USE OF THIS SOFTWARE.
 *
 * Carnegie Mellon requests users of this software to return to
 *
 *  Software Distribution Coordinator  or  Software.Distribution@CS.CMU.EDU
 *  School of Computer Science
 *  Carnegie Mellon University
 *  Pittsburgh PA 15213-3890
 *
 * any improvements or extensions that they make and grant Carnegie the
 * rights to redistribute these changes.
 */

/*
 * Contiguous memory allocation API.
 */

#include <sys/param.h>
#include <sys/systm.h>
#include <sys/malloc.h>
#include <sys/proc.h>
#include <sys/lock.h>
#include <sys/vmmeter.h>
#include <sys/vnode.h>

#include <vm/vm.h>
#include <vm/vm_param.h>
#include <vm/vm_kern.h>
#include <vm/pmap.h>
#include <vm/vm_map.h>
#include <vm/vm_object.h>
#include <vm/vm_page.h>
#include <vm/vm_pageout.h>
#include <vm/vm_pager.h>
#include <vm/vm_extern.h>

#include <sys/spinlock2.h>
#include <vm/vm_page2.h>

#include <machine/bus_dma.h>

static void vm_contig_pg_free(vm_pindex_t start, u_long size);

/*
 * vm_contig_pg_clean:
 * 
 * Do a thorough cleanup of the specified 'queue', which can be either
 * PQ_ACTIVE or PQ_INACTIVE by doing a walkthrough.  If the page is not
 * marked dirty, it is shoved into the page cache, provided no one has
 * currently aqcuired it, otherwise localized action per object type
 * is taken for cleanup:
 *
 * 	In the OBJT_VNODE case, the whole page range is cleaned up
 * 	using the vm_object_page_clean() routine, by specyfing a
 * 	start and end of '0'.
 *
 * 	Otherwise if the object is of any other type, the generic
 * 	pageout (daemon) flush routine is invoked.
 */
static void
vm_contig_pg_clean(int queue, vm_pindex_t count)
{
	vm_object_t object;
	vm_page_t m, m_tmp;
	struct vm_page marker;
	struct vpgqueues *pq = &vm_page_queues[queue];

	/*
	 * Setup a local marker
	 */
	bzero(&marker, sizeof(marker));
	marker.flags = PG_FICTITIOUS | PG_MARKER;
	marker.busy_count = PBUSY_LOCKED;
	marker.queue = queue;
	marker.wire_count = 1;

	vm_page_queues_spin_lock(queue);
	TAILQ_INSERT_HEAD(&pq->pl, &marker, pageq);
	vm_page_queues_spin_unlock(queue);

	/*
	 * Iterate the queue.  Note that the vm_page spinlock must be
	 * acquired before the pageq spinlock so it's easiest to simply
	 * not hold it in the loop iteration.
	 */
	while ((long)count-- > 0 &&
	       (m = TAILQ_NEXT(&marker, pageq)) != NULL) {
		vm_page_and_queue_spin_lock(m);
		if (m != TAILQ_NEXT(&marker, pageq)) {
			vm_page_and_queue_spin_unlock(m);
			++count;
			continue;
		}
		KKASSERT(m->queue == queue);

		TAILQ_REMOVE(&pq->pl, &marker, pageq);
		TAILQ_INSERT_AFTER(&pq->pl, m, &marker, pageq);

		if (m->flags & PG_MARKER) {
			vm_page_and_queue_spin_unlock(m);
			continue;
		}
		if (vm_page_busy_try(m, TRUE)) {
			vm_page_and_queue_spin_unlock(m);
			continue;
		}
		vm_page_and_queue_spin_unlock(m);

		/*
		 * We've successfully busied the page
		 */
		if (m->queue - m->pc != queue) {
			vm_page_wakeup(m);
			continue;
		}

		/*
		 * NOTE: wire_count and hold_count must NOT have queue
		 *	 side effects.
		 */
		if (m->wire_count || m->hold_count) {
			vm_page_wakeup(m);
			continue;
		}
		if ((object = m->object) == NULL) {
			vm_page_wakeup(m);
			continue;
		}
		vm_page_test_dirty(m);
		if (m->dirty || (m->flags & PG_NEED_COMMIT)) {
			vm_object_hold(object);
			KKASSERT(m->object == object);

			if (object->type == OBJT_VNODE) {
				vm_page_wakeup(m);
				vn_lock(object->handle, LK_EXCLUSIVE|LK_RETRY);
				vm_object_page_clean(object, 0, 0, OBJPC_SYNC);
				vn_unlock(((struct vnode *)object->handle));
			} else if (object->type == OBJT_SWAP ||
					object->type == OBJT_DEFAULT) {
				m_tmp = m;
				vm_pageout_flush(&m_tmp, 1, 0);
			} else {
				vm_page_wakeup(m);
			}
			vm_object_drop(object);
		} else if (m->hold_count == 0) {
			vm_page_cache(m);
		} else {
			vm_page_wakeup(m);
		}
	}

	/*
	 * Scrap our local marker
	 */
	vm_page_queues_spin_lock(queue);
	TAILQ_REMOVE(&pq->pl, &marker, pageq);
	vm_page_queues_spin_unlock(queue);
}

/*
 * vm_contig_pg_alloc:
 *
 * Allocate contiguous pages from the VM.  This function does not
 * map the allocated pages into the kernel map, otherwise it is
 * impossible to make large allocations (i.e. >2G).
 *
 * Malloc()'s data structures have been used for collection of
 * statistics and for allocations of less than a page.
 */
static vm_pindex_t
vm_contig_pg_alloc(unsigned long size, vm_paddr_t low, vm_paddr_t high,
		   unsigned long alignment, unsigned long boundary, int mflags)
{
	vm_pindex_t i, q, start;
	vm_offset_t phys;
	vm_page_t pga = vm_page_array;
	vm_page_t m;
	int pass;
	int pqtype;

	size = round_page(size);
	if (size == 0)
		panic("vm_contig_pg_alloc: size must not be 0");
	if ((alignment & (alignment - 1)) != 0)
		panic("vm_contig_pg_alloc: alignment must be a power of 2");
	if ((boundary & (boundary - 1)) != 0)
		panic("vm_contig_pg_alloc: boundary must be a power of 2");

	/*
	 * See if we can get the pages from the contiguous page reserve
	 * alist.  The returned pages will be allocated and wired but not
	 * busied.
	 *
	 * If high is not set to BUS_SPACE_MAXADDR we try using our
	 * free memory reserve first, otherwise we try it last.
	 *
	 * XXX Always use the dma reserve first for performance, until
	 * we find a better way to differentiate the DRM API.
	 */
#if 0
	if (high != BUS_SPACE_MAXADDR)
#endif
	{
		m = vm_page_alloc_contig(
			low, high, alignment, boundary,
			size, VM_MEMATTR_DEFAULT);
		if (m)
			return (m - &pga[0]);
	}

	/*
	 * Three passes (0, 1, 2).  Each pass scans the VM page list for
	 * free or cached pages.  After each pass if the entire scan failed
	 * we attempt to flush inactive pages and reset the start index back
	 * to 0.  For passes 1 and 2 we also attempt to flush active pages.
	 */
	start = 0;
	for (pass = 0; pass < 3; pass++) {
		/*
		 * Find first page in array that is free, within range, 
		 * aligned, and such that the boundary won't be crossed.
		 */
again:
		for (i = start; i < vmstats.v_page_count; i++) {
			m = &pga[i];
			phys = VM_PAGE_TO_PHYS(m);
			pqtype = m->queue - m->pc;
			if (((pqtype == PQ_FREE) || (pqtype == PQ_CACHE)) &&
			    (phys >= low) && (phys < high) &&
			    ((phys & (alignment - 1)) == 0) &&
			    ((rounddown2(phys ^ (phys + size - 1), boundary)) == 0) &&
			    m->wire_count == 0 && m->hold_count == 0 &&
			    (m->busy_count &
			     (PBUSY_LOCKED | PBUSY_MASK)) == 0 &&
			    (m->flags & PG_NEED_COMMIT) == 0)
			{
				break;
			}
		}

		/*
		 * If we cannot find the page in the given range, or we have
		 * crossed the boundary, call the vm_contig_pg_clean() function
		 * for flushing out the queues, and returning it back to
		 * normal state.
		 */
		if ((i == vmstats.v_page_count) ||
		    ((VM_PAGE_TO_PHYS(&pga[i]) + size) > high)) {

			/*
			 * Best effort flush of all inactive pages.
			 * This is quite quick, for now stall all
			 * callers, even if they've specified M_NOWAIT.
			 */
			for (q = 0; q < PQ_L2_SIZE; ++q) {
				vm_contig_pg_clean(PQ_INACTIVE + q,
						   vmstats.v_inactive_count);
				lwkt_yield();
			}

			/*
			 * Best effort flush of active pages.
			 *
			 * This is very, very slow.
			 * Only do this if the caller has agreed to M_WAITOK.
			 *
			 * If enough pages are flushed, we may succeed on
			 * next (final) pass, if not the caller, contigmalloc(),
			 * will fail in the index < 0 case.
			 */
			if (pass > 0 && (mflags & M_WAITOK)) {
				for (q = 0; q < PQ_L2_SIZE; ++q) {
					vm_contig_pg_clean(PQ_ACTIVE + q,
						       vmstats.v_active_count);
				}
				lwkt_yield();
			}

			/*
			 * We're already too high in the address space
			 * to succeed, reset to 0 for the next iteration.
			 */
			start = 0;
			continue;	/* next pass */
		}
		start = i;

		/*
		 * Check successive pages for contiguous and free.
		 *
		 * (still in critical section)
		 */
		for (i = start + 1; i < (start + size / PAGE_SIZE); i++) {
			m = &pga[i];
			pqtype = m->queue - m->pc;
			if ((VM_PAGE_TO_PHYS(&m[0]) !=
			    (VM_PAGE_TO_PHYS(&m[-1]) + PAGE_SIZE)) ||
			    ((pqtype != PQ_FREE) && (pqtype != PQ_CACHE)) ||
			    m->wire_count ||
			    m->hold_count ||
			    (m->busy_count & (PBUSY_LOCKED | PBUSY_MASK)) ||
			    (m->flags & PG_NEED_COMMIT))
			{
				start++;
				goto again;
			}
		}

		/*
		 * Try to allocate the pages, wiring them as we go.
		 *
		 * (still in critical section)
		 */
		for (i = start; i < (start + size / PAGE_SIZE); i++) {
			m = &pga[i];

			if (vm_page_busy_try(m, TRUE)) {
				vm_contig_pg_free(start,
						  (i - start) * PAGE_SIZE);
				start++;
				goto again;
			}
			pqtype = m->queue - m->pc;
			if (pqtype == PQ_CACHE &&
			    m->hold_count == 0 &&
			    m->wire_count == 0 &&
			    (m->flags & PG_NEED_COMMIT) == 0) {
				vm_page_protect(m, VM_PROT_NONE);
				KKASSERT((m->flags &
					 (PG_MAPPED | PG_UNQUEUED)) == 0);
				KKASSERT(m->dirty == 0);
				vm_page_free(m);
				--i;
				continue;	/* retry the page */
			}
			if (pqtype != PQ_FREE || m->hold_count) {
				vm_page_wakeup(m);
				vm_contig_pg_free(start,
						  (i - start) * PAGE_SIZE);
				start++;
				goto again;
			}
			KKASSERT((m->valid & m->dirty) == 0);
			KKASSERT(m->wire_count == 0);
			KKASSERT(m->object == NULL);
			vm_page_unqueue_nowakeup(m);
			m->valid = VM_PAGE_BITS_ALL;
			KASSERT(m->dirty == 0,
				("vm_contig_pg_alloc: page %p was dirty", m));
			KKASSERT(m->wire_count == 0);
			KKASSERT((m->busy_count & PBUSY_MASK) == 0);

			/*
			 * Clear all flags, set FICTITIOUS and UNQUEUED to
			 * indicate the the pages are special, then unbusy
			 * the now allocated page.
			 *
			 * XXX setting FICTITIOUS and UNQUEUED in the future.
			 *     (also pair up with vm_contig_pg_free)
			 */
			vm_page_flag_clear(m, ~PG_KEEP_NEWPAGE_MASK);
			/* vm_page_flag_set(m, PG_FICTITIOUS | PG_UNQUEUED);*/
			vm_page_wire(m);
			vm_page_wakeup(m);
		}

		/*
		 * Our job is done, return the index page of vm_page_array.
		 */
		return (start); /* aka &pga[start] */
	}

#if 0
	/*
	 * Failed, if we haven't already tried, allocate from our reserved
	 * dma memory.
	 *
	 * XXX (see conditionalized code above)
	 */
	if (high == BUS_SPACE_MAXADDR) {
		m = vm_page_alloc_contig(
			low, high, alignment, boundary,
			size, VM_MEMATTR_DEFAULT);
		if (m)
			return (m - &pga[0]);
	}
#endif

	/*
	 * Failed.
	 */
	return ((vm_pindex_t)-1);
}

/*
 * vm_contig_pg_free:
 *
 * Remove pages previously allocated by vm_contig_pg_alloc, and
 * assume all references to the pages have been removed, and that
 * it is OK to add them back to the free list.
 *
 * Caller must ensure no races on the page range in question.
 * No other requirements.
 */
static void
vm_contig_pg_free(vm_pindex_t start, u_long size)
{
	vm_page_t pga = vm_page_array;
	
	size = round_page(size);
	if (size == 0)
		panic("vm_contig_pg_free: size must not be 0");

	/*
	 * The pages are wired, vm_page_free_contig() determines whether they
	 * belong to the contig space or not and either frees them to that
	 * space (leaving them wired), or unwires the page and frees it to the
	 * normal PQ_FREE queue.
	 */
	vm_page_free_contig(&pga[start], size);
}

/*
 * vm_contig_pg_kmap:
 *
 * Map previously allocated (vm_contig_pg_alloc) range of pages from
 * vm_page_array[] into the KVA.  Once mapped, the pages are part of
 * the Kernel, and are to free'ed with kmem_free(kernel_map, addr, size).
 *
 * No requirements.
 */
static vm_offset_t
vm_contig_pg_kmap(vm_pindex_t start, u_long size, vm_map_t map, int flags)
{
	vm_offset_t addr;
	vm_paddr_t pa;
	vm_page_t pga = vm_page_array;
	u_long offset;

	if (size == 0)
		panic("vm_contig_pg_kmap: size must not be 0");
	size = round_page(size);
	addr = kmem_alloc_pageable(kernel_map, size, VM_SUBSYS_CONTIG);
	if (addr) {
		pa = VM_PAGE_TO_PHYS(&pga[start]);
		for (offset = 0; offset < size; offset += PAGE_SIZE)
			pmap_kenter_noinval(addr + offset, pa + offset);
		pmap_invalidate_range(kernel_pmap, addr, addr + size);
		if (flags & M_ZERO)
			bzero((void *)addr, size);
	}
	return(addr);
}

/*
 * No requirements.
 */
void *
contigmalloc(
	unsigned long size,	/* should be size_t here and for malloc() */
	struct malloc_type *type,
	int flags,
	vm_paddr_t low,
	vm_paddr_t high,
	unsigned long alignment,
	unsigned long boundary)
{
	return contigmalloc_map(size, type, flags, low, high, alignment,
			boundary, kernel_map);
}

/*
 * No requirements.
 */
void *
contigmalloc_map(unsigned long size, struct malloc_type *type,
		 int flags, vm_paddr_t low, vm_paddr_t high,
		 unsigned long alignment, unsigned long boundary,
		 vm_map_t map)
{
	vm_pindex_t index;
	void *rv;

	index = vm_contig_pg_alloc(size, low, high, alignment, boundary, flags);
	if (index == (vm_pindex_t)-1) {
		kprintf("contigmalloc_map: failed size %lu low=%llx "
			"high=%llx align=%lu boundary=%lu flags=%08x\n",
			size, (long long)low, (long long)high,
			alignment, boundary, flags);
		return NULL;
	}

	rv = (void *)vm_contig_pg_kmap(index, size, map, flags);
	if (rv == NULL)
		vm_contig_pg_free(index, size);
	
	return rv;
}

/*
 * No requirements.
 */
void
contigfree(void *addr, unsigned long size, struct malloc_type *type)
{
	vm_paddr_t pa;
	vm_page_t m;

	if (size == 0)
		panic("vm_contig_pg_kmap: size must not be 0");
	size = round_page(size);

	pa = pmap_kextract((vm_offset_t)addr);
	pmap_qremove((vm_offset_t)addr, size / PAGE_SIZE);
	kmem_free(kernel_map, (vm_offset_t)addr, size);

	m = PHYS_TO_VM_PAGE(pa);
	vm_page_free_contig(m, size);
}

/*
 * No requirements.
 */
vm_offset_t
kmem_alloc_contig(vm_offset_t size, vm_paddr_t low, vm_paddr_t high,
		  vm_offset_t alignment)
{
	return ((vm_offset_t)contigmalloc_map(size, M_DEVBUF, M_NOWAIT, low,
				high, alignment, 0ul, kernel_map));
}