uvm_pager.c revision 1.122 1 1.122 ad /* $NetBSD: uvm_pager.c,v 1.122 2020/02/23 15:46:43 ad Exp $ */
2 1.1 mrg
3 1.1 mrg /*
4 1.1 mrg * Copyright (c) 1997 Charles D. Cranor and Washington University.
5 1.1 mrg * All rights reserved.
6 1.1 mrg *
7 1.1 mrg * Redistribution and use in source and binary forms, with or without
8 1.1 mrg * modification, are permitted provided that the following conditions
9 1.1 mrg * are met:
10 1.1 mrg * 1. Redistributions of source code must retain the above copyright
11 1.1 mrg * notice, this list of conditions and the following disclaimer.
12 1.1 mrg * 2. Redistributions in binary form must reproduce the above copyright
13 1.1 mrg * notice, this list of conditions and the following disclaimer in the
14 1.1 mrg * documentation and/or other materials provided with the distribution.
15 1.1 mrg *
16 1.1 mrg * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
17 1.1 mrg * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
18 1.1 mrg * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
19 1.1 mrg * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
20 1.1 mrg * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
21 1.1 mrg * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
22 1.1 mrg * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
23 1.1 mrg * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
24 1.1 mrg * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
25 1.1 mrg * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
26 1.3 mrg *
27 1.3 mrg * from: Id: uvm_pager.c,v 1.1.2.23 1998/02/02 20:38:06 chuck Exp
28 1.1 mrg */
29 1.1 mrg
30 1.1 mrg /*
31 1.1 mrg * uvm_pager.c: generic functions used to assist the pagers.
32 1.1 mrg */
33 1.54 lukem
34 1.54 lukem #include <sys/cdefs.h>
35 1.122 ad __KERNEL_RCSID(0, "$NetBSD: uvm_pager.c,v 1.122 2020/02/23 15:46:43 ad Exp $");
36 1.54 lukem
37 1.54 lukem #include "opt_uvmhist.h"
38 1.72 yamt #include "opt_readahead.h"
39 1.87 yamt #include "opt_pagermap.h"
40 1.1 mrg
41 1.1 mrg #include <sys/param.h>
42 1.1 mrg #include <sys/systm.h>
43 1.113 uwe #include <sys/atomic.h>
44 1.35 chs #include <sys/vnode.h>
45 1.93 pooka #include <sys/buf.h>
46 1.1 mrg
47 1.1 mrg #include <uvm/uvm.h>
48 1.1 mrg
49 1.87 yamt /*
50 1.87 yamt * XXX
51 1.87 yamt * this is needed until the device strategy interface
52 1.87 yamt * is changed to do physically-addressed i/o.
53 1.87 yamt */
54 1.87 yamt
55 1.87 yamt #ifndef PAGER_MAP_DEFAULT_SIZE
56 1.87 yamt #define PAGER_MAP_DEFAULT_SIZE (16 * 1024 * 1024)
57 1.87 yamt #endif
58 1.87 yamt
59 1.87 yamt #ifndef PAGER_MAP_SIZE
60 1.87 yamt #define PAGER_MAP_SIZE PAGER_MAP_DEFAULT_SIZE
61 1.87 yamt #endif
62 1.87 yamt
63 1.87 yamt size_t pager_map_size = PAGER_MAP_SIZE;
64 1.87 yamt
65 1.1 mrg /*
66 1.1 mrg * list of uvm pagers in the system
67 1.1 mrg */
68 1.1 mrg
69 1.89 yamt const struct uvm_pagerops * const uvmpagerops[] = {
70 1.10 thorpej &aobj_pager,
71 1.6 mrg &uvm_deviceops,
72 1.6 mrg &uvm_vnodeops,
73 1.35 chs &ubc_pager,
74 1.1 mrg };
75 1.1 mrg
76 1.1 mrg /*
77 1.1 mrg * the pager map: provides KVA for I/O
78 1.1 mrg */
79 1.1 mrg
80 1.47 chs struct vm_map *pager_map; /* XXX */
81 1.112 ad kmutex_t pager_map_wanted_lock __cacheline_aligned;
82 1.80 thorpej bool pager_map_wanted; /* locked by pager map */
83 1.35 chs static vaddr_t emergva;
84 1.105 matt static int emerg_ncolors;
85 1.80 thorpej static bool emerginuse;
86 1.1 mrg
87 1.105 matt void
88 1.105 matt uvm_pager_realloc_emerg(void)
89 1.105 matt {
90 1.105 matt vaddr_t new_emergva, old_emergva;
91 1.105 matt int old_emerg_ncolors;
92 1.105 matt
93 1.105 matt if (__predict_true(emergva != 0 && emerg_ncolors >= uvmexp.ncolors))
94 1.105 matt return;
95 1.105 matt
96 1.105 matt KASSERT(!emerginuse);
97 1.105 matt
98 1.105 matt new_emergva = uvm_km_alloc(kernel_map,
99 1.106 uebayasi round_page(MAXPHYS) + ptoa(uvmexp.ncolors), ptoa(uvmexp.ncolors),
100 1.105 matt UVM_KMF_VAONLY);
101 1.105 matt
102 1.105 matt KASSERT(new_emergva != 0);
103 1.105 matt
104 1.105 matt old_emergva = emergva;
105 1.105 matt old_emerg_ncolors = emerg_ncolors;
106 1.105 matt
107 1.105 matt /*
108 1.105 matt * don't support re-color in late boot anyway.
109 1.105 matt */
110 1.105 matt if (0) /* XXX */
111 1.105 matt mutex_enter(&pager_map_wanted_lock);
112 1.105 matt
113 1.105 matt emergva = new_emergva;
114 1.105 matt emerg_ncolors = uvmexp.ncolors;
115 1.105 matt wakeup(&old_emergva);
116 1.105 matt
117 1.105 matt if (0) /* XXX */
118 1.105 matt mutex_exit(&pager_map_wanted_lock);
119 1.105 matt
120 1.105 matt if (old_emergva)
121 1.105 matt uvm_km_free(kernel_map, old_emergva,
122 1.105 matt round_page(MAXPHYS) + ptoa(old_emerg_ncolors),
123 1.105 matt UVM_KMF_VAONLY);
124 1.105 matt }
125 1.105 matt
126 1.1 mrg /*
127 1.1 mrg * uvm_pager_init: init pagers (at boot time)
128 1.1 mrg */
129 1.1 mrg
130 1.6 mrg void
131 1.67 thorpej uvm_pager_init(void)
132 1.6 mrg {
133 1.59 thorpej u_int lcv;
134 1.50 chs vaddr_t sva, eva;
135 1.1 mrg
136 1.6 mrg /*
137 1.6 mrg * init pager map
138 1.6 mrg */
139 1.6 mrg
140 1.50 chs sva = 0;
141 1.87 yamt pager_map = uvm_km_suballoc(kernel_map, &sva, &eva, pager_map_size, 0,
142 1.81 thorpej false, NULL);
143 1.84 ad mutex_init(&pager_map_wanted_lock, MUTEX_DEFAULT, IPL_NONE);
144 1.81 thorpej pager_map_wanted = false;
145 1.105 matt
146 1.105 matt uvm_pager_realloc_emerg();
147 1.6 mrg
148 1.6 mrg /*
149 1.6 mrg * call pager init functions
150 1.6 mrg */
151 1.88 yamt for (lcv = 0 ; lcv < __arraycount(uvmpagerops); lcv++) {
152 1.6 mrg if (uvmpagerops[lcv]->pgo_init)
153 1.6 mrg uvmpagerops[lcv]->pgo_init();
154 1.6 mrg }
155 1.1 mrg }
156 1.1 mrg
157 1.1 mrg /*
158 1.1 mrg * uvm_pagermapin: map pages into KVA (pager_map) for I/O that needs mappings
159 1.1 mrg *
160 1.1 mrg * we basically just map in a blank map entry to reserve the space in the
161 1.1 mrg * map and then use pmap_enter() to put the mappings in by hand.
162 1.1 mrg */
163 1.1 mrg
164 1.9 eeh vaddr_t
165 1.67 thorpej uvm_pagermapin(struct vm_page **pps, int npages, int flags)
166 1.1 mrg {
167 1.9 eeh vsize_t size;
168 1.9 eeh vaddr_t kva;
169 1.9 eeh vaddr_t cva;
170 1.6 mrg struct vm_page *pp;
171 1.29 thorpej vm_prot_t prot;
172 1.104 matt const bool pdaemon = (curlwp == uvm.pagedaemon_lwp);
173 1.117 ad const u_int first_color = VM_PGCOLOR(*pps);
174 1.6 mrg UVMHIST_FUNC("uvm_pagermapin"); UVMHIST_CALLED(maphist);
175 1.1 mrg
176 1.111 pgoyette UVMHIST_LOG(maphist,"(pps=0x%#jx, npages=%jd, first_color=%ju)",
177 1.111 pgoyette (uintptr_t)pps, npages, first_color, 0);
178 1.29 thorpej
179 1.29 thorpej /*
180 1.29 thorpej * compute protection. outgoing I/O only needs read
181 1.29 thorpej * access to the page, whereas incoming needs read/write.
182 1.29 thorpej */
183 1.29 thorpej
184 1.29 thorpej prot = VM_PROT_READ;
185 1.29 thorpej if (flags & UVMPAGER_MAPIN_READ)
186 1.29 thorpej prot |= VM_PROT_WRITE;
187 1.1 mrg
188 1.1 mrg ReStart:
189 1.104 matt size = ptoa(npages);
190 1.29 thorpej kva = 0; /* let system choose VA */
191 1.1 mrg
192 1.104 matt if (uvm_map(pager_map, &kva, size, NULL, UVM_UNKNOWN_OFFSET,
193 1.104 matt first_color, UVM_FLAG_COLORMATCH | UVM_FLAG_NOMERGE
194 1.104 matt | (pdaemon ? UVM_FLAG_NOWAIT : 0)) != 0) {
195 1.75 yamt if (pdaemon) {
196 1.84 ad mutex_enter(&pager_map_wanted_lock);
197 1.35 chs if (emerginuse) {
198 1.90 ad UVM_UNLOCK_AND_WAIT(&emergva,
199 1.90 ad &pager_map_wanted_lock, false,
200 1.90 ad "emergva", 0);
201 1.35 chs goto ReStart;
202 1.35 chs }
203 1.81 thorpej emerginuse = true;
204 1.84 ad mutex_exit(&pager_map_wanted_lock);
205 1.104 matt kva = emergva + ptoa(first_color);
206 1.60 tls /* The shift implicitly truncates to PAGE_SIZE */
207 1.60 tls KASSERT(npages <= (MAXPHYS >> PAGE_SHIFT));
208 1.35 chs goto enter;
209 1.35 chs }
210 1.29 thorpej if ((flags & UVMPAGER_MAPIN_WAITOK) == 0) {
211 1.6 mrg UVMHIST_LOG(maphist,"<- NOWAIT failed", 0,0,0,0);
212 1.29 thorpej return(0);
213 1.6 mrg }
214 1.84 ad mutex_enter(&pager_map_wanted_lock);
215 1.81 thorpej pager_map_wanted = true;
216 1.6 mrg UVMHIST_LOG(maphist, " SLEEPING on pager_map",0,0,0,0);
217 1.90 ad UVM_UNLOCK_AND_WAIT(pager_map, &pager_map_wanted_lock, false,
218 1.90 ad "pager_map", 0);
219 1.6 mrg goto ReStart;
220 1.6 mrg }
221 1.1 mrg
222 1.35 chs enter:
223 1.6 mrg /* got it */
224 1.104 matt for (cva = kva; npages != 0; npages--, cva += PAGE_SIZE) {
225 1.6 mrg pp = *pps++;
226 1.40 mrg KASSERT(pp);
227 1.104 matt // KASSERT(!((VM_PAGE_TO_PHYS(pp) ^ cva) & uvmexp.colormask));
228 1.38 chs KASSERT(pp->flags & PG_BUSY);
229 1.97 cegger pmap_kenter_pa(cva, VM_PAGE_TO_PHYS(pp), prot, 0);
230 1.6 mrg }
231 1.49 chris pmap_update(vm_map_pmap(pager_map));
232 1.1 mrg
233 1.111 pgoyette UVMHIST_LOG(maphist, "<- done (KVA=0x%jx)", kva,0,0,0);
234 1.6 mrg return(kva);
235 1.1 mrg }
236 1.1 mrg
237 1.1 mrg /*
238 1.1 mrg * uvm_pagermapout: remove pager_map mapping
239 1.1 mrg *
240 1.1 mrg * we remove our mappings by hand and then remove the mapping (waking
241 1.1 mrg * up anyone wanting space).
242 1.1 mrg */
243 1.1 mrg
244 1.6 mrg void
245 1.67 thorpej uvm_pagermapout(vaddr_t kva, int npages)
246 1.6 mrg {
247 1.104 matt vsize_t size = ptoa(npages);
248 1.47 chs struct vm_map_entry *entries;
249 1.6 mrg UVMHIST_FUNC("uvm_pagermapout"); UVMHIST_CALLED(maphist);
250 1.35 chs
251 1.111 pgoyette UVMHIST_LOG(maphist, " (kva=0x%jx, npages=%jd)", kva, npages,0,0);
252 1.1 mrg
253 1.6 mrg /*
254 1.6 mrg * duplicate uvm_unmap, but add in pager_map_wanted handling.
255 1.6 mrg */
256 1.6 mrg
257 1.104 matt pmap_kremove(kva, size);
258 1.98 rmind pmap_update(pmap_kernel());
259 1.98 rmind
260 1.104 matt if ((kva & ~ptoa(uvmexp.colormask)) == emergva) {
261 1.84 ad mutex_enter(&pager_map_wanted_lock);
262 1.106 uebayasi KASSERT(emerginuse);
263 1.81 thorpej emerginuse = false;
264 1.35 chs wakeup(&emergva);
265 1.84 ad mutex_exit(&pager_map_wanted_lock);
266 1.50 chs return;
267 1.35 chs }
268 1.35 chs
269 1.6 mrg vm_map_lock(pager_map);
270 1.108 para uvm_unmap_remove(pager_map, kva, kva + size, &entries, 0);
271 1.84 ad mutex_enter(&pager_map_wanted_lock);
272 1.6 mrg if (pager_map_wanted) {
273 1.81 thorpej pager_map_wanted = false;
274 1.6 mrg wakeup(pager_map);
275 1.6 mrg }
276 1.84 ad mutex_exit(&pager_map_wanted_lock);
277 1.6 mrg vm_map_unlock(pager_map);
278 1.6 mrg if (entries)
279 1.6 mrg uvm_unmap_detach(entries, 0);
280 1.6 mrg UVMHIST_LOG(maphist,"<- done",0,0,0,0);
281 1.1 mrg }
282 1.1 mrg
283 1.35 chs void
284 1.91 yamt uvm_aio_aiodone_pages(struct vm_page **pgs, int npages, bool write, int error)
285 1.35 chs {
286 1.35 chs struct uvm_object *uobj;
287 1.91 yamt struct vm_page *pg;
288 1.122 ad krwlock_t *slock;
289 1.107 yamt int pageout_done; /* number of PG_PAGEOUT pages processed */
290 1.91 yamt int swslot;
291 1.91 yamt int i;
292 1.91 yamt bool swap;
293 1.92 simonb UVMHIST_FUNC("uvm_aio_aiodone_pages"); UVMHIST_CALLED(ubchist);
294 1.50 chs
295 1.50 chs swslot = 0;
296 1.91 yamt pageout_done = 0;
297 1.50 chs slock = NULL;
298 1.91 yamt uobj = NULL;
299 1.55 chs pg = pgs[0];
300 1.55 chs swap = (pg->uanon != NULL && pg->uobject == NULL) ||
301 1.114 ad (pg->flags & PG_AOBJ) != 0;
302 1.50 chs if (!swap) {
303 1.55 chs uobj = pg->uobject;
304 1.101 rmind slock = uobj->vmobjlock;
305 1.122 ad rw_enter(slock, RW_WRITER);
306 1.71 yamt } else {
307 1.71 yamt #if defined(VMSWAP)
308 1.71 yamt if (error) {
309 1.71 yamt if (pg->uobject != NULL) {
310 1.71 yamt swslot = uao_find_swslot(pg->uobject,
311 1.71 yamt pg->offset >> PAGE_SHIFT);
312 1.77 christos } else {
313 1.77 christos KASSERT(pg->uanon != NULL);
314 1.71 yamt swslot = pg->uanon->an_swslot;
315 1.71 yamt }
316 1.71 yamt KASSERT(swslot);
317 1.50 chs }
318 1.71 yamt #else /* defined(VMSWAP) */
319 1.71 yamt panic("%s: swap", __func__);
320 1.71 yamt #endif /* defined(VMSWAP) */
321 1.50 chs }
322 1.35 chs for (i = 0; i < npages; i++) {
323 1.103 oki #if defined(VMSWAP)
324 1.102 yamt bool anon_disposed = false; /* XXX gcc */
325 1.103 oki #endif /* defined(VMSWAP) */
326 1.102 yamt
327 1.35 chs pg = pgs[i];
328 1.50 chs KASSERT(swap || pg->uobject == uobj);
329 1.111 pgoyette UVMHIST_LOG(ubchist, "pg %#jx", (uintptr_t)pg, 0,0,0);
330 1.50 chs
331 1.71 yamt #if defined(VMSWAP)
332 1.50 chs /*
333 1.50 chs * for swap i/os, lock each page's object (or anon)
334 1.50 chs * individually since each page may need a different lock.
335 1.50 chs */
336 1.35 chs
337 1.35 chs if (swap) {
338 1.55 chs if (pg->uobject != NULL) {
339 1.101 rmind slock = pg->uobject->vmobjlock;
340 1.55 chs } else {
341 1.101 rmind slock = pg->uanon->an_lock;
342 1.35 chs }
343 1.122 ad rw_enter(slock, RW_WRITER);
344 1.102 yamt anon_disposed = (pg->flags & PG_RELEASED) != 0;
345 1.102 yamt KASSERT(!anon_disposed || pg->uobject != NULL ||
346 1.102 yamt pg->uanon->an_ref == 0);
347 1.50 chs }
348 1.71 yamt #endif /* defined(VMSWAP) */
349 1.50 chs
350 1.120 ad if (write && uobj != NULL) {
351 1.120 ad KASSERT(radix_tree_get_tag(&uobj->uo_pages,
352 1.120 ad pg->offset >> PAGE_SHIFT, UVM_PAGE_WRITEBACK_TAG));
353 1.120 ad radix_tree_clear_tag(&uobj->uo_pages,
354 1.120 ad pg->offset >> PAGE_SHIFT, UVM_PAGE_WRITEBACK_TAG);
355 1.120 ad }
356 1.120 ad
357 1.50 chs /*
358 1.50 chs * process errors. for reads, just mark the page to be freed.
359 1.50 chs * for writes, if the error was ENOMEM, we assume this was
360 1.50 chs * a transient failure so we mark the page dirty so that
361 1.50 chs * we'll try to write it again later. for all other write
362 1.50 chs * errors, we assume the error is permanent, thus the data
363 1.50 chs * in the page is lost. bummer.
364 1.50 chs */
365 1.50 chs
366 1.50 chs if (error) {
367 1.61 pk int slot;
368 1.50 chs if (!write) {
369 1.50 chs pg->flags |= PG_RELEASED;
370 1.50 chs continue;
371 1.50 chs } else if (error == ENOMEM) {
372 1.50 chs if (pg->flags & PG_PAGEOUT) {
373 1.50 chs pg->flags &= ~PG_PAGEOUT;
374 1.90 ad pageout_done++;
375 1.50 chs }
376 1.120 ad uvm_pagemarkdirty(pg, UVM_PAGE_STATUS_DIRTY);
377 1.119 ad uvm_pagelock(pg);
378 1.50 chs uvm_pageactivate(pg);
379 1.119 ad uvm_pageunlock(pg);
380 1.61 pk slot = 0;
381 1.61 pk } else
382 1.61 pk slot = SWSLOT_BAD;
383 1.61 pk
384 1.71 yamt #if defined(VMSWAP)
385 1.61 pk if (swap) {
386 1.61 pk if (pg->uobject != NULL) {
387 1.109 martin int oldslot __diagused;
388 1.62 pk oldslot = uao_set_swslot(pg->uobject,
389 1.62 pk pg->offset >> PAGE_SHIFT, slot);
390 1.62 pk KASSERT(oldslot == swslot + i);
391 1.61 pk } else {
392 1.61 pk KASSERT(pg->uanon->an_swslot ==
393 1.61 pk swslot + i);
394 1.61 pk pg->uanon->an_swslot = slot;
395 1.61 pk }
396 1.50 chs }
397 1.71 yamt #endif /* defined(VMSWAP) */
398 1.50 chs }
399 1.50 chs
400 1.50 chs /*
401 1.50 chs * if the page is PG_FAKE, this must have been a read to
402 1.50 chs * initialize the page. clear PG_FAKE and activate the page.
403 1.50 chs */
404 1.50 chs
405 1.50 chs if (pg->flags & PG_FAKE) {
406 1.50 chs KASSERT(!write);
407 1.50 chs pg->flags &= ~PG_FAKE;
408 1.72 yamt #if defined(READAHEAD_STATS)
409 1.114 ad pg->flags |= PG_READAHEAD;
410 1.72 yamt uvm_ra_total.ev_count++;
411 1.72 yamt #endif /* defined(READAHEAD_STATS) */
412 1.120 ad KASSERT(uvm_pagegetdirty(pg) == UVM_PAGE_STATUS_CLEAN);
413 1.119 ad uvm_pagelock(pg);
414 1.78 yamt uvm_pageenqueue(pg);
415 1.119 ad uvm_pageunlock(pg);
416 1.35 chs }
417 1.35 chs
418 1.35 chs /*
419 1.53 chs * do accounting for pagedaemon i/o and arrange to free
420 1.53 chs * the pages instead of just unbusying them.
421 1.35 chs */
422 1.35 chs
423 1.53 chs if (pg->flags & PG_PAGEOUT) {
424 1.50 chs pg->flags &= ~PG_PAGEOUT;
425 1.90 ad pageout_done++;
426 1.114 ad atomic_inc_uint(&uvmexp.pdfreed);
427 1.35 chs pg->flags |= PG_RELEASED;
428 1.35 chs }
429 1.35 chs
430 1.71 yamt #if defined(VMSWAP)
431 1.35 chs /*
432 1.50 chs * for swap pages, unlock everything for this page now.
433 1.35 chs */
434 1.35 chs
435 1.35 chs if (swap) {
436 1.102 yamt if (pg->uobject == NULL && anon_disposed) {
437 1.63 yamt uvm_anon_release(pg->uanon);
438 1.63 yamt } else {
439 1.63 yamt uvm_page_unbusy(&pg, 1);
440 1.122 ad rw_exit(slock);
441 1.63 yamt }
442 1.35 chs }
443 1.71 yamt #endif /* defined(VMSWAP) */
444 1.35 chs }
445 1.90 ad uvm_pageout_done(pageout_done);
446 1.35 chs if (!swap) {
447 1.50 chs uvm_page_unbusy(pgs, npages);
448 1.122 ad rw_exit(slock);
449 1.50 chs } else {
450 1.71 yamt #if defined(VMSWAP)
451 1.53 chs KASSERT(write);
452 1.53 chs
453 1.53 chs /* these pages are now only in swap. */
454 1.110 christos if (error != ENOMEM) {
455 1.112 ad atomic_add_int(&uvmexp.swpgonly, npages);
456 1.110 christos }
457 1.50 chs if (error) {
458 1.61 pk if (error != ENOMEM)
459 1.61 pk uvm_swap_markbad(swslot, npages);
460 1.61 pk else
461 1.61 pk uvm_swap_free(swslot, npages);
462 1.50 chs }
463 1.116 ad atomic_dec_uint(&uvmexp.pdpending);
464 1.71 yamt #endif /* defined(VMSWAP) */
465 1.35 chs }
466 1.91 yamt }
467 1.91 yamt
468 1.91 yamt /*
469 1.91 yamt * uvm_aio_aiodone: do iodone processing for async i/os.
470 1.91 yamt * this should be called in thread context, not interrupt context.
471 1.91 yamt */
472 1.91 yamt
473 1.91 yamt void
474 1.91 yamt uvm_aio_aiodone(struct buf *bp)
475 1.91 yamt {
476 1.91 yamt int npages = bp->b_bufsize >> PAGE_SHIFT;
477 1.91 yamt struct vm_page *pgs[npages];
478 1.91 yamt int i, error;
479 1.91 yamt bool write;
480 1.91 yamt UVMHIST_FUNC("uvm_aio_aiodone"); UVMHIST_CALLED(ubchist);
481 1.111 pgoyette UVMHIST_LOG(ubchist, "bp %#jx", (uintptr_t)bp, 0,0,0);
482 1.91 yamt
483 1.91 yamt error = bp->b_error;
484 1.91 yamt write = (bp->b_flags & B_READ) == 0;
485 1.91 yamt
486 1.91 yamt for (i = 0; i < npages; i++) {
487 1.91 yamt pgs[i] = uvm_pageratop((vaddr_t)bp->b_data + (i << PAGE_SHIFT));
488 1.111 pgoyette UVMHIST_LOG(ubchist, "pgs[%jd] = %#jx", i,
489 1.111 pgoyette (uintptr_t)pgs[i], 0, 0);
490 1.91 yamt }
491 1.91 yamt uvm_pagermapout((vaddr_t)bp->b_data, npages);
492 1.91 yamt
493 1.91 yamt uvm_aio_aiodone_pages(pgs, npages, write, error);
494 1.91 yamt
495 1.90 ad if (write && (bp->b_cflags & BC_AGE) != 0) {
496 1.90 ad mutex_enter(bp->b_objlock);
497 1.35 chs vwakeup(bp);
498 1.90 ad mutex_exit(bp->b_objlock);
499 1.35 chs }
500 1.73 yamt putiobuf(bp);
501 1.1 mrg }
502 1.74 yamt
503 1.74 yamt /*
504 1.74 yamt * uvm_pageratop: convert KVAs in the pager map back to their page
505 1.74 yamt * structures.
506 1.74 yamt */
507 1.74 yamt
508 1.74 yamt struct vm_page *
509 1.74 yamt uvm_pageratop(vaddr_t kva)
510 1.74 yamt {
511 1.74 yamt struct vm_page *pg;
512 1.74 yamt paddr_t pa;
513 1.109 martin bool rv __diagused;
514 1.74 yamt
515 1.74 yamt rv = pmap_extract(pmap_kernel(), kva, &pa);
516 1.74 yamt KASSERT(rv);
517 1.74 yamt pg = PHYS_TO_VM_PAGE(pa);
518 1.74 yamt KASSERT(pg != NULL);
519 1.74 yamt return (pg);
520 1.74 yamt }
521