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