public inbox for linux-kernel@vger.kernel.org
 help / color / mirror / Atom feed
* [PATCH] writeback: avoid race when update bandwidth
@ 2012-06-12 10:26 Wanpeng Li
  2012-06-12 11:21 ` Fengguang Wu
  0 siblings, 1 reply; 8+ messages in thread
From: Wanpeng Li @ 2012-06-12 10:26 UTC (permalink / raw)
  To: Fengguang Wu; +Cc: linux-kernel, Gavin Shan, Wanpeng Li, Wanpeng Li

From: Wanpeng Li <liwp@linux.vnet.ibm.com>

Since bdi->wb.list_lock is used to protect the b_* lists,
so the flushers who call wb_writeback to writeback pages will
stuck when bandwidth update policy holds this lock. In order
to avoid this race we can introduce a new bandwidth_lock who
is responsible for protecting bandwidth update policy.

Signed-off-by: Wanpeng Li <liswp@linux.vnet.ibm.com>
---
 mm/page-writeback.c |    6 ++++--
 1 file changed, 4 insertions(+), 2 deletions(-)

diff --git a/mm/page-writeback.c b/mm/page-writeback.c
index c8945e0..b3b08fb 100644
--- a/mm/page-writeback.c
+++ b/mm/page-writeback.c
@@ -1032,12 +1032,14 @@ static void bdi_update_bandwidth(struct backing_dev_info *bdi,
 				 unsigned long bdi_dirty,
 				 unsigned long start_time)
 {
+	static DEFINE_SPINLOCK(bandwidth_lock);
+
 	if (time_is_after_eq_jiffies(bdi->bw_time_stamp + BANDWIDTH_INTERVAL))
 		return;
-	spin_lock(&bdi->wb.list_lock);
+	spin_lock(&bandwidth_lock);
 	__bdi_update_bandwidth(bdi, thresh, bg_thresh, dirty,
 			       bdi_thresh, bdi_dirty, start_time);
-	spin_unlock(&bdi->wb.list_lock);
+	spin_unlock(&bandwidth_lock);
 }
 
 /*
-- 
1.7.9.5


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

end of thread, other threads:[~2012-06-14 13:48 UTC | newest]

Thread overview: 8+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2012-06-12 10:26 [PATCH] writeback: avoid race when update bandwidth Wanpeng Li
2012-06-12 11:21 ` Fengguang Wu
2012-06-12 11:29   ` Wanpeng Li
2012-06-12 11:33     ` Fengguang Wu
2012-06-13  3:56   ` Dave Chinner
2012-06-13  4:21     ` Fengguang Wu
2012-06-14  1:36       ` Dave Chinner
2012-06-14 13:48         ` Fengguang Wu

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