aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--include/linux/backing-dev-defs.h2
-rw-r--r--mm/backing-dev.c1
-rw-r--r--mm/page-writeback.c1
3 files changed, 4 insertions, 0 deletions
diff --git a/include/linux/backing-dev-defs.h b/include/linux/backing-dev-defs.h
index c357f27d5483..dc5f76d7f648 100644
--- a/include/linux/backing-dev-defs.h
+++ b/include/linux/backing-dev-defs.h
@@ -116,6 +116,8 @@ struct bdi_writeback {
116 struct list_head work_list; 116 struct list_head work_list;
117 struct delayed_work dwork; /* work item used for writeback */ 117 struct delayed_work dwork; /* work item used for writeback */
118 118
119 unsigned long dirty_sleep; /* last wait */
120
119 struct list_head bdi_node; /* anchored at bdi->wb_list */ 121 struct list_head bdi_node; /* anchored at bdi->wb_list */
120 122
121#ifdef CONFIG_CGROUP_WRITEBACK 123#ifdef CONFIG_CGROUP_WRITEBACK
diff --git a/mm/backing-dev.c b/mm/backing-dev.c
index 8fde443f36d7..3bfed5ab2475 100644
--- a/mm/backing-dev.c
+++ b/mm/backing-dev.c
@@ -310,6 +310,7 @@ static int wb_init(struct bdi_writeback *wb, struct backing_dev_info *bdi,
310 spin_lock_init(&wb->work_lock); 310 spin_lock_init(&wb->work_lock);
311 INIT_LIST_HEAD(&wb->work_list); 311 INIT_LIST_HEAD(&wb->work_list);
312 INIT_DELAYED_WORK(&wb->dwork, wb_workfn); 312 INIT_DELAYED_WORK(&wb->dwork, wb_workfn);
313 wb->dirty_sleep = jiffies;
313 314
314 wb->congested = wb_congested_get_create(bdi, blkcg_id, gfp); 315 wb->congested = wb_congested_get_create(bdi, blkcg_id, gfp);
315 if (!wb->congested) 316 if (!wb->congested)
diff --git a/mm/page-writeback.c b/mm/page-writeback.c
index 439cc63ad903..52e2f8e3b472 100644
--- a/mm/page-writeback.c
+++ b/mm/page-writeback.c
@@ -1778,6 +1778,7 @@ pause:
1778 pause, 1778 pause,
1779 start_time); 1779 start_time);
1780 __set_current_state(TASK_KILLABLE); 1780 __set_current_state(TASK_KILLABLE);
1781 wb->dirty_sleep = now;
1781 io_schedule_timeout(pause); 1782 io_schedule_timeout(pause);
1782 1783
1783 current->dirty_paused_when = now + pause; 1784 current->dirty_paused_when = now + pause;