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