diff options
Diffstat (limited to 'mm/page-writeback.c')
| -rw-r--r-- | mm/page-writeback.c | 2 | 
1 files changed, 1 insertions, 1 deletions
diff --git a/mm/page-writeback.c b/mm/page-writeback.c index cd4e4ae77c40..02147b61712b 100644 --- a/mm/page-writeback.c +++ b/mm/page-writeback.c @@ -1638,7 +1638,7 @@ static inline void wb_dirty_limits(struct dirty_throttle_control *dtc)  	 */  	dtc->wb_thresh = __wb_calc_thresh(dtc);  	dtc->wb_bg_thresh = dtc->thresh ? -		div_u64((u64)dtc->wb_thresh * dtc->bg_thresh, dtc->thresh) : 0; +		div64_u64(dtc->wb_thresh * dtc->bg_thresh, dtc->thresh) : 0;  	/*  	 * In order to avoid the stacked BDI deadlock we need  | 
