Home | History | Annotate | Line # | Download | only in lfs
lfs_bio.c revision 1.44
      1 /*	$NetBSD: lfs_bio.c,v 1.44 2002/06/20 22:10:24 perseant Exp $	*/
      2 
      3 /*-
      4  * Copyright (c) 1999, 2000 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_bio.c	8.10 (Berkeley) 6/10/95
     71  */
     72 
     73 #include <sys/cdefs.h>
     74 __KERNEL_RCSID(0, "$NetBSD: lfs_bio.c,v 1.44 2002/06/20 22:10:24 perseant Exp $");
     75 
     76 #include <sys/param.h>
     77 #include <sys/systm.h>
     78 #include <sys/proc.h>
     79 #include <sys/buf.h>
     80 #include <sys/vnode.h>
     81 #include <sys/resourcevar.h>
     82 #include <sys/mount.h>
     83 #include <sys/kernel.h>
     84 
     85 #include <ufs/ufs/inode.h>
     86 #include <ufs/ufs/ufsmount.h>
     87 #include <ufs/ufs/ufs_extern.h>
     88 
     89 #include <sys/malloc.h>
     90 #include <ufs/lfs/lfs.h>
     91 #include <ufs/lfs/lfs_extern.h>
     92 
     93 /* Macros to clear/set/test flags. */
     94 # define	SET(t, f)	(t) |= (f)
     95 # define	CLR(t, f)	(t) &= ~(f)
     96 # define	ISSET(t, f)	((t) & (f))
     97 
     98 /*
     99  * LFS block write function.
    100  *
    101  * XXX
    102  * No write cost accounting is done.
    103  * This is almost certainly wrong for synchronous operations and NFS.
    104  */
    105 int	locked_queue_count   = 0;	/* XXX Count of locked-down buffers. */
    106 long	locked_queue_bytes   = 0L;	/* XXX Total size of locked buffers. */
    107 int	lfs_writing          = 0;	/* Set if already kicked off a writer
    108 					   because of buffer space */
    109 extern int lfs_dostats;
    110 
    111 /*
    112  * Try to reserve some blocks, prior to performing a sensitive operation that
    113  * requires the vnode lock to be honored.  If there is not enough space, give
    114  * up the vnode lock temporarily and wait for the space to become available.
    115  *
    116  * Called with vp locked.  (Note nowever that if fsb < 0, vp is ignored.)
    117  */
    118 int
    119 lfs_reserve(struct lfs *fs, struct vnode *vp, int fsb)
    120 {
    121 	CLEANERINFO *cip;
    122 	struct buf *bp;
    123 	int error, slept;
    124 
    125 	slept = 0;
    126 	while (fsb > 0 && !lfs_fits(fs, fsb + fs->lfs_ravail)) {
    127 		VOP_UNLOCK(vp, 0);
    128 
    129 		if (!slept) {
    130 #ifdef DEBUG
    131 			printf("lfs_reserve: waiting for %ld (bfree = %d,"
    132 			       " est_bfree = %d)\n",
    133 			       fsb + fs->lfs_ravail, fs->lfs_bfree,
    134 			       LFS_EST_BFREE(fs));
    135 #endif
    136 		}
    137 		++slept;
    138 
    139 		/* Wake up the cleaner */
    140 		LFS_CLEANERINFO(cip, fs, bp);
    141 		LFS_SYNC_CLEANERINFO(cip, fs, bp, 0);
    142 		wakeup(&lfs_allclean_wakeup);
    143 		wakeup(&fs->lfs_nextseg);
    144 
    145 		error = tsleep(&fs->lfs_avail, PCATCH | PUSER, "lfs_reserve",
    146 			       0);
    147 		vn_lock(vp, LK_EXCLUSIVE | LK_RETRY); /* XXX use lockstatus */
    148 		if (error)
    149 			return error;
    150 	}
    151 #ifdef DEBUG
    152 	if (slept)
    153 		printf("lfs_reserve: woke up\n");
    154 #endif
    155 	fs->lfs_ravail += fsb;
    156 	return 0;
    157 }
    158 
    159 /*
    160  *
    161  * XXX we don't let meta-data writes run out of space because they can
    162  * come from the segment writer.  We need to make sure that there is
    163  * enough space reserved so that there's room to write meta-data
    164  * blocks.
    165  *
    166  * Also, we don't let blocks that have come to us from the cleaner
    167  * run out of space.
    168  */
    169 #define CANT_WAIT(BP,F) (IS_IFILE((BP)) || (BP)->b_lblkno < 0 || ((F) & BW_CLEAN))
    170 
    171 int
    172 lfs_bwrite(void *v)
    173 {
    174 	struct vop_bwrite_args /* {
    175 		struct buf *a_bp;
    176 	} */ *ap = v;
    177 	struct buf *bp = ap->a_bp;
    178 
    179 #ifdef DIAGNOSTIC
    180         if (VTOI(bp->b_vp)->i_lfs->lfs_ronly == 0 && (bp->b_flags & B_ASYNC)) {
    181 		panic("bawrite LFS buffer");
    182 	}
    183 #endif /* DIAGNOSTIC */
    184 	return lfs_bwrite_ext(bp,0);
    185 }
    186 
    187 /*
    188  * Determine if there is enough room currently available to write fsb
    189  * blocks.  We need enough blocks for the new blocks, the current
    190  * inode blocks (including potentially the ifile inode), a summary block,
    191  * and the segment usage table, plus an ifile block.
    192  */
    193 int
    194 lfs_fits(struct lfs *fs, int fsb)
    195 {
    196 	int needed;
    197 
    198 	needed = fsb + btofsb(fs, fs->lfs_sumsize) +
    199 		 ((howmany(fs->lfs_uinodes + 1, INOPB(fs)) + fs->lfs_segtabsz +
    200 		   1) << (fs->lfs_blktodb - fs->lfs_fsbtodb));
    201 
    202 	if (needed >= fs->lfs_avail) {
    203 #ifdef DEBUG
    204 		printf("lfs_fits: no fit: fsb = %d, uinodes = %d, "
    205 		       "needed = %d, avail = %d\n",
    206 		       fsb, fs->lfs_uinodes, needed, fs->lfs_avail);
    207 #endif
    208 		return 0;
    209 	}
    210 	return 1;
    211 }
    212 
    213 int
    214 lfs_availwait(struct lfs *fs, int fsb)
    215 {
    216 	int error;
    217 	CLEANERINFO *cip;
    218 	struct buf *cbp;
    219 
    220 	while (!lfs_fits(fs, fsb)) {
    221 		/*
    222 		 * Out of space, need cleaner to run.
    223 		 * Update the cleaner info, then wake it up.
    224 		 * Note the cleanerinfo block is on the ifile
    225 		 * so it CANT_WAIT.
    226 		 */
    227 		LFS_CLEANERINFO(cip, fs, cbp);
    228 		LFS_SYNC_CLEANERINFO(cip, fs, cbp, 0);
    229 
    230 		printf("lfs_availwait: out of available space, "
    231 		       "waiting on cleaner\n");
    232 
    233 		wakeup(&lfs_allclean_wakeup);
    234 		wakeup(&fs->lfs_nextseg);
    235 #ifdef DIAGNOSTIC
    236 		if (fs->lfs_seglock && fs->lfs_lockpid == curproc->p_pid)
    237 			panic("lfs_availwait: deadlock");
    238 #endif
    239 		error = tsleep(&fs->lfs_avail, PCATCH | PUSER, "cleaner", 0);
    240 		if (error)
    241 			return (error);
    242 	}
    243 	return 0;
    244 }
    245 
    246 int
    247 lfs_bwrite_ext(struct buf *bp, int flags)
    248 {
    249 	struct lfs *fs;
    250 	struct inode *ip;
    251 	int fsb, error, s;
    252 
    253 	/*
    254 	 * Don't write *any* blocks if we're mounted read-only.
    255 	 * In particular the cleaner can't write blocks either.
    256 	 */
    257         if (VTOI(bp->b_vp)->i_lfs->lfs_ronly) {
    258 		bp->b_flags &= ~(B_DELWRI | B_READ | B_ERROR);
    259 		LFS_UNLOCK_BUF(bp);
    260 		if (bp->b_flags & B_CALL)
    261 			bp->b_flags &= ~B_BUSY;
    262 		else
    263 			brelse(bp);
    264 		return EROFS;
    265 	}
    266 
    267 	/*
    268 	 * Set the delayed write flag and use reassignbuf to move the buffer
    269 	 * from the clean list to the dirty one.
    270 	 *
    271 	 * Set the B_LOCKED flag and unlock the buffer, causing brelse to move
    272 	 * the buffer onto the LOCKED free list.  This is necessary, otherwise
    273 	 * getnewbuf() would try to reclaim the buffers using bawrite, which
    274 	 * isn't going to work.
    275 	 *
    276 	 * XXX we don't let meta-data writes run out of space because they can
    277 	 * come from the segment writer.  We need to make sure that there is
    278 	 * enough space reserved so that there's room to write meta-data
    279 	 * blocks.
    280 	 */
    281 	if (!(bp->b_flags & B_LOCKED)) {
    282 		fs = VFSTOUFS(bp->b_vp->v_mount)->um_lfs;
    283 		fsb = fragstofsb(fs, numfrags(fs, bp->b_bcount));
    284 		if (!CANT_WAIT(bp, flags)) {
    285 			if ((error = lfs_availwait(fs, fsb)) != 0) {
    286 				brelse(bp);
    287 				return error;
    288 			}
    289 		}
    290 
    291 		ip = VTOI(bp->b_vp);
    292 		if (bp->b_flags & B_CALL) {
    293 			LFS_SET_UINO(ip, IN_CLEANING);
    294 		} else {
    295 			LFS_SET_UINO(ip, IN_MODIFIED);
    296 			if (bp->b_lblkno >= 0)
    297 				LFS_SET_UINO(ip, IN_UPDATE);
    298 		}
    299 		fs->lfs_avail -= fsb;
    300 		bp->b_flags |= B_DELWRI;
    301 
    302 		LFS_LOCK_BUF(bp);
    303 		bp->b_flags &= ~(B_READ | B_DONE | B_ERROR);
    304 		s = splbio();
    305 		reassignbuf(bp, bp->b_vp);
    306 		splx(s);
    307 	}
    308 
    309 	if (bp->b_flags & B_CALL)
    310 		bp->b_flags &= ~B_BUSY;
    311 	else
    312 		brelse(bp);
    313 
    314 	return (0);
    315 }
    316 
    317 void
    318 lfs_flush_fs(struct lfs *fs, int flags)
    319 {
    320 	if (fs->lfs_ronly == 0 && fs->lfs_dirops == 0)
    321 	{
    322 		/* disallow dirops during flush */
    323 		fs->lfs_writer++;
    324 
    325 		/*
    326 		 * We set the queue to 0 here because we
    327 		 * are about to write all the dirty
    328 		 * buffers we have.  If more come in
    329 		 * while we're writing the segment, they
    330 		 * may not get written, so we want the
    331 		 * count to reflect these new writes
    332 		 * after the segwrite completes.
    333 		 */
    334 		if (lfs_dostats)
    335 			++lfs_stats.flush_invoked;
    336 		lfs_segwrite(fs->lfs_ivnode->v_mount, flags);
    337 
    338 		/* XXX KS - allow dirops again */
    339 		if (--fs->lfs_writer == 0)
    340 			wakeup(&fs->lfs_dirops);
    341 	}
    342 }
    343 
    344 /*
    345  * XXX
    346  * This routine flushes buffers out of the B_LOCKED queue when LFS has too
    347  * many locked down.  Eventually the pageout daemon will simply call LFS
    348  * when pages need to be reclaimed.  Note, we have one static count of locked
    349  * buffers, so we can't have more than a single file system.  To make this
    350  * work for multiple file systems, put the count into the mount structure.
    351  */
    352 void
    353 lfs_flush(struct lfs *fs, int flags)
    354 {
    355 	struct mount *mp, *nmp;
    356 
    357 	if (lfs_dostats)
    358 		++lfs_stats.write_exceeded;
    359 	if (lfs_writing && flags == 0) {/* XXX flags */
    360 #ifdef DEBUG_LFS
    361 		printf("lfs_flush: not flushing because another flush is active\n");
    362 #endif
    363 		return;
    364 	}
    365 	lfs_writing = 1;
    366 
    367 	simple_lock(&mountlist_slock);
    368 	for (mp = mountlist.cqh_first; mp != (void *)&mountlist; mp = nmp) {
    369 		if (vfs_busy(mp, LK_NOWAIT, &mountlist_slock)) {
    370 			nmp = mp->mnt_list.cqe_next;
    371 			continue;
    372 		}
    373 		if (strncmp(&mp->mnt_stat.f_fstypename[0], MOUNT_LFS, MFSNAMELEN) == 0)
    374 			lfs_flush_fs(((struct ufsmount *)mp->mnt_data)->ufsmount_u.lfs, flags);
    375 		simple_lock(&mountlist_slock);
    376 		nmp = mp->mnt_list.cqe_next;
    377 		vfs_unbusy(mp);
    378 	}
    379 	simple_unlock(&mountlist_slock);
    380 
    381 	LFS_DEBUG_COUNTLOCKED("flush");
    382 
    383 	lfs_writing = 0;
    384 }
    385 
    386 #define INOCOUNT(fs) howmany((fs)->lfs_uinodes, INOPB(fs))
    387 #define INOBYTES(fs) ((fs)->lfs_uinodes * DINODE_SIZE)
    388 
    389 int
    390 lfs_check(struct vnode *vp, ufs_daddr_t blkno, int flags)
    391 {
    392 	int error;
    393 	struct lfs *fs;
    394 	struct inode *ip;
    395 	extern int lfs_dirvcount;
    396 
    397 	error = 0;
    398 	ip = VTOI(vp);
    399 
    400 	/* If out of buffers, wait on writer */
    401 	/* XXX KS - if it's the Ifile, we're probably the cleaner! */
    402 	if (ip->i_number == LFS_IFILE_INUM)
    403 		return 0;
    404 	/* If we're being called from inside a dirop, don't sleep */
    405 	if (ip->i_flag & IN_ADIROP)
    406 		return 0;
    407 
    408 	fs = ip->i_lfs;
    409 
    410 	/*
    411 	 * If we would flush below, but dirops are active, sleep.
    412 	 * Note that a dirop cannot ever reach this code!
    413 	 */
    414 	while (fs->lfs_dirops > 0 &&
    415 	       (locked_queue_count + INOCOUNT(fs) > LFS_MAX_BUFS ||
    416                 locked_queue_bytes + INOBYTES(fs) > LFS_MAX_BYTES ||
    417                 lfs_dirvcount > LFS_MAXDIROP || fs->lfs_diropwait > 0))
    418 	{
    419 		++fs->lfs_diropwait;
    420 		tsleep(&fs->lfs_writer, PRIBIO+1, "bufdirop", 0);
    421 		--fs->lfs_diropwait;
    422 	}
    423 
    424 	if (locked_queue_count + INOCOUNT(fs) > LFS_MAX_BUFS ||
    425 	    locked_queue_bytes + INOBYTES(fs) > LFS_MAX_BYTES ||
    426 	    lfs_dirvcount > LFS_MAXDIROP || fs->lfs_diropwait > 0)
    427 	{
    428 		++fs->lfs_writer;
    429 		lfs_flush(fs, flags);
    430 		if (--fs->lfs_writer == 0)
    431 			wakeup(&fs->lfs_dirops);
    432 	}
    433 
    434 	while (locked_queue_count + INOCOUNT(fs) > LFS_WAIT_BUFS
    435 	       || locked_queue_bytes + INOBYTES(fs) > LFS_WAIT_BYTES)
    436 	{
    437 		if (lfs_dostats)
    438 			++lfs_stats.wait_exceeded;
    439 #ifdef DEBUG_LFS
    440 		printf("lfs_check: waiting: count=%d, bytes=%ld\n",
    441 			locked_queue_count, locked_queue_bytes);
    442 #endif
    443 		error = tsleep(&locked_queue_count, PCATCH | PUSER,
    444 			       "buffers", hz * LFS_BUFWAIT);
    445 		if (error != EWOULDBLOCK)
    446 			break;
    447 		/*
    448 		 * lfs_flush might not flush all the buffers, if some of the
    449 		 * inodes were locked or if most of them were Ifile blocks
    450 		 * and we weren't asked to checkpoint.  Try flushing again
    451 		 * to keep us from blocking indefinitely.
    452 		 */
    453 		if (locked_queue_count + INOCOUNT(fs) > LFS_MAX_BUFS ||
    454 		    locked_queue_bytes + INOBYTES(fs) > LFS_MAX_BYTES)
    455 		{
    456 			++fs->lfs_writer;
    457 			lfs_flush(fs, flags | SEGM_CKP);
    458 			if (--fs->lfs_writer == 0)
    459 				wakeup(&fs->lfs_dirops);
    460 		}
    461 	}
    462 	return (error);
    463 }
    464 
    465 /*
    466  * Allocate a new buffer header.
    467  */
    468 #ifdef MALLOCLOG
    469 # define DOMALLOC(S, T, F) _malloc((S), (T), (F), file, line)
    470 struct buf *
    471 lfs_newbuf_malloclog(struct lfs *fs, struct vnode *vp, ufs_daddr_t daddr, size_t size, char *file, int line)
    472 #else
    473 # define DOMALLOC(S, T, F) malloc((S), (T), (F))
    474 struct buf *
    475 lfs_newbuf(struct lfs *fs, struct vnode *vp, ufs_daddr_t daddr, size_t size)
    476 #endif
    477 {
    478 	struct buf *bp;
    479 	size_t nbytes;
    480 	int s;
    481 
    482 	nbytes = roundup(size, fsbtob(fs, 1));
    483 
    484 	bp = DOMALLOC(sizeof(struct buf), M_SEGMENT, M_WAITOK);
    485 	bzero(bp, sizeof(struct buf));
    486 	if (nbytes) {
    487 		bp->b_data = DOMALLOC(nbytes, M_SEGMENT, M_WAITOK);
    488 		bzero(bp->b_data, nbytes);
    489 	}
    490 #ifdef DIAGNOSTIC
    491 	if (vp == NULL)
    492 		panic("vp is NULL in lfs_newbuf");
    493 	if (bp == NULL)
    494 		panic("bp is NULL after malloc in lfs_newbuf");
    495 #endif
    496 	s = splbio();
    497 	bgetvp(vp, bp);
    498 	splx(s);
    499 
    500 	bp->b_saveaddr = (caddr_t)fs;
    501 	bp->b_bufsize = size;
    502 	bp->b_bcount = size;
    503 	bp->b_lblkno = daddr;
    504 	bp->b_blkno = daddr;
    505 	bp->b_error = 0;
    506 	bp->b_resid = 0;
    507 	bp->b_iodone = lfs_callback;
    508 	bp->b_flags |= B_BUSY | B_CALL | B_NOCACHE;
    509 
    510 	return (bp);
    511 }
    512 
    513 #ifdef MALLOCLOG
    514 # define DOFREE(A, T) _free((A), (T), file, line)
    515 void
    516 lfs_freebuf_malloclog(struct buf *bp, char *file, int line)
    517 #else
    518 # define DOFREE(A, T) free((A), (T))
    519 void
    520 lfs_freebuf(struct buf *bp)
    521 #endif
    522 {
    523 	int s;
    524 
    525 	s = splbio();
    526 	if (bp->b_vp)
    527 		brelvp(bp);
    528 	splx(s);
    529 	if (!(bp->b_flags & B_INVAL)) { /* B_INVAL indicates a "fake" buffer */
    530 		DOFREE(bp->b_data, M_SEGMENT);
    531 		bp->b_data = NULL;
    532 	}
    533 	DOFREE(bp, M_SEGMENT);
    534 }
    535 
    536 /*
    537  * Definitions for the buffer free lists.
    538  */
    539 #define BQUEUES		4		/* number of free buffer queues */
    540 
    541 #define BQ_LOCKED	0		/* super-blocks &c */
    542 #define BQ_LRU		1		/* lru, useful buffers */
    543 #define BQ_AGE		2		/* rubbish */
    544 #define BQ_EMPTY	3		/* buffer headers with no memory */
    545 
    546 extern TAILQ_HEAD(bqueues, buf) bufqueues[BQUEUES];
    547 
    548 /*
    549  * Return a count of buffers on the "locked" queue.
    550  * Don't count malloced buffers, since they don't detract from the total.
    551  */
    552 void
    553 lfs_countlocked(int *count, long *bytes, char *msg)
    554 {
    555 	struct buf *bp;
    556 	int n = 0;
    557 	long int size = 0L;
    558 
    559 	for (bp = bufqueues[BQ_LOCKED].tqh_first; bp;
    560 	    bp = bp->b_freelist.tqe_next) {
    561 		if (bp->b_flags & B_CALL) /* Malloced buffer */
    562 			continue;
    563 		n++;
    564 		size += bp->b_bufsize;
    565 #ifdef DEBUG_LOCKED_LIST
    566 		if (n > nbuf)
    567 			panic("lfs_countlocked: this can't happen: more"
    568 			      " buffers locked than exist");
    569 #endif
    570 	}
    571 #ifdef DEBUG_LOCKED_LIST
    572 	/* Theoretically this function never really does anything */
    573 	if (n != *count)
    574 		printf("lfs_countlocked: %s: adjusted buf count from %d to %d\n",
    575 		       msg, *count, n);
    576 	if (size != *bytes)
    577 		printf("lfs_countlocked: %s: adjusted byte count from %ld to %ld\n",
    578 		       msg, *bytes, size);
    579 #endif
    580 	*count = n;
    581 	*bytes = size;
    582 	return;
    583 }
    584