diff options
author | Fengguang Wu <wfg@mail.ustc.edu.cn> | 2007-10-17 02:30:39 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@woody.linux-foundation.org> | 2007-10-17 11:43:02 -0400 |
commit | 08d8e9749e7f0435ba4683b620e8d30d59276b4c (patch) | |
tree | a973ab68d1f10f02e13f8d536ba0bf2cb8f2ffba /fs | |
parent | 2c1365791048e8aff42138ed5f6040b3c7824a69 (diff) |
writeback: fix ntfs with sb_has_dirty_inodes()
NTFS's if-condition on dirty inodes is not complete. Fix it with
sb_has_dirty_inodes().
Cc: Anton Altaparmakov <aia21@cantab.net>
Cc: Ken Chen <kenchen@google.com>
Signed-off-by: Fengguang Wu <wfg@mail.ustc.edu.cn>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'fs')
-rw-r--r-- | fs/fs-writeback.c | 10 | ||||
-rw-r--r-- | fs/ntfs/super.c | 4 |
2 files changed, 11 insertions, 3 deletions
diff --git a/fs/fs-writeback.c b/fs/fs-writeback.c index 1f22fb5217c0..414df43706c7 100644 --- a/fs/fs-writeback.c +++ b/fs/fs-writeback.c | |||
@@ -199,6 +199,14 @@ static void queue_io(struct super_block *sb, | |||
199 | move_expired_inodes(&sb->s_dirty, &sb->s_io, older_than_this); | 199 | move_expired_inodes(&sb->s_dirty, &sb->s_io, older_than_this); |
200 | } | 200 | } |
201 | 201 | ||
202 | int sb_has_dirty_inodes(struct super_block *sb) | ||
203 | { | ||
204 | return !list_empty(&sb->s_dirty) || | ||
205 | !list_empty(&sb->s_io) || | ||
206 | !list_empty(&sb->s_more_io); | ||
207 | } | ||
208 | EXPORT_SYMBOL(sb_has_dirty_inodes); | ||
209 | |||
202 | /* | 210 | /* |
203 | * Write a single inode's dirty pages and inode data out to disk. | 211 | * Write a single inode's dirty pages and inode data out to disk. |
204 | * If `wait' is set, wait on the writeout. | 212 | * If `wait' is set, wait on the writeout. |
@@ -497,7 +505,7 @@ writeback_inodes(struct writeback_control *wbc) | |||
497 | restart: | 505 | restart: |
498 | sb = sb_entry(super_blocks.prev); | 506 | sb = sb_entry(super_blocks.prev); |
499 | for (; sb != sb_entry(&super_blocks); sb = sb_entry(sb->s_list.prev)) { | 507 | for (; sb != sb_entry(&super_blocks); sb = sb_entry(sb->s_list.prev)) { |
500 | if (!list_empty(&sb->s_dirty) || !list_empty(&sb->s_io)) { | 508 | if (sb_has_dirty_inodes(sb)) { |
501 | /* we're making our own get_super here */ | 509 | /* we're making our own get_super here */ |
502 | sb->s_count++; | 510 | sb->s_count++; |
503 | spin_unlock(&sb_lock); | 511 | spin_unlock(&sb_lock); |
diff --git a/fs/ntfs/super.c b/fs/ntfs/super.c index ad2124573024..3e76f3b216bc 100644 --- a/fs/ntfs/super.c +++ b/fs/ntfs/super.c | |||
@@ -2381,14 +2381,14 @@ static void ntfs_put_super(struct super_block *sb) | |||
2381 | */ | 2381 | */ |
2382 | ntfs_commit_inode(vol->mft_ino); | 2382 | ntfs_commit_inode(vol->mft_ino); |
2383 | write_inode_now(vol->mft_ino, 1); | 2383 | write_inode_now(vol->mft_ino, 1); |
2384 | if (!list_empty(&sb->s_dirty)) { | 2384 | if (sb_has_dirty_inodes(sb)) { |
2385 | const char *s1, *s2; | 2385 | const char *s1, *s2; |
2386 | 2386 | ||
2387 | mutex_lock(&vol->mft_ino->i_mutex); | 2387 | mutex_lock(&vol->mft_ino->i_mutex); |
2388 | truncate_inode_pages(vol->mft_ino->i_mapping, 0); | 2388 | truncate_inode_pages(vol->mft_ino->i_mapping, 0); |
2389 | mutex_unlock(&vol->mft_ino->i_mutex); | 2389 | mutex_unlock(&vol->mft_ino->i_mutex); |
2390 | write_inode_now(vol->mft_ino, 1); | 2390 | write_inode_now(vol->mft_ino, 1); |
2391 | if (!list_empty(&sb->s_dirty)) { | 2391 | if (sb_has_dirty_inodes(sb)) { |
2392 | static const char *_s1 = "inodes"; | 2392 | static const char *_s1 = "inodes"; |
2393 | static const char *_s2 = ""; | 2393 | static const char *_s2 = ""; |
2394 | s1 = _s1; | 2394 | s1 = _s1; |