| Submitter | Darrick J. Wong |
|---|---|
| Date | Sept. 1, 2011, 12:36 a.m. |
| Message ID | <20110901003628.1176.26264.stgit@elm3c44.beaverton.ibm.com> |
| Download | mbox | patch |
| Permalink | /patch/112761/ |
| State | Changes Requested |
| Headers | show |
Comments
Patch
diff --git a/misc/tune2fs.c b/misc/tune2fs.c index 283ad1d..36a5cb8 100644 --- a/misc/tune2fs.c +++ b/misc/tune2fs.c @@ -395,6 +395,9 @@ static void rewrite_metadata_checksums(ext2_filsys fs) { fs->flags |= EXT2_FLAG_IGNORE_CSUM_ERRORS; rewrite_inodes(fs); + ext2fs_read_bitmaps(fs); + ext2fs_mark_ib_dirty(fs); + fs->flags &= ~EXT2_FLAG_SUPER_ONLY; fs->flags &= ~EXT2_FLAG_IGNORE_CSUM_ERRORS; }
When toggling metadata_csum, mark the inode bitmap dirty so that they are written out with new checksums. Signed-off-by: Darrick J. Wong <djwong@us.ibm.com> --- misc/tune2fs.c | 3 +++ 1 files changed, 3 insertions(+), 0 deletions(-) -- To unsubscribe from this list: send the line "unsubscribe linux-ext4" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html