Home | History | Annotate | Line # | Download | only in lfs
lfs_segment.c revision 1.55
      1 /*	$NetBSD: lfs_segment.c,v 1.55 2000/07/04 22:30:37 perseant Exp $	*/
      2 
      3 /*-
      4  * Copyright (c) 1999 The NetBSD Foundation, Inc.
      5  * All rights reserved.
      6  *
      7  * This code is derived from software contributed to The NetBSD Foundation
      8  * by Konrad E. Schroder <perseant (at) hhhh.org>.
      9  *
     10  * Redistribution and use in source and binary forms, with or without
     11  * modification, are permitted provided that the following conditions
     12  * are met:
     13  * 1. Redistributions of source code must retain the above copyright
     14  *    notice, this list of conditions and the following disclaimer.
     15  * 2. Redistributions in binary form must reproduce the above copyright
     16  *    notice, this list of conditions and the following disclaimer in the
     17  *    documentation and/or other materials provided with the distribution.
     18  * 3. All advertising materials mentioning features or use of this software
     19  *    must display the following acknowledgement:
     20  *      This product includes software developed by the NetBSD
     21  *      Foundation, Inc. and its contributors.
     22  * 4. Neither the name of The NetBSD Foundation nor the names of its
     23  *    contributors may be used to endorse or promote products derived
     24  *    from this software without specific prior written permission.
     25  *
     26  * THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
     27  * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
     28  * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
     29  * PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
     30  * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
     31  * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
     32  * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
     33  * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
     34  * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
     35  * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
     36  * POSSIBILITY OF SUCH DAMAGE.
     37  */
     38 /*
     39  * Copyright (c) 1991, 1993
     40  *	The Regents of the University of California.  All rights reserved.
     41  *
     42  * Redistribution and use in source and binary forms, with or without
     43  * modification, are permitted provided that the following conditions
     44  * are met:
     45  * 1. Redistributions of source code must retain the above copyright
     46  *    notice, this list of conditions and the following disclaimer.
     47  * 2. Redistributions in binary form must reproduce the above copyright
     48  *    notice, this list of conditions and the following disclaimer in the
     49  *    documentation and/or other materials provided with the distribution.
     50  * 3. All advertising materials mentioning features or use of this software
     51  *    must display the following acknowledgement:
     52  *	This product includes software developed by the University of
     53  *	California, Berkeley and its contributors.
     54  * 4. Neither the name of the University nor the names of its contributors
     55  *    may be used to endorse or promote products derived from this software
     56  *    without specific prior written permission.
     57  *
     58  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
     59  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
     60  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
     61  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
     62  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
     63  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
     64  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
     65  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
     66  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
     67  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
     68  * SUCH DAMAGE.
     69  *
     70  *	@(#)lfs_segment.c	8.10 (Berkeley) 6/10/95
     71  */
     72 
     73 #define ivndebug(vp,str) printf("ino %d: %s\n",VTOI(vp)->i_number,(str))
     74 
     75 #include "opt_ddb.h"
     76 #include <sys/param.h>
     77 #include <sys/systm.h>
     78 #include <sys/namei.h>
     79 #include <sys/kernel.h>
     80 #include <sys/resourcevar.h>
     81 #include <sys/file.h>
     82 #include <sys/stat.h>
     83 #include <sys/buf.h>
     84 #include <sys/proc.h>
     85 #include <sys/conf.h>
     86 #include <sys/vnode.h>
     87 #include <sys/malloc.h>
     88 #include <sys/mount.h>
     89 
     90 #include <miscfs/specfs/specdev.h>
     91 #include <miscfs/fifofs/fifo.h>
     92 
     93 #include <ufs/ufs/quota.h>
     94 #include <ufs/ufs/inode.h>
     95 #include <ufs/ufs/dir.h>
     96 #include <ufs/ufs/ufsmount.h>
     97 #include <ufs/ufs/ufs_extern.h>
     98 
     99 #include <ufs/lfs/lfs.h>
    100 #include <ufs/lfs/lfs_extern.h>
    101 
    102 extern int count_lock_queue __P((void));
    103 extern struct simplelock vnode_free_list_slock;		/* XXX */
    104 
    105 /*
    106  * Determine if it's OK to start a partial in this segment, or if we need
    107  * to go on to a new segment.
    108  */
    109 #define	LFS_PARTIAL_FITS(fs) \
    110 	((fs)->lfs_dbpseg - ((fs)->lfs_offset - (fs)->lfs_curseg) > \
    111 	1 << (fs)->lfs_fsbtodb)
    112 
    113 void	 lfs_callback __P((struct buf *));
    114 int	 lfs_gather __P((struct lfs *, struct segment *,
    115 	     struct vnode *, int (*) __P((struct lfs *, struct buf *))));
    116 int	 lfs_gatherblock __P((struct segment *, struct buf *, int *));
    117 void	 lfs_iset __P((struct inode *, ufs_daddr_t, time_t));
    118 int	 lfs_match_fake __P((struct lfs *, struct buf *));
    119 int	 lfs_match_data __P((struct lfs *, struct buf *));
    120 int	 lfs_match_dindir __P((struct lfs *, struct buf *));
    121 int	 lfs_match_indir __P((struct lfs *, struct buf *));
    122 int	 lfs_match_tindir __P((struct lfs *, struct buf *));
    123 void	 lfs_newseg __P((struct lfs *));
    124 void	 lfs_shellsort __P((struct buf **, ufs_daddr_t *, int));
    125 void	 lfs_supercallback __P((struct buf *));
    126 void	 lfs_updatemeta __P((struct segment *));
    127 int	 lfs_vref __P((struct vnode *));
    128 void	 lfs_vunref __P((struct vnode *));
    129 void	 lfs_writefile __P((struct lfs *, struct segment *, struct vnode *));
    130 int	 lfs_writeinode __P((struct lfs *, struct segment *, struct inode *));
    131 int	 lfs_writeseg __P((struct lfs *, struct segment *));
    132 void	 lfs_writesuper __P((struct lfs *, daddr_t));
    133 int	 lfs_writevnodes __P((struct lfs *fs, struct mount *mp,
    134 	    struct segment *sp, int dirops));
    135 
    136 int	lfs_allclean_wakeup;		/* Cleaner wakeup address. */
    137 int	lfs_writeindir = 1;             /* whether to flush indir on non-ckp */
    138 int	lfs_clean_vnhead = 0;		/* Allow freeing to head of vn list */
    139 int	lfs_dirvcount = 0;		/* # active dirops */
    140 
    141 /* Statistics Counters */
    142 int lfs_dostats = 1;
    143 struct lfs_stats lfs_stats;
    144 
    145 /* op values to lfs_writevnodes */
    146 #define	VN_REG	        0
    147 #define	VN_DIROP	1
    148 #define	VN_EMPTY	2
    149 #define VN_CLEAN        3
    150 
    151 #define LFS_MAX_ACTIVE          10
    152 
    153 /*
    154  * XXX KS - Set modification time on the Ifile, so the cleaner can
    155  * read the fs mod time off of it.  We don't set IN_UPDATE here,
    156  * since we don't really need this to be flushed to disk (and in any
    157  * case that wouldn't happen to the Ifile until we checkpoint).
    158  */
    159 void
    160 lfs_imtime(fs)
    161 	struct lfs *fs;
    162 {
    163 	struct timespec ts;
    164 	struct inode *ip;
    165 
    166 	TIMEVAL_TO_TIMESPEC(&time, &ts);
    167 	ip = VTOI(fs->lfs_ivnode);
    168 	ip->i_ffs_mtime = ts.tv_sec;
    169 	ip->i_ffs_mtimensec = ts.tv_nsec;
    170 }
    171 
    172 /*
    173  * Ifile and meta data blocks are not marked busy, so segment writes MUST be
    174  * single threaded.  Currently, there are two paths into lfs_segwrite, sync()
    175  * and getnewbuf().  They both mark the file system busy.  Lfs_vflush()
    176  * explicitly marks the file system busy.  So lfs_segwrite is safe.  I think.
    177  */
    178 
    179 #define SET_FLUSHING(fs,vp) (fs)->lfs_flushvp = (vp)
    180 #define IS_FLUSHING(fs,vp)  ((fs)->lfs_flushvp == (vp))
    181 #define CLR_FLUSHING(fs,vp) (fs)->lfs_flushvp = NULL
    182 
    183 int
    184 lfs_vflush(vp)
    185 	struct vnode *vp;
    186 {
    187 	struct inode *ip;
    188 	struct lfs *fs;
    189 	struct segment *sp;
    190 	struct buf *bp, *nbp, *tbp, *tnbp;
    191 	int error, s;
    192 
    193 	ip = VTOI(vp);
    194 	fs = VFSTOUFS(vp->v_mount)->um_lfs;
    195 
    196 	if(ip->i_flag & IN_CLEANING) {
    197 #ifdef DEBUG_LFS
    198 		ivndebug(vp,"vflush/in_cleaning");
    199 #endif
    200 		ip->i_flag &= ~IN_CLEANING;
    201 		if(ip->i_flag & (IN_MODIFIED | IN_ACCESSED)) {
    202 			fs->lfs_uinodes--;
    203 		} else
    204 			ip->i_flag |= IN_MODIFIED;
    205 		/*
    206 		 * Toss any cleaning buffers that have real counterparts
    207 		 * to avoid losing new data
    208 		 */
    209 		s = splbio();
    210 		for(bp=vp->v_dirtyblkhd.lh_first; bp; bp=nbp) {
    211 			nbp = bp->b_vnbufs.le_next;
    212 			if(bp->b_flags & B_CALL) {
    213 				for(tbp=vp->v_dirtyblkhd.lh_first; tbp;
    214 				    tbp=tnbp)
    215 				{
    216 					tnbp = tbp->b_vnbufs.le_next;
    217 					if(tbp->b_vp == bp->b_vp
    218 					   && tbp->b_lblkno == bp->b_lblkno
    219 					   && tbp != bp)
    220 					{
    221 						lfs_freebuf(bp);
    222 					}
    223 				}
    224 			}
    225 		}
    226 		splx(s);
    227 	}
    228 
    229 	/* If the node is being written, wait until that is done */
    230 	if(WRITEINPROG(vp)) {
    231 #ifdef DEBUG_LFS
    232 		ivndebug(vp,"vflush/writeinprog");
    233 #endif
    234 		tsleep(vp, PRIBIO+1, "lfs_vw", 0);
    235 	}
    236 
    237 	/* Protect against VXLOCK deadlock in vinvalbuf() */
    238 	lfs_seglock(fs, SEGM_SYNC);
    239 
    240 	/* If we're supposed to flush a freed inode, just toss it */
    241 	/* XXX - seglock, so these buffers can't be gathered, right? */
    242 	if(ip->i_ffs_mode == 0) {
    243 		printf("lfs_vflush: ino %d is freed, not flushing\n",
    244 			ip->i_number);
    245 		s = splbio();
    246 		for(bp=vp->v_dirtyblkhd.lh_first; bp; bp=nbp) {
    247 			nbp = bp->b_vnbufs.le_next;
    248 			/* Copied from lfs_writeseg */
    249 			if (bp->b_flags & B_CALL) {
    250 				/* if B_CALL, it was created with newbuf */
    251 				lfs_freebuf(bp);
    252 			} else {
    253 				bremfree(bp);
    254 				bp->b_flags &= ~(B_ERROR | B_READ | B_DELWRI |
    255                                          B_LOCKED | B_GATHERED);
    256 				bp->b_flags |= B_DONE;
    257 				reassignbuf(bp, vp);
    258 				brelse(bp);
    259 			}
    260 		}
    261 		splx(s);
    262 		if(ip->i_flag & IN_CLEANING)
    263 			fs->lfs_uinodes--;
    264 		if(ip->i_flag & (IN_MODIFIED | IN_ACCESSED))
    265 			fs->lfs_uinodes--;
    266 		ip->i_flag &= ~IN_ALLMOD;
    267 		printf("lfs_vflush: done not flushing ino %d\n",
    268 			ip->i_number);
    269 		lfs_segunlock(fs);
    270 		return 0;
    271 	}
    272 
    273 	SET_FLUSHING(fs,vp);
    274 	if (fs->lfs_nactive > LFS_MAX_ACTIVE) {
    275 		error = lfs_segwrite(vp->v_mount, SEGM_SYNC|SEGM_CKP);
    276 		CLR_FLUSHING(fs,vp);
    277 		lfs_segunlock(fs);
    278 		return error;
    279 	}
    280 	sp = fs->lfs_sp;
    281 
    282 	if (vp->v_dirtyblkhd.lh_first == NULL) {
    283 		lfs_writevnodes(fs, vp->v_mount, sp, VN_EMPTY);
    284 	} else if((ip->i_flag & IN_CLEANING) && (fs->lfs_sp->seg_flags & SEGM_CLEAN)) {
    285 #ifdef DEBUG_LFS
    286 		ivndebug(vp,"vflush/clean");
    287 #endif
    288 		lfs_writevnodes(fs, vp->v_mount, sp, VN_CLEAN);
    289 	}
    290 	else if(lfs_dostats) {
    291 		if(vp->v_dirtyblkhd.lh_first || (VTOI(vp)->i_flag & IN_ALLMOD))
    292 			++lfs_stats.vflush_invoked;
    293 #ifdef DEBUG_LFS
    294 		ivndebug(vp,"vflush");
    295 #endif
    296 	}
    297 
    298 #ifdef DIAGNOSTIC
    299 	/* XXX KS This actually can happen right now, though it shouldn't(?) */
    300 	if(vp->v_flag & VDIROP) {
    301 		printf("lfs_vflush: flushing VDIROP, this shouldn\'t be\n");
    302 		/* panic("VDIROP being flushed...this can\'t happen"); */
    303 	}
    304 	if(vp->v_usecount<0) {
    305 		printf("usecount=%ld\n",vp->v_usecount);
    306 		panic("lfs_vflush: usecount<0");
    307 	}
    308 #endif
    309 
    310 	do {
    311 		do {
    312 			if (vp->v_dirtyblkhd.lh_first != NULL)
    313 				lfs_writefile(fs, sp, vp);
    314 		} while (lfs_writeinode(fs, sp, ip));
    315 	} while (lfs_writeseg(fs, sp) && ip->i_number == LFS_IFILE_INUM);
    316 
    317 	if(lfs_dostats) {
    318 		++lfs_stats.nwrites;
    319 		if (sp->seg_flags & SEGM_SYNC)
    320 			++lfs_stats.nsync_writes;
    321 		if (sp->seg_flags & SEGM_CKP)
    322 			++lfs_stats.ncheckpoints;
    323 	}
    324 	lfs_segunlock(fs);
    325 
    326 	CLR_FLUSHING(fs,vp);
    327 	return (0);
    328 }
    329 
    330 #ifdef DEBUG_LFS_VERBOSE
    331 # define vndebug(vp,str) if(VTOI(vp)->i_flag & IN_CLEANING) printf("not writing ino %d because %s (op %d)\n",VTOI(vp)->i_number,(str),op)
    332 #else
    333 # define vndebug(vp,str)
    334 #endif
    335 
    336 int
    337 lfs_writevnodes(fs, mp, sp, op)
    338 	struct lfs *fs;
    339 	struct mount *mp;
    340 	struct segment *sp;
    341 	int op;
    342 {
    343 	struct inode *ip;
    344 	struct vnode *vp;
    345 	int inodes_written=0, only_cleaning;
    346 	int needs_unlock;
    347 
    348 #ifndef LFS_NO_BACKVP_HACK
    349 	/* BEGIN HACK */
    350 #define	VN_OFFSET	(((caddr_t)&vp->v_mntvnodes.le_next) - (caddr_t)vp)
    351 #define	BACK_VP(VP)	((struct vnode *)(((caddr_t)VP->v_mntvnodes.le_prev) - VN_OFFSET))
    352 #define	BEG_OF_VLIST	((struct vnode *)(((caddr_t)&mp->mnt_vnodelist.lh_first) - VN_OFFSET))
    353 
    354 	/* Find last vnode. */
    355  loop:	for (vp = mp->mnt_vnodelist.lh_first;
    356 	     vp && vp->v_mntvnodes.le_next != NULL;
    357 	     vp = vp->v_mntvnodes.le_next);
    358 	for (; vp && vp != BEG_OF_VLIST; vp = BACK_VP(vp)) {
    359 #else
    360 	loop:
    361 	for (vp = mp->mnt_vnodelist.lh_first;
    362 	     vp != NULL;
    363 	     vp = vp->v_mntvnodes.le_next) {
    364 #endif
    365 		/*
    366 		 * If the vnode that we are about to sync is no longer
    367 		 * associated with this mount point, start over.
    368 		 */
    369 		if (vp->v_mount != mp)
    370 			goto loop;
    371 
    372 		ip = VTOI(vp);
    373 		if ((op == VN_DIROP && !(vp->v_flag & VDIROP)) ||
    374 		    (op != VN_DIROP && op != VN_CLEAN && (vp->v_flag & VDIROP))) {
    375 			vndebug(vp,"dirop");
    376 			continue;
    377 		}
    378 
    379 		if (op == VN_EMPTY && vp->v_dirtyblkhd.lh_first) {
    380 			vndebug(vp,"empty");
    381 			continue;
    382 		}
    383 
    384 		if (vp->v_type == VNON) {
    385 			continue;
    386 		}
    387 
    388 		if(op == VN_CLEAN && ip->i_number != LFS_IFILE_INUM
    389 		   && vp != fs->lfs_flushvp
    390 		   && !(ip->i_flag & IN_CLEANING)) {
    391 			vndebug(vp,"cleaning");
    392 			continue;
    393 		}
    394 
    395 		if (lfs_vref(vp)) {
    396 			vndebug(vp,"vref");
    397 			continue;
    398 		}
    399 
    400 		needs_unlock = 0;
    401 		if (VOP_ISLOCKED(vp)) {
    402 			if (vp != fs->lfs_ivnode &&
    403 			    vp->v_lock.lk_lockholder != curproc->p_pid) {
    404 #ifdef DEBUG_LFS
    405 				printf("lfs_writevnodes: not writing ino %d, locked by pid %d\n",
    406 					VTOI(vp)->i_number,
    407 					vp->v_lock.lk_lockholder);
    408 #endif
    409 				lfs_vunref(vp);
    410 				continue;
    411 			}
    412 		} else if (vp != fs->lfs_ivnode) {
    413 			vn_lock(vp, LK_EXCLUSIVE | LK_RETRY);
    414 			needs_unlock = 1;
    415 		}
    416 
    417 		only_cleaning = 0;
    418 		/*
    419 		 * Write the inode/file if dirty and it's not the IFILE.
    420 		 */
    421 		if ((ip->i_flag & IN_ALLMOD) ||
    422 		     (vp->v_dirtyblkhd.lh_first != NULL))
    423 		{
    424 			only_cleaning = ((ip->i_flag & IN_ALLMOD)==IN_CLEANING);
    425 
    426 			if(ip->i_number != LFS_IFILE_INUM
    427 			   && vp->v_dirtyblkhd.lh_first != NULL)
    428 			{
    429 				lfs_writefile(fs, sp, vp);
    430 			}
    431 			if(vp->v_dirtyblkhd.lh_first != NULL) {
    432 				if(WRITEINPROG(vp)) {
    433 #ifdef DEBUG_LFS
    434 					ivndebug(vp,"writevnodes/write2");
    435 #endif
    436 				} else if(!(ip->i_flag & IN_ALLMOD)) {
    437 #ifdef DEBUG_LFS
    438 					printf("<%d>",ip->i_number);
    439 #endif
    440 					ip->i_flag |= IN_MODIFIED;
    441 					++fs->lfs_uinodes;
    442 				}
    443 			}
    444 			(void) lfs_writeinode(fs, sp, ip);
    445 			inodes_written++;
    446 		}
    447 
    448 		if (needs_unlock)
    449 			VOP_UNLOCK(vp, 0);
    450 
    451 		if (lfs_clean_vnhead && only_cleaning)
    452 			lfs_vunref_head(vp);
    453 		else
    454 			lfs_vunref(vp);
    455 	}
    456 	return inodes_written;
    457 }
    458 
    459 int
    460 lfs_segwrite(mp, flags)
    461 	struct mount *mp;
    462 	int flags;			/* Do a checkpoint. */
    463 {
    464 	struct buf *bp;
    465 	struct inode *ip;
    466 	struct lfs *fs;
    467 	struct segment *sp;
    468 	struct vnode *vp;
    469 	SEGUSE *segusep;
    470 	CLEANERINFO *cip;
    471 	ufs_daddr_t ibno;
    472 	int do_ckp, error, i;
    473 	int writer_set = 0;
    474 
    475 	fs = VFSTOUFS(mp)->um_lfs;
    476 
    477 	if (fs->lfs_ronly)
    478 		return EROFS;
    479 
    480 	lfs_imtime(fs);
    481 
    482 	/*
    483 	 * If we are not the cleaner, and we have fewer than lfs_minfreeseg
    484 	 * clean segments, wait until cleaner writes.
    485 	 */
    486 	if(!(flags & SEGM_CLEAN)
    487 	   && (!fs->lfs_seglock || !(fs->lfs_sp->seg_flags & SEGM_CLEAN)))
    488 	{
    489 		do {
    490 			if (fs->lfs_nclean <= fs->lfs_minfreeseg ||
    491 			    fs->lfs_avail <= 0)
    492 			{
    493 				wakeup(&lfs_allclean_wakeup);
    494 				wakeup(&fs->lfs_nextseg);
    495 				error = tsleep(&fs->lfs_avail, PRIBIO + 1,
    496 					       "lfs_avail", 0);
    497 				if (error) {
    498 					return (error);
    499 				}
    500 			}
    501 		} while (fs->lfs_nclean <= fs->lfs_minfreeseg ||
    502 			 fs->lfs_avail <= 0);
    503 	}
    504 
    505 	/*
    506 	 * Synchronize cleaner information
    507 	 */
    508 	LFS_CLEANERINFO(cip, fs, bp);
    509 	cip->bfree = fs->lfs_bfree;
    510 	cip->avail = fs->lfs_avail;
    511 	(void) VOP_BWRITE(bp);
    512 
    513 	/*
    514 	 * Allocate a segment structure and enough space to hold pointers to
    515 	 * the maximum possible number of buffers which can be described in a
    516 	 * single summary block.
    517 	 */
    518 	do_ckp = (flags & SEGM_CKP) || fs->lfs_nactive > LFS_MAX_ACTIVE;
    519 	lfs_seglock(fs, flags | (do_ckp ? SEGM_CKP : 0));
    520 	sp = fs->lfs_sp;
    521 
    522 	/*
    523 	 * If lfs_flushvp is non-NULL, we are called from lfs_vflush,
    524 	 * in which case we have to flush *all* buffers off of this vnode.
    525 	 * We don't care about other nodes, but write any non-dirop nodes
    526 	 * anyway in anticipation of another getnewvnode().
    527 	 *
    528 	 * If we're cleaning we only write cleaning and ifile blocks, and
    529 	 * no dirops, since otherwise we'd risk corruption in a crash.
    530 	 */
    531 	if(sp->seg_flags & SEGM_CLEAN)
    532 		lfs_writevnodes(fs, mp, sp, VN_CLEAN);
    533 	else {
    534 		lfs_writevnodes(fs, mp, sp, VN_REG);
    535 		if(!fs->lfs_dirops || !fs->lfs_flushvp) {
    536 			while(fs->lfs_dirops)
    537 				if((error = tsleep(&fs->lfs_writer, PRIBIO + 1,
    538 						"lfs writer", 0)))
    539 				{
    540 					free(sp->bpp, M_SEGMENT);
    541 					free(sp, M_SEGMENT);
    542 					return (error);
    543 				}
    544 			fs->lfs_writer++;
    545 			writer_set=1;
    546 			lfs_writevnodes(fs, mp, sp, VN_DIROP);
    547 			((SEGSUM *)(sp->segsum))->ss_flags &= ~(SS_CONT);
    548 		}
    549 	}
    550 
    551 	/*
    552 	 * If we are doing a checkpoint, mark everything since the
    553 	 * last checkpoint as no longer ACTIVE.
    554 	 */
    555 	if (do_ckp) {
    556 		for (ibno = fs->lfs_cleansz + fs->lfs_segtabsz;
    557 		     --ibno >= fs->lfs_cleansz; ) {
    558 			if (bread(fs->lfs_ivnode, ibno, fs->lfs_bsize, NOCRED, &bp))
    559 
    560 				panic("lfs_segwrite: ifile read");
    561 			segusep = (SEGUSE *)bp->b_data;
    562 			for (i = fs->lfs_sepb; i--; segusep++)
    563 				segusep->su_flags &= ~SEGUSE_ACTIVE;
    564 
    565 			/* But the current segment is still ACTIVE */
    566 			segusep = (SEGUSE *)bp->b_data;
    567 			if (datosn(fs, fs->lfs_curseg) / fs->lfs_sepb ==
    568 			    (ibno-fs->lfs_cleansz))
    569 				segusep[datosn(fs, fs->lfs_curseg) %
    570 					fs->lfs_sepb].su_flags |= SEGUSE_ACTIVE;
    571 			error = VOP_BWRITE(bp);
    572 		}
    573 	}
    574 
    575 	if (do_ckp || fs->lfs_doifile) {
    576 	redo:
    577 		vp = fs->lfs_ivnode;
    578 
    579 		vget(vp, LK_EXCLUSIVE | LK_CANRECURSE | LK_RETRY);
    580 
    581 		ip = VTOI(vp);
    582 		if (vp->v_dirtyblkhd.lh_first != NULL)
    583 			lfs_writefile(fs, sp, vp);
    584 		(void)lfs_writeinode(fs, sp, ip);
    585 
    586 		vput(vp);
    587 
    588 		if (lfs_writeseg(fs, sp) && do_ckp)
    589 			goto redo;
    590 	} else {
    591 		(void) lfs_writeseg(fs, sp);
    592 	}
    593 
    594 	/*
    595 	 * If the I/O count is non-zero, sleep until it reaches zero.
    596 	 * At the moment, the user's process hangs around so we can
    597 	 * sleep.
    598 	 */
    599 	fs->lfs_doifile = 0;
    600 	if(writer_set && --fs->lfs_writer==0)
    601 		wakeup(&fs->lfs_dirops);
    602 
    603 	if(lfs_dostats) {
    604 		++lfs_stats.nwrites;
    605 		if (sp->seg_flags & SEGM_SYNC)
    606 			++lfs_stats.nsync_writes;
    607 		if (sp->seg_flags & SEGM_CKP)
    608 			++lfs_stats.ncheckpoints;
    609 	}
    610 	lfs_segunlock(fs);
    611 	return (0);
    612 }
    613 
    614 /*
    615  * Write the dirty blocks associated with a vnode.
    616  */
    617 void
    618 lfs_writefile(fs, sp, vp)
    619 	struct lfs *fs;
    620 	struct segment *sp;
    621 	struct vnode *vp;
    622 {
    623 	struct buf *bp;
    624 	struct finfo *fip;
    625 	IFILE *ifp;
    626 
    627 
    628 	if (sp->seg_bytes_left < fs->lfs_bsize ||
    629 	    sp->sum_bytes_left < sizeof(struct finfo))
    630 		(void) lfs_writeseg(fs, sp);
    631 
    632 	sp->sum_bytes_left -= sizeof(struct finfo) - sizeof(ufs_daddr_t);
    633 	++((SEGSUM *)(sp->segsum))->ss_nfinfo;
    634 
    635 	if(vp->v_flag & VDIROP)
    636 		((SEGSUM *)(sp->segsum))->ss_flags |= (SS_DIROP|SS_CONT);
    637 
    638 	fip = sp->fip;
    639 	fip->fi_nblocks = 0;
    640 	fip->fi_ino = VTOI(vp)->i_number;
    641 	LFS_IENTRY(ifp, fs, fip->fi_ino, bp);
    642 	fip->fi_version = ifp->if_version;
    643 	brelse(bp);
    644 
    645 	if(sp->seg_flags & SEGM_CLEAN)
    646 	{
    647 		lfs_gather(fs, sp, vp, lfs_match_fake);
    648 		/*
    649 		 * For a file being flushed, we need to write *all* blocks.
    650 		 * This means writing the cleaning blocks first, and then
    651 		 * immediately following with any non-cleaning blocks.
    652 		 * The same is true of the Ifile since checkpoints assume
    653 		 * that all valid Ifile blocks are written.
    654 		 */
    655 	   	if(IS_FLUSHING(fs,vp) || VTOI(vp)->i_number == LFS_IFILE_INUM)
    656 			lfs_gather(fs, sp, vp, lfs_match_data);
    657 	} else
    658 		lfs_gather(fs, sp, vp, lfs_match_data);
    659 
    660 	/*
    661 	 * It may not be necessary to write the meta-data blocks at this point,
    662 	 * as the roll-forward recovery code should be able to reconstruct the
    663 	 * list.
    664 	 *
    665 	 * We have to write them anyway, though, under two conditions: (1) the
    666 	 * vnode is being flushed (for reuse by vinvalbuf); or (2) we are
    667 	 * checkpointing.
    668 	 */
    669 	if(lfs_writeindir
    670 	   || IS_FLUSHING(fs,vp)
    671 	   || (sp->seg_flags & SEGM_CKP))
    672 	{
    673 		lfs_gather(fs, sp, vp, lfs_match_indir);
    674 		lfs_gather(fs, sp, vp, lfs_match_dindir);
    675 		lfs_gather(fs, sp, vp, lfs_match_tindir);
    676 	}
    677 	fip = sp->fip;
    678 	if (fip->fi_nblocks != 0) {
    679 		sp->fip = (FINFO*)((caddr_t)fip + sizeof(struct finfo) +
    680 				   sizeof(ufs_daddr_t) * (fip->fi_nblocks-1));
    681 		sp->start_lbp = &sp->fip->fi_blocks[0];
    682 	} else {
    683 		sp->sum_bytes_left += sizeof(FINFO) - sizeof(ufs_daddr_t);
    684 		--((SEGSUM *)(sp->segsum))->ss_nfinfo;
    685 	}
    686 }
    687 
    688 int
    689 lfs_writeinode(fs, sp, ip)
    690 	struct lfs *fs;
    691 	struct segment *sp;
    692 	struct inode *ip;
    693 {
    694 	struct buf *bp, *ibp;
    695 	struct dinode *cdp;
    696 	IFILE *ifp;
    697 	SEGUSE *sup;
    698 	ufs_daddr_t daddr;
    699 	daddr_t *daddrp;
    700 	ino_t ino;
    701 	int error, i, ndx;
    702 	int redo_ifile = 0;
    703 	struct timespec ts;
    704 	int gotblk=0;
    705 
    706 	if (!(ip->i_flag & IN_ALLMOD))
    707 		return(0);
    708 
    709 	/* Allocate a new inode block if necessary. */
    710 	if ((ip->i_number != LFS_IFILE_INUM || sp->idp==NULL) && sp->ibp == NULL) {
    711 		/* Allocate a new segment if necessary. */
    712 		if (sp->seg_bytes_left < fs->lfs_bsize ||
    713 		    sp->sum_bytes_left < sizeof(ufs_daddr_t))
    714 			(void) lfs_writeseg(fs, sp);
    715 
    716 		/* Get next inode block. */
    717 		daddr = fs->lfs_offset;
    718 		fs->lfs_offset += fsbtodb(fs, 1);
    719 		sp->ibp = *sp->cbpp++ =
    720 			getblk(VTOI(fs->lfs_ivnode)->i_devvp, daddr, fs->lfs_bsize, 0, 0);
    721 		gotblk++;
    722 
    723 		/* Zero out inode numbers */
    724 		for (i = 0; i < INOPB(fs); ++i)
    725 			((struct dinode *)sp->ibp->b_data)[i].di_inumber = 0;
    726 
    727 		++sp->start_bpp;
    728 		fs->lfs_avail -= fsbtodb(fs, 1);
    729 		/* Set remaining space counters. */
    730 		sp->seg_bytes_left -= fs->lfs_bsize;
    731 		sp->sum_bytes_left -= sizeof(ufs_daddr_t);
    732 		ndx = LFS_SUMMARY_SIZE / sizeof(ufs_daddr_t) -
    733 			sp->ninodes / INOPB(fs) - 1;
    734 		((ufs_daddr_t *)(sp->segsum))[ndx] = daddr;
    735 	}
    736 
    737 	/* Update the inode times and copy the inode onto the inode page. */
    738 	if (ip->i_flag & (IN_CLEANING | IN_MODIFIED | IN_ACCESSED))
    739 		--fs->lfs_uinodes;
    740 	TIMEVAL_TO_TIMESPEC(&time, &ts);
    741 	LFS_ITIMES(ip, &ts, &ts, &ts);
    742 
    743 	/*
    744 	 * If this is the Ifile, and we've already written the Ifile in this
    745 	 * partial segment, just overwrite it (it's not on disk yet) and
    746 	 * continue.
    747 	 *
    748 	 * XXX we know that the bp that we get the second time around has
    749 	 * already been gathered.
    750 	 */
    751 	if(ip->i_number == LFS_IFILE_INUM && sp->idp) {
    752 		*(sp->idp) = ip->i_din.ffs_din;
    753 		return 0;
    754 	}
    755 
    756 	bp = sp->ibp;
    757 	cdp = ((struct dinode *)bp->b_data) + (sp->ninodes % INOPB(fs));
    758 	*cdp = ip->i_din.ffs_din;
    759 
    760 	/*
    761 	 * If we are cleaning, ensure that we don't write UNWRITTEN disk
    762 	 * addresses to disk.
    763 	 */
    764 	if (ip->i_lfs_effnblks != ip->i_ffs_blocks) {
    765 #ifdef DEBUG_LFS
    766 		printf("lfs_writeinode: cleansing ino %d (%d != %d)\n",
    767 		       ip->i_number, ip->i_lfs_effnblks, ip->i_ffs_blocks);
    768 #endif
    769 		for (daddrp = cdp->di_db; daddrp < cdp->di_ib + NIADDR;
    770 		     daddrp++) {
    771 			if (*daddrp == UNWRITTEN) {
    772 #ifdef DEBUG_LFS
    773 				printf("lfs_writeinode: wiping UNWRITTEN\n");
    774 #endif
    775 				*daddrp = 0;
    776 			}
    777 		}
    778 	}
    779 
    780 	/* XXX IN_ALLMOD */
    781 	if(ip->i_flag & IN_CLEANING)
    782 		ip->i_flag &= ~IN_CLEANING;
    783 	else {
    784 		ip->i_flag &= ~(IN_ACCESS | IN_CHANGE | IN_UPDATE |
    785 				IN_ACCESSED);
    786 		if (ip->i_lfs_effnblks == ip->i_ffs_blocks) {
    787 			ip->i_flag &= ~IN_MODIFIED;
    788 		} else if (ip->i_flag & IN_MODIFIED)
    789 			fs->lfs_uinodes++;
    790 	}
    791 
    792 	if(ip->i_number == LFS_IFILE_INUM) /* We know sp->idp == NULL */
    793 		sp->idp = ((struct dinode *)bp->b_data) +
    794 			(sp->ninodes % INOPB(fs));
    795 	if(gotblk) {
    796 		bp->b_flags |= B_LOCKED;
    797 		brelse(bp);
    798 	}
    799 
    800 	/* Increment inode count in segment summary block. */
    801 	++((SEGSUM *)(sp->segsum))->ss_ninos;
    802 
    803 	/* If this page is full, set flag to allocate a new page. */
    804 	if (++sp->ninodes % INOPB(fs) == 0)
    805 		sp->ibp = NULL;
    806 
    807 	/*
    808 	 * If updating the ifile, update the super-block.  Update the disk
    809 	 * address and access times for this inode in the ifile.
    810 	 */
    811 	ino = ip->i_number;
    812 	if (ino == LFS_IFILE_INUM) {
    813 		daddr = fs->lfs_idaddr;
    814 		fs->lfs_idaddr = bp->b_blkno;
    815 	} else {
    816 		LFS_IENTRY(ifp, fs, ino, ibp);
    817 		daddr = ifp->if_daddr;
    818 		ifp->if_daddr = bp->b_blkno;
    819 #ifdef LFS_DEBUG_NEXTFREE
    820 		if(ino > 3 && ifp->if_nextfree) {
    821 			vprint("lfs_writeinode",ITOV(ip));
    822 			printf("lfs_writeinode: updating free ino %d\n",
    823 				ip->i_number);
    824 		}
    825 #endif
    826 		error = VOP_BWRITE(ibp);
    827 	}
    828 
    829 	/*
    830 	 * No need to update segment usage if there was no former inode
    831 	 * address or if the last inode address is in the current
    832 	 * partial segment.
    833 	 */
    834 	if (daddr >= fs->lfs_lastpseg && daddr <= bp->b_blkno)
    835 		printf("lfs_writeinode: last inode addr in current pseg "
    836 		       "(ino %d daddr 0x%x)\n", ino, daddr);
    837 	if (daddr != LFS_UNUSED_DADDR) {
    838 		LFS_SEGENTRY(sup, fs, datosn(fs, daddr), bp);
    839 #ifdef DIAGNOSTIC
    840 		if (sup->su_nbytes < DINODE_SIZE) {
    841 			printf("lfs_writeinode: negative bytes "
    842 			       "(segment %d short by %d)\n",
    843 			       datosn(fs, daddr),
    844 			       (int)DINODE_SIZE - sup->su_nbytes);
    845 			panic("lfs_writeinode: negative bytes");
    846 			sup->su_nbytes = DINODE_SIZE;
    847 		}
    848 #endif
    849 		sup->su_nbytes -= DINODE_SIZE;
    850 		redo_ifile =
    851 			(ino == LFS_IFILE_INUM && !(bp->b_flags & B_GATHERED));
    852 		error = VOP_BWRITE(bp);
    853 	}
    854 	return (redo_ifile);
    855 }
    856 
    857 int
    858 lfs_gatherblock(sp, bp, sptr)
    859 	struct segment *sp;
    860 	struct buf *bp;
    861 	int *sptr;
    862 {
    863 	struct lfs *fs;
    864 	int version;
    865 
    866 	/*
    867 	 * If full, finish this segment.  We may be doing I/O, so
    868 	 * release and reacquire the splbio().
    869 	 */
    870 #ifdef DIAGNOSTIC
    871 	if (sp->vp == NULL)
    872 		panic ("lfs_gatherblock: Null vp in segment");
    873 #endif
    874 	fs = sp->fs;
    875 	if (sp->sum_bytes_left < sizeof(ufs_daddr_t) ||
    876 	    sp->seg_bytes_left < bp->b_bcount) {
    877 		if (sptr)
    878 			splx(*sptr);
    879 		lfs_updatemeta(sp);
    880 
    881 		version = sp->fip->fi_version;
    882 		(void) lfs_writeseg(fs, sp);
    883 
    884 		sp->fip->fi_version = version;
    885 		sp->fip->fi_ino = VTOI(sp->vp)->i_number;
    886 		/* Add the current file to the segment summary. */
    887 		++((SEGSUM *)(sp->segsum))->ss_nfinfo;
    888 		sp->sum_bytes_left -=
    889 			sizeof(struct finfo) - sizeof(ufs_daddr_t);
    890 
    891 		if (sptr)
    892 			*sptr = splbio();
    893 		return(1);
    894 	}
    895 
    896 #ifdef DEBUG
    897 	if(bp->b_flags & B_GATHERED) {
    898 		printf("lfs_gatherblock: already gathered! Ino %d, lbn %d\n",
    899 		       sp->fip->fi_ino, bp->b_lblkno);
    900 		return(0);
    901 	}
    902 #endif
    903 	/* Insert into the buffer list, update the FINFO block. */
    904 	bp->b_flags |= B_GATHERED;
    905 	*sp->cbpp++ = bp;
    906 	sp->fip->fi_blocks[sp->fip->fi_nblocks++] = bp->b_lblkno;
    907 
    908 	sp->sum_bytes_left -= sizeof(ufs_daddr_t);
    909 	sp->seg_bytes_left -= bp->b_bcount;
    910 	return(0);
    911 }
    912 
    913 int
    914 lfs_gather(fs, sp, vp, match)
    915 	struct lfs *fs;
    916 	struct segment *sp;
    917 	struct vnode *vp;
    918 	int (*match) __P((struct lfs *, struct buf *));
    919 {
    920 	struct buf *bp;
    921 	int s, count=0;
    922 
    923 	sp->vp = vp;
    924 	s = splbio();
    925 
    926 #ifndef LFS_NO_BACKBUF_HACK
    927 loop:	for (bp = vp->v_dirtyblkhd.lh_first; bp; bp = bp->b_vnbufs.le_next) {
    928 #else /* LFS_NO_BACKBUF_HACK */
    929 /* This is a hack to see if ordering the blocks in LFS makes a difference. */
    930 # define	BUF_OFFSET	(((void *)&bp->b_vnbufs.le_next) - (void *)bp)
    931 # define	BACK_BUF(BP)	((struct buf *)(((void *)BP->b_vnbufs.le_prev) - BUF_OFFSET))
    932 # define	BEG_OF_LIST	((struct buf *)(((void *)&vp->v_dirtyblkhd.lh_first) - BUF_OFFSET))
    933 /* Find last buffer. */
    934 loop:	for (bp = vp->v_dirtyblkhd.lh_first; bp && bp->b_vnbufs.le_next != NULL;
    935 	    bp = bp->b_vnbufs.le_next);
    936 	for (; bp && bp != BEG_OF_LIST; bp = BACK_BUF(bp)) {
    937 #endif /* LFS_NO_BACKBUF_HACK */
    938 		if ((bp->b_flags & (B_BUSY|B_GATHERED)) || !match(fs, bp))
    939 			continue;
    940 		if(vp->v_type == VBLK) {
    941 			/* For block devices, just write the blocks. */
    942 			/* XXX Do we really need to even do this? */
    943 #ifdef DEBUG_LFS
    944 			if(count==0)
    945 				printf("BLK(");
    946 			printf(".");
    947 #endif
    948 			/* Get the block before bwrite, so we don't corrupt the free list */
    949 			bp->b_flags |= B_BUSY;
    950 			bremfree(bp);
    951 			bwrite(bp);
    952 		} else {
    953 #ifdef DIAGNOSTIC
    954 			if ((bp->b_flags & (B_CALL|B_INVAL))==B_INVAL) {
    955 				printf("lfs_gather: lbn %d is B_INVAL\n",
    956 					bp->b_lblkno);
    957 				VOP_PRINT(bp->b_vp);
    958 			}
    959 			if (!(bp->b_flags & B_DELWRI))
    960 				panic("lfs_gather: bp not B_DELWRI");
    961 			if (!(bp->b_flags & B_LOCKED)) {
    962 				printf("lfs_gather: lbn %d blk %d not B_LOCKED\n", bp->b_lblkno, bp->b_blkno);
    963 				VOP_PRINT(bp->b_vp);
    964 				panic("lfs_gather: bp not B_LOCKED");
    965 			}
    966 #endif
    967 			if (lfs_gatherblock(sp, bp, &s)) {
    968 				goto loop;
    969 			}
    970 		}
    971 		count++;
    972 	}
    973 	splx(s);
    974 #ifdef DEBUG_LFS
    975 	if(vp->v_type == VBLK && count)
    976 		printf(")\n");
    977 #endif
    978 	lfs_updatemeta(sp);
    979 	sp->vp = NULL;
    980 	return count;
    981 }
    982 
    983 /*
    984  * Update the metadata that points to the blocks listed in the FINFO
    985  * array.
    986  */
    987 void
    988 lfs_updatemeta(sp)
    989 	struct segment *sp;
    990 {
    991 	SEGUSE *sup;
    992 	struct buf *bp;
    993 	struct lfs *fs;
    994 	struct vnode *vp;
    995 	struct indir a[NIADDR + 2], *ap;
    996 	struct inode *ip;
    997 	ufs_daddr_t daddr, lbn, off;
    998 	daddr_t ooff;
    999 	int error, i, nblocks, num;
   1000 	int bb;
   1001 
   1002 	vp = sp->vp;
   1003 	nblocks = &sp->fip->fi_blocks[sp->fip->fi_nblocks] - sp->start_lbp;
   1004 	if (nblocks < 0)
   1005 		panic("This is a bad thing\n");
   1006 	if (vp == NULL || nblocks == 0)
   1007 		return;
   1008 
   1009 	/* Sort the blocks. */
   1010 	/*
   1011 	 * XXX KS - We have to sort even if the blocks come from the
   1012 	 * cleaner, because there might be other pending blocks on the
   1013 	 * same inode...and if we don't sort, and there are fragments
   1014 	 * present, blocks may be written in the wrong place.
   1015 	 */
   1016 	/* if (!(sp->seg_flags & SEGM_CLEAN)) */
   1017 	lfs_shellsort(sp->start_bpp, sp->start_lbp, nblocks);
   1018 
   1019 	/*
   1020 	 * Record the length of the last block in case it's a fragment.
   1021 	 * If there are indirect blocks present, they sort last.  An
   1022 	 * indirect block will be lfs_bsize and its presence indicates
   1023 	 * that you cannot have fragments.
   1024 	 */
   1025 	sp->fip->fi_lastlength = sp->start_bpp[nblocks - 1]->b_bcount;
   1026 
   1027 	/*
   1028 	 * Assign disk addresses, and update references to the logical
   1029 	 * block and the segment usage information.
   1030 	 */
   1031 	fs = sp->fs;
   1032 	for (i = nblocks; i--; ++sp->start_bpp) {
   1033 		lbn = *sp->start_lbp++;
   1034 
   1035 		(*sp->start_bpp)->b_blkno = off = fs->lfs_offset;
   1036 		if((*sp->start_bpp)->b_blkno == (*sp->start_bpp)->b_lblkno) {
   1037 			printf("lfs_updatemeta: ino %d blk %d has same lbn and daddr\n", VTOI(vp)->i_number, off);
   1038 		}
   1039 		bb = fragstodb(fs, numfrags(fs, (*sp->start_bpp)->b_bcount));
   1040 		fs->lfs_offset += bb;
   1041 		error = ufs_bmaparray(vp, lbn, &daddr, a, &num, NULL);
   1042 		if (error)
   1043 			panic("lfs_updatemeta: ufs_bmaparray %d", error);
   1044 		ip = VTOI(vp);
   1045 		switch (num) {
   1046 		case 0:
   1047 			ooff = ip->i_ffs_db[lbn];
   1048 #ifdef DEBUG
   1049 			if (ooff == 0) {
   1050 				printf("lfs_updatemeta[1]: warning: writing "
   1051 				       "ino %d lbn %d at 0x%x, was 0x0\n",
   1052 				       ip->i_number, lbn, off);
   1053 			}
   1054 #endif
   1055 			if (ooff == UNWRITTEN)
   1056 				ip->i_ffs_blocks += bb;
   1057 			ip->i_ffs_db[lbn] = off;
   1058 			break;
   1059 		case 1:
   1060 			ooff = ip->i_ffs_ib[a[0].in_off];
   1061 #ifdef DEBUG
   1062 			if (ooff == 0) {
   1063 				printf("lfs_updatemeta[2]: warning: writing "
   1064 				       "ino %d lbn %d at 0x%x, was 0x0\n",
   1065 				       ip->i_number, lbn, off);
   1066 			}
   1067 #endif
   1068 			if (ooff == UNWRITTEN)
   1069 				ip->i_ffs_blocks += bb;
   1070 			ip->i_ffs_ib[a[0].in_off] = off;
   1071 			break;
   1072 		default:
   1073 			ap = &a[num - 1];
   1074 			if (bread(vp, ap->in_lbn, fs->lfs_bsize, NOCRED, &bp))
   1075 				panic("lfs_updatemeta: bread bno %d",
   1076 				      ap->in_lbn);
   1077 
   1078 			ooff = ((ufs_daddr_t *)bp->b_data)[ap->in_off];
   1079 #if DEBUG
   1080 			if (ooff == 0) {
   1081 				printf("lfs_updatemeta[3]: warning: writing "
   1082 				       "ino %d lbn %d at 0x%x, was 0x0\n",
   1083 				       ip->i_number, lbn, off);
   1084 			}
   1085 #endif
   1086 			if (ooff == UNWRITTEN)
   1087 				ip->i_ffs_blocks += bb;
   1088 			((ufs_daddr_t *)bp->b_data)[ap->in_off] = off;
   1089 			VOP_BWRITE(bp);
   1090 		}
   1091 #ifdef DEBUG
   1092 		if (daddr >= fs->lfs_lastpseg && daddr <= off) {
   1093 			printf("lfs_updatemeta: ino %d, lbn %d, addr = %x "
   1094 			       "in same pseg\n", VTOI(sp->vp)->i_number,
   1095 			       (*sp->start_bpp)->b_lblkno, daddr);
   1096 		}
   1097 #endif
   1098 		/* Update segment usage information. */
   1099 		if (daddr > 0) {
   1100 			LFS_SEGENTRY(sup, fs, datosn(fs, daddr), bp);
   1101 #ifdef DIAGNOSTIC
   1102 			if (sup->su_nbytes < (*sp->start_bpp)->b_bcount) {
   1103 				/* XXX -- Change to a panic. */
   1104 				printf("lfs_updatemeta: negative bytes "
   1105 				       "(segment %d short by %ld)\n",
   1106 				       datosn(fs, daddr),
   1107 				       (*sp->start_bpp)->b_bcount -
   1108 				       sup->su_nbytes);
   1109 				printf("lfs_updatemeta: ino %d, lbn %d, "
   1110 				       "addr = %x\n", VTOI(sp->vp)->i_number,
   1111 				       (*sp->start_bpp)->b_lblkno, daddr);
   1112 				panic("lfs_updatemeta: negative bytes");
   1113 				sup->su_nbytes = (*sp->start_bpp)->b_bcount;
   1114 			}
   1115 #endif
   1116 			sup->su_nbytes -= (*sp->start_bpp)->b_bcount;
   1117 			error = VOP_BWRITE(bp);
   1118 		}
   1119 	}
   1120 }
   1121 
   1122 /*
   1123  * Start a new segment.
   1124  */
   1125 int
   1126 lfs_initseg(fs)
   1127 	struct lfs *fs;
   1128 {
   1129 	struct segment *sp;
   1130 	SEGUSE *sup;
   1131 	SEGSUM *ssp;
   1132 	struct buf *bp;
   1133 	int repeat;
   1134 
   1135 	sp = fs->lfs_sp;
   1136 
   1137 	repeat = 0;
   1138 	/* Advance to the next segment. */
   1139 	if (!LFS_PARTIAL_FITS(fs)) {
   1140 		/* lfs_avail eats the remaining space */
   1141 		fs->lfs_avail -= fs->lfs_dbpseg - (fs->lfs_offset -
   1142 						   fs->lfs_curseg);
   1143 		/* Wake up any cleaning procs waiting on this file system. */
   1144 		wakeup(&lfs_allclean_wakeup);
   1145 		wakeup(&fs->lfs_nextseg);
   1146 		lfs_newseg(fs);
   1147 		repeat = 1;
   1148 		fs->lfs_offset = fs->lfs_curseg;
   1149 		sp->seg_number = datosn(fs, fs->lfs_curseg);
   1150 		sp->seg_bytes_left = fs->lfs_dbpseg * DEV_BSIZE;
   1151 		/*
   1152 		 * If the segment contains a superblock, update the offset
   1153 		 * and summary address to skip over it.
   1154 		 */
   1155 		LFS_SEGENTRY(sup, fs, sp->seg_number, bp);
   1156 		if (sup->su_flags & SEGUSE_SUPERBLOCK) {
   1157 			fs->lfs_offset += LFS_SBPAD / DEV_BSIZE;
   1158 			sp->seg_bytes_left -= LFS_SBPAD;
   1159 		}
   1160 		brelse(bp);
   1161 	} else {
   1162 		sp->seg_number = datosn(fs, fs->lfs_curseg);
   1163 		sp->seg_bytes_left = (fs->lfs_dbpseg -
   1164 				      (fs->lfs_offset - fs->lfs_curseg)) * DEV_BSIZE;
   1165 	}
   1166 	fs->lfs_lastpseg = fs->lfs_offset;
   1167 
   1168 	sp->fs = fs;
   1169 	sp->ibp = NULL;
   1170 	sp->idp = NULL;
   1171 	sp->ninodes = 0;
   1172 
   1173 	/* Get a new buffer for SEGSUM and enter it into the buffer list. */
   1174 	sp->cbpp = sp->bpp;
   1175 	*sp->cbpp = lfs_newbuf(VTOI(fs->lfs_ivnode)->i_devvp,
   1176 			       fs->lfs_offset, LFS_SUMMARY_SIZE);
   1177 	sp->segsum = (*sp->cbpp)->b_data;
   1178 	bzero(sp->segsum, LFS_SUMMARY_SIZE);
   1179 	sp->start_bpp = ++sp->cbpp;
   1180 	fs->lfs_offset += LFS_SUMMARY_SIZE / DEV_BSIZE;
   1181 
   1182 	/* Set point to SEGSUM, initialize it. */
   1183 	ssp = sp->segsum;
   1184 	ssp->ss_next = fs->lfs_nextseg;
   1185 	ssp->ss_nfinfo = ssp->ss_ninos = 0;
   1186 	ssp->ss_magic = SS_MAGIC;
   1187 
   1188 	/* Set pointer to first FINFO, initialize it. */
   1189 	sp->fip = (struct finfo *)((caddr_t)sp->segsum + sizeof(SEGSUM));
   1190 	sp->fip->fi_nblocks = 0;
   1191 	sp->start_lbp = &sp->fip->fi_blocks[0];
   1192 	sp->fip->fi_lastlength = 0;
   1193 
   1194 	sp->seg_bytes_left -= LFS_SUMMARY_SIZE;
   1195 	sp->sum_bytes_left = LFS_SUMMARY_SIZE - sizeof(SEGSUM);
   1196 
   1197 	return(repeat);
   1198 }
   1199 
   1200 /*
   1201  * Return the next segment to write.
   1202  */
   1203 void
   1204 lfs_newseg(fs)
   1205 	struct lfs *fs;
   1206 {
   1207 	CLEANERINFO *cip;
   1208 	SEGUSE *sup;
   1209 	struct buf *bp;
   1210 	int curseg, isdirty, sn;
   1211 
   1212 	LFS_SEGENTRY(sup, fs, datosn(fs, fs->lfs_nextseg), bp);
   1213 	sup->su_flags |= SEGUSE_DIRTY | SEGUSE_ACTIVE;
   1214 	sup->su_nbytes = 0;
   1215 	sup->su_nsums = 0;
   1216 	sup->su_ninos = 0;
   1217 	(void) VOP_BWRITE(bp);
   1218 
   1219 	LFS_CLEANERINFO(cip, fs, bp);
   1220 	--cip->clean;
   1221 	++cip->dirty;
   1222 	fs->lfs_nclean = cip->clean;
   1223 	(void) VOP_BWRITE(bp);
   1224 
   1225 	fs->lfs_lastseg = fs->lfs_curseg;
   1226 	fs->lfs_curseg = fs->lfs_nextseg;
   1227 	for (sn = curseg = datosn(fs, fs->lfs_curseg);;) {
   1228 		sn = (sn + 1) % fs->lfs_nseg;
   1229 		if (sn == curseg)
   1230 			panic("lfs_nextseg: no clean segments");
   1231 		LFS_SEGENTRY(sup, fs, sn, bp);
   1232 		isdirty = sup->su_flags & SEGUSE_DIRTY;
   1233 		brelse(bp);
   1234 		if (!isdirty)
   1235 			break;
   1236 	}
   1237 
   1238 	++fs->lfs_nactive;
   1239 	fs->lfs_nextseg = sntoda(fs, sn);
   1240 	if(lfs_dostats) {
   1241 		++lfs_stats.segsused;
   1242 	}
   1243 }
   1244 
   1245 int
   1246 lfs_writeseg(fs, sp)
   1247 	struct lfs *fs;
   1248 	struct segment *sp;
   1249 {
   1250 	extern int locked_queue_count;
   1251 	extern long locked_queue_bytes;
   1252 	struct buf **bpp, *bp, *cbp, *newbp;
   1253 	SEGUSE *sup;
   1254 	SEGSUM *ssp;
   1255 	dev_t i_dev;
   1256 	u_long *datap, *dp;
   1257 	int do_again, i, nblocks, s;
   1258 #ifdef LFS_TRACK_IOS
   1259 	int j;
   1260 #endif
   1261 	int (*strategy)__P((void *));
   1262 	struct vop_strategy_args vop_strategy_a;
   1263 	u_short ninos;
   1264 	struct vnode *devvp;
   1265 	char *p;
   1266 	struct vnode *vn;
   1267 	struct inode *ip;
   1268 	daddr_t *daddrp;
   1269 	int changed;
   1270 #if defined(DEBUG) && defined(LFS_PROPELLER)
   1271 	static int propeller;
   1272 	char propstring[4] = "-\\|/";
   1273 
   1274 	printf("%c\b",propstring[propeller++]);
   1275 	if(propeller==4)
   1276 		propeller = 0;
   1277 #endif
   1278 
   1279 	/*
   1280 	 * If there are no buffers other than the segment summary to write
   1281 	 * and it is not a checkpoint, don't do anything.  On a checkpoint,
   1282 	 * even if there aren't any buffers, you need to write the superblock.
   1283 	 */
   1284 	if ((nblocks = sp->cbpp - sp->bpp) == 1)
   1285 		return (0);
   1286 
   1287 	i_dev = VTOI(fs->lfs_ivnode)->i_dev;
   1288 	devvp = VTOI(fs->lfs_ivnode)->i_devvp;
   1289 
   1290 	/* Update the segment usage information. */
   1291 	LFS_SEGENTRY(sup, fs, sp->seg_number, bp);
   1292 
   1293 	/* Loop through all blocks, except the segment summary. */
   1294 	for (bpp = sp->bpp; ++bpp < sp->cbpp; ) {
   1295 		if((*bpp)->b_vp != devvp)
   1296 			sup->su_nbytes += (*bpp)->b_bcount;
   1297 	}
   1298 
   1299 	ssp = (SEGSUM *)sp->segsum;
   1300 
   1301 	ninos = (ssp->ss_ninos + INOPB(fs) - 1) / INOPB(fs);
   1302 	sup->su_nbytes += ssp->ss_ninos * DINODE_SIZE;
   1303 	/* sup->su_nbytes += LFS_SUMMARY_SIZE; */
   1304 	sup->su_lastmod = time.tv_sec;
   1305 	sup->su_ninos += ninos;
   1306 	++sup->su_nsums;
   1307 	fs->lfs_dmeta += (btodb(LFS_SUMMARY_SIZE) + fsbtodb(fs, ninos));
   1308 	fs->lfs_avail -= btodb(LFS_SUMMARY_SIZE);
   1309 
   1310 	do_again = !(bp->b_flags & B_GATHERED);
   1311 	(void)VOP_BWRITE(bp);
   1312 	/*
   1313 	 * Mark blocks B_BUSY, to prevent then from being changed between
   1314 	 * the checksum computation and the actual write.
   1315 	 *
   1316 	 * If we are cleaning, check indirect blocks for UNWRITTEN, and if
   1317 	 * there are any, replace them with copies that have UNASSIGNED
   1318 	 * instead.
   1319 	 */
   1320 	for (bpp = sp->bpp, i = nblocks - 1; i--;) {
   1321 		++bpp;
   1322 		if((*bpp)->b_flags & B_CALL)
   1323 			continue;
   1324 		bp = *bpp;
   1325 	    again:
   1326 		s = splbio();
   1327 		if(bp->b_flags & B_BUSY) {
   1328 #ifdef DEBUG
   1329 			printf("lfs_writeseg: avoiding potential data "
   1330 			       "summary corruption for ino %d, lbn %d\n",
   1331 			       VTOI(bp->b_vp)->i_number, bp->b_lblkno);
   1332 #endif
   1333 			bp->b_flags |= B_WANTED;
   1334 			tsleep(bp, (PRIBIO + 1), "lfs_writeseg", 0);
   1335 			splx(s);
   1336 			goto again;
   1337 		}
   1338 		bp->b_flags |= B_BUSY;
   1339 		splx(s);
   1340 		/* Check and replace indirect block UNWRITTEN bogosity */
   1341 		if(bp->b_lblkno < 0 && bp->b_vp != devvp && bp->b_vp &&
   1342 		   VTOI(bp->b_vp)->i_ffs_blocks !=
   1343 		   VTOI(bp->b_vp)->i_lfs_effnblks) {
   1344 #ifdef DEBUG_LFS
   1345 			printf("lfs_writeseg: cleansing ino %d (%d != %d)\n",
   1346 			       VTOI(bp->b_vp)->i_number,
   1347 			       VTOI(bp->b_vp)->i_lfs_effnblks,
   1348 			       VTOI(bp->b_vp)->i_ffs_blocks);
   1349 #endif
   1350 			/* Make a copy we'll make changes to */
   1351 			newbp = lfs_newbuf(bp->b_vp, bp->b_lblkno,
   1352 					   bp->b_bcount);
   1353 			newbp->b_blkno = bp->b_blkno;
   1354 			memcpy(newbp->b_data, bp->b_data,
   1355 			       newbp->b_bcount);
   1356 			*bpp = newbp;
   1357 
   1358 			changed = 0;
   1359 			for (daddrp = (daddr_t *)(newbp->b_data);
   1360 			     daddrp < (daddr_t *)(newbp->b_data +
   1361 						  newbp->b_bcount); daddrp++) {
   1362 				if (*daddrp == UNWRITTEN) {
   1363 					++changed;
   1364 #ifdef DEBUG_LFS
   1365 					printf("lfs_writeseg: replacing UNWRITTEN\n");
   1366 #endif
   1367 					*daddrp = 0;
   1368 				}
   1369 			}
   1370 			/*
   1371 			 * Get rid of the old buffer.  Don't mark it clean,
   1372 			 * though, if it still has dirty data on it.
   1373 			 */
   1374 			if (changed) {
   1375 				bp->b_flags &= ~(B_ERROR | B_GATHERED);
   1376 				if (bp->b_flags & B_CALL)
   1377 					lfs_freebuf(bp);
   1378 				else
   1379 					brelse(bp);
   1380 			} else {
   1381 				bp->b_flags &= ~(B_ERROR | B_READ | B_DELWRI |
   1382 						 B_LOCKED | B_GATHERED);
   1383 				if (bp->b_flags & B_CALL)
   1384 					lfs_freebuf(bp);
   1385 				else {
   1386 					bremfree(bp);
   1387 					bp->b_flags |= B_DONE;
   1388 					reassignbuf(bp, bp->b_vp);
   1389 					brelse(bp);
   1390 				}
   1391 			}
   1392 
   1393 		}
   1394 	}
   1395 	/*
   1396 	 * Compute checksum across data and then across summary; the first
   1397 	 * block (the summary block) is skipped.  Set the create time here
   1398 	 * so that it's guaranteed to be later than the inode mod times.
   1399 	 *
   1400 	 * XXX
   1401 	 * Fix this to do it inline, instead of malloc/copy.
   1402 	 */
   1403 	datap = dp = malloc(nblocks * sizeof(u_long), M_SEGMENT, M_WAITOK);
   1404 	for (bpp = sp->bpp, i = nblocks - 1; i--;) {
   1405 		if (((*++bpp)->b_flags & (B_CALL|B_INVAL)) == (B_CALL|B_INVAL)) {
   1406 			if (copyin((*bpp)->b_saveaddr, dp++, sizeof(u_long)))
   1407 				panic("lfs_writeseg: copyin failed [1]: "
   1408 				      "ino %d blk %d",
   1409 				      VTOI((*bpp)->b_vp)->i_number,
   1410 				      (*bpp)->b_lblkno);
   1411 		} else
   1412 			*dp++ = ((u_long *)(*bpp)->b_data)[0];
   1413 	}
   1414 	ssp->ss_create = time.tv_sec;
   1415 	ssp->ss_datasum = cksum(datap, (nblocks - 1) * sizeof(u_long));
   1416 	ssp->ss_sumsum =
   1417 	    cksum(&ssp->ss_datasum, LFS_SUMMARY_SIZE - sizeof(ssp->ss_sumsum));
   1418 	free(datap, M_SEGMENT);
   1419 
   1420 	fs->lfs_bfree -= (fsbtodb(fs, ninos) + LFS_SUMMARY_SIZE / DEV_BSIZE);
   1421 
   1422 	strategy = devvp->v_op[VOFFSET(vop_strategy)];
   1423 
   1424 	/*
   1425 	 * When we simply write the blocks we lose a rotation for every block
   1426 	 * written.  To avoid this problem, we allocate memory in chunks, copy
   1427 	 * the buffers into the chunk and write the chunk.  CHUNKSIZE is the
   1428 	 * largest size I/O devices can handle.
   1429 	 * When the data is copied to the chunk, turn off the B_LOCKED bit
   1430 	 * and brelse the buffer (which will move them to the LRU list).  Add
   1431 	 * the B_CALL flag to the buffer header so we can count I/O's for the
   1432 	 * checkpoints and so we can release the allocated memory.
   1433 	 *
   1434 	 * XXX
   1435 	 * This should be removed if the new virtual memory system allows us to
   1436 	 * easily make the buffers contiguous in kernel memory and if that's
   1437 	 * fast enough.
   1438 	 */
   1439 
   1440 #define CHUNKSIZE MAXPHYS
   1441 
   1442 	if(devvp==NULL)
   1443 		panic("devvp is NULL");
   1444 	for (bpp = sp->bpp,i = nblocks; i;) {
   1445 		cbp = lfs_newbuf(devvp, (*bpp)->b_blkno, CHUNKSIZE);
   1446 		cbp->b_dev = i_dev;
   1447 		cbp->b_flags |= B_ASYNC | B_BUSY;
   1448 		cbp->b_bcount = 0;
   1449 
   1450 #ifdef DIAGNOSTIC
   1451 		if(datosn(fs,(*bpp)->b_blkno + ((*bpp)->b_bcount - 1)/DEV_BSIZE) != datosn(fs,cbp->b_blkno)) {
   1452 			panic("lfs_writeseg: Segment overwrite");
   1453 		}
   1454 #endif
   1455 
   1456 		s = splbio();
   1457 		if(fs->lfs_iocount >= LFS_THROTTLE) {
   1458 			tsleep(&fs->lfs_iocount, PRIBIO+1, "lfs throttle", 0);
   1459 		}
   1460 		++fs->lfs_iocount;
   1461 #ifdef LFS_TRACK_IOS
   1462 		for(j=0;j<LFS_THROTTLE;j++) {
   1463 			if(fs->lfs_pending[j]==LFS_UNUSED_DADDR) {
   1464 				fs->lfs_pending[j] = cbp->b_blkno;
   1465 				break;
   1466 			}
   1467 		}
   1468 #endif /* LFS_TRACK_IOS */
   1469 		for (p = cbp->b_data; i && cbp->b_bcount < CHUNKSIZE; i--) {
   1470 			bp = *bpp;
   1471 
   1472 			if (bp->b_bcount > (CHUNKSIZE - cbp->b_bcount))
   1473 				break;
   1474 
   1475 			/*
   1476 			 * Fake buffers from the cleaner are marked as B_INVAL.
   1477 			 * We need to copy the data from user space rather than
   1478 			 * from the buffer indicated.
   1479 			 * XXX == what do I do on an error?
   1480 			 */
   1481 			if ((bp->b_flags & (B_CALL|B_INVAL)) == (B_CALL|B_INVAL)) {
   1482 				if (copyin(bp->b_saveaddr, p, bp->b_bcount))
   1483 					panic("lfs_writeseg: copyin failed [2]");
   1484 			} else
   1485 				bcopy(bp->b_data, p, bp->b_bcount);
   1486 			p += bp->b_bcount;
   1487 			cbp->b_bcount += bp->b_bcount;
   1488 			if (bp->b_flags & B_LOCKED) {
   1489 				--locked_queue_count;
   1490 				locked_queue_bytes -= bp->b_bufsize;
   1491 			}
   1492 			bp->b_flags &= ~(B_ERROR | B_READ | B_DELWRI |
   1493 					 B_LOCKED | B_GATHERED);
   1494 			vn = bp->b_vp;
   1495 			if (bp->b_flags & B_CALL) {
   1496 				/* if B_CALL, it was created with newbuf */
   1497 				lfs_freebuf(bp);
   1498 			} else {
   1499 				bremfree(bp);
   1500 				bp->b_flags |= B_DONE;
   1501 				if(vn)
   1502 					reassignbuf(bp, vn);
   1503 				brelse(bp);
   1504 			}
   1505 			if(bp->b_flags & B_NEEDCOMMIT) { /* XXX */
   1506 				bp->b_flags &= ~B_NEEDCOMMIT;
   1507 				wakeup(bp);
   1508 			}
   1509 
   1510 			bpp++;
   1511 
   1512 			/*
   1513 			 * If this is the last block for this vnode, but
   1514 			 * there are other blocks on its dirty list,
   1515 			 * set IN_MODIFIED/IN_CLEANING depending on what
   1516 			 * sort of block.  Only do this for our mount point,
   1517 			 * not for, e.g., inode blocks that are attached to
   1518 			 * the devvp.
   1519 			 */
   1520 			if(i>1 && vn && *bpp && (*bpp)->b_vp != vn
   1521 			   && (*bpp)->b_vp && (bp=vn->v_dirtyblkhd.lh_first)!=NULL &&
   1522 			   vn->v_mount == fs->lfs_ivnode->v_mount)
   1523 			{
   1524 				ip = VTOI(vn);
   1525 #ifdef DEBUG_LFS
   1526 				printf("lfs_writeseg: marking ino %d\n",ip->i_number);
   1527 #endif
   1528 		       		if(!(ip->i_flag & (IN_CLEANING | IN_MODIFIED |
   1529 				                   IN_ACCESSED))) {
   1530 					fs->lfs_uinodes++;
   1531 					if(bp->b_flags & B_CALL)
   1532 						ip->i_flag |= IN_CLEANING;
   1533 					else
   1534 						ip->i_flag |= IN_MODIFIED;
   1535 				}
   1536 			}
   1537 			/* if(vn->v_dirtyblkhd.lh_first == NULL) */
   1538 				wakeup(vn);
   1539 		}
   1540 		++cbp->b_vp->v_numoutput;
   1541 		splx(s);
   1542 		/*
   1543 		 * XXXX This is a gross and disgusting hack.  Since these
   1544 		 * buffers are physically addressed, they hang off the
   1545 		 * device vnode (devvp).  As a result, they have no way
   1546 		 * of getting to the LFS superblock or lfs structure to
   1547 		 * keep track of the number of I/O's pending.  So, I am
   1548 		 * going to stuff the fs into the saveaddr field of
   1549 		 * the buffer (yuk).
   1550 		 */
   1551 		cbp->b_saveaddr = (caddr_t)fs;
   1552 		vop_strategy_a.a_desc = VDESC(vop_strategy);
   1553 		vop_strategy_a.a_bp = cbp;
   1554 		(strategy)(&vop_strategy_a);
   1555 	}
   1556 	/*
   1557 	 * XXX
   1558 	 * Vinvalbuf can move locked buffers off the locked queue
   1559 	 * and we have no way of knowing about this.  So, after
   1560 	 * doing a big write, we recalculate how many buffers are
   1561 	 * really still left on the locked queue.
   1562 	 */
   1563 	lfs_countlocked(&locked_queue_count,&locked_queue_bytes);
   1564 	wakeup(&locked_queue_count);
   1565 	if(lfs_dostats) {
   1566 		++lfs_stats.psegwrites;
   1567 		lfs_stats.blocktot += nblocks - 1;
   1568 		if (fs->lfs_sp->seg_flags & SEGM_SYNC)
   1569 			++lfs_stats.psyncwrites;
   1570 		if (fs->lfs_sp->seg_flags & SEGM_CLEAN) {
   1571 			++lfs_stats.pcleanwrites;
   1572 			lfs_stats.cleanblocks += nblocks - 1;
   1573 		}
   1574 	}
   1575 	return (lfs_initseg(fs) || do_again);
   1576 }
   1577 
   1578 void
   1579 lfs_writesuper(fs, daddr)
   1580 	struct lfs *fs;
   1581 	daddr_t daddr;
   1582 {
   1583 	struct buf *bp;
   1584 	dev_t i_dev;
   1585 	int (*strategy) __P((void *));
   1586 	int s;
   1587 	struct vop_strategy_args vop_strategy_a;
   1588 
   1589 #ifdef LFS_CANNOT_ROLLFW
   1590 	/*
   1591 	 * If we can write one superblock while another is in
   1592 	 * progress, we risk not having a complete checkpoint if we crash.
   1593 	 * So, block here if a superblock write is in progress.
   1594 	 */
   1595 	s = splbio();
   1596 	while(fs->lfs_sbactive) {
   1597 		tsleep(&fs->lfs_sbactive, PRIBIO+1, "lfs sb", 0);
   1598 	}
   1599 	fs->lfs_sbactive = daddr;
   1600 	splx(s);
   1601 #endif
   1602 	i_dev = VTOI(fs->lfs_ivnode)->i_dev;
   1603 	strategy = VTOI(fs->lfs_ivnode)->i_devvp->v_op[VOFFSET(vop_strategy)];
   1604 
   1605 	/* Set timestamp of this version of the superblock */
   1606 	fs->lfs_tstamp = time.tv_sec;
   1607 
   1608 	/* Checksum the superblock and copy it into a buffer. */
   1609 	fs->lfs_cksum = lfs_sb_cksum(&(fs->lfs_dlfs));
   1610 	bp = lfs_newbuf(VTOI(fs->lfs_ivnode)->i_devvp, daddr, LFS_SBPAD);
   1611 	*(struct dlfs *)bp->b_data = fs->lfs_dlfs;
   1612 
   1613 	bp->b_dev = i_dev;
   1614 	bp->b_flags |= B_BUSY | B_CALL | B_ASYNC;
   1615 	bp->b_flags &= ~(B_DONE | B_ERROR | B_READ | B_DELWRI);
   1616 	bp->b_iodone = lfs_supercallback;
   1617 	/* XXX KS - same nasty hack as above */
   1618 	bp->b_saveaddr = (caddr_t)fs;
   1619 
   1620 	vop_strategy_a.a_desc = VDESC(vop_strategy);
   1621 	vop_strategy_a.a_bp = bp;
   1622 	s = splbio();
   1623 	++bp->b_vp->v_numoutput;
   1624 	++fs->lfs_iocount;
   1625 	splx(s);
   1626 	(strategy)(&vop_strategy_a);
   1627 }
   1628 
   1629 /*
   1630  * Logical block number match routines used when traversing the dirty block
   1631  * chain.
   1632  */
   1633 int
   1634 lfs_match_fake(fs, bp)
   1635 	struct lfs *fs;
   1636 	struct buf *bp;
   1637 {
   1638 	return (bp->b_flags & B_CALL);
   1639 }
   1640 
   1641 int
   1642 lfs_match_data(fs, bp)
   1643 	struct lfs *fs;
   1644 	struct buf *bp;
   1645 {
   1646 	return (bp->b_lblkno >= 0);
   1647 }
   1648 
   1649 int
   1650 lfs_match_indir(fs, bp)
   1651 	struct lfs *fs;
   1652 	struct buf *bp;
   1653 {
   1654 	int lbn;
   1655 
   1656 	lbn = bp->b_lblkno;
   1657 	return (lbn < 0 && (-lbn - NDADDR) % NINDIR(fs) == 0);
   1658 }
   1659 
   1660 int
   1661 lfs_match_dindir(fs, bp)
   1662 	struct lfs *fs;
   1663 	struct buf *bp;
   1664 {
   1665 	int lbn;
   1666 
   1667 	lbn = bp->b_lblkno;
   1668 	return (lbn < 0 && (-lbn - NDADDR) % NINDIR(fs) == 1);
   1669 }
   1670 
   1671 int
   1672 lfs_match_tindir(fs, bp)
   1673 	struct lfs *fs;
   1674 	struct buf *bp;
   1675 {
   1676 	int lbn;
   1677 
   1678 	lbn = bp->b_lblkno;
   1679 	return (lbn < 0 && (-lbn - NDADDR) % NINDIR(fs) == 2);
   1680 }
   1681 
   1682 /*
   1683  * XXX - The only buffers that are going to hit these functions are the
   1684  * segment write blocks, or the segment summaries, or the superblocks.
   1685  *
   1686  * All of the above are created by lfs_newbuf, and so do not need to be
   1687  * released via brelse.
   1688  */
   1689 void
   1690 lfs_callback(bp)
   1691 	struct buf *bp;
   1692 {
   1693 	struct lfs *fs;
   1694 #ifdef LFS_TRACK_IOS
   1695 	int j;
   1696 #endif
   1697 
   1698 	fs = (struct lfs *)bp->b_saveaddr;
   1699 #ifdef DIAGNOSTIC
   1700 	if (fs->lfs_iocount == 0)
   1701 		panic("lfs_callback: zero iocount\n");
   1702 #endif
   1703 	if (--fs->lfs_iocount < LFS_THROTTLE)
   1704 		wakeup(&fs->lfs_iocount);
   1705 #ifdef LFS_TRACK_IOS
   1706 	for(j=0;j<LFS_THROTTLE;j++) {
   1707 		if(fs->lfs_pending[j]==bp->b_blkno) {
   1708 			fs->lfs_pending[j] = LFS_UNUSED_DADDR;
   1709 			wakeup(&(fs->lfs_pending[j]));
   1710 			break;
   1711 		}
   1712 	}
   1713 #endif /* LFS_TRACK_IOS */
   1714 
   1715 	lfs_freebuf(bp);
   1716 }
   1717 
   1718 void
   1719 lfs_supercallback(bp)
   1720 	struct buf *bp;
   1721 {
   1722 	struct lfs *fs;
   1723 
   1724 	fs = (struct lfs *)bp->b_saveaddr;
   1725 #ifdef LFS_CANNOT_ROLLFW
   1726 	fs->lfs_sbactive = 0;
   1727 	wakeup(&fs->lfs_sbactive);
   1728 #endif
   1729 	if (--fs->lfs_iocount < LFS_THROTTLE)
   1730 		wakeup(&fs->lfs_iocount);
   1731 	lfs_freebuf(bp);
   1732 }
   1733 
   1734 /*
   1735  * Shellsort (diminishing increment sort) from Data Structures and
   1736  * Algorithms, Aho, Hopcraft and Ullman, 1983 Edition, page 290;
   1737  * see also Knuth Vol. 3, page 84.  The increments are selected from
   1738  * formula (8), page 95.  Roughly O(N^3/2).
   1739  */
   1740 /*
   1741  * This is our own private copy of shellsort because we want to sort
   1742  * two parallel arrays (the array of buffer pointers and the array of
   1743  * logical block numbers) simultaneously.  Note that we cast the array
   1744  * of logical block numbers to a unsigned in this routine so that the
   1745  * negative block numbers (meta data blocks) sort AFTER the data blocks.
   1746  */
   1747 
   1748 void
   1749 lfs_shellsort(bp_array, lb_array, nmemb)
   1750 	struct buf **bp_array;
   1751 	ufs_daddr_t *lb_array;
   1752 	int nmemb;
   1753 {
   1754 	static int __rsshell_increments[] = { 4, 1, 0 };
   1755 	int incr, *incrp, t1, t2;
   1756 	struct buf *bp_temp;
   1757 	u_long lb_temp;
   1758 
   1759 	for (incrp = __rsshell_increments; (incr = *incrp++) != 0;)
   1760 		for (t1 = incr; t1 < nmemb; ++t1)
   1761 			for (t2 = t1 - incr; t2 >= 0;)
   1762 				if (lb_array[t2] > lb_array[t2 + incr]) {
   1763 					lb_temp = lb_array[t2];
   1764 					lb_array[t2] = lb_array[t2 + incr];
   1765 					lb_array[t2 + incr] = lb_temp;
   1766 					bp_temp = bp_array[t2];
   1767 					bp_array[t2] = bp_array[t2 + incr];
   1768 					bp_array[t2 + incr] = bp_temp;
   1769 					t2 -= incr;
   1770 				} else
   1771 					break;
   1772 }
   1773 
   1774 /*
   1775  * Check VXLOCK.  Return 1 if the vnode is locked.  Otherwise, vget it.
   1776  */
   1777 int
   1778 lfs_vref(vp)
   1779 	struct vnode *vp;
   1780 {
   1781 	/*
   1782 	 * If we return 1 here during a flush, we risk vinvalbuf() not
   1783 	 * being able to flush all of the pages from this vnode, which
   1784 	 * will cause it to panic.  So, return 0 if a flush is in progress.
   1785 	 */
   1786 	if (vp->v_flag & VXLOCK) {
   1787 		if(IS_FLUSHING(VTOI(vp)->i_lfs,vp)) {
   1788 			return 0;
   1789 		}
   1790 		return(1);
   1791 	}
   1792 	return (vget(vp, 0));
   1793 }
   1794 
   1795 /*
   1796  * This is vrele except that we do not want to VOP_INACTIVE this vnode. We
   1797  * inline vrele here to avoid the vn_lock and VOP_INACTIVE call at the end.
   1798  */
   1799 void
   1800 lfs_vunref(vp)
   1801 	struct vnode *vp;
   1802 {
   1803 	/*
   1804 	 * Analogous to lfs_vref, if the node is flushing, fake it.
   1805 	 */
   1806 	if((vp->v_flag & VXLOCK) && IS_FLUSHING(VTOI(vp)->i_lfs,vp)) {
   1807 		return;
   1808 	}
   1809 
   1810 	simple_lock(&vp->v_interlock);
   1811 #ifdef DIAGNOSTIC
   1812 	if(vp->v_usecount<=0) {
   1813 		printf("lfs_vunref: inum is %d\n", VTOI(vp)->i_number);
   1814 		printf("lfs_vunref: flags are 0x%lx\n", vp->v_flag);
   1815 		printf("lfs_vunref: usecount = %ld\n", vp->v_usecount);
   1816 		panic("lfs_vunref: v_usecount<0");
   1817 	}
   1818 #endif
   1819 	vp->v_usecount--;
   1820 	if (vp->v_usecount > 0) {
   1821 		simple_unlock(&vp->v_interlock);
   1822 		return;
   1823 	}
   1824 	/*
   1825 	 * insert at tail of LRU list
   1826 	 */
   1827 	simple_lock(&vnode_free_list_slock);
   1828 	if (vp->v_holdcnt > 0)
   1829 		TAILQ_INSERT_TAIL(&vnode_hold_list, vp, v_freelist);
   1830 	else
   1831 		TAILQ_INSERT_TAIL(&vnode_free_list, vp, v_freelist);
   1832 	simple_unlock(&vnode_free_list_slock);
   1833 	simple_unlock(&vp->v_interlock);
   1834 }
   1835 
   1836 /*
   1837  * We use this when we have vnodes that were loaded in solely for cleaning.
   1838  * There is no reason to believe that these vnodes will be referenced again
   1839  * soon, since the cleaning process is unrelated to normal filesystem
   1840  * activity.  Putting cleaned vnodes at the tail of the list has the effect
   1841  * of flushing the vnode LRU.  So, put vnodes that were loaded only for
   1842  * cleaning at the head of the list, instead.
   1843  */
   1844 void
   1845 lfs_vunref_head(vp)
   1846 	struct vnode *vp;
   1847 {
   1848 	simple_lock(&vp->v_interlock);
   1849 #ifdef DIAGNOSTIC
   1850 	if(vp->v_usecount==0) {
   1851 		panic("lfs_vunref: v_usecount<0");
   1852 	}
   1853 #endif
   1854 	vp->v_usecount--;
   1855 	if (vp->v_usecount > 0) {
   1856 		simple_unlock(&vp->v_interlock);
   1857 		return;
   1858 	}
   1859 	/*
   1860 	 * insert at head of LRU list
   1861 	 */
   1862 	simple_lock(&vnode_free_list_slock);
   1863 	TAILQ_INSERT_HEAD(&vnode_free_list, vp, v_freelist);
   1864 	simple_unlock(&vnode_free_list_slock);
   1865 	simple_unlock(&vp->v_interlock);
   1866 }
   1867 
   1868