|
@@ -199,6 +199,14 @@ static void queue_io(struct super_block *sb,
|
|
move_expired_inodes(&sb->s_dirty, &sb->s_io, older_than_this);
|
|
move_expired_inodes(&sb->s_dirty, &sb->s_io, older_than_this);
|
|
}
|
|
}
|
|
|
|
|
|
|
|
+int sb_has_dirty_inodes(struct super_block *sb)
|
|
|
|
+{
|
|
|
|
+ return !list_empty(&sb->s_dirty) ||
|
|
|
|
+ !list_empty(&sb->s_io) ||
|
|
|
|
+ !list_empty(&sb->s_more_io);
|
|
|
|
+}
|
|
|
|
+EXPORT_SYMBOL(sb_has_dirty_inodes);
|
|
|
|
+
|
|
/*
|
|
/*
|
|
* Write a single inode's dirty pages and inode data out to disk.
|
|
* Write a single inode's dirty pages and inode data out to disk.
|
|
* If `wait' is set, wait on the writeout.
|
|
* If `wait' is set, wait on the writeout.
|
|
@@ -497,7 +505,7 @@ writeback_inodes(struct writeback_control *wbc)
|
|
restart:
|
|
restart:
|
|
sb = sb_entry(super_blocks.prev);
|
|
sb = sb_entry(super_blocks.prev);
|
|
for (; sb != sb_entry(&super_blocks); sb = sb_entry(sb->s_list.prev)) {
|
|
for (; sb != sb_entry(&super_blocks); sb = sb_entry(sb->s_list.prev)) {
|
|
- if (!list_empty(&sb->s_dirty) || !list_empty(&sb->s_io)) {
|
|
|
|
|
|
+ if (sb_has_dirty_inodes(sb)) {
|
|
/* we're making our own get_super here */
|
|
/* we're making our own get_super here */
|
|
sb->s_count++;
|
|
sb->s_count++;
|
|
spin_unlock(&sb_lock);
|
|
spin_unlock(&sb_lock);
|