Home | History | Annotate | Line # | Download | only in uvm
uvm_pglist.c revision 1.24
      1  1.24  drochner /*	$NetBSD: uvm_pglist.c,v 1.24 2002/06/27 18:05:29 drochner Exp $	*/
      2   1.2   thorpej 
      3   1.1       mrg /*-
      4   1.1       mrg  * Copyright (c) 1997 The NetBSD Foundation, Inc.
      5   1.1       mrg  * All rights reserved.
      6  1.15       chs  *
      7   1.1       mrg  * This code is derived from software contributed to The NetBSD Foundation
      8   1.1       mrg  * by Jason R. Thorpe of the Numerical Aerospace Simulation Facility,
      9  1.15       chs  * NASA Ames Research Center.
     10   1.1       mrg  *
     11   1.1       mrg  * Redistribution and use in source and binary forms, with or without
     12   1.1       mrg  * modification, are permitted provided that the following conditions
     13   1.1       mrg  * are met:
     14   1.1       mrg  * 1. Redistributions of source code must retain the above copyright
     15   1.1       mrg  *    notice, this list of conditions and the following disclaimer.
     16  1.15       chs  * 2. Redistributions in binary form must reproduce the above copyright
     17   1.1       mrg  *    notice, this list of conditions and the following disclaimer in the
     18   1.1       mrg  *    documentation and/or other materials provided with the distribution.
     19   1.1       mrg  * 3. All advertising materials mentioning features or use of this software
     20   1.1       mrg  *    must display the following acknowledgement:
     21   1.1       mrg  *      This product includes software developed by the NetBSD
     22   1.1       mrg  *      Foundation, Inc. and its contributors.
     23   1.1       mrg  * 4. Neither the name of The NetBSD Foundation nor the names of its
     24   1.1       mrg  *    contributors may be used to endorse or promote products derived
     25   1.1       mrg  *    from this software without specific prior written permission.
     26  1.15       chs  *
     27   1.1       mrg  * THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
     28   1.1       mrg  * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
     29   1.1       mrg  * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
     30   1.1       mrg  * PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
     31   1.1       mrg  * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
     32   1.1       mrg  * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
     33   1.1       mrg  * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
     34   1.1       mrg  * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
     35   1.1       mrg  * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
     36   1.1       mrg  * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
     37   1.1       mrg  * POSSIBILITY OF SUCH DAMAGE.
     38   1.1       mrg  */
     39   1.1       mrg 
     40   1.1       mrg /*
     41   1.1       mrg  * uvm_pglist.c: pglist functions
     42   1.1       mrg  */
     43  1.19     lukem 
     44  1.19     lukem #include <sys/cdefs.h>
     45  1.24  drochner __KERNEL_RCSID(0, "$NetBSD: uvm_pglist.c,v 1.24 2002/06/27 18:05:29 drochner Exp $");
     46   1.1       mrg 
     47   1.1       mrg #include <sys/param.h>
     48   1.1       mrg #include <sys/systm.h>
     49   1.1       mrg #include <sys/malloc.h>
     50   1.1       mrg #include <sys/proc.h>
     51   1.1       mrg 
     52   1.1       mrg #include <uvm/uvm.h>
     53   1.1       mrg 
     54   1.1       mrg #ifdef VM_PAGE_ALLOC_MEMORY_STATS
     55   1.1       mrg #define	STAT_INCR(v)	(v)++
     56   1.1       mrg #define	STAT_DECR(v)	do { \
     57   1.1       mrg 		if ((v) == 0) \
     58   1.1       mrg 			printf("%s:%d -- Already 0!\n", __FILE__, __LINE__); \
     59   1.1       mrg 		else \
     60   1.1       mrg 			(v)--; \
     61   1.1       mrg 	} while (0)
     62   1.1       mrg u_long	uvm_pglistalloc_npages;
     63   1.1       mrg #else
     64   1.1       mrg #define	STAT_INCR(v)
     65   1.1       mrg #define	STAT_DECR(v)
     66   1.1       mrg #endif
     67   1.1       mrg 
     68   1.1       mrg /*
     69   1.1       mrg  * uvm_pglistalloc: allocate a list of pages
     70   1.1       mrg  *
     71   1.1       mrg  * => allocated pages are placed at the tail of rlist.  rlist is
     72   1.1       mrg  *    assumed to be properly initialized by caller.
     73   1.1       mrg  * => returns 0 on success or errno on failure
     74   1.1       mrg  * => XXX: implementation allocates only a single segment, also
     75   1.1       mrg  *	might be able to better advantage of vm_physeg[].
     76   1.1       mrg  * => doesn't take into account clean non-busy pages on inactive list
     77   1.1       mrg  *	that could be used(?)
     78   1.1       mrg  * => params:
     79   1.1       mrg  *	size		the size of the allocation, rounded to page size.
     80   1.1       mrg  *	low		the low address of the allowed allocation range.
     81   1.1       mrg  *	high		the high address of the allowed allocation range.
     82   1.1       mrg  *	alignment	memory must be aligned to this power-of-two boundary.
     83  1.15       chs  *	boundary	no segment in the allocation may cross this
     84   1.1       mrg  *			power-of-two boundary (relative to zero).
     85   1.1       mrg  */
     86   1.1       mrg 
     87  1.20  drochner static void uvm_pglist_add(struct vm_page *, struct pglist *);
     88  1.24  drochner static int uvm_pglistalloc_c_ps(struct vm_physseg *, int, paddr_t, paddr_t,
     89  1.22  drochner 				paddr_t, paddr_t, struct pglist *);
     90  1.24  drochner static int uvm_pglistalloc_contig(int, paddr_t, paddr_t, paddr_t, paddr_t,
     91  1.20  drochner 				  struct pglist *);
     92  1.24  drochner static int uvm_pglistalloc_s_ps(struct vm_physseg *, int, paddr_t, paddr_t,
     93  1.24  drochner 				struct pglist *);
     94  1.24  drochner static int uvm_pglistalloc_simple(int, paddr_t, paddr_t,
     95  1.20  drochner 				  struct pglist *, int);
     96  1.20  drochner 
     97  1.20  drochner static void
     98  1.20  drochner uvm_pglist_add(pg, rlist)
     99  1.20  drochner 	struct vm_page *pg;
    100  1.20  drochner 	struct pglist *rlist;
    101  1.20  drochner {
    102  1.20  drochner 	int free_list, color, pgflidx;
    103  1.20  drochner #ifdef DEBUG
    104  1.20  drochner 	struct vm_page *tp;
    105  1.20  drochner #endif
    106  1.20  drochner 
    107  1.20  drochner #if PGFL_NQUEUES != 2
    108  1.20  drochner #error uvm_pglistalloc needs to be updated
    109  1.20  drochner #endif
    110  1.20  drochner 
    111  1.20  drochner 	free_list = uvm_page_lookup_freelist(pg);
    112  1.20  drochner 	color = VM_PGCOLOR_BUCKET(pg);
    113  1.20  drochner 	pgflidx = (pg->flags & PG_ZERO) ? PGFL_ZEROS : PGFL_UNKNOWN;
    114  1.20  drochner #ifdef DEBUG
    115  1.20  drochner 	for (tp = TAILQ_FIRST(&uvm.page_free[
    116  1.20  drochner 		free_list].pgfl_buckets[color].pgfl_queues[pgflidx]);
    117  1.20  drochner 	     tp != NULL;
    118  1.20  drochner 	     tp = TAILQ_NEXT(tp, pageq)) {
    119  1.20  drochner 		if (tp == pg)
    120  1.20  drochner 			break;
    121  1.20  drochner 	}
    122  1.20  drochner 	if (tp == NULL)
    123  1.20  drochner 		panic("uvm_pglistalloc: page not on freelist");
    124  1.20  drochner #endif
    125  1.20  drochner 	TAILQ_REMOVE(&uvm.page_free[free_list].pgfl_buckets[
    126  1.20  drochner 			color].pgfl_queues[pgflidx], pg, pageq);
    127  1.20  drochner 	uvmexp.free--;
    128  1.20  drochner 	if (pg->flags & PG_ZERO)
    129  1.20  drochner 		uvmexp.zeropages--;
    130  1.20  drochner 	pg->flags = PG_CLEAN;
    131  1.20  drochner 	pg->pqflags = 0;
    132  1.20  drochner 	pg->uobject = NULL;
    133  1.20  drochner 	pg->uanon = NULL;
    134  1.20  drochner 	TAILQ_INSERT_TAIL(rlist, pg, pageq);
    135  1.20  drochner 	STAT_INCR(uvm_pglistalloc_npages);
    136  1.20  drochner }
    137  1.20  drochner 
    138  1.20  drochner static int
    139  1.24  drochner uvm_pglistalloc_c_ps(ps, num, low, high, alignment, boundary, rlist)
    140  1.24  drochner 	struct vm_physseg *ps;
    141  1.24  drochner 	int num;
    142   1.6       eeh 	paddr_t low, high, alignment, boundary;
    143   1.3       mrg 	struct pglist *rlist;
    144   1.1       mrg {
    145  1.22  drochner 	int try, limit, tryidx, end, idx;
    146  1.20  drochner 	struct vm_page *pgs;
    147  1.24  drochner 	int pagemask;
    148  1.24  drochner #ifdef DEBUG
    149  1.22  drochner 	paddr_t idxpa, lastidxpa;
    150  1.22  drochner 	int cidx;
    151  1.22  drochner #endif
    152  1.24  drochner #ifdef PGALLOC_VERBOSE
    153  1.24  drochner 	printf("pgalloc: contig %d pgs from psi %d\n", num, ps - vm_physmem);
    154  1.24  drochner #endif
    155   1.1       mrg 
    156  1.24  drochner 	try = roundup(max(atop(low), ps->avail_start), atop(alignment));
    157  1.24  drochner 	limit = min(atop(high), ps->avail_end);
    158  1.24  drochner 	pagemask = ~((boundary >> PAGE_SHIFT) - 1);
    159  1.12       chs 
    160  1.24  drochner 	for (;;) {
    161  1.24  drochner 		if (try + num > limit) {
    162   1.3       mrg 			/*
    163   1.3       mrg 			 * We've run past the allowable range.
    164   1.3       mrg 			 */
    165  1.22  drochner 			return (0); /* FAIL */
    166   1.3       mrg 		}
    167  1.24  drochner 		if (boundary != 0 &&
    168  1.24  drochner 		    ((try ^ (try + num - 1)) & pagemask) != 0) {
    169  1.24  drochner 			/*
    170  1.24  drochner 			 * Region crosses boundary. Jump to the boundary
    171  1.24  drochner 			 * just crossed and ensure alignment.
    172  1.24  drochner 			 */
    173  1.24  drochner 			try = (try + num - 1) & pagemask;
    174  1.24  drochner 			try = roundup(try, atop(alignment));
    175  1.24  drochner 			continue;
    176  1.24  drochner 		}
    177  1.22  drochner #ifdef DEBUG
    178   1.3       mrg 		/*
    179   1.3       mrg 		 * Make sure this is a managed physical page.
    180   1.3       mrg 		 */
    181   1.3       mrg 
    182  1.24  drochner 		if (vm_physseg_find(try, &cidx) != ps - vm_physmem)
    183  1.22  drochner 			panic("pgalloc contig: botch1");
    184  1.24  drochner 		if (cidx != try - ps->start)
    185  1.22  drochner 			panic("pgalloc contig: botch2");
    186  1.24  drochner 		if (vm_physseg_find(try + num - 1, &cidx) != ps - vm_physmem)
    187  1.22  drochner 			panic("pgalloc contig: botch3");
    188  1.24  drochner 		if (cidx != try - ps->start + num - 1)
    189  1.22  drochner 			panic("pgalloc contig: botch4");
    190  1.22  drochner #endif
    191  1.24  drochner 		tryidx = try - ps->start;
    192  1.24  drochner 		end = tryidx + num;
    193  1.24  drochner 		pgs = ps->pgs;
    194   1.3       mrg 
    195   1.3       mrg 		/*
    196  1.24  drochner 		 * Found a suitable starting page.  See if the range is free.
    197   1.3       mrg 		 */
    198  1.22  drochner 		for (idx = tryidx; idx < end; idx++) {
    199  1.24  drochner 			if (VM_PAGE_IS_FREE(&pgs[idx]) == 0)
    200   1.3       mrg 				break;
    201  1.24  drochner 
    202  1.24  drochner #ifdef DEBUG
    203   1.3       mrg 			idxpa = VM_PAGE_TO_PHYS(&pgs[idx]);
    204   1.3       mrg 			if (idx > tryidx) {
    205   1.3       mrg 				lastidxpa = VM_PAGE_TO_PHYS(&pgs[idx - 1]);
    206  1.12       chs 				if ((lastidxpa + PAGE_SIZE) != idxpa) {
    207   1.3       mrg 					/*
    208   1.3       mrg 					 * Region not contiguous.
    209   1.3       mrg 					 */
    210  1.22  drochner 					panic("pgalloc contig: botch5");
    211   1.3       mrg 				}
    212   1.3       mrg 				if (boundary != 0 &&
    213  1.24  drochner 				    ((lastidxpa ^ idxpa) & ~(boundary - 1))
    214  1.24  drochner 				    != 0) {
    215   1.3       mrg 					/*
    216   1.3       mrg 					 * Region crosses boundary.
    217   1.3       mrg 					 */
    218  1.24  drochner 					panic("pgalloc contig: botch6");
    219   1.3       mrg 				}
    220   1.3       mrg 			}
    221  1.24  drochner #endif
    222   1.3       mrg 		}
    223  1.24  drochner 		if (idx == end)
    224   1.3       mrg 			break;
    225  1.24  drochner 
    226  1.24  drochner 		try += atop(alignment);
    227   1.1       mrg 	}
    228   1.1       mrg 
    229   1.3       mrg 	/*
    230   1.3       mrg 	 * we have a chunk of memory that conforms to the requested constraints.
    231   1.3       mrg 	 */
    232   1.3       mrg 	idx = tryidx;
    233  1.24  drochner 	while (idx < end)
    234  1.20  drochner 		uvm_pglist_add(&pgs[idx++], rlist);
    235  1.24  drochner 
    236  1.24  drochner #ifdef PGALLOC_VERBOSE
    237  1.24  drochner 	printf("got %d pgs\n", num);
    238  1.24  drochner #endif
    239  1.24  drochner 	return (num); /* number of pages allocated */
    240  1.22  drochner }
    241  1.22  drochner 
    242  1.22  drochner static int
    243  1.24  drochner uvm_pglistalloc_contig(num, low, high, alignment, boundary, rlist)
    244  1.24  drochner 	int num;
    245  1.22  drochner 	paddr_t low, high, alignment, boundary;
    246  1.22  drochner 	struct pglist *rlist;
    247  1.22  drochner {
    248  1.22  drochner 	int fl, psi;
    249  1.24  drochner 	struct vm_physseg *ps;
    250  1.22  drochner 	int s, error;
    251  1.22  drochner 
    252  1.22  drochner 	/* Default to "lose". */
    253  1.22  drochner 	error = ENOMEM;
    254  1.22  drochner 
    255  1.22  drochner 	/*
    256  1.22  drochner 	 * Block all memory allocation and lock the free list.
    257  1.22  drochner 	 */
    258  1.22  drochner 	s = uvm_lock_fpageq();
    259  1.22  drochner 
    260  1.22  drochner 	/* Are there even any free pages? */
    261  1.22  drochner 	if (uvmexp.free <= (uvmexp.reserve_pagedaemon + uvmexp.reserve_kernel))
    262  1.22  drochner 		goto out;
    263  1.22  drochner 
    264  1.22  drochner 	for (fl = 0; fl < VM_NFREELIST; fl++) {
    265  1.22  drochner #if (VM_PHYSSEG_STRAT == VM_PSTRAT_BIGFIRST)
    266  1.22  drochner 		for (psi = vm_nphysseg - 1 ; psi >= 0 ; psi--)
    267  1.22  drochner #else
    268  1.22  drochner 		for (psi = 0 ; psi < vm_nphysseg ; psi++)
    269  1.22  drochner #endif
    270  1.22  drochner 		{
    271  1.24  drochner 			ps = &vm_physmem[psi];
    272  1.24  drochner 
    273  1.24  drochner 			if (ps->free_list != fl)
    274  1.22  drochner 				continue;
    275  1.22  drochner 
    276  1.24  drochner 			num -= uvm_pglistalloc_c_ps(ps, num, low, high,
    277  1.24  drochner 						    alignment, boundary, rlist);
    278  1.24  drochner 			if (num == 0) {
    279  1.24  drochner #ifdef PGALLOC_VERBOSE
    280  1.22  drochner 				printf("pgalloc: %lx-%lx\n",
    281  1.22  drochner 				       TAILQ_FIRST(rlist)->phys_addr,
    282  1.22  drochner 				       TAILQ_LAST(rlist, pglist)->phys_addr);
    283  1.22  drochner #endif
    284  1.22  drochner 				error = 0;
    285  1.22  drochner 				goto out;
    286  1.22  drochner 			}
    287  1.22  drochner 		}
    288  1.22  drochner 	}
    289  1.20  drochner 
    290  1.20  drochner out:
    291  1.20  drochner 	/*
    292  1.20  drochner 	 * check to see if we need to generate some free pages waking
    293  1.20  drochner 	 * the pagedaemon.
    294  1.20  drochner 	 */
    295  1.20  drochner 
    296  1.20  drochner 	UVM_KICK_PDAEMON();
    297  1.20  drochner 	uvm_unlock_fpageq(s);
    298  1.20  drochner 	return (error);
    299  1.20  drochner }
    300  1.20  drochner 
    301  1.24  drochner static int
    302  1.24  drochner uvm_pglistalloc_s_ps(ps, num, low, high, rlist)
    303  1.24  drochner 	struct vm_physseg *ps;
    304  1.24  drochner 	int num;
    305  1.22  drochner 	paddr_t low, high;
    306  1.22  drochner 	struct pglist *rlist;
    307  1.22  drochner {
    308  1.24  drochner 	int todo, limit, try;
    309  1.22  drochner 	struct vm_page *pg;
    310  1.22  drochner #ifdef DEBUG
    311  1.22  drochner 	int cidx;
    312  1.22  drochner #endif
    313  1.24  drochner #ifdef PGALLOC_VERBOSE
    314  1.24  drochner 	printf("pgalloc: simple %d pgs from psi %d\n", num, ps - vm_physmem);
    315  1.24  drochner #endif
    316  1.22  drochner 
    317  1.24  drochner 	todo = num;
    318  1.24  drochner 	limit = min(atop(high), ps->avail_end);
    319  1.22  drochner 
    320  1.24  drochner 	for (try = max(atop(low), ps->avail_start);
    321  1.22  drochner 	     try < limit; try ++) {
    322  1.22  drochner #ifdef DEBUG
    323  1.24  drochner 		if (vm_physseg_find(try, &cidx) != ps - vm_physmem)
    324  1.22  drochner 			panic("pgalloc simple: botch1");
    325  1.24  drochner 		if (cidx != (try - ps->start))
    326  1.22  drochner 			panic("pgalloc simple: botch2");
    327  1.22  drochner #endif
    328  1.24  drochner 		pg = &ps->pgs[try - ps->start];
    329  1.22  drochner 		if (VM_PAGE_IS_FREE(pg) == 0)
    330  1.22  drochner 			continue;
    331  1.22  drochner 
    332  1.22  drochner 		uvm_pglist_add(pg, rlist);
    333  1.24  drochner 		if (--todo == 0)
    334  1.22  drochner 			break;
    335  1.22  drochner 	}
    336  1.24  drochner 
    337  1.24  drochner #ifdef PGALLOC_VERBOSE
    338  1.24  drochner 	printf("got %d pgs\n", num - todo);
    339  1.24  drochner #endif
    340  1.24  drochner 	return (num - todo); /* number of pages allocated */
    341  1.22  drochner }
    342  1.22  drochner 
    343  1.20  drochner static int
    344  1.24  drochner uvm_pglistalloc_simple(num, low, high, rlist, waitok)
    345  1.24  drochner 	int num;
    346  1.20  drochner 	paddr_t low, high;
    347  1.20  drochner 	struct pglist *rlist;
    348  1.20  drochner 	int waitok;
    349  1.20  drochner {
    350  1.24  drochner 	int fl, psi, s, error;
    351  1.24  drochner 	struct vm_physseg *ps;
    352  1.20  drochner 
    353  1.20  drochner 	/* Default to "lose". */
    354  1.20  drochner 	error = ENOMEM;
    355  1.20  drochner 
    356  1.20  drochner again:
    357  1.20  drochner 	/*
    358  1.20  drochner 	 * Block all memory allocation and lock the free list.
    359  1.20  drochner 	 */
    360  1.20  drochner 	s = uvm_lock_fpageq();
    361  1.20  drochner 
    362  1.20  drochner 	/* Are there even any free pages? */
    363  1.20  drochner 	if (uvmexp.free <= (uvmexp.reserve_pagedaemon + uvmexp.reserve_kernel))
    364  1.20  drochner 		goto out;
    365  1.20  drochner 
    366  1.22  drochner 	for (fl = 0; fl < VM_NFREELIST; fl++) {
    367  1.22  drochner #if (VM_PHYSSEG_STRAT == VM_PSTRAT_BIGFIRST)
    368  1.22  drochner 		for (psi = vm_nphysseg - 1 ; psi >= 0 ; psi--)
    369  1.22  drochner #else
    370  1.22  drochner 		for (psi = 0 ; psi < vm_nphysseg ; psi++)
    371  1.22  drochner #endif
    372  1.22  drochner 		{
    373  1.24  drochner 			ps = &vm_physmem[psi];
    374  1.24  drochner 
    375  1.24  drochner 			if (ps->free_list != fl)
    376  1.22  drochner 				continue;
    377  1.22  drochner 
    378  1.24  drochner 			num -= uvm_pglistalloc_s_ps(ps, num, low, high, rlist);
    379  1.24  drochner 			if (num == 0) {
    380  1.22  drochner 				error = 0;
    381  1.22  drochner 				goto out;
    382  1.22  drochner 			}
    383  1.22  drochner 		}
    384  1.20  drochner 
    385   1.3       mrg 	}
    386   1.1       mrg 
    387   1.1       mrg out:
    388   1.3       mrg 	/*
    389   1.3       mrg 	 * check to see if we need to generate some free pages waking
    390   1.3       mrg 	 * the pagedaemon.
    391   1.3       mrg 	 */
    392  1.15       chs 
    393  1.17   thorpej 	UVM_KICK_PDAEMON();
    394  1.12       chs 	uvm_unlock_fpageq(s);
    395  1.20  drochner 	if (error) {
    396  1.20  drochner 		if (waitok) {
    397  1.20  drochner 			/* XXX perhaps some time limitation? */
    398  1.20  drochner #ifdef DEBUG
    399  1.20  drochner 			printf("pglistalloc waiting\n");
    400  1.20  drochner #endif
    401  1.20  drochner 			uvm_wait("pglalloc");
    402  1.20  drochner 			goto again;
    403  1.20  drochner 		} else
    404  1.20  drochner 			uvm_pglistfree(rlist);
    405  1.20  drochner 	}
    406  1.24  drochner #ifdef PGALLOC_VERBOSE
    407  1.22  drochner 	if (!error)
    408  1.22  drochner 		printf("pgalloc: %lx..%lx\n",
    409  1.22  drochner 		       TAILQ_FIRST(rlist)->phys_addr,
    410  1.22  drochner 		       TAILQ_LAST(rlist, pglist)->phys_addr);
    411  1.22  drochner #endif
    412   1.3       mrg 	return (error);
    413  1.20  drochner }
    414  1.20  drochner 
    415  1.20  drochner int
    416  1.20  drochner uvm_pglistalloc(size, low, high, alignment, boundary, rlist, nsegs, waitok)
    417  1.20  drochner 	psize_t size;
    418  1.20  drochner 	paddr_t low, high, alignment, boundary;
    419  1.20  drochner 	struct pglist *rlist;
    420  1.20  drochner 	int nsegs, waitok;
    421  1.20  drochner {
    422  1.24  drochner 	int num, res;
    423  1.20  drochner 
    424  1.20  drochner 	KASSERT((alignment & (alignment - 1)) == 0);
    425  1.20  drochner 	KASSERT((boundary & (boundary - 1)) == 0);
    426  1.20  drochner 
    427  1.20  drochner 	/*
    428  1.20  drochner 	 * Our allocations are always page granularity, so our alignment
    429  1.20  drochner 	 * must be, too.
    430  1.20  drochner 	 */
    431  1.20  drochner 	if (alignment < PAGE_SIZE)
    432  1.20  drochner 		alignment = PAGE_SIZE;
    433  1.24  drochner 	if (boundary != 0 && boundary < size)
    434  1.24  drochner 		return (EINVAL);
    435  1.24  drochner 	num = atop(round_page(size));
    436  1.20  drochner 	low = roundup(low, alignment);
    437  1.21  drochner 
    438  1.21  drochner 	TAILQ_INIT(rlist);
    439  1.20  drochner 
    440  1.23     enami 	if ((nsegs < size >> PAGE_SHIFT) || (alignment != PAGE_SIZE) ||
    441  1.23     enami 	    (boundary != 0))
    442  1.24  drochner 		res = uvm_pglistalloc_contig(num, low, high, alignment,
    443  1.24  drochner 					     boundary, rlist);
    444  1.20  drochner 	else
    445  1.24  drochner 		res = uvm_pglistalloc_simple(num, low, high, rlist, waitok);
    446  1.20  drochner 
    447  1.20  drochner 	return (res);
    448   1.1       mrg }
    449   1.1       mrg 
    450   1.1       mrg /*
    451   1.1       mrg  * uvm_pglistfree: free a list of pages
    452   1.1       mrg  *
    453   1.1       mrg  * => pages should already be unmapped
    454   1.1       mrg  */
    455   1.1       mrg 
    456   1.3       mrg void
    457   1.3       mrg uvm_pglistfree(list)
    458   1.3       mrg 	struct pglist *list;
    459   1.1       mrg {
    460  1.18       chs 	struct vm_page *pg;
    461   1.3       mrg 	int s;
    462   1.1       mrg 
    463   1.3       mrg 	/*
    464  1.18       chs 	 * Lock the free list and free each page.
    465   1.3       mrg 	 */
    466  1.18       chs 
    467   1.7   thorpej 	s = uvm_lock_fpageq();
    468  1.18       chs 	while ((pg = TAILQ_FIRST(list)) != NULL) {
    469  1.18       chs 		KASSERT((pg->pqflags & (PQ_ACTIVE|PQ_INACTIVE)) == 0);
    470  1.18       chs 		TAILQ_REMOVE(list, pg, pageq);
    471  1.18       chs 		pg->pqflags = PQ_FREE;
    472  1.18       chs 		TAILQ_INSERT_TAIL(&uvm.page_free[uvm_page_lookup_freelist(pg)].
    473  1.18       chs 		    pgfl_buckets[VM_PGCOLOR_BUCKET(pg)].
    474  1.18       chs 		    pgfl_queues[PGFL_UNKNOWN], pg, pageq);
    475   1.3       mrg 		uvmexp.free++;
    476   1.9   thorpej 		if (uvmexp.zeropages < UVM_PAGEZERO_TARGET)
    477   1.9   thorpej 			uvm.page_idle_zero = vm_page_zero_enable;
    478   1.3       mrg 		STAT_DECR(uvm_pglistalloc_npages);
    479   1.3       mrg 	}
    480   1.7   thorpej 	uvm_unlock_fpageq(s);
    481   1.1       mrg }
    482