Home | History | Annotate | Line # | Download | only in nfs
nfs_bio.c revision 1.45.8.3
      1  1.45.8.2    bouyer /*	$NetBSD: nfs_bio.c,v 1.45.8.3 2000/12/13 15:50:37 bouyer Exp $	*/
      2      1.15       cgd 
      3       1.1       cgd /*
      4      1.12   mycroft  * Copyright (c) 1989, 1993
      5      1.12   mycroft  *	The Regents of the University of California.  All rights reserved.
      6       1.1       cgd  *
      7       1.1       cgd  * This code is derived from software contributed to Berkeley by
      8       1.1       cgd  * Rick Macklem at The University of Guelph.
      9       1.1       cgd  *
     10       1.1       cgd  * Redistribution and use in source and binary forms, with or without
     11       1.1       cgd  * modification, are permitted provided that the following conditions
     12       1.1       cgd  * are met:
     13       1.1       cgd  * 1. Redistributions of source code must retain the above copyright
     14       1.1       cgd  *    notice, this list of conditions and the following disclaimer.
     15       1.1       cgd  * 2. Redistributions in binary form must reproduce the above copyright
     16       1.1       cgd  *    notice, this list of conditions and the following disclaimer in the
     17       1.1       cgd  *    documentation and/or other materials provided with the distribution.
     18       1.1       cgd  * 3. All advertising materials mentioning features or use of this software
     19       1.1       cgd  *    must display the following acknowledgement:
     20       1.1       cgd  *	This product includes software developed by the University of
     21       1.1       cgd  *	California, Berkeley and its contributors.
     22       1.1       cgd  * 4. Neither the name of the University nor the names of its contributors
     23       1.1       cgd  *    may be used to endorse or promote products derived from this software
     24       1.1       cgd  *    without specific prior written permission.
     25       1.1       cgd  *
     26       1.1       cgd  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
     27       1.1       cgd  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
     28       1.1       cgd  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
     29       1.1       cgd  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
     30       1.1       cgd  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
     31       1.1       cgd  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
     32       1.1       cgd  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
     33       1.1       cgd  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
     34       1.1       cgd  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
     35       1.1       cgd  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
     36       1.1       cgd  * SUCH DAMAGE.
     37       1.1       cgd  *
     38      1.24      fvdl  *	@(#)nfs_bio.c	8.9 (Berkeley) 3/30/95
     39       1.1       cgd  */
     40       1.1       cgd 
     41  1.45.8.1    bouyer #include "opt_nfs.h"
     42  1.45.8.2    bouyer #include "opt_ddb.h"
     43  1.45.8.1    bouyer 
     44       1.8   mycroft #include <sys/param.h>
     45       1.8   mycroft #include <sys/systm.h>
     46      1.12   mycroft #include <sys/resourcevar.h>
     47      1.24      fvdl #include <sys/signalvar.h>
     48       1.8   mycroft #include <sys/proc.h>
     49       1.8   mycroft #include <sys/buf.h>
     50       1.8   mycroft #include <sys/vnode.h>
     51       1.8   mycroft #include <sys/trace.h>
     52       1.8   mycroft #include <sys/mount.h>
     53      1.12   mycroft #include <sys/kernel.h>
     54      1.23  christos #include <sys/namei.h>
     55      1.34      fvdl #include <sys/dirent.h>
     56  1.45.8.2    bouyer #include <sys/malloc.h>
     57      1.12   mycroft 
     58      1.41       mrg #include <uvm/uvm_extern.h>
     59  1.45.8.2    bouyer #include <uvm/uvm.h>
     60      1.41       mrg 
     61      1.12   mycroft #include <nfs/rpcv2.h>
     62      1.24      fvdl #include <nfs/nfsproto.h>
     63       1.8   mycroft #include <nfs/nfs.h>
     64       1.8   mycroft #include <nfs/nfsmount.h>
     65      1.12   mycroft #include <nfs/nqnfs.h>
     66      1.24      fvdl #include <nfs/nfsnode.h>
     67      1.23  christos #include <nfs/nfs_var.h>
     68       1.1       cgd 
     69      1.12   mycroft extern int nfs_numasync;
     70      1.24      fvdl extern struct nfsstats nfsstats;
     71       1.1       cgd 
     72       1.1       cgd /*
     73       1.1       cgd  * Vnode op for read using bio
     74       1.1       cgd  * Any similarity to readip() is purely coincidental
     75       1.1       cgd  */
     76      1.23  christos int
     77      1.34      fvdl nfs_bioread(vp, uio, ioflag, cred, cflag)
     78  1.45.8.1    bouyer 	struct vnode *vp;
     79  1.45.8.1    bouyer 	struct uio *uio;
     80      1.34      fvdl 	int ioflag, cflag;
     81       1.1       cgd 	struct ucred *cred;
     82       1.1       cgd {
     83  1.45.8.1    bouyer 	struct nfsnode *np = VTONFS(vp);
     84  1.45.8.2    bouyer 	int biosize;
     85      1.23  christos 	struct buf *bp = NULL, *rabp;
     86       1.1       cgd 	struct vattr vattr;
     87      1.12   mycroft 	struct proc *p;
     88      1.24      fvdl 	struct nfsmount *nmp = VFSTONFS(vp->v_mount);
     89      1.35      fvdl 	struct nfsdircache *ndp = NULL, *nndp = NULL;
     90      1.34      fvdl 	caddr_t baddr, ep, edp;
     91  1.45.8.2    bouyer 	int got_buf = 0, error = 0, n = 0, on = 0, en, enn;
     92      1.34      fvdl 	int enough = 0;
     93      1.34      fvdl 	struct dirent *dp, *pdp;
     94  1.45.8.2    bouyer 	off_t curoff = 0;
     95       1.1       cgd 
     96       1.1       cgd #ifdef DIAGNOSTIC
     97       1.1       cgd 	if (uio->uio_rw != UIO_READ)
     98       1.1       cgd 		panic("nfs_read mode");
     99       1.1       cgd #endif
    100       1.1       cgd 	if (uio->uio_resid == 0)
    101       1.1       cgd 		return (0);
    102      1.34      fvdl 	if (vp->v_type != VDIR && uio->uio_offset < 0)
    103       1.1       cgd 		return (EINVAL);
    104      1.24      fvdl 	p = uio->uio_procp;
    105  1.45.8.1    bouyer #ifndef NFS_V2_ONLY
    106      1.34      fvdl 	if ((nmp->nm_flag & NFSMNT_NFSV3) &&
    107      1.34      fvdl 	    !(nmp->nm_iflag & NFSMNT_GOTFSINFO))
    108      1.24      fvdl 		(void)nfs_fsinfo(nmp, vp, cred, p);
    109  1.45.8.1    bouyer #endif
    110      1.34      fvdl 	if (vp->v_type != VDIR &&
    111      1.34      fvdl 	    (uio->uio_offset + uio->uio_resid) > nmp->nm_maxfilesize)
    112      1.33      fvdl 		return (EFBIG);
    113      1.12   mycroft 	biosize = nmp->nm_rsize;
    114  1.45.8.2    bouyer 
    115       1.1       cgd 	/*
    116      1.12   mycroft 	 * For nfs, cache consistency can only be maintained approximately.
    117      1.12   mycroft 	 * Although RFC1094 does not specify the criteria, the following is
    118      1.12   mycroft 	 * believed to be compatible with the reference port.
    119      1.12   mycroft 	 * For nqnfs, full cache consistency is maintained within the loop.
    120      1.12   mycroft 	 * For nfs:
    121       1.1       cgd 	 * If the file's modify time on the server has changed since the
    122       1.1       cgd 	 * last read rpc or you have written to the file,
    123       1.1       cgd 	 * you may have lost data cache consistency with the
    124       1.1       cgd 	 * server, so flush all of the file's data out of the cache.
    125       1.1       cgd 	 * Then force a getattr rpc to ensure that you have up to date
    126       1.1       cgd 	 * attributes.
    127       1.1       cgd 	 * NB: This implies that cache data can be read when up to
    128       1.1       cgd 	 * NFS_ATTRTIMEO seconds out of date. If you find that you need current
    129       1.1       cgd 	 * attributes this could be forced by setting n_attrstamp to 0 before
    130      1.12   mycroft 	 * the VOP_GETATTR() call.
    131       1.1       cgd 	 */
    132  1.45.8.2    bouyer 
    133      1.12   mycroft 	if ((nmp->nm_flag & NFSMNT_NQNFS) == 0 && vp->v_type != VLNK) {
    134       1.1       cgd 		if (np->n_flag & NMODIFIED) {
    135      1.24      fvdl 			if (vp->v_type != VREG) {
    136      1.24      fvdl 				if (vp->v_type != VDIR)
    137      1.24      fvdl 					panic("nfs: bioread, not dir");
    138      1.35      fvdl 				nfs_invaldircache(vp, 0);
    139      1.35      fvdl 				np->n_direofoffset = 0;
    140      1.23  christos 				error = nfs_vinvalbuf(vp, V_SAVE, cred, p, 1);
    141      1.23  christos 				if (error)
    142      1.12   mycroft 					return (error);
    143      1.12   mycroft 			}
    144       1.1       cgd 			np->n_attrstamp = 0;
    145      1.23  christos 			error = VOP_GETATTR(vp, &vattr, cred, p);
    146      1.23  christos 			if (error)
    147       1.1       cgd 				return (error);
    148      1.22       jtc 			np->n_mtime = vattr.va_mtime.tv_sec;
    149       1.1       cgd 		} else {
    150      1.24      fvdl 			error = VOP_GETATTR(vp, &vattr, cred, p);
    151      1.24      fvdl 			if (error)
    152       1.1       cgd 				return (error);
    153      1.22       jtc 			if (np->n_mtime != vattr.va_mtime.tv_sec) {
    154      1.35      fvdl 				if (vp->v_type == VDIR) {
    155      1.35      fvdl 					nfs_invaldircache(vp, 0);
    156      1.35      fvdl 					np->n_direofoffset = 0;
    157      1.35      fvdl 				}
    158      1.23  christos 				error = nfs_vinvalbuf(vp, V_SAVE, cred, p, 1);
    159      1.23  christos 				if (error)
    160      1.12   mycroft 					return (error);
    161      1.22       jtc 				np->n_mtime = vattr.va_mtime.tv_sec;
    162       1.1       cgd 			}
    163       1.1       cgd 		}
    164       1.1       cgd 	}
    165      1.12   mycroft 
    166  1.45.8.2    bouyer 	/*
    167  1.45.8.2    bouyer 	 * update the cached read creds for this node.
    168  1.45.8.2    bouyer 	 */
    169  1.45.8.2    bouyer 
    170  1.45.8.2    bouyer 	if (np->n_rcred) {
    171  1.45.8.2    bouyer 		crfree(np->n_rcred);
    172  1.45.8.2    bouyer 	}
    173  1.45.8.2    bouyer 	np->n_rcred = cred;
    174  1.45.8.2    bouyer 	crhold(cred);
    175  1.45.8.2    bouyer 
    176  1.45.8.2    bouyer 	do {
    177  1.45.8.1    bouyer #ifndef NFS_V2_ONLY
    178      1.12   mycroft 	    /*
    179      1.12   mycroft 	     * Get a valid lease. If cached data is stale, flush it.
    180      1.12   mycroft 	     */
    181      1.12   mycroft 	    if (nmp->nm_flag & NFSMNT_NQNFS) {
    182      1.24      fvdl 		if (NQNFS_CKINVALID(vp, np, ND_READ)) {
    183      1.12   mycroft 		    do {
    184      1.24      fvdl 			error = nqnfs_getlease(vp, ND_READ, cred, p);
    185      1.12   mycroft 		    } while (error == NQNFS_EXPIRED);
    186      1.12   mycroft 		    if (error)
    187      1.12   mycroft 			return (error);
    188      1.12   mycroft 		    if (np->n_lrev != np->n_brev ||
    189      1.12   mycroft 			(np->n_flag & NQNFSNONCACHE) ||
    190      1.12   mycroft 			((np->n_flag & NMODIFIED) && vp->v_type == VDIR)) {
    191      1.35      fvdl 			if (vp->v_type == VDIR) {
    192      1.35      fvdl 				nfs_invaldircache(vp, 0);
    193      1.35      fvdl 				np->n_direofoffset = 0;
    194      1.35      fvdl 			}
    195      1.23  christos 			error = nfs_vinvalbuf(vp, V_SAVE, cred, p, 1);
    196      1.23  christos 			if (error)
    197      1.12   mycroft 			    return (error);
    198      1.12   mycroft 			np->n_brev = np->n_lrev;
    199      1.12   mycroft 		    }
    200      1.12   mycroft 		} else if (vp->v_type == VDIR && (np->n_flag & NMODIFIED)) {
    201      1.35      fvdl 		    nfs_invaldircache(vp, 0);
    202      1.23  christos 		    error = nfs_vinvalbuf(vp, V_SAVE, cred, p, 1);
    203      1.35      fvdl 		    np->n_direofoffset = 0;
    204      1.23  christos 		    if (error)
    205      1.12   mycroft 			return (error);
    206      1.12   mycroft 		}
    207      1.12   mycroft 	    }
    208  1.45.8.1    bouyer #endif
    209      1.26      fvdl 	    /*
    210      1.26      fvdl 	     * Don't cache symlinks.
    211      1.26      fvdl 	     */
    212      1.26      fvdl 	    if (np->n_flag & NQNFSNONCACHE
    213      1.26      fvdl 		|| ((vp->v_flag & VROOT) && vp->v_type == VLNK)) {
    214      1.12   mycroft 		switch (vp->v_type) {
    215      1.12   mycroft 		case VREG:
    216  1.45.8.2    bouyer 			return (nfs_readrpc(vp, uio));
    217      1.12   mycroft 		case VLNK:
    218      1.24      fvdl 			return (nfs_readlinkrpc(vp, uio, cred));
    219      1.12   mycroft 		case VDIR:
    220      1.23  christos 			break;
    221      1.24      fvdl 		default:
    222      1.29  christos 			printf(" NQNFSNONCACHE: type %x unexpected\n",
    223      1.28  christos 			    vp->v_type);
    224      1.12   mycroft 		};
    225      1.12   mycroft 	    }
    226      1.12   mycroft 	    baddr = (caddr_t)0;
    227       1.1       cgd 	    switch (vp->v_type) {
    228       1.1       cgd 	    case VREG:
    229       1.1       cgd 		nfsstats.biocache_reads++;
    230      1.12   mycroft 
    231  1.45.8.2    bouyer 		error = 0;
    232  1.45.8.2    bouyer 		while (uio->uio_resid > 0) {
    233  1.45.8.2    bouyer 			void *win;
    234  1.45.8.2    bouyer 			vsize_t bytelen = min(np->n_size - uio->uio_offset,
    235  1.45.8.2    bouyer 					      uio->uio_resid);
    236  1.45.8.2    bouyer 
    237  1.45.8.2    bouyer 			if (bytelen == 0)
    238  1.45.8.2    bouyer 				break;
    239  1.45.8.2    bouyer 			win = ubc_alloc(&vp->v_uvm.u_obj, uio->uio_offset,
    240  1.45.8.2    bouyer 					&bytelen, UBC_READ);
    241  1.45.8.2    bouyer 			error = uiomove(win, bytelen, uio);
    242  1.45.8.2    bouyer 			ubc_release(win, 0);
    243  1.45.8.2    bouyer 			if (error) {
    244  1.45.8.2    bouyer 				break;
    245      1.12   mycroft 			}
    246      1.12   mycroft 		}
    247  1.45.8.2    bouyer 		n = 0;
    248       1.1       cgd 		break;
    249  1.45.8.2    bouyer 
    250       1.1       cgd 	    case VLNK:
    251       1.1       cgd 		nfsstats.biocache_readlinks++;
    252      1.12   mycroft 		bp = nfs_getcacheblk(vp, (daddr_t)0, NFS_MAXPATHLEN, p);
    253      1.12   mycroft 		if (!bp)
    254      1.12   mycroft 			return (EINTR);
    255      1.12   mycroft 		if ((bp->b_flags & B_DONE) == 0) {
    256      1.12   mycroft 			bp->b_flags |= B_READ;
    257  1.45.8.2    bouyer 			error = nfs_doio(bp, p);
    258      1.24      fvdl 			if (error) {
    259      1.12   mycroft 				brelse(bp);
    260      1.12   mycroft 				return (error);
    261      1.12   mycroft 			}
    262      1.12   mycroft 		}
    263      1.12   mycroft 		n = min(uio->uio_resid, NFS_MAXPATHLEN - bp->b_resid);
    264      1.12   mycroft 		got_buf = 1;
    265       1.1       cgd 		on = 0;
    266       1.1       cgd 		break;
    267       1.1       cgd 	    case VDIR:
    268      1.34      fvdl diragain:
    269      1.34      fvdl 		nfsstats.biocache_readdirs++;
    270      1.35      fvdl 		ndp = nfs_searchdircache(vp, uio->uio_offset,
    271      1.35      fvdl 			(nmp->nm_flag & NFSMNT_XLATECOOKIE), 0);
    272      1.35      fvdl 		if (!ndp) {
    273      1.35      fvdl 			/*
    274      1.35      fvdl 			 * We've been handed a cookie that is not
    275      1.35      fvdl 			 * in the cache. If we're not translating
    276      1.35      fvdl 			 * 32 <-> 64, it may be a value that was
    277      1.35      fvdl 			 * flushed out of the cache because it grew
    278      1.35      fvdl 			 * too big. Let the server judge if it's
    279      1.35      fvdl 			 * valid or not. In the translation case,
    280      1.35      fvdl 			 * we have no way of validating this value,
    281      1.35      fvdl 			 * so punt.
    282      1.35      fvdl 			 */
    283      1.35      fvdl 			if (nmp->nm_flag & NFSMNT_XLATECOOKIE)
    284      1.35      fvdl 				return (EINVAL);
    285      1.35      fvdl 			ndp = nfs_enterdircache(vp, uio->uio_offset,
    286      1.35      fvdl 				uio->uio_offset, 0, 0);
    287      1.35      fvdl 		}
    288      1.35      fvdl 
    289      1.34      fvdl 		if (uio->uio_offset != 0 &&
    290      1.35      fvdl 		    ndp->dc_cookie == np->n_direofoffset) {
    291      1.35      fvdl 			nfsstats.direofcache_hits++;
    292      1.18   mycroft 			return (0);
    293      1.35      fvdl 		}
    294      1.35      fvdl 
    295      1.34      fvdl 		bp = nfs_getcacheblk(vp, ndp->dc_blkno, NFS_DIRBLKSIZ, p);
    296      1.12   mycroft 		if (!bp)
    297      1.24      fvdl 		    return (EINTR);
    298      1.12   mycroft 		if ((bp->b_flags & B_DONE) == 0) {
    299      1.24      fvdl 		    bp->b_flags |= B_READ;
    300      1.35      fvdl 		    bp->b_dcookie = ndp->dc_blkcookie;
    301  1.45.8.2    bouyer 		    error = nfs_doio(bp, p);
    302      1.24      fvdl 		    if (error) {
    303      1.34      fvdl 			/*
    304      1.34      fvdl 			 * Yuck! The directory has been modified on the
    305      1.34      fvdl 			 * server. Punt and let the userland code
    306      1.34      fvdl 			 * deal with it.
    307      1.34      fvdl 			 */
    308      1.24      fvdl 			brelse(bp);
    309      1.34      fvdl 			if (error == NFSERR_BAD_COOKIE) {
    310      1.35      fvdl 			    nfs_invaldircache(vp, 0);
    311      1.34      fvdl 			    nfs_vinvalbuf(vp, 0, cred, p, 1);
    312      1.34      fvdl 			    error = EINVAL;
    313      1.12   mycroft 			}
    314      1.34      fvdl 			return (error);
    315      1.38      fvdl 		    }
    316      1.40      fvdl 		}
    317      1.40      fvdl 
    318      1.40      fvdl 		/*
    319      1.40      fvdl 		 * Just return if we hit EOF right away with this
    320      1.40      fvdl 		 * block. Always check here, because direofoffset
    321      1.40      fvdl 		 * may have been set by an nfsiod since the last
    322      1.40      fvdl 		 * check.
    323      1.40      fvdl 		 */
    324      1.40      fvdl 		if (np->n_direofoffset != 0 &&
    325      1.39      fvdl 			ndp->dc_blkcookie == np->n_direofoffset) {
    326      1.40      fvdl 			brelse(bp);
    327      1.40      fvdl 			return (0);
    328      1.12   mycroft 		}
    329      1.12   mycroft 
    330      1.12   mycroft 		/*
    331      1.34      fvdl 		 * Find the entry we were looking for in the block.
    332      1.34      fvdl 		 */
    333      1.34      fvdl 
    334      1.34      fvdl 		en = ndp->dc_entry;
    335      1.34      fvdl 
    336      1.34      fvdl 		pdp = dp = (struct dirent *)bp->b_data;
    337  1.45.8.2    bouyer 		edp = bp->b_data + bp->b_bcount;
    338      1.34      fvdl 		enn = 0;
    339      1.34      fvdl 		while (enn < en && (caddr_t)dp < edp) {
    340      1.34      fvdl 			pdp = dp;
    341      1.34      fvdl 			dp = (struct dirent *)((caddr_t)dp + dp->d_reclen);
    342      1.34      fvdl 			enn++;
    343      1.34      fvdl 		}
    344      1.34      fvdl 
    345      1.34      fvdl 		/*
    346      1.34      fvdl 		 * If the entry number was bigger than the number of
    347      1.34      fvdl 		 * entries in the block, or the cookie of the previous
    348      1.34      fvdl 		 * entry doesn't match, the directory cache is
    349      1.34      fvdl 		 * stale. Flush it and try again (i.e. go to
    350      1.34      fvdl 		 * the server).
    351      1.34      fvdl 		 */
    352      1.34      fvdl 		if ((caddr_t)dp >= edp || (caddr_t)dp + dp->d_reclen > edp ||
    353      1.35      fvdl 		    (en > 0 && NFS_GETCOOKIE(pdp) != ndp->dc_cookie)) {
    354      1.34      fvdl #ifdef DEBUG
    355      1.37   thorpej 		    	printf("invalid cache: %p %p %p off %lx %lx\n",
    356      1.37   thorpej 				pdp, dp, edp,
    357      1.34      fvdl 				(unsigned long)uio->uio_offset,
    358      1.34      fvdl 				(unsigned long)NFS_GETCOOKIE(pdp));
    359      1.34      fvdl #endif
    360      1.34      fvdl 			brelse(bp);
    361      1.35      fvdl 			nfs_invaldircache(vp, 0);
    362      1.34      fvdl 			nfs_vinvalbuf(vp, 0, cred, p, 0);
    363      1.34      fvdl 			goto diragain;
    364      1.34      fvdl 		}
    365      1.34      fvdl 
    366      1.34      fvdl 		on = (caddr_t)dp - bp->b_data;
    367      1.34      fvdl 
    368      1.34      fvdl 		/*
    369      1.34      fvdl 		 * Cache all entries that may be exported to the
    370      1.34      fvdl 		 * user, as they may be thrown back at us. The
    371      1.34      fvdl 		 * NFSBIO_CACHECOOKIES flag indicates that all
    372      1.34      fvdl 		 * entries are being 'exported', so cache them all.
    373      1.34      fvdl 		 */
    374      1.34      fvdl 
    375      1.34      fvdl 		if (en == 0 && pdp == dp) {
    376      1.34      fvdl 			dp = (struct dirent *)
    377      1.34      fvdl 			    ((caddr_t)dp + dp->d_reclen);
    378      1.34      fvdl 			enn++;
    379      1.34      fvdl 		}
    380      1.34      fvdl 
    381  1.45.8.2    bouyer 		if (uio->uio_resid < (bp->b_bcount - on)) {
    382      1.34      fvdl 			n = uio->uio_resid;
    383      1.34      fvdl 			enough = 1;
    384      1.34      fvdl 		} else
    385  1.45.8.2    bouyer 			n = bp->b_bcount - on;
    386      1.34      fvdl 
    387      1.34      fvdl 		ep = bp->b_data + on + n;
    388      1.34      fvdl 
    389      1.34      fvdl 		/*
    390      1.34      fvdl 		 * Find last complete entry to copy, caching entries
    391      1.34      fvdl 		 * (if requested) as we go.
    392      1.34      fvdl 		 */
    393      1.34      fvdl 
    394      1.34      fvdl 		while ((caddr_t)dp < ep && (caddr_t)dp + dp->d_reclen <= ep) {
    395      1.35      fvdl 			if (cflag & NFSBIO_CACHECOOKIES) {
    396      1.35      fvdl 				nndp = nfs_enterdircache(vp, NFS_GETCOOKIE(pdp),
    397      1.35      fvdl 				    ndp->dc_blkcookie, enn, bp->b_lblkno);
    398      1.35      fvdl 				if (nmp->nm_flag & NFSMNT_XLATECOOKIE) {
    399      1.35      fvdl 					NFS_STASHCOOKIE32(pdp,
    400      1.35      fvdl 					    nndp->dc_cookie32);
    401      1.35      fvdl 				}
    402      1.35      fvdl 			}
    403      1.34      fvdl 			pdp = dp;
    404      1.34      fvdl 			dp = (struct dirent *)((caddr_t)dp + dp->d_reclen);
    405      1.34      fvdl 			enn++;
    406      1.34      fvdl 		}
    407      1.34      fvdl 
    408      1.34      fvdl 		/*
    409      1.34      fvdl 		 * If the last requested entry was not the last in the
    410      1.34      fvdl 		 * buffer (happens if NFS_DIRFRAGSIZ < NFS_DIRBLKSIZ),
    411      1.34      fvdl 		 * cache the cookie of the last requested one, and
    412      1.34      fvdl 		 * set of the offset to it.
    413      1.34      fvdl 		 */
    414      1.34      fvdl 
    415  1.45.8.2    bouyer 		if ((on + n) < bp->b_bcount) {
    416      1.34      fvdl 			curoff = NFS_GETCOOKIE(pdp);
    417      1.35      fvdl 			nndp = nfs_enterdircache(vp, curoff, ndp->dc_blkcookie,
    418      1.35      fvdl 			    enn, bp->b_lblkno);
    419      1.35      fvdl 			if (nmp->nm_flag & NFSMNT_XLATECOOKIE) {
    420      1.35      fvdl 				NFS_STASHCOOKIE32(pdp, nndp->dc_cookie32);
    421      1.35      fvdl 				curoff = nndp->dc_cookie32;
    422      1.35      fvdl 			}
    423      1.34      fvdl 		} else
    424      1.34      fvdl 			curoff = bp->b_dcookie;
    425      1.34      fvdl 
    426      1.35      fvdl 		/*
    427      1.35      fvdl 		 * Always cache the entry for the next block,
    428      1.35      fvdl 		 * so that readaheads can use it.
    429      1.35      fvdl 		 */
    430      1.35      fvdl 		nndp = nfs_enterdircache(vp, bp->b_dcookie, bp->b_dcookie, 0,0);
    431      1.35      fvdl 		if (nmp->nm_flag & NFSMNT_XLATECOOKIE) {
    432      1.35      fvdl 			if (curoff == bp->b_dcookie) {
    433      1.35      fvdl 				NFS_STASHCOOKIE32(pdp, nndp->dc_cookie32);
    434      1.35      fvdl 				curoff = nndp->dc_cookie32;
    435      1.35      fvdl 			}
    436      1.35      fvdl 		}
    437      1.35      fvdl 
    438      1.34      fvdl 		n = ((caddr_t)pdp + pdp->d_reclen) - (bp->b_data + on);
    439      1.34      fvdl 
    440      1.34      fvdl 		/*
    441      1.12   mycroft 		 * If not eof and read aheads are enabled, start one.
    442      1.12   mycroft 		 * (You need the current block first, so that you have the
    443      1.24      fvdl 		 *  directory offset cookie of the next block.)
    444      1.12   mycroft 		 */
    445      1.12   mycroft 		if (nfs_numasync > 0 && nmp->nm_readahead > 0 &&
    446      1.34      fvdl 		    np->n_direofoffset == 0 && !(np->n_flag & NQNFSNONCACHE)) {
    447      1.35      fvdl 			rabp = nfs_getcacheblk(vp, nndp->dc_blkno,
    448      1.34      fvdl 						NFS_DIRBLKSIZ, p);
    449      1.12   mycroft 			if (rabp) {
    450      1.12   mycroft 			    if ((rabp->b_flags & (B_DONE | B_DELWRI)) == 0) {
    451      1.35      fvdl 				rabp->b_dcookie = nndp->dc_cookie;
    452      1.12   mycroft 				rabp->b_flags |= (B_READ | B_ASYNC);
    453  1.45.8.2    bouyer 				if (nfs_asyncio(rabp)) {
    454      1.12   mycroft 				    rabp->b_flags |= B_INVAL;
    455      1.12   mycroft 				    brelse(rabp);
    456      1.12   mycroft 				}
    457      1.19   mycroft 			    } else
    458      1.19   mycroft 				brelse(rabp);
    459      1.12   mycroft 			}
    460      1.12   mycroft 		}
    461      1.12   mycroft 		got_buf = 1;
    462       1.1       cgd 		break;
    463      1.24      fvdl 	    default:
    464      1.29  christos 		printf(" nfsbioread: type %x unexpected\n",vp->v_type);
    465      1.23  christos 		break;
    466  1.45.8.2    bouyer 	    }
    467      1.12   mycroft 
    468      1.12   mycroft 	    if (n > 0) {
    469      1.12   mycroft 		if (!baddr)
    470      1.12   mycroft 			baddr = bp->b_data;
    471      1.12   mycroft 		error = uiomove(baddr + on, (int)n, uio);
    472       1.1       cgd 	    }
    473       1.1       cgd 	    switch (vp->v_type) {
    474      1.24      fvdl 	    case VREG:
    475      1.24      fvdl 		break;
    476       1.1       cgd 	    case VLNK:
    477       1.1       cgd 		n = 0;
    478       1.1       cgd 		break;
    479       1.1       cgd 	    case VDIR:
    480      1.24      fvdl 		if (np->n_flag & NQNFSNONCACHE)
    481      1.24      fvdl 			bp->b_flags |= B_INVAL;
    482      1.34      fvdl 		uio->uio_offset = curoff;
    483      1.34      fvdl 		if (enough)
    484      1.34      fvdl 			n = 0;
    485       1.1       cgd 		break;
    486      1.24      fvdl 	    default:
    487      1.29  christos 		printf(" nfsbioread: type %x unexpected\n",vp->v_type);
    488      1.24      fvdl 	    }
    489      1.12   mycroft 	    if (got_buf)
    490      1.12   mycroft 		brelse(bp);
    491      1.12   mycroft 	} while (error == 0 && uio->uio_resid > 0 && n > 0);
    492       1.1       cgd 	return (error);
    493       1.1       cgd }
    494       1.1       cgd 
    495       1.1       cgd /*
    496       1.1       cgd  * Vnode op for write using bio
    497       1.1       cgd  */
    498      1.23  christos int
    499      1.23  christos nfs_write(v)
    500      1.23  christos 	void *v;
    501      1.23  christos {
    502      1.12   mycroft 	struct vop_write_args /* {
    503      1.24      fvdl 		struct vnode *a_vp;
    504      1.12   mycroft 		struct uio *a_uio;
    505      1.12   mycroft 		int  a_ioflag;
    506      1.12   mycroft 		struct ucred *a_cred;
    507      1.23  christos 	} */ *ap = v;
    508  1.45.8.1    bouyer 	struct uio *uio = ap->a_uio;
    509       1.1       cgd 	struct proc *p = uio->uio_procp;
    510  1.45.8.1    bouyer 	struct vnode *vp = ap->a_vp;
    511      1.12   mycroft 	struct nfsnode *np = VTONFS(vp);
    512  1.45.8.1    bouyer 	struct ucred *cred = ap->a_cred;
    513      1.12   mycroft 	int ioflag = ap->a_ioflag;
    514       1.1       cgd 	struct vattr vattr;
    515      1.24      fvdl 	struct nfsmount *nmp = VFSTONFS(vp->v_mount);
    516  1.45.8.2    bouyer 	int error = 0, iomode, must_commit;
    517  1.45.8.2    bouyer 	int rv;
    518       1.1       cgd 
    519       1.1       cgd #ifdef DIAGNOSTIC
    520       1.1       cgd 	if (uio->uio_rw != UIO_WRITE)
    521       1.1       cgd 		panic("nfs_write mode");
    522       1.1       cgd 	if (uio->uio_segflg == UIO_USERSPACE && uio->uio_procp != curproc)
    523       1.1       cgd 		panic("nfs_write proc");
    524       1.1       cgd #endif
    525       1.1       cgd 	if (vp->v_type != VREG)
    526       1.1       cgd 		return (EIO);
    527      1.12   mycroft 	if (np->n_flag & NWRITEERR) {
    528      1.12   mycroft 		np->n_flag &= ~NWRITEERR;
    529      1.12   mycroft 		return (np->n_error);
    530      1.12   mycroft 	}
    531  1.45.8.1    bouyer #ifndef NFS_V2_ONLY
    532      1.34      fvdl 	if ((nmp->nm_flag & NFSMNT_NFSV3) &&
    533      1.34      fvdl 	    !(nmp->nm_iflag & NFSMNT_GOTFSINFO))
    534      1.24      fvdl 		(void)nfs_fsinfo(nmp, vp, cred, p);
    535  1.45.8.1    bouyer #endif
    536       1.1       cgd 	if (ioflag & (IO_APPEND | IO_SYNC)) {
    537       1.1       cgd 		if (np->n_flag & NMODIFIED) {
    538      1.12   mycroft 			np->n_attrstamp = 0;
    539      1.23  christos 			error = nfs_vinvalbuf(vp, V_SAVE, cred, p, 1);
    540      1.23  christos 			if (error)
    541      1.12   mycroft 				return (error);
    542       1.1       cgd 		}
    543       1.1       cgd 		if (ioflag & IO_APPEND) {
    544       1.1       cgd 			np->n_attrstamp = 0;
    545      1.23  christos 			error = VOP_GETATTR(vp, &vattr, cred, p);
    546      1.23  christos 			if (error)
    547       1.1       cgd 				return (error);
    548       1.1       cgd 			uio->uio_offset = np->n_size;
    549       1.1       cgd 		}
    550       1.1       cgd 	}
    551       1.1       cgd 	if (uio->uio_offset < 0)
    552       1.1       cgd 		return (EINVAL);
    553      1.33      fvdl 	if ((uio->uio_offset + uio->uio_resid) > nmp->nm_maxfilesize)
    554      1.33      fvdl 		return (EFBIG);
    555       1.1       cgd 	if (uio->uio_resid == 0)
    556       1.1       cgd 		return (0);
    557       1.1       cgd 	/*
    558       1.1       cgd 	 * Maybe this should be above the vnode op call, but so long as
    559       1.1       cgd 	 * file servers have no limits, i don't think it matters
    560       1.1       cgd 	 */
    561      1.12   mycroft 	if (p && uio->uio_offset + uio->uio_resid >
    562       1.1       cgd 	      p->p_rlimit[RLIMIT_FSIZE].rlim_cur) {
    563       1.1       cgd 		psignal(p, SIGXFSZ);
    564       1.1       cgd 		return (EFBIG);
    565       1.1       cgd 	}
    566  1.45.8.2    bouyer 
    567       1.1       cgd 	/*
    568  1.45.8.2    bouyer 	 * update the cached write creds for this node.
    569       1.1       cgd 	 */
    570      1.16       cgd 
    571  1.45.8.2    bouyer 	if (np->n_wcred) {
    572  1.45.8.2    bouyer 		crfree(np->n_wcred);
    573  1.45.8.2    bouyer 	}
    574  1.45.8.2    bouyer 	np->n_wcred = cred;
    575  1.45.8.2    bouyer 	crhold(cred);
    576  1.45.8.2    bouyer 
    577  1.45.8.2    bouyer 	if ((np->n_flag & NQNFSNONCACHE) && uio->uio_iovcnt == 1) {
    578  1.45.8.2    bouyer 		iomode = NFSV3WRITE_FILESYNC;
    579  1.45.8.2    bouyer 		error = nfs_writerpc(vp, uio, &iomode, &must_commit);
    580  1.45.8.2    bouyer 		if (must_commit)
    581  1.45.8.2    bouyer 			nfs_clearcommit(vp->v_mount);
    582  1.45.8.2    bouyer 		return (error);
    583  1.45.8.2    bouyer 	}
    584  1.45.8.2    bouyer 
    585  1.45.8.2    bouyer 	do {
    586  1.45.8.2    bouyer 		void *win;
    587  1.45.8.2    bouyer 		voff_t oldoff = uio->uio_offset;
    588  1.45.8.2    bouyer 		vsize_t bytelen = uio->uio_resid;
    589      1.12   mycroft 
    590  1.45.8.1    bouyer #ifndef NFS_V2_ONLY
    591      1.12   mycroft 		/*
    592      1.12   mycroft 		 * Check for a valid write lease.
    593      1.12   mycroft 		 */
    594      1.12   mycroft 		if ((nmp->nm_flag & NFSMNT_NQNFS) &&
    595      1.24      fvdl 		    NQNFS_CKINVALID(vp, np, ND_WRITE)) {
    596      1.12   mycroft 			do {
    597      1.24      fvdl 				error = nqnfs_getlease(vp, ND_WRITE, cred, p);
    598      1.12   mycroft 			} while (error == NQNFS_EXPIRED);
    599      1.12   mycroft 			if (error)
    600      1.12   mycroft 				return (error);
    601      1.12   mycroft 			if (np->n_lrev != np->n_brev ||
    602      1.12   mycroft 			    (np->n_flag & NQNFSNONCACHE)) {
    603      1.23  christos 				error = nfs_vinvalbuf(vp, V_SAVE, cred, p, 1);
    604      1.23  christos 				if (error)
    605      1.12   mycroft 					return (error);
    606      1.12   mycroft 				np->n_brev = np->n_lrev;
    607      1.12   mycroft 			}
    608      1.12   mycroft 		}
    609  1.45.8.1    bouyer #endif
    610       1.1       cgd 		nfsstats.biocache_writes++;
    611  1.45.8.2    bouyer 
    612      1.12   mycroft 		np->n_flag |= NMODIFIED;
    613  1.45.8.2    bouyer 		if (np->n_size < uio->uio_offset + bytelen) {
    614  1.45.8.2    bouyer 			np->n_size = uio->uio_offset + bytelen;
    615      1.41       mrg 			uvm_vnp_setsize(vp, np->n_size);
    616      1.12   mycroft 		}
    617  1.45.8.2    bouyer 		win = ubc_alloc(&vp->v_uvm.u_obj, uio->uio_offset, &bytelen,
    618  1.45.8.2    bouyer 				UBC_WRITE);
    619  1.45.8.2    bouyer 		error = uiomove(win, bytelen, uio);
    620      1.23  christos 		if (error) {
    621  1.45.8.2    bouyer 			memset((void *)trunc_page((vaddr_t)win), 0,
    622  1.45.8.2    bouyer 			       round_page((vaddr_t)win + bytelen) -
    623  1.45.8.2    bouyer 			       trunc_page((vaddr_t)win));
    624  1.45.8.1    bouyer 		}
    625  1.45.8.2    bouyer 		ubc_release(win, 0);
    626  1.45.8.2    bouyer 		rv = 1;
    627      1.12   mycroft 		if ((np->n_flag & NQNFSNONCACHE) || (ioflag & IO_SYNC)) {
    628  1.45.8.2    bouyer 			simple_lock(&vp->v_uvm.u_obj.vmobjlock);
    629  1.45.8.2    bouyer 			rv = vp->v_uvm.u_obj.pgops->pgo_flush(
    630  1.45.8.2    bouyer 			    &vp->v_uvm.u_obj,
    631  1.45.8.2    bouyer 			    oldoff & ~(nmp->nm_wsize - 1),
    632  1.45.8.2    bouyer 			    uio->uio_offset & ~(nmp->nm_wsize - 1),
    633  1.45.8.2    bouyer 			    PGO_CLEANIT|PGO_SYNCIO);
    634  1.45.8.2    bouyer 			simple_unlock(&vp->v_uvm.u_obj.vmobjlock);
    635  1.45.8.2    bouyer 		} else if ((oldoff & ~(nmp->nm_wsize - 1)) !=
    636  1.45.8.2    bouyer 		    (uio->uio_offset & ~(nmp->nm_wsize - 1))) {
    637  1.45.8.2    bouyer 			simple_lock(&vp->v_uvm.u_obj.vmobjlock);
    638  1.45.8.2    bouyer 			rv = vp->v_uvm.u_obj.pgops->pgo_flush(
    639  1.45.8.2    bouyer 			    &vp->v_uvm.u_obj,
    640  1.45.8.2    bouyer 			    oldoff & ~(nmp->nm_wsize - 1),
    641  1.45.8.2    bouyer 			    uio->uio_offset & ~(nmp->nm_wsize - 1),
    642  1.45.8.2    bouyer 			    PGO_CLEANIT|PGO_WEAK);
    643  1.45.8.2    bouyer 			simple_unlock(&vp->v_uvm.u_obj.vmobjlock);
    644      1.24      fvdl 		}
    645  1.45.8.2    bouyer 		if (!rv) {
    646  1.45.8.2    bouyer 			error = EIO;
    647  1.45.8.2    bouyer 			break;
    648  1.45.8.2    bouyer 		}
    649  1.45.8.2    bouyer 	} while (uio->uio_resid > 0);
    650  1.45.8.2    bouyer 	return error;
    651      1.12   mycroft }
    652      1.12   mycroft 
    653      1.12   mycroft /*
    654      1.12   mycroft  * Get an nfs cache block.
    655      1.12   mycroft  * Allocate a new one if the block isn't currently in the cache
    656      1.12   mycroft  * and return the block marked busy. If the calling process is
    657      1.12   mycroft  * interrupted by a signal for an interruptible mount point, return
    658      1.12   mycroft  * NULL.
    659      1.12   mycroft  */
    660      1.12   mycroft struct buf *
    661      1.12   mycroft nfs_getcacheblk(vp, bn, size, p)
    662      1.12   mycroft 	struct vnode *vp;
    663      1.12   mycroft 	daddr_t bn;
    664      1.12   mycroft 	int size;
    665      1.12   mycroft 	struct proc *p;
    666      1.12   mycroft {
    667  1.45.8.1    bouyer 	struct buf *bp;
    668      1.12   mycroft 	struct nfsmount *nmp = VFSTONFS(vp->v_mount);
    669      1.12   mycroft 
    670      1.12   mycroft 	if (nmp->nm_flag & NFSMNT_INT) {
    671      1.12   mycroft 		bp = getblk(vp, bn, size, PCATCH, 0);
    672  1.45.8.2    bouyer 		while (bp == NULL) {
    673  1.45.8.2    bouyer 			if (nfs_sigintr(nmp, NULL, p))
    674  1.45.8.2    bouyer 				return (NULL);
    675      1.12   mycroft 			bp = getblk(vp, bn, size, 0, 2 * hz);
    676      1.12   mycroft 		}
    677      1.12   mycroft 	} else
    678      1.12   mycroft 		bp = getblk(vp, bn, size, 0, 0);
    679      1.12   mycroft 	return (bp);
    680      1.12   mycroft }
    681      1.12   mycroft 
    682      1.12   mycroft /*
    683      1.12   mycroft  * Flush and invalidate all dirty buffers. If another process is already
    684      1.12   mycroft  * doing the flush, just wait for completion.
    685      1.12   mycroft  */
    686      1.23  christos int
    687      1.12   mycroft nfs_vinvalbuf(vp, flags, cred, p, intrflg)
    688      1.12   mycroft 	struct vnode *vp;
    689      1.12   mycroft 	int flags;
    690      1.12   mycroft 	struct ucred *cred;
    691      1.12   mycroft 	struct proc *p;
    692      1.12   mycroft 	int intrflg;
    693      1.12   mycroft {
    694  1.45.8.1    bouyer 	struct nfsnode *np = VTONFS(vp);
    695      1.12   mycroft 	struct nfsmount *nmp = VFSTONFS(vp->v_mount);
    696      1.12   mycroft 	int error = 0, slpflag, slptimeo;
    697      1.12   mycroft 
    698      1.12   mycroft 	if ((nmp->nm_flag & NFSMNT_INT) == 0)
    699      1.12   mycroft 		intrflg = 0;
    700      1.12   mycroft 	if (intrflg) {
    701      1.12   mycroft 		slpflag = PCATCH;
    702      1.12   mycroft 		slptimeo = 2 * hz;
    703      1.12   mycroft 	} else {
    704      1.12   mycroft 		slpflag = 0;
    705      1.12   mycroft 		slptimeo = 0;
    706      1.12   mycroft 	}
    707      1.12   mycroft 	/*
    708      1.12   mycroft 	 * First wait for any other process doing a flush to complete.
    709      1.12   mycroft 	 */
    710      1.12   mycroft 	while (np->n_flag & NFLUSHINPROG) {
    711      1.12   mycroft 		np->n_flag |= NFLUSHWANT;
    712      1.12   mycroft 		error = tsleep((caddr_t)&np->n_flag, PRIBIO + 2, "nfsvinval",
    713      1.12   mycroft 			slptimeo);
    714  1.45.8.2    bouyer 		if (error && intrflg && nfs_sigintr(nmp, NULL, p))
    715      1.12   mycroft 			return (EINTR);
    716      1.12   mycroft 	}
    717      1.12   mycroft 
    718      1.12   mycroft 	/*
    719      1.12   mycroft 	 * Now, flush as required.
    720      1.12   mycroft 	 */
    721      1.12   mycroft 	np->n_flag |= NFLUSHINPROG;
    722      1.12   mycroft 	error = vinvalbuf(vp, flags, cred, p, slpflag, 0);
    723      1.12   mycroft 	while (error) {
    724  1.45.8.2    bouyer 		if (intrflg && nfs_sigintr(nmp, NULL, p)) {
    725      1.12   mycroft 			np->n_flag &= ~NFLUSHINPROG;
    726      1.12   mycroft 			if (np->n_flag & NFLUSHWANT) {
    727      1.12   mycroft 				np->n_flag &= ~NFLUSHWANT;
    728      1.12   mycroft 				wakeup((caddr_t)&np->n_flag);
    729      1.12   mycroft 			}
    730      1.12   mycroft 			return (EINTR);
    731      1.12   mycroft 		}
    732      1.12   mycroft 		error = vinvalbuf(vp, flags, cred, p, 0, slptimeo);
    733      1.12   mycroft 	}
    734      1.12   mycroft 	np->n_flag &= ~(NMODIFIED | NFLUSHINPROG);
    735      1.12   mycroft 	if (np->n_flag & NFLUSHWANT) {
    736      1.12   mycroft 		np->n_flag &= ~NFLUSHWANT;
    737      1.12   mycroft 		wakeup((caddr_t)&np->n_flag);
    738      1.12   mycroft 	}
    739      1.12   mycroft 	return (0);
    740      1.12   mycroft }
    741      1.12   mycroft 
    742      1.12   mycroft /*
    743      1.12   mycroft  * Initiate asynchronous I/O. Return an error if no nfsiods are available.
    744      1.12   mycroft  * This is mainly to avoid queueing async I/O requests when the nfsiods
    745      1.12   mycroft  * are all hung on a dead server.
    746      1.12   mycroft  */
    747      1.23  christos int
    748  1.45.8.2    bouyer nfs_asyncio(bp)
    749  1.45.8.1    bouyer 	struct buf *bp;
    750      1.12   mycroft {
    751  1.45.8.1    bouyer 	int i;
    752  1.45.8.1    bouyer 	struct nfsmount *nmp;
    753      1.30   thorpej 	int gotiod, slpflag = 0, slptimeo = 0, error;
    754      1.12   mycroft 
    755      1.12   mycroft 	if (nfs_numasync == 0)
    756      1.12   mycroft 		return (EIO);
    757      1.30   thorpej 
    758      1.30   thorpej 
    759      1.30   thorpej 	nmp = VFSTONFS(bp->b_vp->v_mount);
    760      1.30   thorpej again:
    761      1.30   thorpej 	if (nmp->nm_flag & NFSMNT_INT)
    762      1.30   thorpej 		slpflag = PCATCH;
    763      1.30   thorpej 	gotiod = FALSE;
    764      1.30   thorpej 
    765      1.30   thorpej 	/*
    766      1.30   thorpej 	 * Find a free iod to process this request.
    767      1.30   thorpej 	 */
    768      1.30   thorpej 
    769      1.12   mycroft 	for (i = 0; i < NFS_MAXASYNCDAEMON; i++)
    770      1.30   thorpej 		if (nfs_iodwant[i]) {
    771      1.30   thorpej 			/*
    772      1.30   thorpej 			 * Found one, so wake it up and tell it which
    773      1.30   thorpej 			 * mount to process.
    774      1.30   thorpej 			 */
    775  1.45.8.2    bouyer 			nfs_iodwant[i] = NULL;
    776      1.30   thorpej 			nfs_iodmount[i] = nmp;
    777      1.30   thorpej 			nmp->nm_bufqiods++;
    778      1.30   thorpej 			wakeup((caddr_t)&nfs_iodwant[i]);
    779      1.30   thorpej 			gotiod = TRUE;
    780      1.31      fvdl 			break;
    781      1.30   thorpej 		}
    782      1.30   thorpej 	/*
    783      1.30   thorpej 	 * If none are free, we may already have an iod working on this mount
    784      1.30   thorpej 	 * point.  If so, it will process our request.
    785      1.30   thorpej 	 */
    786      1.30   thorpej 	if (!gotiod && nmp->nm_bufqiods > 0)
    787      1.30   thorpej 		gotiod = TRUE;
    788      1.30   thorpej 
    789      1.30   thorpej 	/*
    790      1.30   thorpej 	 * If we have an iod which can process the request, then queue
    791      1.30   thorpej 	 * the buffer.
    792      1.30   thorpej 	 */
    793      1.30   thorpej 	if (gotiod) {
    794      1.30   thorpej 		/*
    795      1.30   thorpej 		 * Ensure that the queue never grows too large.
    796      1.30   thorpej 		 */
    797      1.30   thorpej 		while (nmp->nm_bufqlen >= 2*nfs_numasync) {
    798      1.30   thorpej 			nmp->nm_bufqwant = TRUE;
    799      1.30   thorpej 			error = tsleep(&nmp->nm_bufq, slpflag | PRIBIO,
    800      1.30   thorpej 				"nfsaio", slptimeo);
    801      1.30   thorpej 			if (error) {
    802      1.30   thorpej 				if (nfs_sigintr(nmp, NULL, bp->b_proc))
    803      1.30   thorpej 					return (EINTR);
    804      1.30   thorpej 				if (slpflag == PCATCH) {
    805      1.30   thorpej 					slpflag = 0;
    806      1.30   thorpej 					slptimeo = 2 * hz;
    807      1.30   thorpej 				}
    808      1.30   thorpej 			}
    809      1.30   thorpej 			/*
    810      1.30   thorpej 			 * We might have lost our iod while sleeping,
    811      1.30   thorpej 			 * so check and loop if nescessary.
    812      1.30   thorpej 			 */
    813      1.30   thorpej 			if (nmp->nm_bufqiods == 0)
    814      1.30   thorpej 				goto again;
    815      1.30   thorpej 		}
    816      1.30   thorpej 		TAILQ_INSERT_TAIL(&nmp->nm_bufq, bp, b_freelist);
    817      1.30   thorpej 		nmp->nm_bufqlen++;
    818      1.12   mycroft 		return (0);
    819      1.12   mycroft 	    }
    820      1.24      fvdl 
    821      1.24      fvdl 	/*
    822      1.30   thorpej 	 * All the iods are busy on other mounts, so return EIO to
    823      1.30   thorpej 	 * force the caller to process the i/o synchronously.
    824      1.24      fvdl 	 */
    825      1.30   thorpej 	return (EIO);
    826      1.12   mycroft }
    827      1.12   mycroft 
    828      1.12   mycroft /*
    829      1.12   mycroft  * Do an I/O operation to/from a cache block. This may be called
    830      1.12   mycroft  * synchronously or from an nfsiod.
    831      1.12   mycroft  */
    832      1.12   mycroft int
    833  1.45.8.2    bouyer nfs_doio(bp, p)
    834  1.45.8.1    bouyer 	struct buf *bp;
    835      1.12   mycroft 	struct proc *p;
    836      1.12   mycroft {
    837  1.45.8.1    bouyer 	struct uio *uiop;
    838  1.45.8.1    bouyer 	struct vnode *vp;
    839      1.12   mycroft 	struct nfsnode *np;
    840      1.12   mycroft 	struct nfsmount *nmp;
    841  1.45.8.2    bouyer 	int error = 0, diff, len, iomode, must_commit = 0;
    842      1.12   mycroft 	struct uio uio;
    843      1.12   mycroft 	struct iovec io;
    844      1.12   mycroft 
    845      1.12   mycroft 	vp = bp->b_vp;
    846      1.12   mycroft 	np = VTONFS(vp);
    847      1.12   mycroft 	nmp = VFSTONFS(vp->v_mount);
    848      1.12   mycroft 	uiop = &uio;
    849      1.12   mycroft 	uiop->uio_iov = &io;
    850      1.12   mycroft 	uiop->uio_iovcnt = 1;
    851      1.12   mycroft 	uiop->uio_segflg = UIO_SYSSPACE;
    852      1.12   mycroft 	uiop->uio_procp = p;
    853      1.12   mycroft 
    854      1.12   mycroft 	/*
    855      1.14        pk 	 * Historically, paging was done with physio, but no more...
    856      1.12   mycroft 	 */
    857      1.14        pk 	if (bp->b_flags & B_PHYS) {
    858      1.14        pk 	    /*
    859      1.14        pk 	     * ...though reading /dev/drum still gets us here.
    860      1.14        pk 	     */
    861      1.14        pk 	    io.iov_len = uiop->uio_resid = bp->b_bcount;
    862      1.14        pk 	    /* mapping was done by vmapbuf() */
    863      1.14        pk 	    io.iov_base = bp->b_data;
    864  1.45.8.2    bouyer 	    uiop->uio_offset = ((off_t)bp->b_blkno) << DEV_BSHIFT;
    865      1.14        pk 	    if (bp->b_flags & B_READ) {
    866      1.14        pk 		uiop->uio_rw = UIO_READ;
    867      1.14        pk 		nfsstats.read_physios++;
    868  1.45.8.2    bouyer 		error = nfs_readrpc(vp, uiop);
    869      1.14        pk 	    } else {
    870      1.24      fvdl 		iomode = NFSV3WRITE_DATASYNC;
    871      1.14        pk 		uiop->uio_rw = UIO_WRITE;
    872      1.14        pk 		nfsstats.write_physios++;
    873  1.45.8.2    bouyer 		error = nfs_writerpc(vp, uiop, &iomode, &must_commit);
    874      1.14        pk 	    }
    875      1.14        pk 	    if (error) {
    876      1.14        pk 		bp->b_flags |= B_ERROR;
    877      1.14        pk 		bp->b_error = error;
    878      1.14        pk 	    }
    879      1.14        pk 	} else if (bp->b_flags & B_READ) {
    880      1.12   mycroft 	    io.iov_len = uiop->uio_resid = bp->b_bcount;
    881      1.12   mycroft 	    io.iov_base = bp->b_data;
    882      1.12   mycroft 	    uiop->uio_rw = UIO_READ;
    883      1.12   mycroft 	    switch (vp->v_type) {
    884      1.12   mycroft 	    case VREG:
    885  1.45.8.2    bouyer 		uiop->uio_offset = ((off_t)bp->b_blkno) << DEV_BSHIFT;
    886      1.12   mycroft 		nfsstats.read_bios++;
    887  1.45.8.2    bouyer 		error = nfs_readrpc(vp, uiop);
    888  1.45.8.2    bouyer 		if (!error && uiop->uio_resid) {
    889  1.45.8.2    bouyer 
    890      1.12   mycroft 			/*
    891      1.12   mycroft 			 * If len > 0, there is a hole in the file and
    892      1.12   mycroft 			 * no writes after the hole have been pushed to
    893      1.12   mycroft 			 * the server yet.
    894      1.12   mycroft 			 * Just zero fill the rest of the valid area.
    895      1.12   mycroft 			 */
    896  1.45.8.2    bouyer 
    897      1.12   mycroft 			diff = bp->b_bcount - uiop->uio_resid;
    898  1.45.8.2    bouyer 			len = np->n_size - ((((off_t)bp->b_blkno) << DEV_BSHIFT)
    899      1.12   mycroft 				+ diff);
    900      1.12   mycroft 			if (len > 0) {
    901  1.45.8.2    bouyer 				len = min(len, uiop->uio_resid);
    902  1.45.8.2    bouyer 				memset((char *)bp->b_data + diff, 0, len);
    903  1.45.8.2    bouyer 			}
    904      1.12   mycroft 		}
    905      1.12   mycroft 		if (p && (vp->v_flag & VTEXT) &&
    906      1.12   mycroft 			(((nmp->nm_flag & NFSMNT_NQNFS) &&
    907      1.24      fvdl 			  NQNFS_CKINVALID(vp, np, ND_READ) &&
    908      1.12   mycroft 			  np->n_lrev != np->n_brev) ||
    909      1.12   mycroft 			 (!(nmp->nm_flag & NFSMNT_NQNFS) &&
    910      1.35      fvdl 			  np->n_mtime != np->n_vattr->va_mtime.tv_sec))) {
    911  1.45.8.2    bouyer 			uprintf("Process killed due to "
    912  1.45.8.2    bouyer 				"text file modification\n");
    913      1.12   mycroft 			psignal(p, SIGKILL);
    914      1.13   mycroft 			p->p_holdcnt++;
    915      1.12   mycroft 		}
    916      1.12   mycroft 		break;
    917      1.12   mycroft 	    case VLNK:
    918      1.24      fvdl 		uiop->uio_offset = (off_t)0;
    919      1.12   mycroft 		nfsstats.readlink_bios++;
    920  1.45.8.2    bouyer 		error = nfs_readlinkrpc(vp, uiop, curproc->p_ucred);
    921      1.12   mycroft 		break;
    922      1.12   mycroft 	    case VDIR:
    923      1.12   mycroft 		nfsstats.readdir_bios++;
    924      1.34      fvdl 		uiop->uio_offset = bp->b_dcookie;
    925      1.24      fvdl 		if (nmp->nm_flag & NFSMNT_RDIRPLUS) {
    926  1.45.8.2    bouyer 			error = nfs_readdirplusrpc(vp, uiop, curproc->p_ucred);
    927      1.24      fvdl 			if (error == NFSERR_NOTSUPP)
    928      1.24      fvdl 				nmp->nm_flag &= ~NFSMNT_RDIRPLUS;
    929      1.24      fvdl 		}
    930      1.24      fvdl 		if ((nmp->nm_flag & NFSMNT_RDIRPLUS) == 0)
    931  1.45.8.2    bouyer 			error = nfs_readdirrpc(vp, uiop, curproc->p_ucred);
    932      1.34      fvdl 		if (!error) {
    933      1.34      fvdl 			bp->b_dcookie = uiop->uio_offset;
    934      1.34      fvdl 		}
    935      1.24      fvdl 		break;
    936      1.24      fvdl 	    default:
    937      1.29  christos 		printf("nfs_doio:  type %x unexpected\n",vp->v_type);
    938      1.12   mycroft 		break;
    939  1.45.8.2    bouyer 	    }
    940      1.12   mycroft 	    if (error) {
    941      1.12   mycroft 		bp->b_flags |= B_ERROR;
    942      1.12   mycroft 		bp->b_error = error;
    943      1.12   mycroft 	    }
    944      1.12   mycroft 	} else {
    945  1.45.8.1    bouyer 	    /*
    946  1.45.8.1    bouyer 	     * If B_NEEDCOMMIT is set, a commit rpc may do the trick. If not
    947  1.45.8.1    bouyer 	     * an actual write will have to be scheduled.
    948  1.45.8.1    bouyer 	     */
    949  1.45.8.2    bouyer 
    950  1.45.8.2    bouyer 	    io.iov_base = bp->b_data;
    951  1.45.8.2    bouyer 	    io.iov_len = uiop->uio_resid = bp->b_bcount;
    952  1.45.8.2    bouyer 	    uiop->uio_offset = (((off_t)bp->b_blkno) << DEV_BSHIFT);
    953  1.45.8.2    bouyer 	    uiop->uio_rw = UIO_WRITE;
    954  1.45.8.2    bouyer 	    nfsstats.write_bios++;
    955  1.45.8.2    bouyer 	    iomode = NFSV3WRITE_UNSTABLE;
    956  1.45.8.2    bouyer 	    error = nfs_writerpc(vp, uiop, &iomode, &must_commit);
    957  1.45.8.2    bouyer 	}
    958  1.45.8.2    bouyer 	bp->b_resid = uiop->uio_resid;
    959  1.45.8.2    bouyer 	if (must_commit)
    960  1.45.8.2    bouyer 		nfs_clearcommit(vp->v_mount);
    961  1.45.8.2    bouyer 	biodone(bp);
    962  1.45.8.2    bouyer 	return (error);
    963  1.45.8.2    bouyer }
    964  1.45.8.2    bouyer 
    965  1.45.8.2    bouyer /*
    966  1.45.8.2    bouyer  * Vnode op for VM getpages.
    967  1.45.8.2    bouyer  */
    968  1.45.8.2    bouyer int
    969  1.45.8.2    bouyer nfs_getpages(v)
    970  1.45.8.2    bouyer 	void *v;
    971  1.45.8.2    bouyer {
    972  1.45.8.2    bouyer 	struct vop_getpages_args /* {
    973  1.45.8.2    bouyer 		struct vnode *a_vp;
    974  1.45.8.2    bouyer 		voff_t a_offset;
    975  1.45.8.2    bouyer 		vm_page_t *a_m;
    976  1.45.8.2    bouyer 		int *a_count;
    977  1.45.8.2    bouyer 		int a_centeridx;
    978  1.45.8.2    bouyer 		vm_prot_t a_access_type;
    979  1.45.8.2    bouyer 		int a_advice;
    980  1.45.8.2    bouyer 		int a_flags;
    981  1.45.8.2    bouyer 	} */ *ap = v;
    982  1.45.8.2    bouyer 
    983  1.45.8.2    bouyer 	off_t eof, offset, origoffset, startoffset, endoffset;
    984  1.45.8.2    bouyer 	int s, i, error, npages, orignpages, npgs, ridx, pidx, pcount;
    985  1.45.8.2    bouyer 	vaddr_t kva;
    986  1.45.8.2    bouyer 	struct buf *bp, *mbp;
    987  1.45.8.2    bouyer 	struct vnode *vp = ap->a_vp;
    988  1.45.8.2    bouyer 	struct nfsnode *np = VTONFS(vp);
    989  1.45.8.2    bouyer 	struct uvm_object *uobj = &vp->v_uvm.u_obj;
    990  1.45.8.2    bouyer 	struct nfsmount *nmp = VFSTONFS(vp->v_mount);
    991  1.45.8.2    bouyer 	size_t bytes, iobytes, tailbytes, totalbytes, skipbytes;
    992  1.45.8.2    bouyer 	int flags = ap->a_flags;
    993  1.45.8.2    bouyer 	int bsize;
    994  1.45.8.2    bouyer 	struct vm_page *pgs[16];			/* XXXUBC 16 */
    995  1.45.8.2    bouyer 	boolean_t v3 = NFS_ISV3(vp);
    996  1.45.8.2    bouyer 	boolean_t async = (flags & PGO_SYNCIO) == 0;
    997  1.45.8.2    bouyer 	boolean_t write = (ap->a_access_type & VM_PROT_WRITE) != 0;
    998  1.45.8.2    bouyer 
    999  1.45.8.2    bouyer 	UVMHIST_FUNC("nfs_getpages"); UVMHIST_CALLED(ubchist);
   1000  1.45.8.2    bouyer 	UVMHIST_LOG(ubchist, "vp %p off 0x%x count %d", vp, (int)ap->a_offset,
   1001  1.45.8.2    bouyer 		    *ap->a_count,0);
   1002  1.45.8.2    bouyer 
   1003  1.45.8.2    bouyer #ifdef DIAGNOSTIC
   1004  1.45.8.2    bouyer 	if (ap->a_centeridx < 0 || ap->a_centeridx >= *ap->a_count) {
   1005  1.45.8.2    bouyer 		panic("nfs_getpages: centeridx %d out of range",
   1006  1.45.8.2    bouyer 		      ap->a_centeridx);
   1007  1.45.8.2    bouyer 	}
   1008  1.45.8.2    bouyer #endif
   1009  1.45.8.2    bouyer 
   1010  1.45.8.2    bouyer 	error = 0;
   1011  1.45.8.2    bouyer 	origoffset = ap->a_offset;
   1012  1.45.8.2    bouyer 	eof = vp->v_uvm.u_size;
   1013  1.45.8.2    bouyer 	if (origoffset >= eof) {
   1014  1.45.8.2    bouyer 		if ((flags & PGO_LOCKED) == 0) {
   1015  1.45.8.2    bouyer 			simple_unlock(&uobj->vmobjlock);
   1016  1.45.8.2    bouyer 		}
   1017  1.45.8.2    bouyer 		UVMHIST_LOG(ubchist, "off 0x%x past EOF 0x%x",
   1018  1.45.8.2    bouyer 			    (int)origoffset, (int)eof,0,0);
   1019  1.45.8.2    bouyer 		return EINVAL;
   1020  1.45.8.2    bouyer 	}
   1021  1.45.8.2    bouyer 
   1022  1.45.8.2    bouyer 	if (flags & PGO_LOCKED) {
   1023  1.45.8.2    bouyer 		uvn_findpages(uobj, origoffset, ap->a_count, ap->a_m,
   1024  1.45.8.2    bouyer 			      UFP_NOWAIT|UFP_NOALLOC);
   1025  1.45.8.2    bouyer 		return 0;
   1026  1.45.8.2    bouyer 	}
   1027  1.45.8.2    bouyer 
   1028  1.45.8.2    bouyer 	/* vnode is VOP_LOCKed, uobj is locked */
   1029  1.45.8.2    bouyer 
   1030  1.45.8.2    bouyer 	bsize = nmp->nm_rsize;
   1031  1.45.8.2    bouyer 	orignpages = min(*ap->a_count,
   1032  1.45.8.2    bouyer 			 round_page(eof - origoffset) >> PAGE_SHIFT);
   1033  1.45.8.2    bouyer 	npages = orignpages;
   1034  1.45.8.2    bouyer 	startoffset = origoffset & ~(bsize - 1);
   1035  1.45.8.2    bouyer 	endoffset = round_page((origoffset + (npages << PAGE_SHIFT)
   1036  1.45.8.2    bouyer 				+ bsize - 1) & ~(bsize - 1));
   1037  1.45.8.2    bouyer 	endoffset = min(endoffset, round_page(eof));
   1038  1.45.8.2    bouyer 	ridx = (origoffset - startoffset) >> PAGE_SHIFT;
   1039  1.45.8.2    bouyer 
   1040  1.45.8.2    bouyer 	if (!async && !write) {
   1041  1.45.8.2    bouyer 		int rapages = max(PAGE_SIZE, nmp->nm_rsize) >> PAGE_SHIFT;
   1042  1.45.8.2    bouyer 
   1043  1.45.8.2    bouyer 		(void) VOP_GETPAGES(vp, endoffset, NULL, &rapages, 0,
   1044  1.45.8.2    bouyer 				    VM_PROT_READ, 0, 0);
   1045  1.45.8.2    bouyer 		simple_lock(&uobj->vmobjlock);
   1046  1.45.8.2    bouyer 	}
   1047  1.45.8.2    bouyer 
   1048  1.45.8.2    bouyer 	UVMHIST_LOG(ubchist, "npages %d offset 0x%x", npages,
   1049  1.45.8.2    bouyer 		    (int)origoffset, 0,0);
   1050  1.45.8.2    bouyer 	memset(pgs, 0, sizeof(pgs));
   1051  1.45.8.2    bouyer 	uvn_findpages(uobj, origoffset, &npages, &pgs[ridx], UFP_ALL);
   1052  1.45.8.2    bouyer 
   1053  1.45.8.2    bouyer 	if (flags & PGO_OVERWRITE) {
   1054  1.45.8.2    bouyer 		UVMHIST_LOG(ubchist, "PGO_OVERWRITE",0,0,0,0);
   1055  1.45.8.2    bouyer 
   1056  1.45.8.2    bouyer 		/* XXXUBC for now, zero the page if we allocated it */
   1057  1.45.8.2    bouyer 		for (i = 0; i < npages; i++) {
   1058  1.45.8.2    bouyer 			struct vm_page *pg = pgs[ridx + i];
   1059  1.45.8.2    bouyer 
   1060  1.45.8.2    bouyer 			if (pg->flags & PG_FAKE) {
   1061  1.45.8.2    bouyer 				uvm_pagezero(pg);
   1062  1.45.8.2    bouyer 				pg->flags &= ~(PG_FAKE);
   1063  1.45.8.2    bouyer 			}
   1064  1.45.8.2    bouyer 		}
   1065  1.45.8.2    bouyer 		goto out;
   1066  1.45.8.2    bouyer 	}
   1067  1.45.8.2    bouyer 
   1068  1.45.8.2    bouyer 	/*
   1069  1.45.8.2    bouyer 	 * if the pages are already resident, just return them.
   1070  1.45.8.2    bouyer 	 */
   1071  1.45.8.2    bouyer 
   1072  1.45.8.2    bouyer 	for (i = 0; i < npages; i++) {
   1073  1.45.8.2    bouyer 		struct vm_page *pg = pgs[ridx + i];
   1074  1.45.8.2    bouyer 
   1075  1.45.8.2    bouyer 		if ((pg->flags & PG_FAKE) != 0 ||
   1076  1.45.8.2    bouyer 		    ((ap->a_access_type & VM_PROT_WRITE) &&
   1077  1.45.8.2    bouyer 		      (pg->flags & PG_RDONLY))) {
   1078  1.45.8.2    bouyer 			break;
   1079  1.45.8.2    bouyer 		}
   1080  1.45.8.2    bouyer 	}
   1081  1.45.8.2    bouyer 	if (i == npages) {
   1082  1.45.8.2    bouyer 		UVMHIST_LOG(ubchist, "returning cached pages", 0,0,0,0);
   1083  1.45.8.2    bouyer 		goto out;
   1084  1.45.8.2    bouyer 	}
   1085  1.45.8.2    bouyer 
   1086  1.45.8.2    bouyer 	/*
   1087  1.45.8.2    bouyer 	 * the page wasn't resident and we're not overwriting,
   1088  1.45.8.2    bouyer 	 * so we're going to have to do some i/o.
   1089  1.45.8.2    bouyer 	 * find any additional pages needed to cover the expanded range.
   1090  1.45.8.2    bouyer 	 */
   1091  1.45.8.2    bouyer 
   1092  1.45.8.2    bouyer 	if (startoffset != origoffset ||
   1093  1.45.8.2    bouyer 	    startoffset + (npages << PAGE_SHIFT) != endoffset) {
   1094  1.45.8.2    bouyer 		UVMHIST_LOG(ubchist, "reset npages start 0x%x end 0x%x",
   1095  1.45.8.2    bouyer 			    (int)startoffset, (int)endoffset, 0,0);
   1096  1.45.8.2    bouyer 		npages = (endoffset - startoffset) >> PAGE_SHIFT;
   1097  1.45.8.2    bouyer 		KASSERT(npages != 0);
   1098  1.45.8.2    bouyer 		npgs = npages;
   1099  1.45.8.2    bouyer 		uvn_findpages(uobj, startoffset, &npgs, pgs, UFP_ALL);
   1100  1.45.8.2    bouyer 	}
   1101  1.45.8.2    bouyer 	simple_unlock(&uobj->vmobjlock);
   1102  1.45.8.2    bouyer 
   1103  1.45.8.2    bouyer 	/*
   1104  1.45.8.2    bouyer 	 * update the cached read creds for this node.
   1105  1.45.8.2    bouyer 	 */
   1106  1.45.8.2    bouyer 
   1107  1.45.8.2    bouyer 	if (np->n_rcred) {
   1108  1.45.8.2    bouyer 		crfree(np->n_rcred);
   1109  1.45.8.2    bouyer 	}
   1110  1.45.8.2    bouyer 	np->n_rcred = curproc->p_ucred;
   1111  1.45.8.2    bouyer 	crhold(np->n_rcred);
   1112  1.45.8.2    bouyer 
   1113  1.45.8.2    bouyer 	/*
   1114  1.45.8.2    bouyer 	 * read the desired page(s).
   1115  1.45.8.2    bouyer 	 */
   1116  1.45.8.2    bouyer 
   1117  1.45.8.2    bouyer 	totalbytes = npages << PAGE_SHIFT;
   1118  1.45.8.2    bouyer 	bytes = min(totalbytes, vp->v_uvm.u_size - startoffset);
   1119  1.45.8.2    bouyer 	tailbytes = totalbytes - bytes;
   1120  1.45.8.2    bouyer 	skipbytes = 0;
   1121  1.45.8.2    bouyer 
   1122  1.45.8.2    bouyer 	kva = uvm_pagermapin(pgs, npages, UVMPAGER_MAPIN_WAITOK |
   1123  1.45.8.2    bouyer 			     UVMPAGER_MAPIN_READ);
   1124  1.45.8.2    bouyer 
   1125  1.45.8.2    bouyer 	s = splbio();
   1126  1.45.8.2    bouyer 	mbp = pool_get(&bufpool, PR_WAITOK);
   1127  1.45.8.2    bouyer 	splx(s);
   1128  1.45.8.2    bouyer 	mbp->b_bufsize = totalbytes;
   1129  1.45.8.2    bouyer 	mbp->b_data = (void *)kva;
   1130  1.45.8.2    bouyer 	mbp->b_resid = mbp->b_bcount = bytes;
   1131  1.45.8.2    bouyer 	mbp->b_flags = B_BUSY|B_READ| (async ? B_CALL|B_ASYNC : 0);
   1132  1.45.8.2    bouyer 	mbp->b_iodone = uvm_aio_biodone;
   1133  1.45.8.2    bouyer 	mbp->b_vp = vp;
   1134  1.45.8.2    bouyer 	LIST_INIT(&mbp->b_dep);
   1135  1.45.8.2    bouyer 
   1136  1.45.8.2    bouyer 	/*
   1137  1.45.8.2    bouyer 	 * if EOF is in the middle of the last page, zero the part past EOF.
   1138  1.45.8.2    bouyer 	 */
   1139  1.45.8.2    bouyer 
   1140  1.45.8.3    bouyer 	if (tailbytes > 0 && (pgs[bytes >> PAGE_SHIFT]->flags & PG_FAKE)) {
   1141  1.45.8.2    bouyer 		memset((char *)kva + bytes, 0, tailbytes);
   1142  1.45.8.2    bouyer 	}
   1143  1.45.8.2    bouyer 
   1144  1.45.8.2    bouyer 	/*
   1145  1.45.8.2    bouyer 	 * now loop over the pages, reading as needed.
   1146  1.45.8.2    bouyer 	 */
   1147  1.45.8.2    bouyer 
   1148  1.45.8.2    bouyer 	bp = NULL;
   1149  1.45.8.2    bouyer 	for (offset = startoffset;
   1150  1.45.8.2    bouyer 	     bytes > 0;
   1151  1.45.8.2    bouyer 	     offset += iobytes, bytes -= iobytes) {
   1152  1.45.8.2    bouyer 
   1153  1.45.8.1    bouyer 		/*
   1154  1.45.8.2    bouyer 		 * skip pages which don't need to be read.
   1155  1.45.8.1    bouyer 		 */
   1156  1.45.8.2    bouyer 
   1157  1.45.8.2    bouyer 		pidx = (offset - startoffset) >> PAGE_SHIFT;
   1158  1.45.8.2    bouyer 		UVMHIST_LOG(ubchist, "pidx %d offset 0x%x startoffset 0x%x",
   1159  1.45.8.2    bouyer 			    pidx, (int)offset, (int)startoffset,0);
   1160  1.45.8.2    bouyer 		while ((pgs[pidx]->flags & PG_FAKE) == 0) {
   1161  1.45.8.2    bouyer 			size_t b;
   1162  1.45.8.2    bouyer 
   1163  1.45.8.2    bouyer #ifdef DEBUG
   1164  1.45.8.2    bouyer 			if (offset & (PAGE_SIZE - 1)) {
   1165  1.45.8.2    bouyer 				panic("nfs_getpages: skipping from middle "
   1166  1.45.8.2    bouyer 				      "of page");
   1167  1.45.8.2    bouyer 			}
   1168  1.45.8.2    bouyer #endif
   1169  1.45.8.2    bouyer 
   1170  1.45.8.2    bouyer 			b = min(PAGE_SIZE, bytes);
   1171  1.45.8.2    bouyer 			offset += b;
   1172  1.45.8.2    bouyer 			bytes -= b;
   1173  1.45.8.2    bouyer 			skipbytes += b;
   1174  1.45.8.2    bouyer 			pidx++;
   1175  1.45.8.2    bouyer 			UVMHIST_LOG(ubchist, "skipping, new offset 0x%x",
   1176  1.45.8.2    bouyer 				    (int)offset, 0,0,0);
   1177  1.45.8.2    bouyer 			if (bytes == 0) {
   1178  1.45.8.2    bouyer 				goto loopdone;
   1179  1.45.8.1    bouyer 			}
   1180  1.45.8.1    bouyer 		}
   1181  1.45.8.1    bouyer 
   1182  1.45.8.2    bouyer 		/*
   1183  1.45.8.2    bouyer 		 * see how many pages can be read with this i/o.
   1184  1.45.8.2    bouyer 		 * reduce the i/o size if necessary.
   1185  1.45.8.2    bouyer 		 */
   1186  1.45.8.2    bouyer 
   1187  1.45.8.2    bouyer 		iobytes = bytes;
   1188  1.45.8.2    bouyer 		if (offset + iobytes > round_page(offset)) {
   1189  1.45.8.2    bouyer 			pcount = 1;
   1190  1.45.8.2    bouyer 			while (pidx + pcount < npages &&
   1191  1.45.8.2    bouyer 			       pgs[pidx + pcount]->flags & PG_FAKE) {
   1192  1.45.8.2    bouyer 				pcount++;
   1193  1.45.8.2    bouyer 			}
   1194  1.45.8.2    bouyer 			iobytes = min(iobytes, (pcount << PAGE_SHIFT) -
   1195  1.45.8.2    bouyer 				      (offset - trunc_page(offset)));
   1196  1.45.8.2    bouyer 		}
   1197  1.45.8.2    bouyer 		iobytes = min(iobytes, nmp->nm_rsize);
   1198  1.45.8.2    bouyer 
   1199  1.45.8.2    bouyer 		/*
   1200  1.45.8.2    bouyer 		 * allocate a sub-buf for this piece of the i/o
   1201  1.45.8.2    bouyer 		 * (or just use mbp if there's only 1 piece),
   1202  1.45.8.2    bouyer 		 * and start it going.
   1203  1.45.8.2    bouyer 		 */
   1204  1.45.8.2    bouyer 
   1205  1.45.8.2    bouyer 		if (offset == startoffset && iobytes == bytes) {
   1206  1.45.8.2    bouyer 			bp = mbp;
   1207  1.45.8.2    bouyer 		} else {
   1208  1.45.8.2    bouyer 			s = splbio();
   1209  1.45.8.2    bouyer 			bp = pool_get(&bufpool, PR_WAITOK);
   1210  1.45.8.2    bouyer 			splx(s);
   1211  1.45.8.2    bouyer 			bp->b_data = (char *)kva + offset - startoffset;
   1212  1.45.8.2    bouyer 			bp->b_resid = bp->b_bcount = iobytes;
   1213  1.45.8.2    bouyer 			bp->b_flags = B_BUSY|B_READ|B_CALL|B_ASYNC;
   1214  1.45.8.2    bouyer 			bp->b_iodone = uvm_aio_biodone1;
   1215  1.45.8.2    bouyer 			bp->b_vp = vp;
   1216  1.45.8.2    bouyer 			LIST_INIT(&bp->b_dep);
   1217  1.45.8.2    bouyer 		}
   1218  1.45.8.2    bouyer 		bp->b_private = mbp;
   1219  1.45.8.2    bouyer 		bp->b_lblkno = bp->b_blkno = offset >> DEV_BSHIFT;
   1220  1.45.8.2    bouyer 
   1221  1.45.8.2    bouyer 		UVMHIST_LOG(ubchist, "bp %p offset 0x%x bcount 0x%x blkno 0x%x",
   1222  1.45.8.2    bouyer 			    bp, offset, iobytes, bp->b_blkno);
   1223  1.45.8.2    bouyer 
   1224  1.45.8.2    bouyer 		VOP_STRATEGY(bp);
   1225  1.45.8.2    bouyer 	}
   1226  1.45.8.2    bouyer 
   1227  1.45.8.2    bouyer loopdone:
   1228  1.45.8.2    bouyer 	if (skipbytes) {
   1229  1.45.8.2    bouyer 		s = splbio();
   1230  1.45.8.2    bouyer 		mbp->b_resid -= skipbytes;
   1231  1.45.8.2    bouyer 		if (mbp->b_resid == 0) {
   1232  1.45.8.2    bouyer 			biodone(mbp);
   1233  1.45.8.2    bouyer 		}
   1234  1.45.8.2    bouyer 		splx(s);
   1235  1.45.8.2    bouyer 	}
   1236  1.45.8.2    bouyer 	if (async) {
   1237  1.45.8.2    bouyer 		UVMHIST_LOG(ubchist, "returning PEND",0,0,0,0);
   1238  1.45.8.2    bouyer 		return EINPROGRESS;
   1239  1.45.8.2    bouyer 	}
   1240  1.45.8.2    bouyer 	if (bp != NULL) {
   1241  1.45.8.2    bouyer 		error = biowait(mbp);
   1242  1.45.8.2    bouyer 	}
   1243  1.45.8.2    bouyer 	s = splbio();
   1244  1.45.8.2    bouyer 	pool_put(&bufpool, mbp);
   1245  1.45.8.2    bouyer 	splx(s);
   1246  1.45.8.2    bouyer 	uvm_pagermapout(kva, npages);
   1247  1.45.8.2    bouyer 
   1248  1.45.8.2    bouyer 	if (write && v3) {
   1249  1.45.8.1    bouyer 		lockmgr(&np->n_commitlock, LK_EXCLUSIVE, NULL);
   1250  1.45.8.2    bouyer 		nfs_del_committed_range(vp, origoffset, npages);
   1251  1.45.8.2    bouyer 		nfs_del_tobecommitted_range(vp, origoffset, npages);
   1252  1.45.8.2    bouyer 		for (i = 0; i < npages; i++) {
   1253  1.45.8.2    bouyer 			if (pgs[i] == NULL) {
   1254  1.45.8.2    bouyer 				continue;
   1255  1.45.8.2    bouyer 			}
   1256  1.45.8.2    bouyer 			pgs[i]->flags &= ~(PG_NEEDCOMMIT|PG_RDONLY);
   1257  1.45.8.2    bouyer 		}
   1258  1.45.8.1    bouyer 		lockmgr(&np->n_commitlock, LK_RELEASE, NULL);
   1259  1.45.8.2    bouyer 	}
   1260  1.45.8.2    bouyer 
   1261  1.45.8.2    bouyer 	simple_lock(&uobj->vmobjlock);
   1262  1.45.8.2    bouyer 
   1263  1.45.8.2    bouyer out:
   1264  1.45.8.2    bouyer 	uvm_lock_pageq();
   1265  1.45.8.2    bouyer 	if (error) {
   1266  1.45.8.2    bouyer 		for (i = 0; i < npages; i++) {
   1267  1.45.8.2    bouyer 			if (pgs[i] == NULL) {
   1268  1.45.8.2    bouyer 				continue;
   1269  1.45.8.2    bouyer 			}
   1270  1.45.8.2    bouyer 			UVMHIST_LOG(ubchist, "examining pg %p flags 0x%x",
   1271  1.45.8.2    bouyer 				    pgs[i], pgs[i]->flags, 0,0);
   1272  1.45.8.2    bouyer 			if ((pgs[i]->flags & PG_FAKE) == 0) {
   1273  1.45.8.2    bouyer 				continue;
   1274  1.45.8.2    bouyer 			}
   1275  1.45.8.2    bouyer 			if (pgs[i]->flags & PG_WANTED) {
   1276  1.45.8.2    bouyer 				wakeup(pgs[i]);
   1277  1.45.8.2    bouyer 			}
   1278  1.45.8.2    bouyer 			uvm_pagefree(pgs[i]);
   1279  1.45.8.2    bouyer 		}
   1280  1.45.8.2    bouyer 		goto done;
   1281  1.45.8.2    bouyer 	}
   1282  1.45.8.2    bouyer 
   1283  1.45.8.2    bouyer 	UVMHIST_LOG(ubchist, "ridx %d count %d", ridx, npages, 0,0);
   1284  1.45.8.2    bouyer 	for (i = 0; i < npages; i++) {
   1285  1.45.8.2    bouyer 		if (pgs[i] == NULL) {
   1286  1.45.8.2    bouyer 			continue;
   1287  1.45.8.2    bouyer 		}
   1288  1.45.8.2    bouyer 		UVMHIST_LOG(ubchist, "examining pg %p flags 0x%x",
   1289  1.45.8.2    bouyer 			    pgs[i], pgs[i]->flags, 0,0);
   1290  1.45.8.2    bouyer 		if (pgs[i]->flags & PG_FAKE) {
   1291  1.45.8.2    bouyer 			UVMHIST_LOG(ubchist, "unfaking pg %p offset 0x%x",
   1292  1.45.8.2    bouyer 				    pgs[i], (int)pgs[i]->offset,0,0);
   1293  1.45.8.2    bouyer 			pgs[i]->flags &= ~(PG_FAKE);
   1294  1.45.8.2    bouyer 			pmap_clear_modify(pgs[i]);
   1295  1.45.8.2    bouyer 			pmap_clear_reference(pgs[i]);
   1296  1.45.8.2    bouyer 		}
   1297  1.45.8.2    bouyer 		if (i < ridx || i >= ridx + orignpages || async) {
   1298  1.45.8.2    bouyer 			UVMHIST_LOG(ubchist, "unbusy pg %p offset 0x%x",
   1299  1.45.8.2    bouyer 				    pgs[i], (int)pgs[i]->offset,0,0);
   1300  1.45.8.2    bouyer 			KASSERT((pgs[i]->flags & PG_RELEASED) == 0);
   1301  1.45.8.2    bouyer 			if (pgs[i]->flags & PG_WANTED) {
   1302  1.45.8.2    bouyer 				wakeup(pgs[i]);
   1303  1.45.8.2    bouyer 			}
   1304  1.45.8.2    bouyer 			if (pgs[i]->wire_count == 0) {
   1305  1.45.8.2    bouyer 				uvm_pageactivate(pgs[i]);
   1306  1.45.8.2    bouyer 			}
   1307  1.45.8.2    bouyer 			pgs[i]->flags &= ~(PG_WANTED|PG_BUSY);
   1308  1.45.8.2    bouyer 			UVM_PAGE_OWN(pgs[i], NULL);
   1309  1.45.8.2    bouyer 		}
   1310  1.45.8.2    bouyer 	}
   1311  1.45.8.2    bouyer 
   1312  1.45.8.2    bouyer done:
   1313  1.45.8.2    bouyer 	uvm_unlock_pageq();
   1314  1.45.8.2    bouyer 	simple_unlock(&uobj->vmobjlock);
   1315  1.45.8.2    bouyer 	if (ap->a_m != NULL) {
   1316  1.45.8.2    bouyer 		memcpy(ap->a_m, &pgs[ridx],
   1317  1.45.8.2    bouyer 		       *ap->a_count * sizeof(struct vm_page *));
   1318  1.45.8.2    bouyer 	}
   1319  1.45.8.2    bouyer 
   1320  1.45.8.2    bouyer 	UVMHIST_LOG(ubchist, "done -> %d", error, 0,0,0);
   1321  1.45.8.2    bouyer 	return error;
   1322  1.45.8.2    bouyer }
   1323  1.45.8.2    bouyer 
   1324  1.45.8.2    bouyer /*
   1325  1.45.8.2    bouyer  * Vnode op for VM putpages.
   1326  1.45.8.2    bouyer  */
   1327  1.45.8.2    bouyer int
   1328  1.45.8.2    bouyer nfs_putpages(v)
   1329  1.45.8.2    bouyer 	void *v;
   1330  1.45.8.2    bouyer {
   1331  1.45.8.2    bouyer 	struct vop_putpages_args /* {
   1332  1.45.8.2    bouyer 		struct vnode *a_vp;
   1333  1.45.8.2    bouyer 		struct vm_page **a_m;
   1334  1.45.8.2    bouyer 		int a_count;
   1335  1.45.8.2    bouyer 		int a_flags;
   1336  1.45.8.2    bouyer 		int *a_rtvals;
   1337  1.45.8.2    bouyer 	} */ *ap = v;
   1338  1.45.8.2    bouyer 
   1339  1.45.8.2    bouyer 	struct vnode *vp = ap->a_vp;
   1340  1.45.8.2    bouyer 	struct nfsnode *np = VTONFS(vp);
   1341  1.45.8.2    bouyer 	struct nfsmount *nmp = VFSTONFS(vp->v_mount);
   1342  1.45.8.2    bouyer 	struct buf *bp, *mbp;
   1343  1.45.8.2    bouyer 	struct vm_page **pgs = ap->a_m;
   1344  1.45.8.2    bouyer 	int flags = ap->a_flags;
   1345  1.45.8.2    bouyer 	int npages = ap->a_count;
   1346  1.45.8.2    bouyer 	int s, error = 0, i;
   1347  1.45.8.2    bouyer 	size_t bytes, iobytes, skipbytes;
   1348  1.45.8.2    bouyer 	vaddr_t kva;
   1349  1.45.8.2    bouyer 	off_t offset, origoffset, commitoff;
   1350  1.45.8.2    bouyer 	uint32_t commitbytes;
   1351  1.45.8.2    bouyer 	boolean_t v3 = NFS_ISV3(vp);
   1352  1.45.8.2    bouyer 	boolean_t async = (flags & PGO_SYNCIO) == 0;
   1353  1.45.8.2    bouyer 	boolean_t weak = (flags & PGO_WEAK) && v3;
   1354  1.45.8.2    bouyer 	UVMHIST_FUNC("nfs_putpages"); UVMHIST_CALLED(ubchist);
   1355  1.45.8.2    bouyer 
   1356  1.45.8.2    bouyer 	UVMHIST_LOG(ubchist, "vp %p pgp %p count %d",
   1357  1.45.8.2    bouyer 		    vp, ap->a_m, ap->a_count,0);
   1358  1.45.8.2    bouyer 
   1359  1.45.8.2    bouyer 	simple_unlock(&vp->v_uvm.u_obj.vmobjlock);
   1360  1.45.8.2    bouyer 
   1361  1.45.8.2    bouyer 	origoffset = pgs[0]->offset;
   1362  1.45.8.2    bouyer 	bytes = min(ap->a_count << PAGE_SHIFT, vp->v_uvm.u_size - origoffset);
   1363  1.45.8.2    bouyer 	skipbytes = 0;
   1364  1.45.8.2    bouyer 
   1365  1.45.8.2    bouyer 	/*
   1366  1.45.8.2    bouyer 	 * if the range has been committed already, mark the pages thus.
   1367  1.45.8.2    bouyer 	 * if the range just needs to be committed, we're done
   1368  1.45.8.2    bouyer 	 * if it's a weak putpage, otherwise commit the range.
   1369  1.45.8.2    bouyer 	 */
   1370  1.45.8.2    bouyer 
   1371  1.45.8.2    bouyer 	if (v3) {
   1372  1.45.8.1    bouyer 		lockmgr(&np->n_commitlock, LK_EXCLUSIVE, NULL);
   1373  1.45.8.2    bouyer 		if (nfs_in_committed_range(vp, origoffset, bytes)) {
   1374  1.45.8.2    bouyer 			goto committed;
   1375  1.45.8.2    bouyer 		}
   1376  1.45.8.2    bouyer 		if (nfs_in_tobecommitted_range(vp, origoffset, bytes)) {
   1377  1.45.8.2    bouyer 			if (weak) {
   1378  1.45.8.2    bouyer 				lockmgr(&np->n_commitlock, LK_RELEASE, NULL);
   1379  1.45.8.2    bouyer 				return 0;
   1380  1.45.8.2    bouyer 			} else {
   1381  1.45.8.2    bouyer 				commitoff = np->n_pushlo;
   1382  1.45.8.2    bouyer 				commitbytes = (uint32_t)(np->n_pushhi -
   1383  1.45.8.2    bouyer 							 np->n_pushlo);
   1384  1.45.8.2    bouyer 				goto commit;
   1385  1.45.8.2    bouyer 			}
   1386  1.45.8.2    bouyer 		}
   1387  1.45.8.1    bouyer 		lockmgr(&np->n_commitlock, LK_RELEASE, NULL);
   1388  1.45.8.2    bouyer 	}
   1389  1.45.8.2    bouyer 
   1390  1.45.8.2    bouyer 	/*
   1391  1.45.8.2    bouyer 	 * otherwise write or commit all the pages.
   1392  1.45.8.2    bouyer 	 */
   1393  1.45.8.2    bouyer 
   1394  1.45.8.2    bouyer 	kva = uvm_pagermapin(pgs, ap->a_count, UVMPAGER_MAPIN_WAITOK|
   1395  1.45.8.2    bouyer 			     UVMPAGER_MAPIN_WRITE);
   1396  1.45.8.2    bouyer 
   1397  1.45.8.2    bouyer 	s = splbio();
   1398  1.45.8.2    bouyer 	vp->v_numoutput += 2;
   1399  1.45.8.2    bouyer 	mbp = pool_get(&bufpool, PR_WAITOK);
   1400  1.45.8.2    bouyer 	UVMHIST_LOG(ubchist, "vp %p mbp %p num now %d bytes 0x%x",
   1401  1.45.8.2    bouyer 		    vp, mbp, vp->v_numoutput, bytes);
   1402  1.45.8.2    bouyer 	splx(s);
   1403  1.45.8.2    bouyer 	mbp->b_bufsize = npages << PAGE_SHIFT;
   1404  1.45.8.2    bouyer 	mbp->b_data = (void *)kva;
   1405  1.45.8.2    bouyer 	mbp->b_resid = mbp->b_bcount = bytes;
   1406  1.45.8.2    bouyer 	mbp->b_flags = B_BUSY|B_WRITE|B_AGE |
   1407  1.45.8.2    bouyer 		(async ? B_CALL|B_ASYNC : 0) |
   1408  1.45.8.2    bouyer 		(curproc == uvm.pagedaemon_proc ? B_PDAEMON : 0);
   1409  1.45.8.2    bouyer 	mbp->b_iodone = uvm_aio_aiodone;
   1410  1.45.8.2    bouyer 	mbp->b_vp = vp;
   1411  1.45.8.2    bouyer 	LIST_INIT(&mbp->b_dep);
   1412  1.45.8.2    bouyer 
   1413  1.45.8.2    bouyer 	for (offset = origoffset;
   1414  1.45.8.2    bouyer 	     bytes > 0;
   1415  1.45.8.2    bouyer 	     offset += iobytes, bytes -= iobytes) {
   1416  1.45.8.2    bouyer 		iobytes = min(nmp->nm_wsize, bytes);
   1417      1.12   mycroft 
   1418      1.12   mycroft 		/*
   1419  1.45.8.2    bouyer 		 * skip writing any pages which only need a commit.
   1420      1.12   mycroft 		 */
   1421  1.45.8.2    bouyer 
   1422  1.45.8.2    bouyer 		if ((pgs[(offset - origoffset) >> PAGE_SHIFT]->flags &
   1423  1.45.8.2    bouyer 		     PG_NEEDCOMMIT) != 0) {
   1424  1.45.8.2    bouyer 			iobytes = PAGE_SIZE;
   1425  1.45.8.2    bouyer 			skipbytes += min(iobytes, vp->v_uvm.u_size - offset);
   1426  1.45.8.2    bouyer 			continue;
   1427       1.1       cgd 		}
   1428  1.45.8.2    bouyer 
   1429  1.45.8.2    bouyer 		/* if it's really one i/o, don't make a second buf */
   1430  1.45.8.2    bouyer 		if (offset == origoffset && iobytes == bytes) {
   1431  1.45.8.2    bouyer 			bp = mbp;
   1432  1.45.8.2    bouyer 		} else {
   1433  1.45.8.2    bouyer 			s = splbio();
   1434  1.45.8.2    bouyer 			vp->v_numoutput++;
   1435  1.45.8.2    bouyer 			bp = pool_get(&bufpool, PR_WAITOK);
   1436  1.45.8.2    bouyer 			UVMHIST_LOG(ubchist, "vp %p bp %p num now %d",
   1437  1.45.8.2    bouyer 				    vp, bp, vp->v_numoutput, 0);
   1438  1.45.8.2    bouyer 			splx(s);
   1439  1.45.8.2    bouyer 			bp->b_data = (char *)kva + (offset - origoffset);
   1440  1.45.8.2    bouyer 			bp->b_resid = bp->b_bcount = iobytes;
   1441  1.45.8.2    bouyer 			bp->b_flags = B_BUSY|B_WRITE|B_CALL|B_ASYNC;
   1442  1.45.8.2    bouyer 			bp->b_iodone = uvm_aio_biodone1;
   1443  1.45.8.2    bouyer 			bp->b_vp = vp;
   1444  1.45.8.2    bouyer 			LIST_INIT(&bp->b_dep);
   1445  1.45.8.2    bouyer 		}
   1446  1.45.8.2    bouyer 		bp->b_private = mbp;
   1447  1.45.8.2    bouyer 		bp->b_lblkno = bp->b_blkno = (daddr_t)(offset >> DEV_BSHIFT);
   1448  1.45.8.2    bouyer 		UVMHIST_LOG(ubchist, "bp %p numout %d",
   1449  1.45.8.2    bouyer 			    bp, vp->v_numoutput,0,0);
   1450  1.45.8.2    bouyer 		VOP_STRATEGY(bp);
   1451       1.1       cgd 	}
   1452  1.45.8.2    bouyer 	if (skipbytes) {
   1453  1.45.8.2    bouyer 		UVMHIST_LOG(ubchist, "skipbytes %d", bytes, 0,0,0);
   1454  1.45.8.2    bouyer 		s = splbio();
   1455  1.45.8.2    bouyer 		mbp->b_resid -= skipbytes;
   1456  1.45.8.2    bouyer 		if (mbp->b_resid == 0) {
   1457  1.45.8.2    bouyer 			biodone(mbp);
   1458  1.45.8.2    bouyer 		}
   1459  1.45.8.2    bouyer 		splx(s);
   1460  1.45.8.2    bouyer 	}
   1461  1.45.8.2    bouyer 	if (async) {
   1462  1.45.8.2    bouyer 		return EINPROGRESS;
   1463  1.45.8.2    bouyer 	}
   1464  1.45.8.2    bouyer 	error = biowait(mbp);
   1465  1.45.8.2    bouyer 
   1466  1.45.8.2    bouyer 	s = splbio();
   1467  1.45.8.2    bouyer 	vwakeup(mbp);
   1468  1.45.8.2    bouyer 	pool_put(&bufpool, mbp);
   1469  1.45.8.2    bouyer 	splx(s);
   1470  1.45.8.2    bouyer 
   1471  1.45.8.2    bouyer 	uvm_pagermapout(kva, ap->a_count);
   1472  1.45.8.2    bouyer 	if (error || !v3) {
   1473  1.45.8.2    bouyer 		UVMHIST_LOG(ubchist, "returning error %d", error, 0,0,0);
   1474  1.45.8.2    bouyer 		return error;
   1475  1.45.8.2    bouyer 	}
   1476  1.45.8.2    bouyer 
   1477  1.45.8.2    bouyer 	/*
   1478  1.45.8.2    bouyer 	 * for a weak put, mark the range as "to be committed"
   1479  1.45.8.2    bouyer 	 * and mark the pages read-only so that we will be notified
   1480  1.45.8.2    bouyer 	 * to remove the pages from the "to be committed" range
   1481  1.45.8.2    bouyer 	 * if they are made dirty again.
   1482  1.45.8.2    bouyer 	 * for a strong put, commit the pages and remove them from the
   1483  1.45.8.2    bouyer 	 * "to be committed" range.  also, mark them as writable
   1484  1.45.8.2    bouyer 	 * and not cleanable with just a commit.
   1485  1.45.8.2    bouyer 	 */
   1486  1.45.8.2    bouyer 
   1487  1.45.8.2    bouyer 	lockmgr(&np->n_commitlock, LK_EXCLUSIVE, NULL);
   1488  1.45.8.2    bouyer 	if (weak) {
   1489  1.45.8.2    bouyer 		nfs_add_tobecommitted_range(vp, origoffset,
   1490  1.45.8.2    bouyer 					    npages << PAGE_SHIFT);
   1491  1.45.8.2    bouyer 		for (i = 0; i < npages; i++) {
   1492  1.45.8.2    bouyer 			pgs[i]->flags |= PG_NEEDCOMMIT|PG_RDONLY;
   1493  1.45.8.2    bouyer 		}
   1494  1.45.8.2    bouyer 	} else {
   1495  1.45.8.2    bouyer 		commitoff = origoffset;
   1496  1.45.8.2    bouyer 		commitbytes = npages << PAGE_SHIFT;
   1497  1.45.8.2    bouyer commit:
   1498  1.45.8.2    bouyer 		error = nfs_commit(vp, commitoff, commitbytes, curproc);
   1499  1.45.8.2    bouyer 		nfs_del_tobecommitted_range(vp, commitoff, commitbytes);
   1500  1.45.8.2    bouyer committed:
   1501  1.45.8.2    bouyer 		for (i = 0; i < npages; i++) {
   1502  1.45.8.2    bouyer 			pgs[i]->flags &= ~(PG_NEEDCOMMIT|PG_RDONLY);
   1503  1.45.8.2    bouyer 		}
   1504  1.45.8.2    bouyer 	}
   1505  1.45.8.2    bouyer 	lockmgr(&np->n_commitlock, LK_RELEASE, NULL);
   1506  1.45.8.2    bouyer 	return error;
   1507       1.1       cgd }
   1508