From: Jan Blunck Date: Wed, 14 Apr 2010 12:38:34 +0000 (+0200) Subject: ext2: Set the write time in ext2_sync_fs() X-Git-Tag: v2.6.35-rc1~455^2~24 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=269c8db30cf5b60f47a44bbceaac118b986895d8;p=profile%2Fivi%2Fkernel-adaptation-intel-automotive.git ext2: Set the write time in ext2_sync_fs() This is probably a typo since the write time should actually be updated by ext2_sync_fs() instead of the mount time. Signed-off-by: Jan Blunck Signed-off-by: Jan Kara --- diff --git a/fs/ext2/super.c b/fs/ext2/super.c index 8e8b675..b205003 100644 --- a/fs/ext2/super.c +++ b/fs/ext2/super.c @@ -1172,7 +1172,7 @@ static int ext2_sync_fs(struct super_block *sb, int wait) cpu_to_le32(ext2_count_free_blocks(sb)); es->s_free_inodes_count = cpu_to_le32(ext2_count_free_inodes(sb)); - es->s_mtime = cpu_to_le32(get_seconds()); + es->s_wtime = cpu_to_le32(get_seconds()); ext2_sync_super(sb, es); } else { ext2_commit_super(sb, es);