public inbox for linux-kernel@vger.kernel.org
 help / color / mirror / Atom feed
* [PATCH] Fix queueing work if !bdi_cap_writeback_dirty()
@ 2012-09-11 18:28 OGAWA Hirofumi
  2012-09-12  2:42 ` Fengguang Wu
  2012-09-13  6:39 ` Fengguang Wu
  0 siblings, 2 replies; 29+ messages in thread
From: OGAWA Hirofumi @ 2012-09-11 18:28 UTC (permalink / raw)
  To: viro; +Cc: jack, hch, fengguang.wu, linux-kernel


If bdi has BDI_CAP_NO_WRITEBACK, bdi_forker_thread() doesn't start
writeback thread. This means there is no consumer of work item made
by bdi_queue_work().

This adds to checking of !bdi_cap_writeback_dirty(sb->s_bdi) before
calling bdi_queue_work(), otherwise queued work never be consumed.

Signed-off-by: OGAWA Hirofumi <hirofumi@mail.parknet.co.jp>
---

 fs/fs-writeback.c |    7 +++++--
 1 file changed, 5 insertions(+), 2 deletions(-)

diff -puN fs/fs-writeback.c~noop_backing_dev_info-check-fix fs/fs-writeback.c
--- linux/fs/fs-writeback.c~noop_backing_dev_info-check-fix	2012-09-11 06:12:30.000000000 +0900
+++ linux-hirofumi/fs/fs-writeback.c	2012-09-11 06:12:30.000000000 +0900
@@ -120,6 +120,9 @@ __bdi_start_writeback(struct backing_dev
 {
 	struct wb_writeback_work *work;
 
+	if (!bdi_cap_writeback_dirty(bdi))
+		return;
+
 	/*
 	 * This is WB_SYNC_NONE writeback, so if allocation fails just
 	 * wakeup the thread for old dirty data writeback
@@ -1310,7 +1313,7 @@ void writeback_inodes_sb_nr(struct super
 		.reason			= reason,
 	};
 
-	if (sb->s_bdi == &noop_backing_dev_info)
+	if (!bdi_cap_writeback_dirty(sb->s_bdi))
 		return;
 	WARN_ON(!rwsem_is_locked(&sb->s_umount));
 	bdi_queue_work(sb->s_bdi, &work);
@@ -1396,7 +1399,7 @@ void sync_inodes_sb(struct super_block *
 	};
 
 	/* Nothing to do? */
-	if (sb->s_bdi == &noop_backing_dev_info)
+	if (!bdi_cap_writeback_dirty(sb->s_bdi))
 		return;
 	WARN_ON(!rwsem_is_locked(&sb->s_umount));
 
_

-- 
OGAWA Hirofumi <hirofumi@mail.parknet.co.jp>

^ permalink raw reply	[flat|nested] 29+ messages in thread

end of thread, other threads:[~2012-09-17 16:55 UTC | newest]

Thread overview: 29+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2012-09-11 18:28 [PATCH] Fix queueing work if !bdi_cap_writeback_dirty() OGAWA Hirofumi
2012-09-12  2:42 ` Fengguang Wu
2012-09-12  8:00   ` OGAWA Hirofumi
2012-09-13  0:33     ` Fengguang Wu
2012-09-13  5:41       ` OGAWA Hirofumi
2012-09-13  6:03         ` Fengguang Wu
2012-09-13  6:31           ` OGAWA Hirofumi
2012-09-13  6:39 ` Fengguang Wu
2012-09-13  7:53   ` OGAWA Hirofumi
2012-09-14 11:13     ` OGAWA Hirofumi
2012-09-14 11:18       ` Fengguang Wu
2012-09-14 11:14     ` Fengguang Wu
2012-09-14 12:12       ` OGAWA Hirofumi
2012-09-14 12:53         ` Fengguang Wu
2012-09-14 13:07           ` OGAWA Hirofumi
2012-09-14 13:33             ` Fengguang Wu
2012-09-14 13:49               ` OGAWA Hirofumi
2012-09-14 13:19         ` Jan Kara
2012-09-14 13:44           ` OGAWA Hirofumi
2012-09-14 14:45             ` Jan Kara
2012-09-14 15:10               ` OGAWA Hirofumi
2012-09-16 21:49                 ` Jan Kara
2012-09-16 23:24                   ` OGAWA Hirofumi
2012-09-17  8:48                     ` Jan Kara
2012-09-17  9:39                       ` OGAWA Hirofumi
2012-09-17  9:56                         ` Jan Kara
2012-09-17 10:37                           ` OGAWA Hirofumi
2012-09-17 15:54                             ` Jan Kara
2012-09-17 16:55                               ` OGAWA Hirofumi

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox