Home | History | Annotate | Line # | Download | only in lfs
lfs_syscalls.c revision 1.111
      1  1.111  perseant /*	$NetBSD: lfs_syscalls.c,v 1.111 2006/04/07 23:59:28 perseant Exp $	*/
      2    1.3       cgd 
      3    1.1   mycroft /*-
      4   1.80  perseant  * Copyright (c) 1999, 2000, 2001, 2002, 2003 The NetBSD Foundation, Inc.
      5   1.22  perseant  * All rights reserved.
      6   1.22  perseant  *
      7   1.22  perseant  * This code is derived from software contributed to The NetBSD Foundation
      8   1.22  perseant  * by Konrad E. Schroder <perseant (at) hhhh.org>.
      9   1.22  perseant  *
     10   1.22  perseant  * Redistribution and use in source and binary forms, with or without
     11   1.22  perseant  * modification, are permitted provided that the following conditions
     12   1.22  perseant  * are met:
     13   1.22  perseant  * 1. Redistributions of source code must retain the above copyright
     14   1.22  perseant  *    notice, this list of conditions and the following disclaimer.
     15   1.22  perseant  * 2. Redistributions in binary form must reproduce the above copyright
     16   1.22  perseant  *    notice, this list of conditions and the following disclaimer in the
     17   1.22  perseant  *    documentation and/or other materials provided with the distribution.
     18   1.22  perseant  * 3. All advertising materials mentioning features or use of this software
     19   1.22  perseant  *    must display the following acknowledgement:
     20   1.82  perseant  *	This product includes software developed by the NetBSD
     21   1.82  perseant  *	Foundation, Inc. and its contributors.
     22   1.22  perseant  * 4. Neither the name of The NetBSD Foundation nor the names of its
     23   1.22  perseant  *    contributors may be used to endorse or promote products derived
     24   1.22  perseant  *    from this software without specific prior written permission.
     25   1.22  perseant  *
     26   1.22  perseant  * THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
     27   1.22  perseant  * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
     28   1.22  perseant  * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
     29   1.22  perseant  * PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
     30   1.22  perseant  * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
     31   1.22  perseant  * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
     32   1.22  perseant  * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
     33   1.22  perseant  * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
     34   1.22  perseant  * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
     35   1.22  perseant  * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
     36   1.22  perseant  * POSSIBILITY OF SUCH DAMAGE.
     37   1.22  perseant  */
     38   1.22  perseant /*-
     39    1.1   mycroft  * Copyright (c) 1991, 1993, 1994
     40    1.1   mycroft  *	The Regents of the University of California.  All rights reserved.
     41    1.1   mycroft  *
     42    1.1   mycroft  * Redistribution and use in source and binary forms, with or without
     43    1.1   mycroft  * modification, are permitted provided that the following conditions
     44    1.1   mycroft  * are met:
     45    1.1   mycroft  * 1. Redistributions of source code must retain the above copyright
     46    1.1   mycroft  *    notice, this list of conditions and the following disclaimer.
     47    1.1   mycroft  * 2. Redistributions in binary form must reproduce the above copyright
     48    1.1   mycroft  *    notice, this list of conditions and the following disclaimer in the
     49    1.1   mycroft  *    documentation and/or other materials provided with the distribution.
     50   1.97       agc  * 3. Neither the name of the University nor the names of its contributors
     51    1.1   mycroft  *    may be used to endorse or promote products derived from this software
     52    1.1   mycroft  *    without specific prior written permission.
     53    1.1   mycroft  *
     54    1.1   mycroft  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
     55    1.1   mycroft  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
     56    1.1   mycroft  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
     57    1.1   mycroft  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
     58    1.1   mycroft  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
     59    1.1   mycroft  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
     60    1.1   mycroft  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
     61    1.1   mycroft  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
     62    1.1   mycroft  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
     63    1.1   mycroft  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
     64    1.1   mycroft  * SUCH DAMAGE.
     65    1.1   mycroft  *
     66   1.16      fvdl  *	@(#)lfs_syscalls.c	8.10 (Berkeley) 5/14/95
     67    1.1   mycroft  */
     68   1.61     lukem 
     69   1.61     lukem #include <sys/cdefs.h>
     70  1.111  perseant __KERNEL_RCSID(0, "$NetBSD: lfs_syscalls.c,v 1.111 2006/04/07 23:59:28 perseant Exp $");
     71   1.15   thorpej 
     72   1.86  perseant #ifndef LFS
     73   1.86  perseant # define LFS		/* for prototypes in syscallargs.h */
     74   1.86  perseant #endif
     75    1.1   mycroft 
     76    1.1   mycroft #include <sys/param.h>
     77    1.5       cgd #include <sys/systm.h>
     78    1.1   mycroft #include <sys/proc.h>
     79    1.1   mycroft #include <sys/buf.h>
     80    1.1   mycroft #include <sys/mount.h>
     81    1.1   mycroft #include <sys/vnode.h>
     82    1.1   mycroft #include <sys/kernel.h>
     83    1.1   mycroft 
     84   1.78   thorpej #include <sys/sa.h>
     85    1.5       cgd #include <sys/syscallargs.h>
     86    1.5       cgd 
     87    1.1   mycroft #include <ufs/ufs/inode.h>
     88    1.1   mycroft #include <ufs/ufs/ufsmount.h>
     89    1.1   mycroft #include <ufs/ufs/ufs_extern.h>
     90    1.1   mycroft 
     91    1.1   mycroft #include <ufs/lfs/lfs.h>
     92    1.1   mycroft #include <ufs/lfs/lfs_extern.h>
     93   1.10  christos 
     94   1.65  perseant struct buf *lfs_fakebuf(struct lfs *, struct vnode *, int, size_t, caddr_t);
     95   1.74      yamt int lfs_fasthashget(dev_t, ino_t, struct vnode **);
     96    1.1   mycroft 
     97   1.22  perseant pid_t lfs_cleaner_pid = 0;
     98   1.80  perseant 
     99   1.22  perseant #define LFS_FORCE_WRITE UNASSIGNED
    100   1.16      fvdl 
    101    1.1   mycroft /*
    102   1.31  christos  * sys_lfs_markv:
    103    1.1   mycroft  *
    104    1.1   mycroft  * This will mark inodes and blocks dirty, so they are written into the log.
    105    1.1   mycroft  * It will block until all the blocks have been written.  The segment create
    106    1.1   mycroft  * time passed in the block_info and inode_info structures is used to decide
    107    1.1   mycroft  * if the data is valid for each block (in case some process dirtied a block
    108    1.1   mycroft  * or inode that is being cleaned between the determination that a block is
    109    1.1   mycroft  * live and the lfs_markv call).
    110    1.1   mycroft  *
    111    1.1   mycroft  *  0 on success
    112    1.1   mycroft  * -1/errno is return on error.
    113    1.1   mycroft  */
    114   1.57  perseant #ifdef USE_64BIT_SYSCALLS
    115    1.1   mycroft int
    116  1.108  christos sys_lfs_markv(struct lwp *l, void *v, register_t *retval)
    117    1.9   thorpej {
    118   1.32  drochner 	struct sys_lfs_markv_args /* {
    119    1.5       cgd 		syscallarg(fsid_t *) fsidp;
    120    1.5       cgd 		syscallarg(struct block_info *) blkiov;
    121    1.5       cgd 		syscallarg(int) blkcnt;
    122   1.32  drochner 	} */ *uap = v;
    123   1.57  perseant 	BLOCK_INFO *blkiov;
    124  1.108  christos 	struct proc *p = l->l_proc;
    125   1.57  perseant 	int blkcnt, error;
    126   1.57  perseant 	fsid_t fsid;
    127  1.105  perseant 	struct lfs *fs;
    128  1.105  perseant 	struct mount *mntp;
    129   1.57  perseant 
    130   1.57  perseant 	if ((error = suser(p->p_ucred, &p->p_acflag)) != 0)
    131   1.57  perseant 		return (error);
    132  1.102     perry 
    133   1.57  perseant 	if ((error = copyin(SCARG(uap, fsidp), &fsid, sizeof(fsid_t))) != 0)
    134   1.57  perseant 		return (error);
    135   1.57  perseant 
    136  1.105  perseant 	if ((mntp = vfs_getvfs(fsidp)) == NULL)
    137  1.105  perseant 		return (ENOENT);
    138  1.105  perseant 	fs = VFSTOUFS(mntp)->um_lfs;
    139  1.105  perseant 
    140   1.57  perseant 	blkcnt = SCARG(uap, blkcnt);
    141   1.84  perseant 	if ((u_int) blkcnt > LFS_MARKV_MAXBLKCNT)
    142   1.58  jdolecek 		return (EINVAL);
    143   1.58  jdolecek 
    144  1.105  perseant 	blkiov = lfs_malloc(fs, blkcnt * sizeof(BLOCK_INFO), LFS_NB_BLKIOV);
    145   1.57  perseant 	if ((error = copyin(SCARG(uap, blkiov), blkiov,
    146   1.57  perseant 			    blkcnt * sizeof(BLOCK_INFO))) != 0)
    147   1.57  perseant 		goto out;
    148   1.57  perseant 
    149   1.57  perseant 	if ((error = lfs_markv(p, &fsid, blkiov, blkcnt)) == 0)
    150   1.57  perseant 		copyout(blkiov, SCARG(uap, blkiov),
    151   1.57  perseant 			blkcnt * sizeof(BLOCK_INFO));
    152   1.57  perseant     out:
    153  1.105  perseant 	lfs_free(fs, blkiov, LFS_NB_BLKIOV);
    154   1.57  perseant 	return error;
    155   1.57  perseant }
    156   1.57  perseant #else
    157   1.57  perseant int
    158   1.78   thorpej sys_lfs_markv(struct lwp *l, void *v, register_t *retval)
    159   1.57  perseant {
    160   1.57  perseant 	struct sys_lfs_markv_args /* {
    161   1.57  perseant 		syscallarg(fsid_t *) fsidp;
    162   1.57  perseant 		syscallarg(struct block_info *) blkiov;
    163   1.57  perseant 		syscallarg(int) blkcnt;
    164   1.57  perseant 	} */ *uap = v;
    165   1.57  perseant 	BLOCK_INFO *blkiov;
    166   1.57  perseant 	BLOCK_INFO_15 *blkiov15;
    167  1.108  christos 	struct proc *p = l->l_proc;
    168   1.57  perseant 	int i, blkcnt, error;
    169   1.57  perseant 	fsid_t fsid;
    170  1.105  perseant 	struct lfs *fs;
    171  1.105  perseant 	struct mount *mntp;
    172   1.57  perseant 
    173  1.108  christos 	if ((error = suser(p->p_ucred, &p->p_acflag)) != 0)
    174   1.57  perseant 		return (error);
    175  1.102     perry 
    176   1.57  perseant 	if ((error = copyin(SCARG(uap, fsidp), &fsid, sizeof(fsid_t))) != 0)
    177   1.57  perseant 		return (error);
    178   1.57  perseant 
    179  1.105  perseant 	if ((mntp = vfs_getvfs(&fsid)) == NULL)
    180  1.105  perseant 		return (ENOENT);
    181  1.105  perseant 	fs = VFSTOUFS(mntp)->um_lfs;
    182  1.105  perseant 
    183   1.57  perseant 	blkcnt = SCARG(uap, blkcnt);
    184   1.84  perseant 	if ((u_int) blkcnt > LFS_MARKV_MAXBLKCNT)
    185   1.58  jdolecek 		return (EINVAL);
    186   1.58  jdolecek 
    187  1.105  perseant 	blkiov = lfs_malloc(fs, blkcnt * sizeof(BLOCK_INFO), LFS_NB_BLKIOV);
    188  1.105  perseant 	blkiov15 = lfs_malloc(fs, blkcnt * sizeof(BLOCK_INFO_15), LFS_NB_BLKIOV);
    189   1.57  perseant 	if ((error = copyin(SCARG(uap, blkiov), blkiov15,
    190   1.57  perseant 			    blkcnt * sizeof(BLOCK_INFO_15))) != 0)
    191   1.57  perseant 		goto out;
    192   1.57  perseant 
    193   1.57  perseant 	for (i = 0; i < blkcnt; i++) {
    194   1.57  perseant 		blkiov[i].bi_inode     = blkiov15[i].bi_inode;
    195   1.57  perseant 		blkiov[i].bi_lbn       = blkiov15[i].bi_lbn;
    196   1.57  perseant 		blkiov[i].bi_daddr     = blkiov15[i].bi_daddr;
    197   1.57  perseant 		blkiov[i].bi_segcreate = blkiov15[i].bi_segcreate;
    198   1.57  perseant 		blkiov[i].bi_version   = blkiov15[i].bi_version;
    199   1.82  perseant 		blkiov[i].bi_bp	       = blkiov15[i].bi_bp;
    200   1.57  perseant 		blkiov[i].bi_size      = blkiov15[i].bi_size;
    201   1.57  perseant 	}
    202   1.57  perseant 
    203  1.108  christos 	if ((error = lfs_markv(p, &fsid, blkiov, blkcnt)) == 0) {
    204   1.57  perseant 		for (i = 0; i < blkcnt; i++) {
    205   1.82  perseant 			blkiov15[i].bi_inode	 = blkiov[i].bi_inode;
    206   1.82  perseant 			blkiov15[i].bi_lbn	 = blkiov[i].bi_lbn;
    207   1.82  perseant 			blkiov15[i].bi_daddr	 = blkiov[i].bi_daddr;
    208   1.57  perseant 			blkiov15[i].bi_segcreate = blkiov[i].bi_segcreate;
    209   1.82  perseant 			blkiov15[i].bi_version	 = blkiov[i].bi_version;
    210   1.82  perseant 			blkiov15[i].bi_bp	 = blkiov[i].bi_bp;
    211   1.82  perseant 			blkiov15[i].bi_size	 = blkiov[i].bi_size;
    212   1.57  perseant 		}
    213   1.57  perseant 		copyout(blkiov15, SCARG(uap, blkiov),
    214   1.57  perseant 			blkcnt * sizeof(BLOCK_INFO_15));
    215   1.57  perseant 	}
    216   1.57  perseant     out:
    217  1.105  perseant 	lfs_free(fs, blkiov, LFS_NB_BLKIOV);
    218  1.105  perseant 	lfs_free(fs, blkiov15, LFS_NB_BLKIOV);
    219   1.57  perseant 	return error;
    220   1.57  perseant }
    221   1.57  perseant #endif
    222   1.57  perseant 
    223   1.77      yamt #define	LFS_MARKV_MAX_BLOCKS	(LFS_MAX_BUFS)
    224   1.77      yamt 
    225   1.84  perseant int
    226   1.57  perseant lfs_markv(struct proc *p, fsid_t *fsidp, BLOCK_INFO *blkiov, int blkcnt)
    227   1.57  perseant {
    228    1.1   mycroft 	BLOCK_INFO *blkp;
    229    1.1   mycroft 	IFILE *ifp;
    230   1.96      yamt 	struct buf *bp;
    231   1.10  christos 	struct inode *ip = NULL;
    232    1.1   mycroft 	struct lfs *fs;
    233    1.1   mycroft 	struct mount *mntp;
    234  1.110       rtr 	struct vnode *vp = NULL;
    235    1.1   mycroft 	ino_t lastino;
    236   1.79      fvdl 	daddr_t b_daddr, v_daddr;
    237   1.74      yamt 	int cnt, error;
    238   1.62       chs 	int do_again = 0;
    239   1.74      yamt 	int numrefed = 0;
    240   1.49  perseant 	ino_t maxino;
    241   1.69  perseant 	size_t obsize;
    242    1.1   mycroft 
    243   1.77      yamt 	/* number of blocks/inodes that we have already bwrite'ed */
    244   1.77      yamt 	int nblkwritten, ninowritten;
    245   1.77      yamt 
    246   1.57  perseant 	if ((mntp = vfs_getvfs(fsidp)) == NULL)
    247   1.53  perseant 		return (ENOENT);
    248    1.1   mycroft 
    249   1.22  perseant 	fs = VFSTOUFS(mntp)->um_lfs;
    250   1.96      yamt 
    251   1.96      yamt 	if (fs->lfs_ronly)
    252   1.96      yamt 		return EROFS;
    253   1.96      yamt 
    254   1.89      fvdl 	maxino = (fragstoblks(fs, fsbtofrags(fs, VTOI(fs->lfs_ivnode)->i_ffs1_blocks)) -
    255   1.49  perseant 		      fs->lfs_cleansz - fs->lfs_segtabsz) * fs->lfs_ifpb;
    256   1.49  perseant 
    257   1.57  perseant 	cnt = blkcnt;
    258  1.102     perry 
    259   1.53  perseant 	if ((error = vfs_busy(mntp, LK_NOWAIT, NULL)) != 0)
    260   1.53  perseant 		return (error);
    261   1.53  perseant 
    262   1.22  perseant 	/*
    263   1.22  perseant 	 * This seglock is just to prevent the fact that we might have to sleep
    264   1.22  perseant 	 * from allowing the possibility that our blocks might become
    265   1.22  perseant 	 * invalid.
    266   1.22  perseant 	 *
    267   1.22  perseant 	 * It is also important to note here that unless we specify SEGM_CKP,
    268   1.22  perseant 	 * any Ifile blocks that we might be asked to clean will never get
    269   1.22  perseant 	 * to the disk.
    270   1.22  perseant 	 */
    271   1.67  perseant 	lfs_seglock(fs, SEGM_CLEAN | SEGM_CKP | SEGM_SYNC);
    272  1.102     perry 
    273    1.1   mycroft 	/* Mark blocks/inodes dirty.  */
    274    1.1   mycroft 	error = 0;
    275    1.1   mycroft 
    276   1.22  perseant 	/* these were inside the initialization for the for loop */
    277   1.22  perseant 	v_daddr = LFS_UNUSED_DADDR;
    278   1.22  perseant 	lastino = LFS_UNUSED_INUM;
    279   1.77      yamt 	nblkwritten = ninowritten = 0;
    280   1.57  perseant 	for (blkp = blkiov; cnt--; ++blkp)
    281   1.22  perseant 	{
    282   1.62       chs 		if (blkp->bi_daddr == LFS_FORCE_WRITE)
    283  1.103  perseant 			DLOG((DLOG_CLEAN, "lfs_markv: warning: force-writing"
    284  1.103  perseant 			      " ino %d lbn %lld\n", blkp->bi_inode,
    285  1.103  perseant 			      (long long)blkp->bi_lbn));
    286   1.49  perseant 		/* Bounds-check incoming data, avoid panic for failed VGET */
    287   1.49  perseant 		if (blkp->bi_inode <= 0 || blkp->bi_inode >= maxino) {
    288   1.49  perseant 			error = EINVAL;
    289   1.96      yamt 			goto err3;
    290   1.49  perseant 		}
    291    1.1   mycroft 		/*
    292    1.1   mycroft 		 * Get the IFILE entry (only once) and see if the file still
    293    1.1   mycroft 		 * exists.
    294    1.1   mycroft 		 */
    295    1.1   mycroft 		if (lastino != blkp->bi_inode) {
    296   1.22  perseant 			/*
    297   1.22  perseant 			 * Finish the old file, if there was one.  The presence
    298   1.22  perseant 			 * of a usable vnode in vp is signaled by a valid v_daddr.
    299   1.22  perseant 			 */
    300   1.62       chs 			if (v_daddr != LFS_UNUSED_DADDR) {
    301    1.1   mycroft 				lfs_vunref(vp);
    302   1.22  perseant 				numrefed--;
    303    1.1   mycroft 			}
    304    1.1   mycroft 
    305   1.22  perseant 			/*
    306   1.22  perseant 			 * Start a new file
    307   1.22  perseant 			 */
    308    1.1   mycroft 			lastino = blkp->bi_inode;
    309    1.1   mycroft 			if (blkp->bi_inode == LFS_IFILE_INUM)
    310    1.1   mycroft 				v_daddr = fs->lfs_idaddr;
    311    1.1   mycroft 			else {
    312    1.1   mycroft 				LFS_IENTRY(ifp, fs, blkp->bi_inode, bp);
    313   1.22  perseant 				/* XXX fix for force write */
    314    1.1   mycroft 				v_daddr = ifp->if_daddr;
    315    1.1   mycroft 				brelse(bp);
    316    1.1   mycroft 			}
    317   1.22  perseant 			/* Don't force-write the ifile */
    318   1.22  perseant 			if (blkp->bi_inode == LFS_IFILE_INUM
    319   1.22  perseant 			    && blkp->bi_daddr == LFS_FORCE_WRITE)
    320   1.22  perseant 			{
    321   1.22  perseant 				continue;
    322   1.22  perseant 			}
    323   1.35  perseant 			if (v_daddr == LFS_UNUSED_DADDR
    324   1.35  perseant 			    && blkp->bi_daddr != LFS_FORCE_WRITE)
    325   1.22  perseant 			{
    326    1.1   mycroft 				continue;
    327   1.22  perseant 			}
    328    1.1   mycroft 
    329    1.1   mycroft 			/* Get the vnode/inode. */
    330  1.102     perry 			error = lfs_fastvget(mntp, blkp->bi_inode, v_daddr,
    331   1.22  perseant 					   &vp,
    332   1.62       chs 					   (blkp->bi_lbn == LFS_UNUSED_LBN
    333   1.22  perseant 					    ? blkp->bi_bp
    334   1.74      yamt 					    : NULL));
    335   1.22  perseant 
    336   1.62       chs 			if (!error) {
    337   1.22  perseant 				numrefed++;
    338   1.22  perseant 			}
    339   1.62       chs 			if (error) {
    340  1.103  perseant 				DLOG((DLOG_CLEAN, "lfs_markv: lfs_fastvget"
    341  1.103  perseant 				      " failed with %d (ino %d, segment %d)\n",
    342  1.103  perseant 				      error, blkp->bi_inode,
    343  1.103  perseant 				      dtosn(fs, blkp->bi_daddr)));
    344   1.22  perseant 				/*
    345   1.22  perseant 				 * If we got EAGAIN, that means that the
    346   1.22  perseant 				 * Inode was locked.  This is
    347   1.22  perseant 				 * recoverable: just clean the rest of
    348   1.22  perseant 				 * this segment, and let the cleaner try
    349   1.82  perseant 				 * again with another.	(When the
    350   1.22  perseant 				 * cleaner runs again, this segment will
    351   1.22  perseant 				 * sort high on the list, since it is
    352   1.22  perseant 				 * now almost entirely empty.) But, we
    353   1.22  perseant 				 * still set v_daddr = LFS_UNUSED_ADDR
    354   1.22  perseant 				 * so as not to test this over and over
    355   1.22  perseant 				 * again.
    356   1.22  perseant 				 */
    357   1.62       chs 				if (error == EAGAIN) {
    358   1.22  perseant 					error = 0;
    359   1.22  perseant 					do_again++;
    360   1.22  perseant 				}
    361   1.22  perseant #ifdef DIAGNOSTIC
    362   1.62       chs 				else if (error != ENOENT)
    363   1.22  perseant 					panic("lfs_markv VFS_VGET FAILED");
    364    1.1   mycroft #endif
    365   1.22  perseant 				/* lastino = LFS_UNUSED_INUM; */
    366    1.1   mycroft 				v_daddr = LFS_UNUSED_DADDR;
    367   1.22  perseant 				vp = NULL;
    368   1.22  perseant 				ip = NULL;
    369    1.1   mycroft 				continue;
    370   1.19        pk 			}
    371    1.1   mycroft 			ip = VTOI(vp);
    372   1.77      yamt 			ninowritten++;
    373   1.22  perseant 		} else if (v_daddr == LFS_UNUSED_DADDR) {
    374   1.22  perseant 			/*
    375   1.22  perseant 			 * This can only happen if the vnode is dead (or
    376   1.22  perseant 			 * in any case we can't get it...e.g., it is
    377   1.22  perseant 			 * inlocked).  Keep going.
    378   1.22  perseant 			 */
    379    1.1   mycroft 			continue;
    380   1.22  perseant 		}
    381   1.22  perseant 
    382   1.22  perseant 		/* Past this point we are guaranteed that vp, ip are valid. */
    383    1.1   mycroft 
    384    1.1   mycroft 		/* If this BLOCK_INFO didn't contain a block, keep going. */
    385   1.22  perseant 		if (blkp->bi_lbn == LFS_UNUSED_LBN) {
    386   1.22  perseant 			/* XXX need to make sure that the inode gets written in this case */
    387   1.22  perseant 			/* XXX but only write the inode if it's the right one */
    388   1.53  perseant 			if (blkp->bi_inode != LFS_IFILE_INUM) {
    389   1.53  perseant 				LFS_IENTRY(ifp, fs, blkp->bi_inode, bp);
    390   1.62       chs 				if (ifp->if_daddr == blkp->bi_daddr
    391   1.22  perseant 				   || blkp->bi_daddr == LFS_FORCE_WRITE)
    392   1.22  perseant 				{
    393   1.47  perseant 					LFS_SET_UINO(ip, IN_CLEANING);
    394   1.22  perseant 				}
    395   1.53  perseant 				brelse(bp);
    396   1.53  perseant 			}
    397    1.1   mycroft 			continue;
    398   1.22  perseant 		}
    399   1.22  perseant 
    400   1.22  perseant 		b_daddr = 0;
    401   1.62       chs 		if (blkp->bi_daddr != LFS_FORCE_WRITE) {
    402   1.22  perseant 			if (VOP_BMAP(vp, blkp->bi_lbn, NULL, &b_daddr, NULL) ||
    403   1.57  perseant 			    dbtofsb(fs, b_daddr) != blkp->bi_daddr)
    404   1.22  perseant 			{
    405   1.62       chs 				if (dtosn(fs,dbtofsb(fs, b_daddr))
    406   1.57  perseant 				   == dtosn(fs,blkp->bi_daddr))
    407   1.22  perseant 				{
    408  1.103  perseant 					DLOG((DLOG_CLEAN, "lfs_markv: wrong da same seg: %llx vs %llx\n",
    409  1.103  perseant 					      (long long)blkp->bi_daddr, (long long)dbtofsb(fs, b_daddr)));
    410   1.22  perseant 				}
    411   1.67  perseant 				do_again++;
    412   1.22  perseant 				continue;
    413   1.22  perseant 			}
    414   1.22  perseant 		}
    415   1.69  perseant 
    416   1.69  perseant 		/*
    417   1.69  perseant 		 * Check block sizes.  The blocks being cleaned come from
    418   1.69  perseant 		 * disk, so they should have the same size as their on-disk
    419   1.69  perseant 		 * counterparts.
    420   1.69  perseant 		 */
    421   1.72      yamt 		if (blkp->bi_lbn >= 0)
    422   1.72      yamt 			obsize = blksize(fs, ip, blkp->bi_lbn);
    423   1.72      yamt 		else
    424   1.72      yamt 			obsize = fs->lfs_bsize;
    425   1.69  perseant 		/* Check for fragment size change */
    426   1.69  perseant 		if (blkp->bi_lbn >= 0 && blkp->bi_lbn < NDADDR) {
    427   1.69  perseant 			obsize = ip->i_lfs_fragsize[blkp->bi_lbn];
    428   1.69  perseant 		}
    429   1.69  perseant 		if (obsize != blkp->bi_size) {
    430  1.103  perseant 			DLOG((DLOG_CLEAN, "lfs_markv: ino %d lbn %lld wrong"
    431  1.103  perseant 			      " size (%ld != %d), try again\n",
    432  1.103  perseant 			      blkp->bi_inode, (long long)blkp->bi_lbn,
    433  1.103  perseant 			      (long) obsize, blkp->bi_size));
    434   1.69  perseant 			do_again++;
    435   1.69  perseant 			continue;
    436   1.69  perseant 		}
    437   1.69  perseant 
    438   1.22  perseant 		/*
    439   1.69  perseant 		 * If we get to here, then we are keeping the block.  If
    440   1.22  perseant 		 * it is an indirect block, we want to actually put it
    441   1.22  perseant 		 * in the buffer cache so that it can be updated in the
    442   1.82  perseant 		 * finish_meta section.	 If it's not, we need to
    443   1.22  perseant 		 * allocate a fake buffer so that writeseg can perform
    444   1.22  perseant 		 * the copyin and write the buffer.
    445   1.22  perseant 		 */
    446   1.38  perseant 		if (ip->i_number != LFS_IFILE_INUM && blkp->bi_lbn >= 0) {
    447   1.38  perseant 			/* Data Block */
    448   1.65  perseant 			bp = lfs_fakebuf(fs, vp, blkp->bi_lbn,
    449   1.23  perseant 					 blkp->bi_size, blkp->bi_bp);
    450   1.23  perseant 			/* Pretend we used bread() to get it */
    451   1.57  perseant 			bp->b_blkno = fsbtodb(fs, blkp->bi_daddr);
    452   1.38  perseant 		} else {
    453   1.75      yamt 			/* Indirect block or ifile */
    454   1.75      yamt 			if (blkp->bi_size != fs->lfs_bsize &&
    455   1.75      yamt 			    ip->i_number != LFS_IFILE_INUM)
    456   1.72      yamt 				panic("lfs_markv: partial indirect block?"
    457   1.72      yamt 				    " size=%d\n", blkp->bi_size);
    458   1.22  perseant 			bp = getblk(vp, blkp->bi_lbn, blkp->bi_size, 0, 0);
    459   1.22  perseant 			if (!(bp->b_flags & (B_DONE|B_DELWRI))) { /* B_CACHE */
    460   1.22  perseant 				/*
    461   1.22  perseant 				 * The block in question was not found
    462   1.22  perseant 				 * in the cache; i.e., the block that
    463   1.82  perseant 				 * getblk() returned is empty.	So, we
    464   1.22  perseant 				 * can (and should) copy in the
    465   1.22  perseant 				 * contents, because we've already
    466   1.22  perseant 				 * determined that this was the right
    467   1.22  perseant 				 * version of this block on disk.
    468   1.22  perseant 				 *
    469   1.22  perseant 				 * And, it can't have changed underneath
    470   1.22  perseant 				 * us, because we have the segment lock.
    471   1.22  perseant 				 */
    472   1.22  perseant 				error = copyin(blkp->bi_bp, bp->b_data, blkp->bi_size);
    473   1.62       chs 				if (error)
    474   1.22  perseant 					goto err2;
    475   1.22  perseant 			}
    476   1.22  perseant 		}
    477   1.96      yamt 		if ((error = lfs_bwrite_ext(bp, BW_CLEAN)) != 0)
    478   1.22  perseant 			goto err2;
    479   1.77      yamt 
    480   1.77      yamt 		nblkwritten++;
    481   1.77      yamt 		/*
    482   1.77      yamt 		 * XXX should account indirect blocks and ifile pages as well
    483   1.77      yamt 		 */
    484   1.89      fvdl 		if (nblkwritten + lblkno(fs, ninowritten * sizeof (struct ufs1_dinode))
    485   1.77      yamt 		    > LFS_MARKV_MAX_BLOCKS) {
    486  1.103  perseant 			DLOG((DLOG_CLEAN, "lfs_markv: writing %d blks %d inos\n",
    487  1.103  perseant 			      nblkwritten, ninowritten));
    488   1.77      yamt 			lfs_segwrite(mntp, SEGM_CLEAN);
    489   1.77      yamt 			nblkwritten = ninowritten = 0;
    490   1.77      yamt 		}
    491   1.22  perseant 	}
    492  1.102     perry 
    493   1.22  perseant 	/*
    494   1.22  perseant 	 * Finish the old file, if there was one
    495   1.22  perseant 	 */
    496   1.62       chs 	if (v_daddr != LFS_UNUSED_DADDR) {
    497   1.22  perseant 		lfs_vunref(vp);
    498   1.22  perseant 		numrefed--;
    499   1.22  perseant 	}
    500  1.102     perry 
    501  1.103  perseant #ifdef DIAGNOSTIC
    502  1.103  perseant 	if (numrefed != 0)
    503   1.74      yamt 		panic("lfs_markv: numrefed=%d", numrefed);
    504   1.74      yamt #endif
    505  1.103  perseant 	DLOG((DLOG_CLEAN, "lfs_markv: writing %d blks %d inos (check point)\n",
    506  1.103  perseant 	      nblkwritten, ninowritten));
    507  1.102     perry 
    508   1.22  perseant 	/*
    509   1.22  perseant 	 * The last write has to be SEGM_SYNC, because of calling semantics.
    510   1.22  perseant 	 * It also has to be SEGM_CKP, because otherwise we could write
    511   1.22  perseant 	 * over the newly cleaned data contained in a checkpoint, and then
    512   1.22  perseant 	 * we'd be unhappy at recovery time.
    513   1.22  perseant 	 */
    514   1.67  perseant 	lfs_segwrite(mntp, SEGM_CLEAN | SEGM_CKP | SEGM_SYNC);
    515  1.102     perry 
    516    1.1   mycroft 	lfs_segunlock(fs);
    517    1.1   mycroft 
    518   1.53  perseant 	vfs_unbusy(mntp);
    519   1.62       chs 	if (error)
    520   1.22  perseant 		return (error);
    521   1.62       chs 	else if (do_again)
    522   1.22  perseant 		return EAGAIN;
    523    1.1   mycroft 
    524   1.22  perseant 	return 0;
    525  1.102     perry 
    526   1.96      yamt err2:
    527  1.103  perseant 	DLOG((DLOG_CLEAN, "lfs_markv err2\n"));
    528   1.53  perseant 
    529   1.96      yamt 	/*
    530   1.96      yamt 	 * XXX we're here because copyin() failed.
    531   1.96      yamt 	 * XXX it means that we can't trust the cleanerd.  too bad.
    532   1.96      yamt 	 * XXX how can we recover from this?
    533   1.96      yamt 	 */
    534   1.96      yamt 
    535   1.96      yamt err3:
    536   1.96      yamt 	/*
    537   1.96      yamt 	 * XXX should do segwrite here anyway?
    538   1.96      yamt 	 */
    539   1.96      yamt 
    540   1.96      yamt 	if (v_daddr != LFS_UNUSED_DADDR) {
    541   1.96      yamt 		lfs_vunref(vp);
    542   1.96      yamt 		--numrefed;
    543   1.22  perseant 	}
    544   1.96      yamt 
    545    1.1   mycroft 	lfs_segunlock(fs);
    546   1.53  perseant 	vfs_unbusy(mntp);
    547  1.103  perseant #ifdef DIAGNOSTIC
    548  1.103  perseant 	if (numrefed != 0)
    549   1.74      yamt 		panic("lfs_markv: numrefed=%d", numrefed);
    550   1.53  perseant #endif
    551   1.53  perseant 
    552   1.22  perseant 	return (error);
    553    1.1   mycroft }
    554    1.1   mycroft 
    555    1.1   mycroft /*
    556   1.31  christos  * sys_lfs_bmapv:
    557    1.1   mycroft  *
    558    1.1   mycroft  * This will fill in the current disk address for arrays of blocks.
    559    1.1   mycroft  *
    560    1.1   mycroft  *  0 on success
    561    1.1   mycroft  * -1/errno is return on error.
    562    1.1   mycroft  */
    563   1.57  perseant #ifdef USE_64BIT_SYSCALLS
    564   1.57  perseant int
    565  1.108  christos sys_lfs_bmapv(struct lwp *l, void *v, register_t *retval)
    566   1.57  perseant {
    567   1.57  perseant 	struct sys_lfs_bmapv_args /* {
    568   1.57  perseant 		syscallarg(fsid_t *) fsidp;
    569   1.57  perseant 		syscallarg(struct block_info *) blkiov;
    570   1.57  perseant 		syscallarg(int) blkcnt;
    571   1.57  perseant 	} */ *uap = v;
    572  1.108  christos 	struct proc *p = l->l_proc;
    573   1.57  perseant 	BLOCK_INFO *blkiov;
    574   1.57  perseant 	int blkcnt, error;
    575   1.57  perseant 	fsid_t fsid;
    576  1.105  perseant 	struct lfs *fs;
    577  1.105  perseant 	struct mount *mntp;
    578   1.22  perseant 
    579   1.57  perseant 	if ((error = suser(p->p_ucred, &p->p_acflag)) != 0)
    580   1.57  perseant 		return (error);
    581  1.102     perry 
    582   1.57  perseant 	if ((error = copyin(SCARG(uap, fsidp), &fsid, sizeof(fsid_t))) != 0)
    583   1.57  perseant 		return (error);
    584   1.57  perseant 
    585  1.105  perseant 	if ((mntp = vfs_getvfs(&fsid)) == NULL)
    586  1.105  perseant 		return (ENOENT);
    587  1.105  perseant 	fs = VFSTOUFS(mntp)->um_lfs;
    588  1.105  perseant 
    589   1.57  perseant 	blkcnt = SCARG(uap, blkcnt);
    590   1.71    itojun 	if ((u_int) blkcnt > SIZE_T_MAX / sizeof(BLOCK_INFO))
    591   1.71    itojun 		return (EINVAL);
    592  1.105  perseant 	blkiov = lfs_malloc(fs, blkcnt * sizeof(BLOCK_INFO), LFS_NB_BLKIOV);
    593   1.57  perseant 	if ((error = copyin(SCARG(uap, blkiov), blkiov,
    594   1.57  perseant 			    blkcnt * sizeof(BLOCK_INFO))) != 0)
    595   1.57  perseant 		goto out;
    596   1.57  perseant 
    597   1.57  perseant 	if ((error = lfs_bmapv(p, &fsid, blkiov, blkcnt)) == 0)
    598   1.57  perseant 		copyout(blkiov, SCARG(uap, blkiov),
    599   1.57  perseant 			blkcnt * sizeof(BLOCK_INFO));
    600   1.57  perseant     out:
    601  1.105  perseant 	lfs_free(fs, blkiov, LFS_NB_BLKIOV);
    602   1.57  perseant 	return error;
    603   1.57  perseant }
    604   1.57  perseant #else
    605    1.1   mycroft int
    606   1.78   thorpej sys_lfs_bmapv(struct lwp *l, void *v, register_t *retval)
    607    1.9   thorpej {
    608   1.32  drochner 	struct sys_lfs_bmapv_args /* {
    609   1.32  drochner 		syscallarg(fsid_t *) fsidp;
    610   1.32  drochner 		syscallarg(struct block_info *) blkiov;
    611   1.32  drochner 		syscallarg(int) blkcnt;
    612   1.32  drochner 	} */ *uap = v;
    613   1.78   thorpej 	struct proc *p = l->l_proc;
    614   1.57  perseant 	BLOCK_INFO *blkiov;
    615   1.57  perseant 	BLOCK_INFO_15 *blkiov15;
    616   1.57  perseant 	int i, blkcnt, error;
    617   1.57  perseant 	fsid_t fsid;
    618  1.105  perseant 	struct lfs *fs;
    619  1.105  perseant 	struct mount *mntp;
    620   1.57  perseant 
    621   1.57  perseant 	if ((error = suser(p->p_ucred, &p->p_acflag)) != 0)
    622   1.57  perseant 		return (error);
    623  1.102     perry 
    624   1.57  perseant 	if ((error = copyin(SCARG(uap, fsidp), &fsid, sizeof(fsid_t))) != 0)
    625   1.57  perseant 		return (error);
    626   1.57  perseant 
    627  1.105  perseant 	if ((mntp = vfs_getvfs(&fsid)) == NULL)
    628  1.105  perseant 		return (ENOENT);
    629  1.105  perseant 	fs = VFSTOUFS(mntp)->um_lfs;
    630  1.105  perseant 
    631   1.57  perseant 	blkcnt = SCARG(uap, blkcnt);
    632   1.90  nakayama 	if ((size_t) blkcnt > SIZE_T_MAX / sizeof(BLOCK_INFO))
    633   1.71    itojun 		return (EINVAL);
    634  1.105  perseant 	blkiov = lfs_malloc(fs, blkcnt * sizeof(BLOCK_INFO), LFS_NB_BLKIOV);
    635  1.105  perseant 	blkiov15 = lfs_malloc(fs, blkcnt * sizeof(BLOCK_INFO_15), LFS_NB_BLKIOV);
    636   1.57  perseant 	if ((error = copyin(SCARG(uap, blkiov), blkiov15,
    637   1.57  perseant 			    blkcnt * sizeof(BLOCK_INFO_15))) != 0)
    638   1.57  perseant 		goto out;
    639   1.57  perseant 
    640   1.57  perseant 	for (i = 0; i < blkcnt; i++) {
    641   1.57  perseant 		blkiov[i].bi_inode     = blkiov15[i].bi_inode;
    642   1.57  perseant 		blkiov[i].bi_lbn       = blkiov15[i].bi_lbn;
    643   1.57  perseant 		blkiov[i].bi_daddr     = blkiov15[i].bi_daddr;
    644   1.57  perseant 		blkiov[i].bi_segcreate = blkiov15[i].bi_segcreate;
    645   1.57  perseant 		blkiov[i].bi_version   = blkiov15[i].bi_version;
    646   1.82  perseant 		blkiov[i].bi_bp	       = blkiov15[i].bi_bp;
    647   1.57  perseant 		blkiov[i].bi_size      = blkiov15[i].bi_size;
    648   1.57  perseant 	}
    649   1.57  perseant 
    650   1.93      fvdl 	if ((error = lfs_bmapv(p, &fsid, blkiov, blkcnt)) == 0) {
    651   1.57  perseant 		for (i = 0; i < blkcnt; i++) {
    652   1.82  perseant 			blkiov15[i].bi_inode	 = blkiov[i].bi_inode;
    653   1.82  perseant 			blkiov15[i].bi_lbn	 = blkiov[i].bi_lbn;
    654   1.82  perseant 			blkiov15[i].bi_daddr	 = blkiov[i].bi_daddr;
    655   1.57  perseant 			blkiov15[i].bi_segcreate = blkiov[i].bi_segcreate;
    656   1.82  perseant 			blkiov15[i].bi_version	 = blkiov[i].bi_version;
    657   1.82  perseant 			blkiov15[i].bi_bp	 = blkiov[i].bi_bp;
    658   1.82  perseant 			blkiov15[i].bi_size	 = blkiov[i].bi_size;
    659   1.57  perseant 		}
    660   1.57  perseant 		copyout(blkiov15, SCARG(uap, blkiov),
    661   1.57  perseant 			blkcnt * sizeof(BLOCK_INFO_15));
    662   1.57  perseant 	}
    663   1.57  perseant     out:
    664  1.105  perseant 	lfs_free(fs, blkiov, LFS_NB_BLKIOV);
    665  1.105  perseant 	lfs_free(fs, blkiov15, LFS_NB_BLKIOV);
    666   1.57  perseant 	return error;
    667   1.57  perseant }
    668   1.57  perseant #endif
    669   1.57  perseant 
    670   1.84  perseant int
    671   1.93      fvdl lfs_bmapv(struct proc *p, fsid_t *fsidp, BLOCK_INFO *blkiov, int blkcnt)
    672   1.57  perseant {
    673    1.1   mycroft 	BLOCK_INFO *blkp;
    674   1.22  perseant 	IFILE *ifp;
    675   1.22  perseant 	struct buf *bp;
    676   1.22  perseant 	struct inode *ip = NULL;
    677   1.22  perseant 	struct lfs *fs;
    678    1.1   mycroft 	struct mount *mntp;
    679   1.16      fvdl 	struct ufsmount *ump;
    680    1.1   mycroft 	struct vnode *vp;
    681   1.22  perseant 	ino_t lastino;
    682   1.79      fvdl 	daddr_t v_daddr;
    683   1.74      yamt 	int cnt, error;
    684   1.74      yamt 	int numrefed = 0;
    685    1.1   mycroft 
    686   1.93      fvdl 	lfs_cleaner_pid = p->p_pid;
    687  1.102     perry 
    688   1.57  perseant 	if ((mntp = vfs_getvfs(fsidp)) == NULL)
    689   1.53  perseant 		return (ENOENT);
    690  1.102     perry 
    691   1.22  perseant 	ump = VFSTOUFS(mntp);
    692   1.53  perseant 	if ((error = vfs_busy(mntp, LK_NOWAIT, NULL)) != 0)
    693   1.53  perseant 		return (error);
    694  1.102     perry 
    695   1.57  perseant 	cnt = blkcnt;
    696  1.102     perry 
    697   1.22  perseant 	fs = VFSTOUFS(mntp)->um_lfs;
    698  1.102     perry 
    699   1.22  perseant 	error = 0;
    700  1.102     perry 
    701   1.22  perseant 	/* these were inside the initialization for the for loop */
    702   1.22  perseant 	v_daddr = LFS_UNUSED_DADDR;
    703   1.22  perseant 	lastino = LFS_UNUSED_INUM;
    704   1.57  perseant 	for (blkp = blkiov; cnt--; ++blkp)
    705   1.22  perseant 	{
    706   1.16      fvdl 		/*
    707   1.22  perseant 		 * Get the IFILE entry (only once) and see if the file still
    708   1.22  perseant 		 * exists.
    709   1.16      fvdl 		 */
    710   1.22  perseant 		if (lastino != blkp->bi_inode) {
    711   1.22  perseant 			/*
    712   1.22  perseant 			 * Finish the old file, if there was one.  The presence
    713   1.22  perseant 			 * of a usable vnode in vp is signaled by a valid
    714   1.22  perseant 			 * v_daddr.
    715   1.22  perseant 			 */
    716   1.62       chs 			if (v_daddr != LFS_UNUSED_DADDR) {
    717   1.22  perseant 				lfs_vunref(vp);
    718   1.22  perseant 				numrefed--;
    719   1.22  perseant 			}
    720   1.22  perseant 
    721   1.22  perseant 			/*
    722   1.22  perseant 			 * Start a new file
    723   1.22  perseant 			 */
    724   1.22  perseant 			lastino = blkp->bi_inode;
    725   1.22  perseant 			if (blkp->bi_inode == LFS_IFILE_INUM)
    726   1.22  perseant 				v_daddr = fs->lfs_idaddr;
    727   1.22  perseant 			else {
    728   1.22  perseant 				LFS_IENTRY(ifp, fs, blkp->bi_inode, bp);
    729   1.22  perseant 				v_daddr = ifp->if_daddr;
    730   1.22  perseant 				brelse(bp);
    731   1.22  perseant 			}
    732   1.22  perseant 			if (v_daddr == LFS_UNUSED_DADDR) {
    733   1.22  perseant 				blkp->bi_daddr = LFS_UNUSED_DADDR;
    734   1.22  perseant 				continue;
    735   1.22  perseant 			}
    736   1.22  perseant 			/*
    737   1.22  perseant 			 * A regular call to VFS_VGET could deadlock
    738   1.22  perseant 			 * here.  Instead, we try an unlocked access.
    739   1.22  perseant 			 */
    740   1.22  perseant 			vp = ufs_ihashlookup(ump->um_dev, blkp->bi_inode);
    741   1.24  perseant 			if (vp != NULL && !(vp->v_flag & VXLOCK)) {
    742   1.22  perseant 				ip = VTOI(vp);
    743   1.42  perseant 				if (lfs_vref(vp)) {
    744   1.42  perseant 					v_daddr = LFS_UNUSED_DADDR;
    745   1.42  perseant 					continue;
    746   1.42  perseant 				}
    747   1.43  perseant 				numrefed++;
    748   1.22  perseant 			} else {
    749  1.101  perseant 				/*
    750  1.101  perseant 				 * Don't VFS_VGET if we're being unmounted,
    751  1.101  perseant 				 * since we hold vfs_busy().
    752  1.101  perseant 				 */
    753  1.101  perseant 				if (mntp->mnt_iflag & IMNT_UNMOUNT) {
    754  1.101  perseant 					v_daddr = LFS_UNUSED_DADDR;
    755  1.101  perseant 					continue;
    756  1.101  perseant 				}
    757   1.92   thorpej 				error = VFS_VGET(mntp, blkp->bi_inode, &vp);
    758   1.62       chs 				if (error) {
    759  1.103  perseant 					DLOG((DLOG_CLEAN, "lfs_bmapv: vget ino"
    760  1.103  perseant 					      "%d failed with %d",
    761  1.103  perseant 					      blkp->bi_inode,error));
    762   1.43  perseant 					v_daddr = LFS_UNUSED_DADDR;
    763   1.22  perseant 					continue;
    764   1.22  perseant 				} else {
    765   1.74      yamt 					KASSERT(VOP_ISLOCKED(vp));
    766   1.74      yamt 					VOP_UNLOCK(vp, 0);
    767   1.22  perseant 					numrefed++;
    768   1.22  perseant 				}
    769   1.22  perseant 			}
    770   1.22  perseant 			ip = VTOI(vp);
    771   1.22  perseant 		} else if (v_daddr == LFS_UNUSED_DADDR) {
    772   1.22  perseant 			/*
    773   1.22  perseant 			 * This can only happen if the vnode is dead.
    774   1.82  perseant 			 * Keep going.	Note that we DO NOT set the
    775   1.22  perseant 			 * bi_addr to anything -- if we failed to get
    776   1.22  perseant 			 * the vnode, for example, we want to assume
    777   1.22  perseant 			 * conservatively that all of its blocks *are*
    778   1.22  perseant 			 * located in the segment in question.
    779   1.22  perseant 			 * lfs_markv will throw them out if we are
    780   1.22  perseant 			 * wrong.
    781   1.22  perseant 			 */
    782   1.22  perseant 			/* blkp->bi_daddr = LFS_UNUSED_DADDR; */
    783   1.22  perseant 			continue;
    784   1.22  perseant 		}
    785   1.22  perseant 
    786   1.22  perseant 		/* Past this point we are guaranteed that vp, ip are valid. */
    787   1.22  perseant 
    788   1.62       chs 		if (blkp->bi_lbn == LFS_UNUSED_LBN) {
    789   1.22  perseant 			/*
    790   1.22  perseant 			 * We just want the inode address, which is
    791   1.22  perseant 			 * conveniently in v_daddr.
    792   1.22  perseant 			 */
    793   1.22  perseant 			blkp->bi_daddr = v_daddr;
    794   1.22  perseant 		} else {
    795   1.79      fvdl 			daddr_t bi_daddr;
    796   1.79      fvdl 
    797   1.79      fvdl 			/* XXX ondisk32 */
    798   1.22  perseant 			error = VOP_BMAP(vp, blkp->bi_lbn, NULL,
    799   1.79      fvdl 					 &bi_daddr, NULL);
    800   1.62       chs 			if (error)
    801   1.22  perseant 			{
    802   1.22  perseant 				blkp->bi_daddr = LFS_UNUSED_DADDR;
    803   1.22  perseant 				continue;
    804   1.22  perseant 			}
    805   1.79      fvdl 			blkp->bi_daddr = dbtofsb(fs, bi_daddr);
    806   1.66  perseant 			/* Fill in the block size, too */
    807   1.72      yamt 			if (blkp->bi_lbn >= 0)
    808   1.72      yamt 				blkp->bi_size = blksize(fs, ip, blkp->bi_lbn);
    809   1.72      yamt 			else
    810   1.72      yamt 				blkp->bi_size = fs->lfs_bsize;
    811   1.22  perseant 		}
    812   1.22  perseant 	}
    813  1.102     perry 
    814   1.22  perseant 	/*
    815   1.22  perseant 	 * Finish the old file, if there was one.  The presence
    816   1.22  perseant 	 * of a usable vnode in vp is signaled by a valid v_daddr.
    817   1.22  perseant 	 */
    818   1.62       chs 	if (v_daddr != LFS_UNUSED_DADDR) {
    819   1.22  perseant 		lfs_vunref(vp);
    820   1.22  perseant 		numrefed--;
    821   1.22  perseant 	}
    822  1.102     perry 
    823  1.103  perseant #ifdef DIAGNOSTIC
    824  1.103  perseant 	if (numrefed != 0)
    825   1.74      yamt 		panic("lfs_bmapv: numrefed=%d", numrefed);
    826   1.74      yamt #endif
    827  1.102     perry 
    828   1.53  perseant 	vfs_unbusy(mntp);
    829  1.102     perry 
    830   1.22  perseant 	return 0;
    831    1.1   mycroft }
    832    1.1   mycroft 
    833    1.1   mycroft /*
    834   1.31  christos  * sys_lfs_segclean:
    835    1.1   mycroft  *
    836    1.1   mycroft  * Mark the segment clean.
    837    1.1   mycroft  *
    838    1.1   mycroft  *  0 on success
    839    1.1   mycroft  * -1/errno is return on error.
    840    1.1   mycroft  */
    841    1.1   mycroft int
    842   1.78   thorpej sys_lfs_segclean(struct lwp *l, void *v, register_t *retval)
    843    1.9   thorpej {
    844   1.32  drochner 	struct sys_lfs_segclean_args /* {
    845   1.32  drochner 		syscallarg(fsid_t *) fsidp;
    846   1.32  drochner 		syscallarg(u_long) segment;
    847   1.32  drochner 	} */ *uap = v;
    848   1.80  perseant 	struct lfs *fs;
    849    1.1   mycroft 	struct mount *mntp;
    850    1.1   mycroft 	fsid_t fsid;
    851    1.1   mycroft 	int error;
    852   1.67  perseant 	unsigned long segnum;
    853   1.80  perseant 	struct proc *p = l->l_proc;
    854  1.102     perry 
    855   1.10  christos 	if ((error = suser(p->p_ucred, &p->p_acflag)) != 0)
    856    1.1   mycroft 		return (error);
    857  1.102     perry 
    858   1.10  christos 	if ((error = copyin(SCARG(uap, fsidp), &fsid, sizeof(fsid_t))) != 0)
    859    1.1   mycroft 		return (error);
    860   1.16      fvdl 	if ((mntp = vfs_getvfs(&fsid)) == NULL)
    861   1.53  perseant 		return (ENOENT);
    862  1.102     perry 
    863    1.1   mycroft 	fs = VFSTOUFS(mntp)->um_lfs;
    864   1.67  perseant 	segnum = SCARG(uap, segment);
    865  1.102     perry 
    866  1.102     perry 	if ((error = vfs_busy(mntp, LK_NOWAIT, NULL)) != 0)
    867   1.53  perseant 		return (error);
    868   1.80  perseant 
    869   1.65  perseant 	lfs_seglock(fs, SEGM_PROT);
    870   1.80  perseant 	error = lfs_do_segclean(fs, segnum);
    871   1.80  perseant 	lfs_segunlock(fs);
    872   1.80  perseant 	vfs_unbusy(mntp);
    873   1.80  perseant 	return error;
    874   1.80  perseant }
    875   1.80  perseant 
    876   1.80  perseant /*
    877   1.80  perseant  * Actually mark the segment clean.
    878   1.80  perseant  * Must be called with the segment lock held.
    879   1.80  perseant  */
    880   1.80  perseant int
    881   1.80  perseant lfs_do_segclean(struct lfs *fs, unsigned long segnum)
    882   1.80  perseant {
    883  1.107  perseant 	extern int lfs_dostats;
    884   1.80  perseant 	struct buf *bp;
    885   1.80  perseant 	CLEANERINFO *cip;
    886   1.80  perseant 	SEGUSE *sup;
    887  1.102     perry 
    888   1.80  perseant 	if (dtosn(fs, fs->lfs_curseg) == segnum) {
    889   1.80  perseant 		return (EBUSY);
    890   1.80  perseant 	}
    891  1.102     perry 
    892   1.67  perseant 	LFS_SEGENTRY(sup, fs, segnum, bp);
    893   1.67  perseant 	if (sup->su_nbytes) {
    894  1.103  perseant 		DLOG((DLOG_CLEAN, "lfs_segclean: not cleaning segment %lu:"
    895  1.103  perseant 		      " %d live bytes\n", segnum, sup->su_nbytes));
    896   1.67  perseant 		brelse(bp);
    897   1.67  perseant 		return (EBUSY);
    898   1.67  perseant 	}
    899    1.1   mycroft 	if (sup->su_flags & SEGUSE_ACTIVE) {
    900  1.106  perseant 		DLOG((DLOG_CLEAN, "lfs_segclean: not cleaning segment %lu:"
    901  1.106  perseant 		      " segment is active\n", segnum));
    902    1.1   mycroft 		brelse(bp);
    903    1.1   mycroft 		return (EBUSY);
    904   1.50  perseant 	}
    905   1.50  perseant 	if (!(sup->su_flags & SEGUSE_DIRTY)) {
    906  1.106  perseant 		DLOG((DLOG_CLEAN, "lfs_segclean: not cleaning segment %lu:"
    907  1.106  perseant 		      " segment is already clean\n", segnum));
    908   1.50  perseant 		brelse(bp);
    909   1.50  perseant 		return (EALREADY);
    910    1.1   mycroft 	}
    911  1.102     perry 
    912   1.57  perseant 	fs->lfs_avail += segtod(fs, 1);
    913   1.46  perseant 	if (sup->su_flags & SEGUSE_SUPERBLOCK)
    914   1.57  perseant 		fs->lfs_avail -= btofsb(fs, LFS_SBPAD);
    915   1.67  perseant 	if (fs->lfs_version > 1 && segnum == 0 &&
    916   1.57  perseant 	    fs->lfs_start < btofsb(fs, LFS_LABELPAD))
    917   1.57  perseant 		fs->lfs_avail -= btofsb(fs, LFS_LABELPAD) - fs->lfs_start;
    918  1.104  perseant 	simple_lock(&fs->lfs_interlock);
    919   1.57  perseant 	fs->lfs_bfree += sup->su_nsums * btofsb(fs, fs->lfs_sumsize) +
    920   1.57  perseant 		btofsb(fs, sup->su_ninos * fs->lfs_ibsize);
    921   1.57  perseant 	fs->lfs_dmeta -= sup->su_nsums * btofsb(fs, fs->lfs_sumsize) +
    922   1.57  perseant 		btofsb(fs, sup->su_ninos * fs->lfs_ibsize);
    923   1.43  perseant 	if (fs->lfs_dmeta < 0)
    924   1.43  perseant 		fs->lfs_dmeta = 0;
    925  1.109       tls 	simple_unlock(&fs->lfs_interlock);
    926    1.1   mycroft 	sup->su_flags &= ~SEGUSE_DIRTY;
    927   1.80  perseant 	LFS_WRITESEGENTRY(sup, fs, segnum, bp);
    928  1.102     perry 
    929    1.1   mycroft 	LFS_CLEANERINFO(cip, fs, bp);
    930    1.1   mycroft 	++cip->clean;
    931    1.1   mycroft 	--cip->dirty;
    932   1.22  perseant 	fs->lfs_nclean = cip->clean;
    933   1.49  perseant 	cip->bfree = fs->lfs_bfree;
    934  1.104  perseant 	simple_lock(&fs->lfs_interlock);
    935  1.101  perseant 	cip->avail = fs->lfs_avail - fs->lfs_ravail - fs->lfs_favail;
    936  1.111  perseant 	wakeup(&fs->lfs_avail);
    937  1.104  perseant 	simple_unlock(&fs->lfs_interlock);
    938   1.65  perseant 	(void) LFS_BWRITE_LOG(bp);
    939   1.22  perseant 
    940  1.107  perseant 	if (lfs_dostats)
    941  1.107  perseant 		++lfs_stats.segs_reclaimed;
    942  1.106  perseant 
    943    1.1   mycroft 	return (0);
    944    1.1   mycroft }
    945    1.1   mycroft 
    946    1.1   mycroft /*
    947    1.1   mycroft  * This will block until a segment in file system fsid is written.  A timeout
    948    1.1   mycroft  * in milliseconds may be specified which will awake the cleaner automatically.
    949    1.1   mycroft  * An fsid of -1 means any file system, and a timeout of 0 means forever.
    950   1.84  perseant  */
    951   1.84  perseant int
    952   1.84  perseant lfs_segwait(fsid_t *fsidp, struct timeval *tv)
    953   1.84  perseant {
    954   1.84  perseant 	struct mount *mntp;
    955   1.84  perseant 	void *addr;
    956   1.84  perseant 	u_long timeout;
    957   1.84  perseant 	int error, s;
    958   1.84  perseant 
    959  1.106  perseant 	if (fsidp == NULL || (mntp = vfs_getvfs(fsidp)) == NULL)
    960   1.84  perseant 		addr = &lfs_allclean_wakeup;
    961   1.84  perseant 	else
    962   1.84  perseant 		addr = &VFSTOUFS(mntp)->um_lfs->lfs_nextseg;
    963   1.84  perseant 	/*
    964   1.84  perseant 	 * XXX THIS COULD SLEEP FOREVER IF TIMEOUT IS {0,0}!
    965   1.84  perseant 	 * XXX IS THAT WHAT IS INTENDED?
    966   1.84  perseant 	 */
    967   1.84  perseant 	s = splclock();
    968   1.84  perseant 	timeradd(tv, &time, tv);
    969   1.84  perseant 	timeout = hzto(tv);
    970   1.84  perseant 	splx(s);
    971  1.111  perseant 	error = tsleep(addr, PCATCH | PVFS, "segment", timeout);
    972   1.84  perseant 	return (error == ERESTART ? EINTR : 0);
    973   1.84  perseant }
    974   1.84  perseant 
    975   1.84  perseant /*
    976   1.84  perseant  * sys_lfs_segwait:
    977   1.84  perseant  *
    978   1.84  perseant  * System call wrapper around lfs_segwait().
    979    1.1   mycroft  *
    980    1.1   mycroft  *  0 on success
    981    1.1   mycroft  *  1 on timeout
    982    1.1   mycroft  * -1/errno is return on error.
    983    1.1   mycroft  */
    984    1.1   mycroft int
    985   1.78   thorpej sys_lfs_segwait(struct lwp *l, void *v, register_t *retval)
    986    1.9   thorpej {
    987   1.32  drochner 	struct sys_lfs_segwait_args /* {
    988   1.32  drochner 		syscallarg(fsid_t *) fsidp;
    989   1.32  drochner 		syscallarg(struct timeval *) tv;
    990   1.32  drochner 	} */ *uap = v;
    991   1.78   thorpej 	struct proc *p = l->l_proc;
    992    1.1   mycroft 	struct timeval atv;
    993    1.1   mycroft 	fsid_t fsid;
    994   1.84  perseant 	int error;
    995  1.102     perry 
    996   1.84  perseant 	/* XXX need we be su to segwait? */
    997   1.10  christos 	if ((error = suser(p->p_ucred, &p->p_acflag)) != 0) {
    998    1.1   mycroft 		return (error);
    999    1.1   mycroft 	}
   1000   1.10  christos 	if ((error = copyin(SCARG(uap, fsidp), &fsid, sizeof(fsid_t))) != 0)
   1001    1.1   mycroft 		return (error);
   1002  1.102     perry 
   1003    1.5       cgd 	if (SCARG(uap, tv)) {
   1004   1.10  christos 		error = copyin(SCARG(uap, tv), &atv, sizeof(struct timeval));
   1005   1.10  christos 		if (error)
   1006    1.1   mycroft 			return (error);
   1007    1.1   mycroft 		if (itimerfix(&atv))
   1008    1.1   mycroft 			return (EINVAL);
   1009   1.84  perseant 	} else /* NULL or invalid */
   1010   1.84  perseant 		atv.tv_sec = atv.tv_usec = 0;
   1011   1.84  perseant 	return lfs_segwait(&fsid, &atv);
   1012    1.1   mycroft }
   1013    1.1   mycroft 
   1014    1.1   mycroft /*
   1015    1.1   mycroft  * VFS_VGET call specialized for the cleaner.  The cleaner already knows the
   1016    1.1   mycroft  * daddr from the ifile, so don't look it up again.  If the cleaner is
   1017    1.1   mycroft  * processing IINFO structures, it may have the ondisk inode already, so
   1018    1.1   mycroft  * don't go retrieving it again.
   1019   1.22  perseant  *
   1020   1.74      yamt  * we lfs_vref, and it is the caller's responsibility to lfs_vunref
   1021   1.74      yamt  * when finished.
   1022    1.1   mycroft  */
   1023   1.22  perseant extern struct lock ufs_hashlock;
   1024   1.22  perseant 
   1025    1.1   mycroft int
   1026   1.74      yamt lfs_fasthashget(dev_t dev, ino_t ino, struct vnode **vpp)
   1027   1.44      fvdl {
   1028   1.44      fvdl 	if ((*vpp = ufs_ihashlookup(dev, ino)) != NULL) {
   1029   1.44      fvdl 		if ((*vpp)->v_flag & VXLOCK) {
   1030  1.103  perseant 			DLOG((DLOG_CLEAN, "lfs_fastvget: ino %d VXLOCK\n",
   1031  1.103  perseant 			      ino));
   1032  1.103  perseant 			lfs_stats.clean_vnlocked++;
   1033   1.44      fvdl 			return EAGAIN;
   1034   1.44      fvdl 		}
   1035   1.44      fvdl 		if (lfs_vref(*vpp)) {
   1036  1.103  perseant 			DLOG((DLOG_CLEAN, "lfs_fastvget: lfs_vref failed"
   1037  1.103  perseant 			      " for ino %d\n", ino));
   1038  1.103  perseant 			lfs_stats.clean_inlocked++;
   1039   1.44      fvdl 			return EAGAIN;
   1040   1.44      fvdl 		}
   1041   1.44      fvdl 	} else
   1042   1.44      fvdl 		*vpp = NULL;
   1043   1.44      fvdl 
   1044   1.44      fvdl 	return (0);
   1045   1.44      fvdl }
   1046   1.44      fvdl 
   1047   1.44      fvdl int
   1048   1.89      fvdl lfs_fastvget(struct mount *mp, ino_t ino, daddr_t daddr, struct vnode **vpp, struct ufs1_dinode *dinp)
   1049    1.1   mycroft {
   1050   1.41  augustss 	struct inode *ip;
   1051   1.89      fvdl 	struct ufs1_dinode *dip;
   1052    1.1   mycroft 	struct vnode *vp;
   1053    1.1   mycroft 	struct ufsmount *ump;
   1054    1.1   mycroft 	dev_t dev;
   1055   1.88      yamt 	int error, retries;
   1056   1.22  perseant 	struct buf *bp;
   1057   1.57  perseant 	struct lfs *fs;
   1058  1.102     perry 
   1059    1.1   mycroft 	ump = VFSTOUFS(mp);
   1060    1.1   mycroft 	dev = ump->um_dev;
   1061   1.57  perseant 	fs = ump->um_lfs;
   1062   1.54  perseant 
   1063   1.54  perseant 	/*
   1064   1.54  perseant 	 * Wait until the filesystem is fully mounted before allowing vget
   1065   1.82  perseant 	 * to complete.	 This prevents possible problems with roll-forward.
   1066   1.54  perseant 	 */
   1067  1.104  perseant 	simple_lock(&fs->lfs_interlock);
   1068   1.62       chs 	while (fs->lfs_flags & LFS_NOTYET) {
   1069  1.104  perseant 		ltsleep(&fs->lfs_flags, PRIBIO+1, "lfs_fnotyet", 0,
   1070  1.104  perseant 			&fs->lfs_interlock);
   1071   1.54  perseant 	}
   1072  1.104  perseant 	simple_unlock(&fs->lfs_interlock);
   1073  1.104  perseant 
   1074   1.54  perseant 	/*
   1075   1.54  perseant 	 * This is playing fast and loose.  Someone may have the inode
   1076   1.54  perseant 	 * locked, in which case they are going to be distinctly unhappy
   1077   1.54  perseant 	 * if we trash something.
   1078   1.54  perseant 	 */
   1079   1.44      fvdl 
   1080   1.74      yamt 	error = lfs_fasthashget(dev, ino, vpp);
   1081   1.44      fvdl 	if (error != 0 || *vpp != NULL)
   1082   1.44      fvdl 		return (error);
   1083   1.44      fvdl 
   1084  1.102     perry 	/*
   1085  1.101  perseant 	 * getnewvnode(9) will call vfs_busy, which will block if the
   1086  1.101  perseant 	 * filesystem is being unmounted; but umount(9) is waiting for
   1087  1.101  perseant 	 * us because we're already holding the fs busy.
   1088  1.101  perseant 	 * XXXMP
   1089  1.101  perseant 	 */
   1090  1.101  perseant 	if (mp->mnt_iflag & IMNT_UNMOUNT) {
   1091  1.101  perseant 		*vpp = NULL;
   1092  1.101  perseant 		return EDEADLK;
   1093  1.101  perseant 	}
   1094   1.45      fvdl 	if ((error = getnewvnode(VT_LFS, mp, lfs_vnodeop_p, &vp)) != 0) {
   1095   1.44      fvdl 		*vpp = NULL;
   1096   1.44      fvdl 		return (error);
   1097   1.44      fvdl 	}
   1098   1.44      fvdl 
   1099   1.22  perseant 	do {
   1100   1.74      yamt 		error = lfs_fasthashget(dev, ino, vpp);
   1101   1.44      fvdl 		if (error != 0 || *vpp != NULL) {
   1102   1.44      fvdl 			ungetnewvnode(vp);
   1103   1.44      fvdl 			return (error);
   1104   1.22  perseant 		}
   1105   1.22  perseant 	} while (lockmgr(&ufs_hashlock, LK_EXCLUSIVE|LK_SLEEPFAIL, 0));
   1106    1.1   mycroft 
   1107    1.1   mycroft 	/* Allocate new vnode/inode. */
   1108   1.44      fvdl 	lfs_vcreate(mp, ino, vp);
   1109   1.44      fvdl 
   1110    1.1   mycroft 	/*
   1111    1.1   mycroft 	 * Put it onto its hash chain and lock it so that other requests for
   1112    1.1   mycroft 	 * this inode will block if they arrive while we are sleeping waiting
   1113    1.1   mycroft 	 * for old data structures to be purged or for the contents of the
   1114    1.1   mycroft 	 * disk portion of this inode to be read.
   1115    1.1   mycroft 	 */
   1116    1.1   mycroft 	ip = VTOI(vp);
   1117    1.1   mycroft 	ufs_ihashins(ip);
   1118   1.22  perseant 	lockmgr(&ufs_hashlock, LK_RELEASE, 0);
   1119  1.102     perry 
   1120    1.1   mycroft 	/*
   1121    1.1   mycroft 	 * XXX
   1122    1.1   mycroft 	 * This may not need to be here, logically it should go down with
   1123    1.1   mycroft 	 * the i_devvp initialization.
   1124    1.1   mycroft 	 * Ask Kirk.
   1125    1.1   mycroft 	 */
   1126   1.57  perseant 	ip->i_lfs = fs;
   1127    1.1   mycroft 
   1128    1.1   mycroft 	/* Read in the disk contents for the inode, copy into the inode. */
   1129   1.10  christos 	if (dinp) {
   1130   1.89      fvdl 		error = copyin(dinp, ip->i_din.ffs1_din, sizeof (struct ufs1_dinode));
   1131   1.22  perseant 		if (error) {
   1132  1.103  perseant 			DLOG((DLOG_CLEAN, "lfs_fastvget: dinode copyin failed"
   1133  1.103  perseant 			      " for ino %d\n", ino));
   1134   1.22  perseant 			ufs_ihashrem(ip);
   1135   1.22  perseant 
   1136   1.22  perseant 			/* Unlock and discard unneeded inode. */
   1137   1.33  wrstuden 			lockmgr(&vp->v_lock, LK_RELEASE, &vp->v_interlock);
   1138   1.22  perseant 			lfs_vunref(vp);
   1139   1.22  perseant 			*vpp = NULL;
   1140    1.1   mycroft 			return (error);
   1141   1.22  perseant 		}
   1142   1.62       chs 		if (ip->i_number != ino)
   1143   1.22  perseant 			panic("lfs_fastvget: I was fed the wrong inode!");
   1144   1.22  perseant 	} else {
   1145   1.65  perseant 		retries = 0;
   1146   1.65  perseant 	    again:
   1147   1.57  perseant 		error = bread(ump->um_devvp, fsbtodb(fs, daddr), fs->lfs_ibsize,
   1148   1.57  perseant 			      NOCRED, &bp);
   1149   1.10  christos 		if (error) {
   1150  1.103  perseant 			DLOG((DLOG_CLEAN, "lfs_fastvget: bread failed (%d)\n",
   1151  1.103  perseant 			      error));
   1152    1.1   mycroft 			/*
   1153    1.1   mycroft 			 * The inode does not contain anything useful, so it
   1154    1.1   mycroft 			 * would be misleading to leave it on its hash chain.
   1155    1.1   mycroft 			 * Iput() will return it to the free list.
   1156    1.1   mycroft 			 */
   1157    1.1   mycroft 			ufs_ihashrem(ip);
   1158  1.102     perry 
   1159    1.1   mycroft 			/* Unlock and discard unneeded inode. */
   1160   1.33  wrstuden 			lockmgr(&vp->v_lock, LK_RELEASE, &vp->v_interlock);
   1161    1.1   mycroft 			lfs_vunref(vp);
   1162    1.1   mycroft 			brelse(bp);
   1163    1.1   mycroft 			*vpp = NULL;
   1164    1.1   mycroft 			return (error);
   1165    1.1   mycroft 		}
   1166   1.65  perseant 		dip = lfs_ifind(ump->um_lfs, ino, bp);
   1167   1.65  perseant 		if (dip == NULL) {
   1168   1.65  perseant 			/* Assume write has not completed yet; try again */
   1169   1.65  perseant 			bp->b_flags |= B_INVAL;
   1170   1.65  perseant 			brelse(bp);
   1171   1.65  perseant 			++retries;
   1172   1.65  perseant 			if (retries > LFS_IFIND_RETRIES)
   1173   1.65  perseant 				panic("lfs_fastvget: dinode not found");
   1174  1.103  perseant 			DLOG((DLOG_CLEAN, "lfs_fastvget: dinode not found,"
   1175  1.103  perseant 			      " retrying...\n"));
   1176   1.65  perseant 			goto again;
   1177   1.65  perseant 		}
   1178   1.89      fvdl 		*ip->i_din.ffs1_din = *dip;
   1179    1.1   mycroft 		brelse(bp);
   1180    1.1   mycroft 	}
   1181   1.99      yamt 	lfs_vinit(mp, &vp);
   1182   1.63       chs 
   1183    1.1   mycroft 	*vpp = vp;
   1184   1.88      yamt 
   1185   1.74      yamt 	KASSERT(VOP_ISLOCKED(vp));
   1186   1.74      yamt 	VOP_UNLOCK(vp, 0);
   1187   1.22  perseant 
   1188    1.1   mycroft 	return (0);
   1189    1.1   mycroft }
   1190   1.22  perseant 
   1191   1.85  perseant /*
   1192   1.85  perseant  * Make up a "fake" cleaner buffer, copy the data from userland into it.
   1193   1.85  perseant  */
   1194    1.1   mycroft struct buf *
   1195   1.65  perseant lfs_fakebuf(struct lfs *fs, struct vnode *vp, int lbn, size_t size, caddr_t uaddr)
   1196    1.1   mycroft {
   1197    1.1   mycroft 	struct buf *bp;
   1198   1.25  perseant 	int error;
   1199   1.75      yamt 
   1200   1.75      yamt 	KASSERT(VTOI(vp)->i_number != LFS_IFILE_INUM);
   1201   1.73      yamt 
   1202   1.80  perseant 	bp = lfs_newbuf(VTOI(vp)->i_lfs, vp, lbn, size, LFS_NB_CLEAN);
   1203   1.25  perseant 	error = copyin(uaddr, bp->b_data, size);
   1204   1.62       chs 	if (error) {
   1205   1.80  perseant 		lfs_freebuf(fs, bp);
   1206   1.25  perseant 		return NULL;
   1207   1.22  perseant 	}
   1208   1.73      yamt 	KDASSERT(bp->b_iodone == lfs_callback);
   1209   1.73      yamt 
   1210   1.65  perseant #if 0
   1211  1.104  perseant 	simple_lock(&fs->lfs_interlock);
   1212   1.65  perseant 	++fs->lfs_iocount;
   1213  1.104  perseant 	simple_unlock(&fs->lfs_interlock);
   1214   1.65  perseant #endif
   1215    1.1   mycroft 	bp->b_bufsize = size;
   1216    1.1   mycroft 	bp->b_bcount = size;
   1217    1.1   mycroft 	return (bp);
   1218    1.1   mycroft }
   1219