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