linux-mm.kvack.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] bdi: use deferable timer for sync_supers task
@ 2010-10-08  8:35 Yong Wang
  2010-10-08  9:25 ` Christoph Hellwig
  0 siblings, 1 reply; 11+ messages in thread
From: Yong Wang @ 2010-10-08  8:35 UTC (permalink / raw)
  To: Jens Axboe, Christoph Hellwig, Artem Bityutskiy, Wu Fengguang
  Cc: linux-kernel, linux-mm, xia.wu

sync_supers task currently wakes up periodically for superblock
writeback. This hurts power on battery driven devices. This patch
turns this housekeeping timer into a deferable timer so that it
does not fire when system is really idle.

Signed-off-by: Yong Wang <yong.y.wang@intel.com>
Signed-off-by: Xia Wu <xia.wu@intel.com>
---
 mm/backing-dev.c |    4 +++-
 1 files changed, 3 insertions(+), 1 deletions(-)

diff --git a/mm/backing-dev.c b/mm/backing-dev.c
index 65d4204..9a8daa5 100644
--- a/mm/backing-dev.c
+++ b/mm/backing-dev.c
@@ -238,7 +238,9 @@ static int __init default_bdi_init(void)
 	sync_supers_tsk = kthread_run(bdi_sync_supers, NULL, "sync_supers");
 	BUG_ON(IS_ERR(sync_supers_tsk));
 
-	setup_timer(&sync_supers_timer, sync_supers_timer_fn, 0);
+	init_timer_deferrable(&sync_supers_timer);
+	sync_supers_timer.function = sync_supers_timer_fn;
+	sync_supers_timer.data = 0;
 	bdi_arm_supers_timer();
 
 	err = bdi_init(&default_backing_dev_info);
-- 
1.5.5.1

--
To unsubscribe, send a message with 'unsubscribe linux-mm' in
the body to majordomo@kvack.org.  For more info on Linux MM,
see: http://www.linux-mm.org/ .
Don't email: <a href=mailto:"dont@kvack.org"> email@kvack.org </a>

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

end of thread, other threads:[~2010-10-08 14:42 UTC | newest]

Thread overview: 11+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2010-10-08  8:35 [PATCH] bdi: use deferable timer for sync_supers task Yong Wang
2010-10-08  9:25 ` Christoph Hellwig
2010-10-08 10:02   ` Artem Bityutskiy
2010-10-08 10:04   ` Wu, Xia
2010-10-08 10:09     ` Artem Bityutskiy
2010-10-08 10:27       ` Wu, Xia
2010-10-08 10:28         ` Artem Bityutskiy
2010-10-08 10:27           ` Yong Wang
2010-10-08 13:57             ` Wu Fengguang
2010-10-08 14:42               ` Wu Fengguang
2010-10-08 13:59             ` Artem Bityutskiy

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).