Home | History | Annotate | Line # | Download | only in lfs
lfs_bio.c revision 1.1
      1  1.1  mycroft /*
      2  1.1  mycroft  * Copyright (c) 1991, 1993
      3  1.1  mycroft  *	The Regents of the University of California.  All rights reserved.
      4  1.1  mycroft  *
      5  1.1  mycroft  * Redistribution and use in source and binary forms, with or without
      6  1.1  mycroft  * modification, are permitted provided that the following conditions
      7  1.1  mycroft  * are met:
      8  1.1  mycroft  * 1. Redistributions of source code must retain the above copyright
      9  1.1  mycroft  *    notice, this list of conditions and the following disclaimer.
     10  1.1  mycroft  * 2. Redistributions in binary form must reproduce the above copyright
     11  1.1  mycroft  *    notice, this list of conditions and the following disclaimer in the
     12  1.1  mycroft  *    documentation and/or other materials provided with the distribution.
     13  1.1  mycroft  * 3. All advertising materials mentioning features or use of this software
     14  1.1  mycroft  *    must display the following acknowledgement:
     15  1.1  mycroft  *	This product includes software developed by the University of
     16  1.1  mycroft  *	California, Berkeley and its contributors.
     17  1.1  mycroft  * 4. Neither the name of the University nor the names of its contributors
     18  1.1  mycroft  *    may be used to endorse or promote products derived from this software
     19  1.1  mycroft  *    without specific prior written permission.
     20  1.1  mycroft  *
     21  1.1  mycroft  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
     22  1.1  mycroft  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
     23  1.1  mycroft  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
     24  1.1  mycroft  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
     25  1.1  mycroft  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
     26  1.1  mycroft  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
     27  1.1  mycroft  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
     28  1.1  mycroft  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
     29  1.1  mycroft  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
     30  1.1  mycroft  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
     31  1.1  mycroft  * SUCH DAMAGE.
     32  1.1  mycroft  *
     33  1.1  mycroft  *	from: @(#)lfs_bio.c	8.4 (Berkeley) 12/30/93
     34  1.1  mycroft  *	$Id: lfs_bio.c,v 1.1 1994/06/08 11:42:28 mycroft Exp $
     35  1.1  mycroft  */
     36  1.1  mycroft 
     37  1.1  mycroft #include <sys/param.h>
     38  1.1  mycroft #include <sys/proc.h>
     39  1.1  mycroft #include <sys/buf.h>
     40  1.1  mycroft #include <sys/vnode.h>
     41  1.1  mycroft #include <sys/resourcevar.h>
     42  1.1  mycroft #include <sys/mount.h>
     43  1.1  mycroft #include <sys/kernel.h>
     44  1.1  mycroft 
     45  1.1  mycroft #include <ufs/ufs/quota.h>
     46  1.1  mycroft #include <ufs/ufs/inode.h>
     47  1.1  mycroft #include <ufs/ufs/ufsmount.h>
     48  1.1  mycroft 
     49  1.1  mycroft #include <ufs/lfs/lfs.h>
     50  1.1  mycroft #include <ufs/lfs/lfs_extern.h>
     51  1.1  mycroft 
     52  1.1  mycroft /*
     53  1.1  mycroft  * LFS block write function.
     54  1.1  mycroft  *
     55  1.1  mycroft  * XXX
     56  1.1  mycroft  * No write cost accounting is done.
     57  1.1  mycroft  * This is almost certainly wrong for synchronous operations and NFS.
     58  1.1  mycroft  */
     59  1.1  mycroft int	lfs_allclean_wakeup;		/* Cleaner wakeup address. */
     60  1.1  mycroft int	locked_queue_count;		/* XXX Count of locked-down buffers. */
     61  1.1  mycroft int	lfs_writing;			/* Set if already kicked off a writer
     62  1.1  mycroft 					   because of buffer space */
     63  1.1  mycroft /*
     64  1.1  mycroft #define WRITE_THRESHHOLD	((nbuf >> 2) - 10)
     65  1.1  mycroft #define WAIT_THRESHHOLD		((nbuf >> 1) - 10)
     66  1.1  mycroft */
     67  1.1  mycroft #define WAIT_THRESHHOLD         (nbuf - (nbuf >> 2) - 10)
     68  1.1  mycroft #define WRITE_THRESHHOLD        ((nbuf >> 1) - 10)
     69  1.1  mycroft #define LFS_BUFWAIT	2
     70  1.1  mycroft 
     71  1.1  mycroft int
     72  1.1  mycroft lfs_bwrite(ap)
     73  1.1  mycroft 	struct vop_bwrite_args /* {
     74  1.1  mycroft 		struct buf *a_bp;
     75  1.1  mycroft 	} */ *ap;
     76  1.1  mycroft {
     77  1.1  mycroft 	register struct buf *bp = ap->a_bp;
     78  1.1  mycroft 	struct lfs *fs;
     79  1.1  mycroft 	struct inode *ip;
     80  1.1  mycroft 	int error, s;
     81  1.1  mycroft 
     82  1.1  mycroft 	/*
     83  1.1  mycroft 	 * Set the delayed write flag and use reassignbuf to move the buffer
     84  1.1  mycroft 	 * from the clean list to the dirty one.
     85  1.1  mycroft 	 *
     86  1.1  mycroft 	 * Set the B_LOCKED flag and unlock the buffer, causing brelse to move
     87  1.1  mycroft 	 * the buffer onto the LOCKED free list.  This is necessary, otherwise
     88  1.1  mycroft 	 * getnewbuf() would try to reclaim the buffers using bawrite, which
     89  1.1  mycroft 	 * isn't going to work.
     90  1.1  mycroft 	 *
     91  1.1  mycroft 	 * XXX we don't let meta-data writes run out of space because they can
     92  1.1  mycroft 	 * come from the segment writer.  We need to make sure that there is
     93  1.1  mycroft 	 * enough space reserved so that there's room to write meta-data
     94  1.1  mycroft 	 * blocks.
     95  1.1  mycroft 	 */
     96  1.1  mycroft 	if (!(bp->b_flags & B_LOCKED)) {
     97  1.1  mycroft 		fs = VFSTOUFS(bp->b_vp->v_mount)->um_lfs;
     98  1.1  mycroft 		while (!LFS_FITS(fs, fsbtodb(fs, 1)) && !IS_IFILE(bp) &&
     99  1.1  mycroft 		    bp->b_lblkno > 0) {
    100  1.1  mycroft 			/* Out of space, need cleaner to run */
    101  1.1  mycroft 			wakeup(&lfs_allclean_wakeup);
    102  1.1  mycroft 			if (error = tsleep(&fs->lfs_avail, PCATCH | PUSER,
    103  1.1  mycroft 			    "cleaner", NULL)) {
    104  1.1  mycroft 				brelse(bp);
    105  1.1  mycroft 				return (error);
    106  1.1  mycroft 			}
    107  1.1  mycroft 		}
    108  1.1  mycroft 		ip = VTOI((bp)->b_vp);
    109  1.1  mycroft 		if (!(ip->i_flag & IN_MODIFIED))
    110  1.1  mycroft 			++fs->lfs_uinodes;
    111  1.1  mycroft 		ip->i_flag |= IN_CHANGE | IN_MODIFIED | IN_UPDATE;
    112  1.1  mycroft 		fs->lfs_avail -= fsbtodb(fs, 1);
    113  1.1  mycroft 		++locked_queue_count;
    114  1.1  mycroft 		bp->b_flags |= B_DELWRI | B_LOCKED;
    115  1.1  mycroft 		bp->b_flags &= ~(B_READ | B_ERROR);
    116  1.1  mycroft 		s = splbio();
    117  1.1  mycroft 		reassignbuf(bp, bp->b_vp);
    118  1.1  mycroft 		splx(s);
    119  1.1  mycroft 	}
    120  1.1  mycroft 	brelse(bp);
    121  1.1  mycroft 	return (0);
    122  1.1  mycroft }
    123  1.1  mycroft 
    124  1.1  mycroft /*
    125  1.1  mycroft  * XXX
    126  1.1  mycroft  * This routine flushes buffers out of the B_LOCKED queue when LFS has too
    127  1.1  mycroft  * many locked down.  Eventually the pageout daemon will simply call LFS
    128  1.1  mycroft  * when pages need to be reclaimed.  Note, we have one static count of locked
    129  1.1  mycroft  * buffers, so we can't have more than a single file system.  To make this
    130  1.1  mycroft  * work for multiple file systems, put the count into the mount structure.
    131  1.1  mycroft  */
    132  1.1  mycroft void
    133  1.1  mycroft lfs_flush()
    134  1.1  mycroft {
    135  1.1  mycroft 	register struct mount *mp;
    136  1.1  mycroft 
    137  1.1  mycroft #ifdef DOSTATS
    138  1.1  mycroft 	++lfs_stats.write_exceeded;
    139  1.1  mycroft #endif
    140  1.1  mycroft 	if (lfs_writing)
    141  1.1  mycroft 		return;
    142  1.1  mycroft 	lfs_writing = 1;
    143  1.1  mycroft 	for (mp = mountlist.tqh_first; mp != NULL; mp = mp->mnt_list.tqe_next) {
    144  1.1  mycroft 		/* The lock check below is to avoid races with unmount. */
    145  1.1  mycroft 		if (!strcmp(&mp->mnt_stat.f_fstypename[0], MOUNT_LFS) &&
    146  1.1  mycroft 		    (mp->mnt_flag & (MNT_MLOCK|MNT_RDONLY|MNT_UNMOUNT)) == 0 &&
    147  1.1  mycroft 		    !((((struct ufsmount *)mp->mnt_data))->ufsmount_u.lfs)->lfs_dirops ) {
    148  1.1  mycroft 			/*
    149  1.1  mycroft 			 * We set the queue to 0 here because we are about to
    150  1.1  mycroft 			 * write all the dirty buffers we have.  If more come
    151  1.1  mycroft 			 * in while we're writing the segment, they may not
    152  1.1  mycroft 			 * get written, so we want the count to reflect these
    153  1.1  mycroft 			 * new writes after the segwrite completes.
    154  1.1  mycroft 			 */
    155  1.1  mycroft #ifdef DOSTATS
    156  1.1  mycroft 			++lfs_stats.flush_invoked;
    157  1.1  mycroft #endif
    158  1.1  mycroft 			lfs_segwrite(mp, 0);
    159  1.1  mycroft 		}
    160  1.1  mycroft 	}
    161  1.1  mycroft 	lfs_writing = 0;
    162  1.1  mycroft }
    163  1.1  mycroft 
    164  1.1  mycroft int
    165  1.1  mycroft lfs_check(vp, blkno)
    166  1.1  mycroft 	struct vnode *vp;
    167  1.1  mycroft 	daddr_t blkno;
    168  1.1  mycroft {
    169  1.1  mycroft 	extern int lfs_allclean_wakeup;
    170  1.1  mycroft 	int error;
    171  1.1  mycroft 
    172  1.1  mycroft 	error = 0;
    173  1.1  mycroft 	if (incore(vp, blkno))
    174  1.1  mycroft 		return (0);
    175  1.1  mycroft 	if (locked_queue_count > WRITE_THRESHHOLD)
    176  1.1  mycroft 		lfs_flush();
    177  1.1  mycroft 
    178  1.1  mycroft 	/* If out of buffers, wait on writer */
    179  1.1  mycroft 	while (locked_queue_count > WAIT_THRESHHOLD) {
    180  1.1  mycroft #ifdef DOSTATS
    181  1.1  mycroft 	    ++lfs_stats.wait_exceeded;
    182  1.1  mycroft #endif
    183  1.1  mycroft 	    error = tsleep(&locked_queue_count, PCATCH | PUSER, "buffers",
    184  1.1  mycroft 	        hz * LFS_BUFWAIT);
    185  1.1  mycroft 	}
    186  1.1  mycroft 
    187  1.1  mycroft 	return (error);
    188  1.1  mycroft }
    189