Commit b3de6531 authored by Jan Kara's avatar Jan Kara Committed by Al Viro

vfs: Reorder operations during sys_sync

Change the order of operations during sync from

for_each_sb {
        writeback_inodes_sb();
        sync_fs(nowait);
        __sync_blockdev(nowait);
}
for_each_sb {
        sync_inodes_sb();
        sync_fs(wait);
        __sync_blockdev(wait);
}

to

for_each_sb
        writeback_inodes_sb();
for_each_sb
        sync_fs(nowait);
for_each_sb
        __sync_blockdev(nowait);
for_each_sb
        sync_inodes_sb();
for_each_sb
        sync_fs(wait);
for_each_sb
        __sync_blockdev(wait);

This is a preparation for the following patches in this series.
Reviewed-by: default avatarChristoph Hellwig <hch@lst.de>
Signed-off-by: default avatarJan Kara <jack@suse.cz>
Signed-off-by: default avatarAl Viro <viro@zeniv.linux.org.uk>
parent a1177825
...@@ -67,18 +67,28 @@ int sync_filesystem(struct super_block *sb) ...@@ -67,18 +67,28 @@ int sync_filesystem(struct super_block *sb)
} }
EXPORT_SYMBOL_GPL(sync_filesystem); EXPORT_SYMBOL_GPL(sync_filesystem);
static void sync_one_sb(struct super_block *sb, void *arg) static void sync_inodes_one_sb(struct super_block *sb, void *arg)
{ {
if (!(sb->s_flags & MS_RDONLY)) if (!(sb->s_flags & MS_RDONLY))
__sync_filesystem(sb, *(int *)arg); sync_inodes_sb(sb);
} }
/*
* Sync all the data for all the filesystems (called by sys_sync() and static void writeback_inodes_one_sb(struct super_block *sb, void *arg)
* emergency sync)
*/
static void sync_filesystems(int wait)
{ {
iterate_supers(sync_one_sb, &wait); if (!(sb->s_flags & MS_RDONLY))
writeback_inodes_sb(sb, WB_REASON_SYNC);
}
static void sync_fs_one_sb(struct super_block *sb, void *arg)
{
if (!(sb->s_flags & MS_RDONLY) && sb->s_op->sync_fs)
sb->s_op->sync_fs(sb, *(int *)arg);
}
static void sync_blkdev_one_sb(struct super_block *sb, void *arg)
{
if (!(sb->s_flags & MS_RDONLY))
__sync_blockdev(sb->s_bdev, *(int *)arg);
} }
/* /*
...@@ -87,9 +97,15 @@ static void sync_filesystems(int wait) ...@@ -87,9 +97,15 @@ static void sync_filesystems(int wait)
*/ */
SYSCALL_DEFINE0(sync) SYSCALL_DEFINE0(sync)
{ {
int nowait = 0, wait = 1;
wakeup_flusher_threads(0, WB_REASON_SYNC); wakeup_flusher_threads(0, WB_REASON_SYNC);
sync_filesystems(0); iterate_supers(writeback_inodes_one_sb, NULL);
sync_filesystems(1); iterate_supers(sync_fs_one_sb, &nowait);
iterate_supers(sync_blkdev_one_sb, &nowait);
iterate_supers(sync_inodes_one_sb, NULL);
iterate_supers(sync_fs_one_sb, &wait);
iterate_supers(sync_blkdev_one_sb, &wait);
if (unlikely(laptop_mode)) if (unlikely(laptop_mode))
laptop_sync_completion(); laptop_sync_completion();
return 0; return 0;
...@@ -97,12 +113,18 @@ SYSCALL_DEFINE0(sync) ...@@ -97,12 +113,18 @@ SYSCALL_DEFINE0(sync)
static void do_sync_work(struct work_struct *work) static void do_sync_work(struct work_struct *work)
{ {
int nowait = 0;
/* /*
* Sync twice to reduce the possibility we skipped some inodes / pages * Sync twice to reduce the possibility we skipped some inodes / pages
* because they were temporarily locked * because they were temporarily locked
*/ */
sync_filesystems(0); iterate_supers(sync_inodes_one_sb, &nowait);
sync_filesystems(0); iterate_supers(sync_fs_one_sb, &nowait);
iterate_supers(sync_blkdev_one_sb, &nowait);
iterate_supers(sync_inodes_one_sb, &nowait);
iterate_supers(sync_fs_one_sb, &nowait);
iterate_supers(sync_blkdev_one_sb, &nowait);
printk("Emergency Sync complete\n"); printk("Emergency Sync complete\n");
kfree(work); kfree(work);
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment