Message ID | 20210418044101.26730-1-xiyou.wangcong@gmail.com (mailing list archive) |
---|---|
State | New, archived |
Headers | show |
Series | blk-wbt: fix a divide-by-zero error in rwb_arm_timer() | expand |
On Sat, Apr 17, 2021 at 9:41 PM Cong Wang <xiyou.wangcong@gmail.com> wrote: > > From: Cong Wang <cong.wang@bytedance.com> > > We hit a divide error in rwb_arm_timer() and crash dump shows > rqd->scale_step is 16777215 (0xffffff in hex), so the expression > "(rqd->scale_step + 1) << 8)" is 0x100000000, which is just beyond > 32-bit integer range, hence it is truncated to 0 and int_sqrt(0) > returns 0 too, so we end up passing 0 as a divisor to div_u64(). > Never mind. rqd->scale_step should be capped by rq_depth_scale_down(), so should never be so large. In the old calc_wb_limits() implementation, rwb->wb_max was set to zero accidentally. Thanks.
diff --git a/block/blk-wbt.c b/block/blk-wbt.c index 42aed0160f86..5157ca86574f 100644 --- a/block/blk-wbt.c +++ b/block/blk-wbt.c @@ -337,7 +337,7 @@ static void rwb_arm_timer(struct rq_wb *rwb) * though. */ rwb->cur_win_nsec = div_u64(rwb->win_nsec << 4, - int_sqrt((rqd->scale_step + 1) << 8)); + int_sqrt64((u64)(rqd->scale_step + 1) << 8)); } else { /* * For step < 0, we don't want to increase/decrease the