aboutsummaryrefslogtreecommitdiffstats
path: root/mm
diff options
context:
space:
mode:
Diffstat (limited to 'mm')
-rw-r--r--mm/page-writeback.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/mm/page-writeback.c b/mm/page-writeback.c
index e79107991d20..c1052ee79f01 100644
--- a/mm/page-writeback.c
+++ b/mm/page-writeback.c
@@ -88,7 +88,8 @@ int dirty_expire_interval = 30 * HZ;
88int block_dump; 88int block_dump;
89 89
90/* 90/*
91 * Flag that puts the machine in "laptop mode". 91 * Flag that puts the machine in "laptop mode". Doubles as a timeout in jiffies:
92 * a full sync is triggered after this time elapses without any disk activity.
92 */ 93 */
93int laptop_mode; 94int laptop_mode;
94 95
@@ -468,7 +469,7 @@ static void laptop_timer_fn(unsigned long unused)
468 */ 469 */
469void laptop_io_completion(void) 470void laptop_io_completion(void)
470{ 471{
471 mod_timer(&laptop_mode_wb_timer, jiffies + laptop_mode * HZ); 472 mod_timer(&laptop_mode_wb_timer, jiffies + laptop_mode);
472} 473}
473 474
474/* 475/*