[PATCH 20/47] writeback: use do_div in bw calculation

From: Wu Fengguang
Date: Mon Dec 13 2010 - 01:49:57 EST


cc: Peter Zijlstra <a.p.zijlstra@xxxxxxxxx>
Signed-off-by: Wu Fengguang <fengguang.wu@xxxxxxxxx>
---
mm/page-writeback.c | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)

--- linux-next.orig/mm/page-writeback.c 2010-12-08 22:44:28.000000000 +0800
+++ linux-next/mm/page-writeback.c 2010-12-08 22:44:28.000000000 +0800
@@ -658,10 +658,10 @@ static void balance_dirty_pages(struct a
*/
bw = bdi->write_bandwidth;
bw = bw * (bdi_thresh - bdi_dirty);
- bw = bw / (bdi_thresh / BDI_SOFT_DIRTY_LIMIT + 1);
+ do_div(bw, bdi_thresh / BDI_SOFT_DIRTY_LIMIT + 1);

bw = bw * (task_thresh - bdi_dirty);
- bw = bw / (bdi_thresh / TASK_SOFT_DIRTY_LIMIT + 1);
+ do_div(bw, bdi_thresh / TASK_SOFT_DIRTY_LIMIT + 1);

pause = HZ * (pages_dirtied << PAGE_CACHE_SHIFT) / (bw + 1);
pause = clamp_val(pause, 1, HZ/10);


--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@xxxxxxxxxxxxxxx
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/