uvm_pglist.c revision 1.39 1 1.39 ad /* $NetBSD: uvm_pglist.c,v 1.39 2008/02/27 14:24:24 ad 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.39 ad __KERNEL_RCSID(0, "$NetBSD: uvm_pglist.c,v 1.39 2008/02/27 14:24:24 ad 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.36 yamt #include <uvm/uvm_pdpolicy.h>
54 1.1 mrg
55 1.1 mrg #ifdef VM_PAGE_ALLOC_MEMORY_STATS
56 1.1 mrg #define STAT_INCR(v) (v)++
57 1.1 mrg #define STAT_DECR(v) do { \
58 1.1 mrg if ((v) == 0) \
59 1.1 mrg printf("%s:%d -- Already 0!\n", __FILE__, __LINE__); \
60 1.1 mrg else \
61 1.1 mrg (v)--; \
62 1.25 perry } while (/*CONSTCOND*/ 0)
63 1.1 mrg u_long uvm_pglistalloc_npages;
64 1.1 mrg #else
65 1.1 mrg #define STAT_INCR(v)
66 1.1 mrg #define STAT_DECR(v)
67 1.1 mrg #endif
68 1.1 mrg
69 1.1 mrg /*
70 1.1 mrg * uvm_pglistalloc: allocate a list of pages
71 1.1 mrg *
72 1.27 drochner * => allocated pages are placed onto an rlist. rlist is
73 1.27 drochner * initialized by uvm_pglistalloc.
74 1.1 mrg * => returns 0 on success or errno on failure
75 1.27 drochner * => implementation allocates a single segment if any constraints are
76 1.27 drochner * imposed by call arguments.
77 1.1 mrg * => doesn't take into account clean non-busy pages on inactive list
78 1.1 mrg * that could be used(?)
79 1.1 mrg * => params:
80 1.1 mrg * size the size of the allocation, rounded to page size.
81 1.1 mrg * low the low address of the allowed allocation range.
82 1.1 mrg * high the high address of the allowed allocation range.
83 1.1 mrg * alignment memory must be aligned to this power-of-two boundary.
84 1.15 chs * boundary no segment in the allocation may cross this
85 1.1 mrg * power-of-two boundary (relative to zero).
86 1.1 mrg */
87 1.1 mrg
88 1.20 drochner static void
89 1.33 thorpej uvm_pglist_add(struct vm_page *pg, struct pglist *rlist)
90 1.20 drochner {
91 1.20 drochner int free_list, color, pgflidx;
92 1.20 drochner #ifdef DEBUG
93 1.20 drochner struct vm_page *tp;
94 1.20 drochner #endif
95 1.20 drochner
96 1.39 ad KASSERT(mutex_owned(&uvm_fpageqlock));
97 1.39 ad
98 1.20 drochner #if PGFL_NQUEUES != 2
99 1.20 drochner #error uvm_pglistalloc needs to be updated
100 1.20 drochner #endif
101 1.20 drochner
102 1.20 drochner free_list = uvm_page_lookup_freelist(pg);
103 1.20 drochner color = VM_PGCOLOR_BUCKET(pg);
104 1.20 drochner pgflidx = (pg->flags & PG_ZERO) ? PGFL_ZEROS : PGFL_UNKNOWN;
105 1.20 drochner #ifdef DEBUG
106 1.20 drochner for (tp = TAILQ_FIRST(&uvm.page_free[
107 1.20 drochner free_list].pgfl_buckets[color].pgfl_queues[pgflidx]);
108 1.20 drochner tp != NULL;
109 1.20 drochner tp = TAILQ_NEXT(tp, pageq)) {
110 1.20 drochner if (tp == pg)
111 1.20 drochner break;
112 1.20 drochner }
113 1.20 drochner if (tp == NULL)
114 1.20 drochner panic("uvm_pglistalloc: page not on freelist");
115 1.20 drochner #endif
116 1.20 drochner TAILQ_REMOVE(&uvm.page_free[free_list].pgfl_buckets[
117 1.20 drochner color].pgfl_queues[pgflidx], pg, pageq);
118 1.20 drochner uvmexp.free--;
119 1.20 drochner if (pg->flags & PG_ZERO)
120 1.20 drochner uvmexp.zeropages--;
121 1.20 drochner pg->flags = PG_CLEAN;
122 1.20 drochner pg->pqflags = 0;
123 1.20 drochner pg->uobject = NULL;
124 1.20 drochner pg->uanon = NULL;
125 1.20 drochner TAILQ_INSERT_TAIL(rlist, pg, pageq);
126 1.20 drochner STAT_INCR(uvm_pglistalloc_npages);
127 1.20 drochner }
128 1.20 drochner
129 1.20 drochner static int
130 1.33 thorpej uvm_pglistalloc_c_ps(struct vm_physseg *ps, int num, paddr_t low, paddr_t high,
131 1.33 thorpej paddr_t alignment, paddr_t boundary, struct pglist *rlist)
132 1.1 mrg {
133 1.22 drochner int try, limit, tryidx, end, idx;
134 1.20 drochner struct vm_page *pgs;
135 1.24 drochner int pagemask;
136 1.24 drochner #ifdef DEBUG
137 1.22 drochner paddr_t idxpa, lastidxpa;
138 1.35 christos int cidx = 0; /* XXX: GCC */
139 1.22 drochner #endif
140 1.24 drochner #ifdef PGALLOC_VERBOSE
141 1.26 thorpej printf("pgalloc: contig %d pgs from psi %ld\n", num,
142 1.26 thorpej (long)(ps - vm_physmem));
143 1.24 drochner #endif
144 1.1 mrg
145 1.39 ad KASSERT(mutex_owned(&uvm_fpageqlock));
146 1.39 ad
147 1.24 drochner try = roundup(max(atop(low), ps->avail_start), atop(alignment));
148 1.24 drochner limit = min(atop(high), ps->avail_end);
149 1.24 drochner pagemask = ~((boundary >> PAGE_SHIFT) - 1);
150 1.12 chs
151 1.24 drochner for (;;) {
152 1.24 drochner if (try + num > limit) {
153 1.3 mrg /*
154 1.3 mrg * We've run past the allowable range.
155 1.3 mrg */
156 1.22 drochner return (0); /* FAIL */
157 1.3 mrg }
158 1.24 drochner if (boundary != 0 &&
159 1.24 drochner ((try ^ (try + num - 1)) & pagemask) != 0) {
160 1.24 drochner /*
161 1.24 drochner * Region crosses boundary. Jump to the boundary
162 1.24 drochner * just crossed and ensure alignment.
163 1.24 drochner */
164 1.24 drochner try = (try + num - 1) & pagemask;
165 1.24 drochner try = roundup(try, atop(alignment));
166 1.24 drochner continue;
167 1.24 drochner }
168 1.22 drochner #ifdef DEBUG
169 1.3 mrg /*
170 1.3 mrg * Make sure this is a managed physical page.
171 1.3 mrg */
172 1.3 mrg
173 1.24 drochner if (vm_physseg_find(try, &cidx) != ps - vm_physmem)
174 1.22 drochner panic("pgalloc contig: botch1");
175 1.24 drochner if (cidx != try - ps->start)
176 1.22 drochner panic("pgalloc contig: botch2");
177 1.24 drochner if (vm_physseg_find(try + num - 1, &cidx) != ps - vm_physmem)
178 1.22 drochner panic("pgalloc contig: botch3");
179 1.24 drochner if (cidx != try - ps->start + num - 1)
180 1.31 junyoung panic("pgalloc contig: botch4");
181 1.22 drochner #endif
182 1.24 drochner tryidx = try - ps->start;
183 1.24 drochner end = tryidx + num;
184 1.24 drochner pgs = ps->pgs;
185 1.3 mrg
186 1.3 mrg /*
187 1.24 drochner * Found a suitable starting page. See if the range is free.
188 1.3 mrg */
189 1.22 drochner for (idx = tryidx; idx < end; idx++) {
190 1.24 drochner if (VM_PAGE_IS_FREE(&pgs[idx]) == 0)
191 1.3 mrg break;
192 1.24 drochner
193 1.24 drochner #ifdef DEBUG
194 1.3 mrg idxpa = VM_PAGE_TO_PHYS(&pgs[idx]);
195 1.3 mrg if (idx > tryidx) {
196 1.3 mrg lastidxpa = VM_PAGE_TO_PHYS(&pgs[idx - 1]);
197 1.12 chs if ((lastidxpa + PAGE_SIZE) != idxpa) {
198 1.3 mrg /*
199 1.3 mrg * Region not contiguous.
200 1.3 mrg */
201 1.22 drochner panic("pgalloc contig: botch5");
202 1.3 mrg }
203 1.3 mrg if (boundary != 0 &&
204 1.24 drochner ((lastidxpa ^ idxpa) & ~(boundary - 1))
205 1.24 drochner != 0) {
206 1.3 mrg /*
207 1.3 mrg * Region crosses boundary.
208 1.3 mrg */
209 1.24 drochner panic("pgalloc contig: botch6");
210 1.3 mrg }
211 1.3 mrg }
212 1.24 drochner #endif
213 1.3 mrg }
214 1.24 drochner if (idx == end)
215 1.3 mrg break;
216 1.24 drochner
217 1.24 drochner try += atop(alignment);
218 1.1 mrg }
219 1.1 mrg
220 1.3 mrg /*
221 1.3 mrg * we have a chunk of memory that conforms to the requested constraints.
222 1.3 mrg */
223 1.3 mrg idx = tryidx;
224 1.24 drochner while (idx < end)
225 1.20 drochner uvm_pglist_add(&pgs[idx++], rlist);
226 1.24 drochner
227 1.24 drochner #ifdef PGALLOC_VERBOSE
228 1.24 drochner printf("got %d pgs\n", num);
229 1.24 drochner #endif
230 1.24 drochner return (num); /* number of pages allocated */
231 1.22 drochner }
232 1.22 drochner
233 1.22 drochner static int
234 1.33 thorpej uvm_pglistalloc_contig(int num, paddr_t low, paddr_t high, paddr_t alignment,
235 1.33 thorpej paddr_t boundary, struct pglist *rlist)
236 1.22 drochner {
237 1.22 drochner int fl, psi;
238 1.24 drochner struct vm_physseg *ps;
239 1.38 ad int error;
240 1.22 drochner
241 1.22 drochner /* Default to "lose". */
242 1.22 drochner error = ENOMEM;
243 1.22 drochner
244 1.22 drochner /*
245 1.22 drochner * Block all memory allocation and lock the free list.
246 1.22 drochner */
247 1.38 ad mutex_spin_enter(&uvm_fpageqlock);
248 1.22 drochner
249 1.22 drochner /* Are there even any free pages? */
250 1.22 drochner if (uvmexp.free <= (uvmexp.reserve_pagedaemon + uvmexp.reserve_kernel))
251 1.22 drochner goto out;
252 1.22 drochner
253 1.22 drochner for (fl = 0; fl < VM_NFREELIST; fl++) {
254 1.22 drochner #if (VM_PHYSSEG_STRAT == VM_PSTRAT_BIGFIRST)
255 1.22 drochner for (psi = vm_nphysseg - 1 ; psi >= 0 ; psi--)
256 1.22 drochner #else
257 1.22 drochner for (psi = 0 ; psi < vm_nphysseg ; psi++)
258 1.22 drochner #endif
259 1.22 drochner {
260 1.24 drochner ps = &vm_physmem[psi];
261 1.24 drochner
262 1.24 drochner if (ps->free_list != fl)
263 1.22 drochner continue;
264 1.22 drochner
265 1.24 drochner num -= uvm_pglistalloc_c_ps(ps, num, low, high,
266 1.24 drochner alignment, boundary, rlist);
267 1.24 drochner if (num == 0) {
268 1.24 drochner #ifdef PGALLOC_VERBOSE
269 1.22 drochner printf("pgalloc: %lx-%lx\n",
270 1.28 yamt VM_PAGE_TO_PHYS(TAILQ_FIRST(rlist)),
271 1.28 yamt VM_PAGE_TO_PHYS(TAILQ_LAST(rlist)));
272 1.22 drochner #endif
273 1.22 drochner error = 0;
274 1.22 drochner goto out;
275 1.22 drochner }
276 1.22 drochner }
277 1.22 drochner }
278 1.20 drochner
279 1.20 drochner out:
280 1.20 drochner /*
281 1.20 drochner * check to see if we need to generate some free pages waking
282 1.20 drochner * the pagedaemon.
283 1.20 drochner */
284 1.20 drochner
285 1.36 yamt uvm_kick_pdaemon();
286 1.38 ad mutex_spin_exit(&uvm_fpageqlock);
287 1.20 drochner return (error);
288 1.20 drochner }
289 1.20 drochner
290 1.24 drochner static int
291 1.33 thorpej uvm_pglistalloc_s_ps(struct vm_physseg *ps, int num, paddr_t low, paddr_t high,
292 1.33 thorpej struct pglist *rlist)
293 1.22 drochner {
294 1.24 drochner int todo, limit, try;
295 1.22 drochner struct vm_page *pg;
296 1.22 drochner #ifdef DEBUG
297 1.35 christos int cidx = 0; /* XXX: GCC */
298 1.22 drochner #endif
299 1.24 drochner #ifdef PGALLOC_VERBOSE
300 1.26 thorpej printf("pgalloc: simple %d pgs from psi %ld\n", num,
301 1.26 thorpej (long)(ps - vm_physmem));
302 1.24 drochner #endif
303 1.22 drochner
304 1.39 ad KASSERT(mutex_owned(&uvm_fpageqlock));
305 1.39 ad
306 1.24 drochner todo = num;
307 1.24 drochner limit = min(atop(high), ps->avail_end);
308 1.22 drochner
309 1.24 drochner for (try = max(atop(low), ps->avail_start);
310 1.22 drochner try < limit; try ++) {
311 1.22 drochner #ifdef DEBUG
312 1.24 drochner if (vm_physseg_find(try, &cidx) != ps - vm_physmem)
313 1.22 drochner panic("pgalloc simple: botch1");
314 1.24 drochner if (cidx != (try - ps->start))
315 1.22 drochner panic("pgalloc simple: botch2");
316 1.22 drochner #endif
317 1.24 drochner pg = &ps->pgs[try - ps->start];
318 1.22 drochner if (VM_PAGE_IS_FREE(pg) == 0)
319 1.22 drochner continue;
320 1.22 drochner
321 1.22 drochner uvm_pglist_add(pg, rlist);
322 1.24 drochner if (--todo == 0)
323 1.22 drochner break;
324 1.22 drochner }
325 1.24 drochner
326 1.24 drochner #ifdef PGALLOC_VERBOSE
327 1.24 drochner printf("got %d pgs\n", num - todo);
328 1.24 drochner #endif
329 1.24 drochner return (num - todo); /* number of pages allocated */
330 1.22 drochner }
331 1.22 drochner
332 1.20 drochner static int
333 1.33 thorpej uvm_pglistalloc_simple(int num, paddr_t low, paddr_t high,
334 1.33 thorpej struct pglist *rlist, int waitok)
335 1.20 drochner {
336 1.38 ad int fl, psi, error;
337 1.24 drochner struct vm_physseg *ps;
338 1.20 drochner
339 1.20 drochner /* Default to "lose". */
340 1.20 drochner error = ENOMEM;
341 1.20 drochner
342 1.20 drochner again:
343 1.20 drochner /*
344 1.20 drochner * Block all memory allocation and lock the free list.
345 1.20 drochner */
346 1.38 ad mutex_spin_enter(&uvm_fpageqlock);
347 1.20 drochner
348 1.20 drochner /* Are there even any free pages? */
349 1.20 drochner if (uvmexp.free <= (uvmexp.reserve_pagedaemon + uvmexp.reserve_kernel))
350 1.20 drochner goto out;
351 1.20 drochner
352 1.22 drochner for (fl = 0; fl < VM_NFREELIST; fl++) {
353 1.22 drochner #if (VM_PHYSSEG_STRAT == VM_PSTRAT_BIGFIRST)
354 1.22 drochner for (psi = vm_nphysseg - 1 ; psi >= 0 ; psi--)
355 1.22 drochner #else
356 1.22 drochner for (psi = 0 ; psi < vm_nphysseg ; psi++)
357 1.22 drochner #endif
358 1.22 drochner {
359 1.24 drochner ps = &vm_physmem[psi];
360 1.24 drochner
361 1.24 drochner if (ps->free_list != fl)
362 1.22 drochner continue;
363 1.22 drochner
364 1.24 drochner num -= uvm_pglistalloc_s_ps(ps, num, low, high, rlist);
365 1.24 drochner if (num == 0) {
366 1.22 drochner error = 0;
367 1.22 drochner goto out;
368 1.22 drochner }
369 1.22 drochner }
370 1.20 drochner
371 1.3 mrg }
372 1.1 mrg
373 1.1 mrg out:
374 1.3 mrg /*
375 1.3 mrg * check to see if we need to generate some free pages waking
376 1.3 mrg * the pagedaemon.
377 1.3 mrg */
378 1.15 chs
379 1.36 yamt uvm_kick_pdaemon();
380 1.38 ad mutex_spin_exit(&uvm_fpageqlock);
381 1.38 ad
382 1.20 drochner if (error) {
383 1.20 drochner if (waitok) {
384 1.20 drochner /* XXX perhaps some time limitation? */
385 1.20 drochner #ifdef DEBUG
386 1.20 drochner printf("pglistalloc waiting\n");
387 1.20 drochner #endif
388 1.20 drochner uvm_wait("pglalloc");
389 1.20 drochner goto again;
390 1.20 drochner } else
391 1.20 drochner uvm_pglistfree(rlist);
392 1.20 drochner }
393 1.24 drochner #ifdef PGALLOC_VERBOSE
394 1.22 drochner if (!error)
395 1.22 drochner printf("pgalloc: %lx..%lx\n",
396 1.28 yamt VM_PAGE_TO_PHYS(TAILQ_FIRST(rlist)),
397 1.28 yamt VM_PAGE_TO_PHYS(TAILQ_LAST(rlist, pglist)));
398 1.22 drochner #endif
399 1.3 mrg return (error);
400 1.20 drochner }
401 1.20 drochner
402 1.20 drochner int
403 1.33 thorpej uvm_pglistalloc(psize_t size, paddr_t low, paddr_t high, paddr_t alignment,
404 1.33 thorpej paddr_t boundary, struct pglist *rlist, int nsegs, int waitok)
405 1.20 drochner {
406 1.24 drochner int num, res;
407 1.20 drochner
408 1.20 drochner KASSERT((alignment & (alignment - 1)) == 0);
409 1.20 drochner KASSERT((boundary & (boundary - 1)) == 0);
410 1.20 drochner
411 1.20 drochner /*
412 1.20 drochner * Our allocations are always page granularity, so our alignment
413 1.20 drochner * must be, too.
414 1.20 drochner */
415 1.20 drochner if (alignment < PAGE_SIZE)
416 1.20 drochner alignment = PAGE_SIZE;
417 1.24 drochner if (boundary != 0 && boundary < size)
418 1.24 drochner return (EINVAL);
419 1.24 drochner num = atop(round_page(size));
420 1.20 drochner low = roundup(low, alignment);
421 1.21 drochner
422 1.21 drochner TAILQ_INIT(rlist);
423 1.20 drochner
424 1.23 enami if ((nsegs < size >> PAGE_SHIFT) || (alignment != PAGE_SIZE) ||
425 1.23 enami (boundary != 0))
426 1.24 drochner res = uvm_pglistalloc_contig(num, low, high, alignment,
427 1.24 drochner boundary, rlist);
428 1.20 drochner else
429 1.24 drochner res = uvm_pglistalloc_simple(num, low, high, rlist, waitok);
430 1.20 drochner
431 1.20 drochner return (res);
432 1.1 mrg }
433 1.1 mrg
434 1.1 mrg /*
435 1.1 mrg * uvm_pglistfree: free a list of pages
436 1.1 mrg *
437 1.1 mrg * => pages should already be unmapped
438 1.1 mrg */
439 1.1 mrg
440 1.3 mrg void
441 1.33 thorpej uvm_pglistfree(struct pglist *list)
442 1.1 mrg {
443 1.18 chs struct vm_page *pg;
444 1.1 mrg
445 1.3 mrg /*
446 1.18 chs * Lock the free list and free each page.
447 1.3 mrg */
448 1.18 chs
449 1.38 ad mutex_spin_enter(&uvm_fpageqlock);
450 1.18 chs while ((pg = TAILQ_FIRST(list)) != NULL) {
451 1.37 thorpej bool iszero;
452 1.29 yamt
453 1.36 yamt KASSERT(!uvmpdpol_pageisqueued_p(pg));
454 1.18 chs TAILQ_REMOVE(list, pg, pageq);
455 1.29 yamt iszero = (pg->flags & PG_ZERO);
456 1.18 chs pg->pqflags = PQ_FREE;
457 1.29 yamt #ifdef DEBUG
458 1.29 yamt pg->uobject = (void *)0xdeadbeef;
459 1.29 yamt pg->offset = 0xdeadbeef;
460 1.29 yamt pg->uanon = (void *)0xdeadbeef;
461 1.30 yamt #endif /* DEBUG */
462 1.30 yamt #ifdef DEBUG
463 1.30 yamt if (iszero)
464 1.30 yamt uvm_pagezerocheck(pg);
465 1.30 yamt #endif /* DEBUG */
466 1.32 yamt TAILQ_INSERT_HEAD(&uvm.page_free[uvm_page_lookup_freelist(pg)].
467 1.18 chs pgfl_buckets[VM_PGCOLOR_BUCKET(pg)].
468 1.29 yamt pgfl_queues[iszero ? PGFL_ZEROS : PGFL_UNKNOWN], pg, pageq);
469 1.3 mrg uvmexp.free++;
470 1.29 yamt if (iszero)
471 1.29 yamt uvmexp.zeropages++;
472 1.9 thorpej if (uvmexp.zeropages < UVM_PAGEZERO_TARGET)
473 1.9 thorpej uvm.page_idle_zero = vm_page_zero_enable;
474 1.3 mrg STAT_DECR(uvm_pglistalloc_npages);
475 1.3 mrg }
476 1.38 ad mutex_spin_exit(&uvm_fpageqlock);
477 1.1 mrg }
478