diff options
-rw-r--r-- | fs/ext4/super.c | 13 |
1 files changed, 12 insertions, 1 deletions
diff --git a/fs/ext4/super.c b/fs/ext4/super.c index f1815d3bcfd5..9f6fa3f74629 100644 --- a/fs/ext4/super.c +++ b/fs/ext4/super.c | |||
@@ -3222,7 +3222,18 @@ static int ext4_commit_super(struct super_block *sb, int sync) | |||
3222 | clear_buffer_write_io_error(sbh); | 3222 | clear_buffer_write_io_error(sbh); |
3223 | set_buffer_uptodate(sbh); | 3223 | set_buffer_uptodate(sbh); |
3224 | } | 3224 | } |
3225 | es->s_wtime = cpu_to_le32(get_seconds()); | 3225 | /* |
3226 | * If the file system is mounted read-only, don't update the | ||
3227 | * superblock write time. This avoids updating the superblock | ||
3228 | * write time when we are mounting the root file system | ||
3229 | * read/only but we need to replay the journal; at that point, | ||
3230 | * for people who are east of GMT and who make their clock | ||
3231 | * tick in localtime for Windows bug-for-bug compatibility, | ||
3232 | * the clock is set in the future, and this will cause e2fsck | ||
3233 | * to complain and force a full file system check. | ||
3234 | */ | ||
3235 | if (!(sb->s_flags & MS_RDONLY)) | ||
3236 | es->s_wtime = cpu_to_le32(get_seconds()); | ||
3226 | es->s_kbytes_written = | 3237 | es->s_kbytes_written = |
3227 | cpu_to_le64(EXT4_SB(sb)->s_kbytes_written + | 3238 | cpu_to_le64(EXT4_SB(sb)->s_kbytes_written + |
3228 | ((part_stat_read(sb->s_bdev->bd_part, sectors[1]) - | 3239 | ((part_stat_read(sb->s_bdev->bd_part, sectors[1]) - |