summaryrefslogtreecommitdiffstats
path: root/mm
diff options
context:
space:
mode:
authorJens Axboe <axboe@kernel.dk>2017-09-28 11:25:03 -0600
committerJens Axboe <axboe@kernel.dk>2017-10-03 08:38:17 -0600
commit47410d88f665486bf91f02242ab5d5692b8887ac (patch)
tree84153b60c0c2cf1b363c41a4dc4934509ec7c975 /mm
parentd31cd9d326f216fca9a602dddac254f668f5dcd6 (diff)
downloadlinux-0-day-47410d88f665486bf91f02242ab5d5692b8887ac.tar.gz
linux-0-day-47410d88f665486bf91f02242ab5d5692b8887ac.tar.xz
writeback: remove 'range_cyclic' argument for wb_start_writeback()
All the callers pass in 'true' for range_cyclic, so kill the argument. Signed-off-by: Jens Axboe <axboe@kernel.dk>
Diffstat (limited to 'mm')
-rw-r--r--mm/page-writeback.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/mm/page-writeback.c b/mm/page-writeback.c
index 0b9c5cbe8eba0..dede533551232 100644
--- a/mm/page-writeback.c
+++ b/mm/page-writeback.c
@@ -1994,8 +1994,8 @@ void laptop_mode_timer_fn(unsigned long data)
rcu_read_lock();
list_for_each_entry_rcu(wb, &q->backing_dev_info->wb_list, bdi_node)
if (wb_has_dirty_io(wb))
- wb_start_writeback(wb, nr_pages, true,
- WB_REASON_LAPTOP_TIMER);
+ wb_start_writeback(wb, nr_pages,
+ WB_REASON_LAPTOP_TIMER);
rcu_read_unlock();
}