diff options
| author | Don Lewis <truckman@FreeBSD.org> | 2003-12-07 05:16:52 +0000 |
|---|---|---|
| committer | Don Lewis <truckman@FreeBSD.org> | 2003-12-07 05:16:52 +0000 |
| commit | 31c81e4bed19352e75cc9dcd76a4cfdf894cfecb (patch) | |
| tree | b0cebeda7c022a1357472aa6ff99a066d9686e7c | |
| parent | 5745b7c5af7d081f28b2b421adcfd19a3e199362 (diff) | |
Notes
| -rw-r--r-- | sys/ufs/ffs/ffs_vfsops.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/sys/ufs/ffs/ffs_vfsops.c b/sys/ufs/ffs/ffs_vfsops.c index e188ed46ecb5..9e27c2cf2de8 100644 --- a/sys/ufs/ffs/ffs_vfsops.c +++ b/sys/ufs/ffs/ffs_vfsops.c @@ -455,6 +455,8 @@ ffs_reload(mp, cred, td) newfs->fs_maxcluster = fs->fs_maxcluster; newfs->fs_contigdirs = fs->fs_contigdirs; newfs->fs_active = fs->fs_active; + /* The file system is still read-only. */ + newfs->fs_ronly = 1; sblockloc = fs->fs_sblockloc; bcopy(newfs, fs, (u_int)fs->fs_sbsize); brelse(bp); |
