diff options
author | Nick Piggin <npiggin@suse.de> | 2009-01-06 17:40:26 -0500 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2009-01-06 18:59:09 -0500 |
commit | 856bf4d717feb8c55d4e2f817b71ebb70cfbc67b (patch) | |
tree | f44790d9b8f42223955d1866645103ac5f9c68a3 /fs/fs-writeback.c | |
parent | 38f21977663126fef53f5585e7f1653d8ebe55c4 (diff) |
fs: sys_sync fix
s_syncing livelock avoidance was breaking data integrity guarantee of
sys_sync, by allowing sys_sync to skip writing or waiting for superblocks
if there is a concurrent sys_sync happening.
This livelock avoidance is much less important now that we don't have the
get_super_to_sync() call after every sb that we sync. This was replaced
by __put_super_and_need_restart.
Signed-off-by: Nick Piggin <npiggin@suse.de>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'fs/fs-writeback.c')
-rw-r--r-- | fs/fs-writeback.c | 20 |
1 files changed, 1 insertions, 19 deletions
diff --git a/fs/fs-writeback.c b/fs/fs-writeback.c index a9ee474f9691..e5eaa62fd17f 100644 --- a/fs/fs-writeback.c +++ b/fs/fs-writeback.c | |||
@@ -652,18 +652,6 @@ void sync_inodes_sb(struct super_block *sb, int wait) | |||
652 | sync_sb_inodes(sb, &wbc); | 652 | sync_sb_inodes(sb, &wbc); |
653 | } | 653 | } |
654 | 654 | ||
655 | /* | ||
656 | * Rather lame livelock avoidance. | ||
657 | */ | ||
658 | static void set_sb_syncing(int val) | ||
659 | { | ||
660 | struct super_block *sb; | ||
661 | spin_lock(&sb_lock); | ||
662 | list_for_each_entry_reverse(sb, &super_blocks, s_list) | ||
663 | sb->s_syncing = val; | ||
664 | spin_unlock(&sb_lock); | ||
665 | } | ||
666 | |||
667 | /** | 655 | /** |
668 | * sync_inodes - writes all inodes to disk | 656 | * sync_inodes - writes all inodes to disk |
669 | * @wait: wait for completion | 657 | * @wait: wait for completion |
@@ -690,9 +678,6 @@ static void __sync_inodes(int wait) | |||
690 | spin_lock(&sb_lock); | 678 | spin_lock(&sb_lock); |
691 | restart: | 679 | restart: |
692 | list_for_each_entry(sb, &super_blocks, s_list) { | 680 | list_for_each_entry(sb, &super_blocks, s_list) { |
693 | if (sb->s_syncing) | ||
694 | continue; | ||
695 | sb->s_syncing = 1; | ||
696 | sb->s_count++; | 681 | sb->s_count++; |
697 | spin_unlock(&sb_lock); | 682 | spin_unlock(&sb_lock); |
698 | down_read(&sb->s_umount); | 683 | down_read(&sb->s_umount); |
@@ -710,13 +695,10 @@ restart: | |||
710 | 695 | ||
711 | void sync_inodes(int wait) | 696 | void sync_inodes(int wait) |
712 | { | 697 | { |
713 | set_sb_syncing(0); | ||
714 | __sync_inodes(0); | 698 | __sync_inodes(0); |
715 | 699 | ||
716 | if (wait) { | 700 | if (wait) |
717 | set_sb_syncing(0); | ||
718 | __sync_inodes(1); | 701 | __sync_inodes(1); |
719 | } | ||
720 | } | 702 | } |
721 | 703 | ||
722 | /** | 704 | /** |