diff options
author | Theodore Ts'o <tytso@mit.edu> | 2009-09-10 17:31:04 -0400 |
---|---|---|
committer | Theodore Ts'o <tytso@mit.edu> | 2009-09-10 17:31:04 -0400 |
commit | 71290b368ad5e1e0b0b300c9d5638490a9fd1a2d (patch) | |
tree | a48503e3ddf3715613df2a3e29a7220cea3368b4 | |
parent | 08c3a8133810d955d97f7146c50c43e4073f2148 (diff) |
ext4: Don't update superblock write time when filesystem is read-only
This avoids updating the superblock write time when we are mounting
the root file system read/only but we need to replay the journal; at
that point, for people who are east of GMT and who make their clock
tick in localtime for Windows bug-for-bug compatibility, and this will
cause e2fsck to complain and force a full file system check.
Signed-off-by: "Theodore Ts'o" <tytso@mit.edu>
-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]) - |