diff options
Diffstat (limited to 'ext2fs/ext2fs.c')
-rw-r--r-- | ext2fs/ext2fs.c | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/ext2fs/ext2fs.c b/ext2fs/ext2fs.c index 19fa1c9d..91587b85 100644 --- a/ext2fs/ext2fs.c +++ b/ext2fs/ext2fs.c @@ -279,6 +279,12 @@ main (int argc, char **argv) /* A handy source of page-aligned zeros. */ vm_allocate (mach_task_self (), &zeroblock, block_size, 1); + if (!diskfs_readonly) + { + sblock->s_state &= ~EXT2_VALID_FS; + sync_super_block (); + } + inode_init (); /* Find our root node. */ |