Home | History | Annotate | Line # | Download | only in uvm
uvm_pglist.c revision 1.52.2.1
      1  1.52.2.1    bouyer /*	$NetBSD: uvm_pglist.c,v 1.52.2.1 2011/02/08 16:20:07 bouyer Exp $	*/
      2      1.45    nonaka 
      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.15       chs  *
     20       1.1       mrg  * THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
     21       1.1       mrg  * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
     22       1.1       mrg  * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
     23       1.1       mrg  * PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
     24       1.1       mrg  * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
     25       1.1       mrg  * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
     26       1.1       mrg  * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
     27       1.1       mrg  * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
     28       1.1       mrg  * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
     29       1.1       mrg  * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
     30       1.1       mrg  * POSSIBILITY OF SUCH DAMAGE.
     31       1.1       mrg  */
     32       1.1       mrg 
     33       1.1       mrg /*
     34       1.1       mrg  * uvm_pglist.c: pglist functions
     35       1.1       mrg  */
     36      1.19     lukem 
     37      1.19     lukem #include <sys/cdefs.h>
     38  1.52.2.1    bouyer __KERNEL_RCSID(0, "$NetBSD: uvm_pglist.c,v 1.52.2.1 2011/02/08 16:20:07 bouyer Exp $");
     39       1.1       mrg 
     40       1.1       mrg #include <sys/param.h>
     41       1.1       mrg #include <sys/systm.h>
     42       1.1       mrg #include <sys/malloc.h>
     43       1.1       mrg #include <sys/proc.h>
     44       1.1       mrg 
     45       1.1       mrg #include <uvm/uvm.h>
     46      1.36      yamt #include <uvm/uvm_pdpolicy.h>
     47       1.1       mrg 
     48       1.1       mrg #ifdef VM_PAGE_ALLOC_MEMORY_STATS
     49       1.1       mrg #define	STAT_INCR(v)	(v)++
     50       1.1       mrg #define	STAT_DECR(v)	do { \
     51       1.1       mrg 		if ((v) == 0) \
     52       1.1       mrg 			printf("%s:%d -- Already 0!\n", __FILE__, __LINE__); \
     53       1.1       mrg 		else \
     54       1.1       mrg 			(v)--; \
     55      1.25     perry 	} while (/*CONSTCOND*/ 0)
     56       1.1       mrg u_long	uvm_pglistalloc_npages;
     57       1.1       mrg #else
     58       1.1       mrg #define	STAT_INCR(v)
     59       1.1       mrg #define	STAT_DECR(v)
     60       1.1       mrg #endif
     61       1.1       mrg 
     62       1.1       mrg /*
     63       1.1       mrg  * uvm_pglistalloc: allocate a list of pages
     64       1.1       mrg  *
     65      1.27  drochner  * => allocated pages are placed onto an rlist.  rlist is
     66      1.27  drochner  *    initialized by uvm_pglistalloc.
     67       1.1       mrg  * => returns 0 on success or errno on failure
     68      1.27  drochner  * => implementation allocates a single segment if any constraints are
     69      1.27  drochner  *	imposed by call arguments.
     70       1.1       mrg  * => doesn't take into account clean non-busy pages on inactive list
     71       1.1       mrg  *	that could be used(?)
     72       1.1       mrg  * => params:
     73       1.1       mrg  *	size		the size of the allocation, rounded to page size.
     74       1.1       mrg  *	low		the low address of the allowed allocation range.
     75       1.1       mrg  *	high		the high address of the allowed allocation range.
     76       1.1       mrg  *	alignment	memory must be aligned to this power-of-two boundary.
     77      1.15       chs  *	boundary	no segment in the allocation may cross this
     78       1.1       mrg  *			power-of-two boundary (relative to zero).
     79       1.1       mrg  */
     80       1.1       mrg 
     81      1.20  drochner static void
     82      1.33   thorpej uvm_pglist_add(struct vm_page *pg, struct pglist *rlist)
     83      1.20  drochner {
     84      1.20  drochner 	int free_list, color, pgflidx;
     85      1.20  drochner 
     86      1.39        ad 	KASSERT(mutex_owned(&uvm_fpageqlock));
     87      1.39        ad 
     88      1.20  drochner #if PGFL_NQUEUES != 2
     89      1.20  drochner #error uvm_pglistalloc needs to be updated
     90      1.20  drochner #endif
     91      1.20  drochner 
     92      1.20  drochner 	free_list = uvm_page_lookup_freelist(pg);
     93      1.20  drochner 	color = VM_PGCOLOR_BUCKET(pg);
     94      1.20  drochner 	pgflidx = (pg->flags & PG_ZERO) ? PGFL_ZEROS : PGFL_UNKNOWN;
     95      1.46       mrg #ifdef NOT_DEBUG
     96      1.52      matt 	struct vm_page *tp;
     97      1.52      matt 	LIST_FOREACH(tp,
     98      1.52      matt 	    &uvm.page_free[free_list].pgfl_buckets[color].pgfl_queues[pgflidx],
     99      1.52      matt 	    pageq.list) {
    100      1.20  drochner 		if (tp == pg)
    101      1.20  drochner 			break;
    102      1.20  drochner 	}
    103      1.20  drochner 	if (tp == NULL)
    104      1.20  drochner 		panic("uvm_pglistalloc: page not on freelist");
    105      1.20  drochner #endif
    106      1.42        ad 	LIST_REMOVE(pg, pageq.list);	/* global */
    107      1.42        ad 	LIST_REMOVE(pg, listq.list);	/* cpu */
    108      1.20  drochner 	uvmexp.free--;
    109      1.20  drochner 	if (pg->flags & PG_ZERO)
    110      1.20  drochner 		uvmexp.zeropages--;
    111      1.42        ad 	VM_FREE_PAGE_TO_CPU(pg)->pages[pgflidx]--;
    112      1.20  drochner 	pg->flags = PG_CLEAN;
    113      1.20  drochner 	pg->pqflags = 0;
    114      1.20  drochner 	pg->uobject = NULL;
    115      1.20  drochner 	pg->uanon = NULL;
    116      1.42        ad 	TAILQ_INSERT_TAIL(rlist, pg, pageq.queue);
    117      1.20  drochner 	STAT_INCR(uvm_pglistalloc_npages);
    118      1.20  drochner }
    119      1.20  drochner 
    120      1.20  drochner static int
    121      1.33   thorpej uvm_pglistalloc_c_ps(struct vm_physseg *ps, int num, paddr_t low, paddr_t high,
    122      1.33   thorpej     paddr_t alignment, paddr_t boundary, struct pglist *rlist)
    123       1.1       mrg {
    124      1.52      matt 	signed int try, limit, tryidx, end, idx, skip;
    125      1.20  drochner 	struct vm_page *pgs;
    126      1.24  drochner 	int pagemask;
    127      1.52      matt 	bool second_pass;
    128      1.24  drochner #ifdef DEBUG
    129      1.22  drochner 	paddr_t idxpa, lastidxpa;
    130      1.35  christos 	int cidx = 0;	/* XXX: GCC */
    131      1.22  drochner #endif
    132      1.24  drochner #ifdef PGALLOC_VERBOSE
    133  1.52.2.1    bouyer 	printf("pgalloc: contig %d pgs from psi %zd\n", num, ps - vm_physmem);
    134      1.24  drochner #endif
    135       1.1       mrg 
    136      1.39        ad 	KASSERT(mutex_owned(&uvm_fpageqlock));
    137      1.39        ad 
    138      1.52      matt 	low = atop(low);
    139      1.52      matt 	high = atop(high);
    140      1.52      matt 	alignment = atop(alignment);
    141      1.52      matt 
    142      1.52      matt 	/*
    143  1.52.2.1    bouyer 	 * Make sure that physseg falls within with range to be allocated from.
    144  1.52.2.1    bouyer 	 */
    145  1.52.2.1    bouyer 	if (high <= ps->avail_start || low >= ps->avail_end)
    146  1.52.2.1    bouyer 		return 0;
    147  1.52.2.1    bouyer 
    148  1.52.2.1    bouyer 	/*
    149      1.52      matt 	 * We start our search at the just after where the last allocation
    150      1.52      matt 	 * succeeded.
    151      1.52      matt 	 */
    152      1.52      matt 	try = roundup2(max(low, ps->avail_start + ps->start_hint), alignment);
    153      1.52      matt 	limit = min(high, ps->avail_end);
    154      1.24  drochner 	pagemask = ~((boundary >> PAGE_SHIFT) - 1);
    155      1.52      matt 	skip = 0;
    156      1.52      matt 	second_pass = false;
    157      1.52      matt 	pgs = ps->pgs;
    158      1.12       chs 
    159      1.24  drochner 	for (;;) {
    160      1.52      matt 		bool ok = true;
    161      1.52      matt 		signed int cnt;
    162      1.52      matt 
    163      1.24  drochner 		if (try + num > limit) {
    164      1.52      matt 			if (ps->start_hint == 0 || second_pass) {
    165      1.52      matt 				/*
    166      1.52      matt 				 * We've run past the allowable range.
    167      1.52      matt 				 */
    168      1.52      matt 				return 0; /* FAIL = 0 pages*/
    169      1.52      matt 			}
    170       1.3       mrg 			/*
    171      1.52      matt 			 * We've wrapped around the end of this segment
    172      1.52      matt 			 * so restart at the beginning but now our limit
    173      1.52      matt 			 * is were we started.
    174       1.3       mrg 			 */
    175      1.52      matt 			second_pass = true;
    176      1.52      matt 			try = roundup2(max(low, ps->avail_start), alignment);
    177  1.52.2.1    bouyer 			limit = min(limit, ps->avail_start + ps->start_hint);
    178      1.52      matt 			skip = 0;
    179      1.52      matt 			continue;
    180       1.3       mrg 		}
    181      1.24  drochner 		if (boundary != 0 &&
    182      1.24  drochner 		    ((try ^ (try + num - 1)) & pagemask) != 0) {
    183      1.24  drochner 			/*
    184      1.24  drochner 			 * Region crosses boundary. Jump to the boundary
    185      1.24  drochner 			 * just crossed and ensure alignment.
    186      1.24  drochner 			 */
    187      1.24  drochner 			try = (try + num - 1) & pagemask;
    188      1.52      matt 			try = roundup2(try, alignment);
    189      1.52      matt 			skip = 0;
    190      1.24  drochner 			continue;
    191      1.24  drochner 		}
    192      1.22  drochner #ifdef DEBUG
    193       1.3       mrg 		/*
    194       1.3       mrg 		 * Make sure this is a managed physical page.
    195       1.3       mrg 		 */
    196       1.3       mrg 
    197      1.51  uebayasi 		if (vm_physseg_find(try, &cidx) != ps - vm_physmem)
    198      1.22  drochner 			panic("pgalloc contig: botch1");
    199      1.24  drochner 		if (cidx != try - ps->start)
    200      1.22  drochner 			panic("pgalloc contig: botch2");
    201      1.51  uebayasi 		if (vm_physseg_find(try + num - 1, &cidx) != ps - vm_physmem)
    202      1.22  drochner 			panic("pgalloc contig: botch3");
    203      1.24  drochner 		if (cidx != try - ps->start + num - 1)
    204      1.31  junyoung 			panic("pgalloc contig: botch4");
    205      1.22  drochner #endif
    206      1.24  drochner 		tryidx = try - ps->start;
    207      1.24  drochner 		end = tryidx + num;
    208       1.3       mrg 
    209       1.3       mrg 		/*
    210      1.24  drochner 		 * Found a suitable starting page.  See if the range is free.
    211       1.3       mrg 		 */
    212      1.52      matt #ifdef PGALLOC_VERBOSE
    213  1.52.2.1    bouyer 		printf("%s: ps=%p try=%#x end=%#x skip=%#x, align=%#"PRIxPADDR,
    214      1.52      matt 		    __func__, ps, tryidx, end, skip, alignment);
    215      1.52      matt #endif
    216      1.52      matt 		/*
    217      1.52      matt 		 * We start at the end and work backwards since if we find a
    218      1.52      matt 		 * non-free page, it makes no sense to continue.
    219      1.52      matt 		 *
    220      1.52      matt 		 * But on the plus size we have "vetted" some number of free
    221      1.52      matt 		 * pages.  If this iteration fails, we may be able to skip
    222      1.52      matt 		 * testing most of those pages again in the next pass.
    223      1.52      matt 		 */
    224      1.52      matt 		for (idx = end - 1; idx >= tryidx + skip; idx--) {
    225      1.52      matt 			if (VM_PAGE_IS_FREE(&pgs[idx]) == 0) {
    226      1.52      matt 				ok = false;
    227       1.3       mrg 				break;
    228      1.52      matt 			}
    229      1.24  drochner 
    230      1.24  drochner #ifdef DEBUG
    231       1.3       mrg 			if (idx > tryidx) {
    232      1.52      matt 				idxpa = VM_PAGE_TO_PHYS(&pgs[idx]);
    233       1.3       mrg 				lastidxpa = VM_PAGE_TO_PHYS(&pgs[idx - 1]);
    234      1.12       chs 				if ((lastidxpa + PAGE_SIZE) != idxpa) {
    235       1.3       mrg 					/*
    236       1.3       mrg 					 * Region not contiguous.
    237       1.3       mrg 					 */
    238      1.22  drochner 					panic("pgalloc contig: botch5");
    239       1.3       mrg 				}
    240       1.3       mrg 				if (boundary != 0 &&
    241      1.24  drochner 				    ((lastidxpa ^ idxpa) & ~(boundary - 1))
    242      1.24  drochner 				    != 0) {
    243       1.3       mrg 					/*
    244       1.3       mrg 					 * Region crosses boundary.
    245       1.3       mrg 					 */
    246      1.24  drochner 					panic("pgalloc contig: botch6");
    247       1.3       mrg 				}
    248       1.3       mrg 			}
    249      1.24  drochner #endif
    250       1.3       mrg 		}
    251      1.52      matt 
    252      1.52      matt 		if (ok) {
    253      1.52      matt 			while (skip-- > 0) {
    254      1.52      matt 				KDASSERT(VM_PAGE_IS_FREE(&pgs[tryidx + skip]));
    255      1.52      matt 			}
    256      1.52      matt #ifdef PGALLOC_VERBOSE
    257      1.52      matt 			printf(": ok\n");
    258      1.52      matt #endif
    259       1.3       mrg 			break;
    260      1.52      matt 		}
    261      1.24  drochner 
    262      1.52      matt #ifdef PGALLOC_VERBOSE
    263      1.52      matt 		printf(": non-free at %#x\n", idx - tryidx);
    264      1.52      matt #endif
    265      1.52      matt 		/*
    266      1.52      matt 		 * count the number of pages we can advance
    267      1.52      matt 		 * since we know they aren't all free.
    268      1.52      matt 		 */
    269      1.52      matt 		cnt = idx + 1 - tryidx;
    270      1.52      matt 		/*
    271      1.52      matt 		 * now round up that to the needed alignment.
    272      1.52      matt 		 */
    273      1.52      matt 		cnt = roundup2(cnt, alignment);
    274      1.52      matt 		/*
    275      1.52      matt 		 * The number of pages we can skip checking
    276      1.52      matt 		 * (might be 0 if cnt > num).
    277      1.52      matt 		 */
    278      1.52      matt 		skip = max(num - cnt, 0);
    279      1.52      matt 		try += cnt;
    280       1.1       mrg 	}
    281       1.1       mrg 
    282       1.3       mrg 	/*
    283       1.3       mrg 	 * we have a chunk of memory that conforms to the requested constraints.
    284       1.3       mrg 	 */
    285      1.52      matt 	for (idx = tryidx, pgs += idx; idx < end; idx++, pgs++)
    286      1.52      matt 		uvm_pglist_add(pgs, rlist);
    287      1.52      matt 
    288      1.52      matt 	/*
    289      1.52      matt 	 * the next time we need to search this segment, start after this
    290      1.52      matt 	 * chunk of pages we just allocated.
    291      1.52      matt 	 */
    292  1.52.2.1    bouyer 	ps->start_hint = try + num - ps->avail_start;
    293  1.52.2.1    bouyer 	KASSERTMSG(ps->start_hint <= ps->avail_end - ps->avail_start,
    294  1.52.2.1    bouyer 	    ("%x %u (%#x) <= %#"PRIxPADDR" - %#"PRIxPADDR" (%#"PRIxPADDR")",
    295  1.52.2.1    bouyer 	    try + num,
    296  1.52.2.1    bouyer 	    ps->start_hint, ps->start_hint, ps->avail_end, ps->avail_start,
    297  1.52.2.1    bouyer 	    ps->avail_end - ps->avail_start));
    298      1.24  drochner 
    299      1.24  drochner #ifdef PGALLOC_VERBOSE
    300      1.24  drochner 	printf("got %d pgs\n", num);
    301      1.24  drochner #endif
    302      1.52      matt 	return num; /* number of pages allocated */
    303      1.22  drochner }
    304      1.22  drochner 
    305      1.22  drochner static int
    306      1.33   thorpej uvm_pglistalloc_contig(int num, paddr_t low, paddr_t high, paddr_t alignment,
    307      1.33   thorpej     paddr_t boundary, struct pglist *rlist)
    308      1.22  drochner {
    309      1.22  drochner 	int fl, psi;
    310      1.24  drochner 	struct vm_physseg *ps;
    311      1.38        ad 	int error;
    312      1.22  drochner 
    313      1.22  drochner 	/* Default to "lose". */
    314      1.22  drochner 	error = ENOMEM;
    315      1.22  drochner 
    316      1.22  drochner 	/*
    317      1.22  drochner 	 * Block all memory allocation and lock the free list.
    318      1.22  drochner 	 */
    319      1.38        ad 	mutex_spin_enter(&uvm_fpageqlock);
    320      1.22  drochner 
    321      1.22  drochner 	/* Are there even any free pages? */
    322      1.22  drochner 	if (uvmexp.free <= (uvmexp.reserve_pagedaemon + uvmexp.reserve_kernel))
    323      1.22  drochner 		goto out;
    324      1.22  drochner 
    325      1.22  drochner 	for (fl = 0; fl < VM_NFREELIST; fl++) {
    326      1.22  drochner #if (VM_PHYSSEG_STRAT == VM_PSTRAT_BIGFIRST)
    327      1.51  uebayasi 		for (psi = vm_nphysseg - 1 ; psi >= 0 ; psi--)
    328      1.22  drochner #else
    329      1.51  uebayasi 		for (psi = 0 ; psi < vm_nphysseg ; psi++)
    330      1.22  drochner #endif
    331      1.22  drochner 		{
    332      1.51  uebayasi 			ps = &vm_physmem[psi];
    333      1.24  drochner 
    334      1.24  drochner 			if (ps->free_list != fl)
    335      1.22  drochner 				continue;
    336      1.22  drochner 
    337      1.24  drochner 			num -= uvm_pglistalloc_c_ps(ps, num, low, high,
    338      1.24  drochner 						    alignment, boundary, rlist);
    339      1.24  drochner 			if (num == 0) {
    340      1.24  drochner #ifdef PGALLOC_VERBOSE
    341      1.44   reinoud 				printf("pgalloc: %"PRIxMAX"-%"PRIxMAX"\n",
    342      1.44   reinoud 				       (uintmax_t) VM_PAGE_TO_PHYS(TAILQ_FIRST(rlist)),
    343      1.44   reinoud 				       (uintmax_t) VM_PAGE_TO_PHYS(TAILQ_LAST(rlist, pglist)));
    344      1.22  drochner #endif
    345      1.22  drochner 				error = 0;
    346      1.22  drochner 				goto out;
    347      1.22  drochner 			}
    348      1.22  drochner 		}
    349      1.22  drochner 	}
    350      1.20  drochner 
    351      1.20  drochner out:
    352      1.20  drochner 	/*
    353      1.20  drochner 	 * check to see if we need to generate some free pages waking
    354      1.20  drochner 	 * the pagedaemon.
    355      1.20  drochner 	 */
    356      1.20  drochner 
    357      1.36      yamt 	uvm_kick_pdaemon();
    358      1.38        ad 	mutex_spin_exit(&uvm_fpageqlock);
    359      1.20  drochner 	return (error);
    360      1.20  drochner }
    361      1.20  drochner 
    362      1.24  drochner static int
    363      1.33   thorpej uvm_pglistalloc_s_ps(struct vm_physseg *ps, int num, paddr_t low, paddr_t high,
    364      1.33   thorpej     struct pglist *rlist)
    365      1.22  drochner {
    366      1.24  drochner 	int todo, limit, try;
    367      1.22  drochner 	struct vm_page *pg;
    368      1.52      matt 	bool second_pass;
    369      1.24  drochner #ifdef PGALLOC_VERBOSE
    370  1.52.2.1    bouyer 	printf("pgalloc: simple %d pgs from psi %zd\n", num, ps - vm_physmem);
    371      1.24  drochner #endif
    372      1.22  drochner 
    373      1.39        ad 	KASSERT(mutex_owned(&uvm_fpageqlock));
    374  1.52.2.1    bouyer 	KASSERT(ps->start <= ps->avail_start);
    375  1.52.2.1    bouyer 	KASSERT(ps->start <= ps->avail_end);
    376  1.52.2.1    bouyer 	KASSERT(ps->avail_start <= ps->end);
    377  1.52.2.1    bouyer 	KASSERT(ps->avail_end <= ps->end);
    378      1.39        ad 
    379      1.52      matt 	low = atop(low);
    380      1.52      matt 	high = atop(high);
    381      1.24  drochner 	todo = num;
    382      1.52      matt 	try = max(low, ps->avail_start + ps->start_hint);
    383      1.52      matt 	limit = min(high, ps->avail_end);
    384      1.52      matt 	pg = &ps->pgs[try - ps->start];
    385      1.52      matt 	second_pass = false;
    386      1.52      matt 
    387  1.52.2.1    bouyer 	/*
    388  1.52.2.1    bouyer 	 * Make sure that physseg falls within with range to be allocated from.
    389  1.52.2.1    bouyer 	 */
    390  1.52.2.1    bouyer 	if (high <= ps->avail_start || low >= ps->avail_end)
    391  1.52.2.1    bouyer 		return 0;
    392  1.52.2.1    bouyer 
    393  1.52.2.1    bouyer again:
    394      1.52      matt 	for (;; try++, pg++) {
    395      1.52      matt 		if (try >= limit) {
    396  1.52.2.1    bouyer 			if (ps->start_hint == 0 || second_pass) {
    397  1.52.2.1    bouyer 				try = limit - 1;
    398      1.52      matt 				break;
    399  1.52.2.1    bouyer 			}
    400      1.52      matt 			second_pass = true;
    401      1.52      matt 			try = max(low, ps->avail_start);
    402  1.52.2.1    bouyer 			limit = min(limit, ps->avail_start + ps->start_hint);
    403      1.52      matt 			pg = &ps->pgs[try - ps->start];
    404  1.52.2.1    bouyer 			goto again;
    405  1.52.2.1    bouyer 		}
    406  1.52.2.1    bouyer #if defined(DEBUG)
    407  1.52.2.1    bouyer 		{
    408  1.52.2.1    bouyer 			int cidx = 0;
    409  1.52.2.1    bouyer 			const int bank = vm_physseg_find(try, &cidx);
    410  1.52.2.1    bouyer 			KDASSERTMSG(bank == ps - vm_physmem,
    411  1.52.2.1    bouyer 			    ("vm_physseg_find(%#x) (%d) != ps %zd",
    412  1.52.2.1    bouyer 			     try, bank, ps - vm_physmem));
    413  1.52.2.1    bouyer 			KDASSERTMSG(cidx == try - ps->start,
    414  1.52.2.1    bouyer 			    ("vm_physseg_find(%#x): %#x != off %"PRIxPADDR,
    415  1.52.2.1    bouyer 			     try, cidx, try - ps->start));
    416      1.52      matt 		}
    417      1.22  drochner #endif
    418      1.22  drochner 		if (VM_PAGE_IS_FREE(pg) == 0)
    419      1.22  drochner 			continue;
    420      1.22  drochner 
    421      1.22  drochner 		uvm_pglist_add(pg, rlist);
    422      1.52      matt 		if (--todo == 0) {
    423      1.22  drochner 			break;
    424      1.52      matt 		}
    425      1.22  drochner 	}
    426      1.24  drochner 
    427      1.52      matt 	/*
    428      1.52      matt 	 * The next time we need to search this segment,
    429      1.52      matt 	 * start just after the pages we just allocated.
    430      1.52      matt 	 */
    431  1.52.2.1    bouyer 	ps->start_hint = try + 1 - ps->avail_start;
    432  1.52.2.1    bouyer 	KASSERTMSG(ps->start_hint <= ps->avail_end - ps->avail_start,
    433  1.52.2.1    bouyer 	    ("%#x %u (%#x) <= %#"PRIxPADDR" - %#"PRIxPADDR" (%#"PRIxPADDR")",
    434  1.52.2.1    bouyer 	    try + 1,
    435  1.52.2.1    bouyer 	    ps->start_hint, ps->start_hint, ps->avail_end, ps->avail_start,
    436  1.52.2.1    bouyer 	    ps->avail_end - ps->avail_start));
    437      1.52      matt 
    438      1.24  drochner #ifdef PGALLOC_VERBOSE
    439      1.24  drochner 	printf("got %d pgs\n", num - todo);
    440      1.24  drochner #endif
    441      1.24  drochner 	return (num - todo); /* number of pages allocated */
    442      1.22  drochner }
    443      1.22  drochner 
    444      1.20  drochner static int
    445      1.33   thorpej uvm_pglistalloc_simple(int num, paddr_t low, paddr_t high,
    446      1.33   thorpej     struct pglist *rlist, int waitok)
    447      1.20  drochner {
    448      1.38        ad 	int fl, psi, error;
    449      1.24  drochner 	struct vm_physseg *ps;
    450      1.20  drochner 
    451      1.20  drochner 	/* Default to "lose". */
    452      1.20  drochner 	error = ENOMEM;
    453      1.20  drochner 
    454      1.20  drochner again:
    455      1.20  drochner 	/*
    456      1.20  drochner 	 * Block all memory allocation and lock the free list.
    457      1.20  drochner 	 */
    458      1.38        ad 	mutex_spin_enter(&uvm_fpageqlock);
    459      1.20  drochner 
    460      1.20  drochner 	/* Are there even any free pages? */
    461      1.20  drochner 	if (uvmexp.free <= (uvmexp.reserve_pagedaemon + uvmexp.reserve_kernel))
    462      1.20  drochner 		goto out;
    463      1.20  drochner 
    464      1.22  drochner 	for (fl = 0; fl < VM_NFREELIST; fl++) {
    465      1.22  drochner #if (VM_PHYSSEG_STRAT == VM_PSTRAT_BIGFIRST)
    466      1.51  uebayasi 		for (psi = vm_nphysseg - 1 ; psi >= 0 ; psi--)
    467      1.22  drochner #else
    468      1.51  uebayasi 		for (psi = 0 ; psi < vm_nphysseg ; psi++)
    469      1.22  drochner #endif
    470      1.22  drochner 		{
    471      1.51  uebayasi 			ps = &vm_physmem[psi];
    472      1.24  drochner 
    473      1.24  drochner 			if (ps->free_list != fl)
    474      1.22  drochner 				continue;
    475      1.22  drochner 
    476      1.24  drochner 			num -= uvm_pglistalloc_s_ps(ps, num, low, high, rlist);
    477      1.24  drochner 			if (num == 0) {
    478      1.22  drochner 				error = 0;
    479      1.22  drochner 				goto out;
    480      1.22  drochner 			}
    481      1.22  drochner 		}
    482      1.20  drochner 
    483       1.3       mrg 	}
    484       1.1       mrg 
    485       1.1       mrg out:
    486       1.3       mrg 	/*
    487       1.3       mrg 	 * check to see if we need to generate some free pages waking
    488       1.3       mrg 	 * the pagedaemon.
    489       1.3       mrg 	 */
    490      1.15       chs 
    491      1.36      yamt 	uvm_kick_pdaemon();
    492      1.38        ad 	mutex_spin_exit(&uvm_fpageqlock);
    493      1.38        ad 
    494      1.20  drochner 	if (error) {
    495      1.20  drochner 		if (waitok) {
    496      1.20  drochner 			/* XXX perhaps some time limitation? */
    497      1.20  drochner #ifdef DEBUG
    498      1.20  drochner 			printf("pglistalloc waiting\n");
    499      1.20  drochner #endif
    500      1.20  drochner 			uvm_wait("pglalloc");
    501      1.20  drochner 			goto again;
    502      1.20  drochner 		} else
    503      1.20  drochner 			uvm_pglistfree(rlist);
    504      1.20  drochner 	}
    505      1.24  drochner #ifdef PGALLOC_VERBOSE
    506      1.22  drochner 	if (!error)
    507      1.44   reinoud 		printf("pgalloc: %"PRIxMAX"..%"PRIxMAX"\n",
    508      1.44   reinoud 		       (uintmax_t) VM_PAGE_TO_PHYS(TAILQ_FIRST(rlist)),
    509      1.44   reinoud 		       (uintmax_t) VM_PAGE_TO_PHYS(TAILQ_LAST(rlist, pglist)));
    510      1.22  drochner #endif
    511       1.3       mrg 	return (error);
    512      1.20  drochner }
    513      1.20  drochner 
    514      1.20  drochner int
    515      1.33   thorpej uvm_pglistalloc(psize_t size, paddr_t low, paddr_t high, paddr_t alignment,
    516      1.33   thorpej     paddr_t boundary, struct pglist *rlist, int nsegs, int waitok)
    517      1.20  drochner {
    518      1.24  drochner 	int num, res;
    519      1.20  drochner 
    520      1.20  drochner 	KASSERT((alignment & (alignment - 1)) == 0);
    521      1.20  drochner 	KASSERT((boundary & (boundary - 1)) == 0);
    522      1.20  drochner 
    523      1.20  drochner 	/*
    524      1.20  drochner 	 * Our allocations are always page granularity, so our alignment
    525      1.20  drochner 	 * must be, too.
    526      1.20  drochner 	 */
    527      1.20  drochner 	if (alignment < PAGE_SIZE)
    528      1.20  drochner 		alignment = PAGE_SIZE;
    529      1.24  drochner 	if (boundary != 0 && boundary < size)
    530      1.24  drochner 		return (EINVAL);
    531      1.24  drochner 	num = atop(round_page(size));
    532      1.52      matt 	low = roundup2(low, alignment);
    533      1.21  drochner 
    534      1.21  drochner 	TAILQ_INIT(rlist);
    535      1.20  drochner 
    536      1.23     enami 	if ((nsegs < size >> PAGE_SHIFT) || (alignment != PAGE_SIZE) ||
    537      1.23     enami 	    (boundary != 0))
    538      1.24  drochner 		res = uvm_pglistalloc_contig(num, low, high, alignment,
    539      1.24  drochner 					     boundary, rlist);
    540      1.20  drochner 	else
    541      1.24  drochner 		res = uvm_pglistalloc_simple(num, low, high, rlist, waitok);
    542      1.20  drochner 
    543      1.20  drochner 	return (res);
    544       1.1       mrg }
    545       1.1       mrg 
    546       1.1       mrg /*
    547       1.1       mrg  * uvm_pglistfree: free a list of pages
    548       1.1       mrg  *
    549       1.1       mrg  * => pages should already be unmapped
    550       1.1       mrg  */
    551       1.1       mrg 
    552       1.3       mrg void
    553      1.33   thorpej uvm_pglistfree(struct pglist *list)
    554       1.1       mrg {
    555      1.42        ad 	struct uvm_cpu *ucpu;
    556      1.18       chs 	struct vm_page *pg;
    557      1.42        ad 	int index, color, queue;
    558      1.42        ad 	bool iszero;
    559       1.1       mrg 
    560       1.3       mrg 	/*
    561      1.18       chs 	 * Lock the free list and free each page.
    562       1.3       mrg 	 */
    563      1.18       chs 
    564      1.38        ad 	mutex_spin_enter(&uvm_fpageqlock);
    565      1.42        ad 	ucpu = curcpu()->ci_data.cpu_uvm;
    566      1.18       chs 	while ((pg = TAILQ_FIRST(list)) != NULL) {
    567      1.36      yamt 		KASSERT(!uvmpdpol_pageisqueued_p(pg));
    568      1.42        ad 		TAILQ_REMOVE(list, pg, pageq.queue);
    569      1.29      yamt 		iszero = (pg->flags & PG_ZERO);
    570      1.18       chs 		pg->pqflags = PQ_FREE;
    571      1.29      yamt #ifdef DEBUG
    572      1.29      yamt 		pg->uobject = (void *)0xdeadbeef;
    573      1.29      yamt 		pg->uanon = (void *)0xdeadbeef;
    574      1.30      yamt #endif /* DEBUG */
    575      1.30      yamt #ifdef DEBUG
    576      1.30      yamt 		if (iszero)
    577      1.30      yamt 			uvm_pagezerocheck(pg);
    578      1.30      yamt #endif /* DEBUG */
    579      1.42        ad 		index = uvm_page_lookup_freelist(pg);
    580      1.42        ad 		color = VM_PGCOLOR_BUCKET(pg);
    581      1.42        ad 		queue = iszero ? PGFL_ZEROS : PGFL_UNKNOWN;
    582      1.42        ad 		pg->offset = (uintptr_t)ucpu;
    583      1.42        ad 		LIST_INSERT_HEAD(&uvm.page_free[index].pgfl_buckets[color].
    584      1.42        ad 		    pgfl_queues[queue], pg, pageq.list);
    585      1.42        ad 		LIST_INSERT_HEAD(&ucpu->page_free[index].pgfl_buckets[color].
    586      1.42        ad 		    pgfl_queues[queue], pg, listq.list);
    587       1.3       mrg 		uvmexp.free++;
    588      1.29      yamt 		if (iszero)
    589      1.29      yamt 			uvmexp.zeropages++;
    590      1.42        ad 		ucpu->pages[queue]++;
    591       1.3       mrg 		STAT_DECR(uvm_pglistalloc_npages);
    592       1.3       mrg 	}
    593      1.42        ad 	if (ucpu->pages[PGFL_ZEROS] < ucpu->pages[PGFL_UNKNOWN])
    594      1.42        ad 		ucpu->page_idle_zero = vm_page_zero_enable;
    595      1.38        ad 	mutex_spin_exit(&uvm_fpageqlock);
    596       1.1       mrg }
    597