diff options
author | Jan Kara <jack@suse.cz> | 2009-04-27 10:43:48 -0400 |
---|---|---|
committer | Al Viro <viro@zeniv.linux.org.uk> | 2009-06-11 21:36:03 -0400 |
commit | 5a3e5cb8e08bd876e2542c1451c9a93dab1b0e39 (patch) | |
tree | 3b792d21246f1001adeca8b67df24ca71593dd3f /fs/sync.c | |
parent | 876a9f76abbcb775f8d21cbc99fa161f9e5937f1 (diff) |
vfs: Fix sys_sync() and fsync_super() reliability (version 4)
So far, do_sync() called:
sync_inodes(0);
sync_supers();
sync_filesystems(0);
sync_filesystems(1);
sync_inodes(1);
This ordering makes it kind of hard for filesystems as sync_inodes(0) need not
submit all the IO (for example it skips inodes with I_SYNC set) so e.g. forcing
transaction to disk in ->sync_fs() is not really enough. Therefore sys_sync has
not been completely reliable on some filesystems (ext3, ext4, reiserfs, ocfs2
and others are hit by this) when racing e.g. with background writeback. A
similar problem hits also other filesystems (e.g. ext2) because of
write_supers() being called before the sync_inodes(1).
Change the ordering of calls in do_sync() - this requires a new function
sync_blockdevs() to preserve the property that block devices are always synced
after write_super() / sync_fs() call.
The same issue is fixed in __fsync_super() function used on umount /
remount read-only.
[AV: build fixes]
Signed-off-by: Jan Kara <jack@suse.cz>
Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
Diffstat (limited to 'fs/sync.c')
-rw-r--r-- | fs/sync.c | 4 |
1 files changed, 3 insertions, 1 deletions
@@ -13,6 +13,7 @@ | |||
13 | #include <linux/pagemap.h> | 13 | #include <linux/pagemap.h> |
14 | #include <linux/quotaops.h> | 14 | #include <linux/quotaops.h> |
15 | #include <linux/buffer_head.h> | 15 | #include <linux/buffer_head.h> |
16 | #include "internal.h" | ||
16 | 17 | ||
17 | #define VALID_FLAGS (SYNC_FILE_RANGE_WAIT_BEFORE|SYNC_FILE_RANGE_WRITE| \ | 18 | #define VALID_FLAGS (SYNC_FILE_RANGE_WAIT_BEFORE|SYNC_FILE_RANGE_WRITE| \ |
18 | SYNC_FILE_RANGE_WAIT_AFTER) | 19 | SYNC_FILE_RANGE_WAIT_AFTER) |
@@ -26,10 +27,11 @@ static void do_sync(unsigned long wait) | |||
26 | wakeup_pdflush(0); | 27 | wakeup_pdflush(0); |
27 | sync_inodes(0); /* All mappings, inodes and their blockdevs */ | 28 | sync_inodes(0); /* All mappings, inodes and their blockdevs */ |
28 | vfs_dq_sync(NULL); | 29 | vfs_dq_sync(NULL); |
30 | sync_inodes(wait); /* Mappings, inodes and blockdevs, again. */ | ||
29 | sync_supers(); /* Write the superblocks */ | 31 | sync_supers(); /* Write the superblocks */ |
30 | sync_filesystems(0); /* Start syncing the filesystems */ | 32 | sync_filesystems(0); /* Start syncing the filesystems */ |
31 | sync_filesystems(wait); /* Waitingly sync the filesystems */ | 33 | sync_filesystems(wait); /* Waitingly sync the filesystems */ |
32 | sync_inodes(wait); /* Mappings, inodes and blockdevs, again. */ | 34 | sync_blockdevs(); |
33 | if (!wait) | 35 | if (!wait) |
34 | printk("Emergency Sync complete\n"); | 36 | printk("Emergency Sync complete\n"); |
35 | if (unlikely(laptop_mode)) | 37 | if (unlikely(laptop_mode)) |