diff options
| author | Julian Elischer <julian@FreeBSD.org> | 1996-11-13 01:45:56 +0000 |
|---|---|---|
| committer | Julian Elischer <julian@FreeBSD.org> | 1996-11-13 01:45:56 +0000 |
| commit | 3f6f17ee1e1ea826cd2be78508759063dcb0b9f0 (patch) | |
| tree | cd2c79516c632966d2aec6c5bdb46adaee2ca904 | |
| parent | 4c640c1689c4a3c25f1c15789b0816b40040b505 (diff) | |
Notes
| -rw-r--r-- | sys/ufs/ffs/ffs_vfsops.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/sys/ufs/ffs/ffs_vfsops.c b/sys/ufs/ffs/ffs_vfsops.c index a35502a8e0a0..e7850860f9e5 100644 --- a/sys/ufs/ffs/ffs_vfsops.c +++ b/sys/ufs/ffs/ffs_vfsops.c @@ -31,7 +31,7 @@ * SUCH DAMAGE. * * @(#)ffs_vfsops.c 8.8 (Berkeley) 4/18/94 - * $Id: ffs_vfsops.c,v 1.40 1996/08/21 21:56:09 dyson Exp $ + * $Id: ffs_vfsops.c,v 1.41 1996/09/07 17:34:57 dyson Exp $ */ #include "opt_quota.h" @@ -383,6 +383,7 @@ ffs_reload(mp, cred, p) if (error) return (error); fs = (struct fs *)bp->b_data; + fs->fs_fmod = 0; if (fs->fs_magic != FS_MAGIC || fs->fs_bsize > MAXBSIZE || fs->fs_bsize < sizeof(struct fs)) { brelse(bp); @@ -511,6 +512,7 @@ ffs_mountfs(devvp, mp, p) error = EINVAL; /* XXX needs translation */ goto out; } + fs->fs_fmod = 0; if (!fs->fs_clean) { if (ronly || (mp->mnt_flag & MNT_FORCE)) { printf("WARNING: %s was not properly dismounted.\n",fs->fs_fsmnt); |
