mirror of
https://github.com/torvalds/linux.git
synced 2024-12-18 00:53:40 +00:00
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 <jblunck@suse.de> Signed-off-by: Jan Kara <jack@suse.cz>
This commit is contained in:
parent
2b8120efb2
commit
269c8db30c
@ -1172,7 +1172,7 @@ static int ext2_sync_fs(struct super_block *sb, int wait)
|
|||||||
cpu_to_le32(ext2_count_free_blocks(sb));
|
cpu_to_le32(ext2_count_free_blocks(sb));
|
||||||
es->s_free_inodes_count =
|
es->s_free_inodes_count =
|
||||||
cpu_to_le32(ext2_count_free_inodes(sb));
|
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);
|
ext2_sync_super(sb, es);
|
||||||
} else {
|
} else {
|
||||||
ext2_commit_super(sb, es);
|
ext2_commit_super(sb, es);
|
||||||
|
Loading…
Reference in New Issue
Block a user