From: Jan Kara <jack@suse.cz>
To: Tejun Heo <tj@kernel.org>
Cc: Jens Axboe <axboe@kernel.dk>, Jan Kara <jack@suse.cz>,
linux-kernel@vger.kernel.org,
Fengguang Wu <fengguang.wu@intel.com>
Subject: Re: [PATCH block/for-4.1-fixes] writeback: use |1 instead of +1 to protect against div by zero
Date: Wed, 22 Apr 2015 12:58:45 +0200 [thread overview]
Message-ID: <20150422105845.GA11059@quack.suse.cz> (raw)
In-Reply-To: <20150421204913.GE9455@htj.duckdns.org>
On Tue 21-04-15 16:49:13, Tejun Heo wrote:
> mm/page-writeback.c has several places where 1 is added to the divisor
> to prevent division by zero exceptions; however, if the original
> divisor is equivalent to -1, adding 1 leads to division by zero.
>
> There are three places where +1 is used for this purpose - one in
> pos_ratio_polynom() and two in bdi_position_ratio(). The second one
> in bdi_position_ratio() actually triggered div-by-zero oops on a
> machine running a 3.10 kernel. The divisor is
>
> x_intercept - bdi_setpoint + 1 == span + 1
>
> span is confirmed to be (u32)-1. It isn't clear how it ended up that
> but it could be from write bandwidth calculation underflow fixed by
> c72efb658f7c ("writeback: fix possible underflow in write bandwidth
> calculation").
>
> At any rate, +1 isn't a proper protection against div-by-zero. This
> patch converts all +1 protections to |1. Note that
> bdi_update_dirty_ratelimit() was already using |1 before this patch.
So IMHO the only proper protection against division by zero is
if (unlikely(divisor == 0))
return some_value;
else
do division
But we took a shortcut with +1 or |1 in those calculations since that
should be OK given the *expected* numbers we deal with. Once numbers get
out of expected range, both shortcuts have issues, just different ones
(sure you avoid division by zero with |1 but the absurd values you'll be
getting will have interesting effect on the system anyway). So I'm OK with
changing +1 to |1 to avoid oops and make code consistent, I just wanted to
comment on the fact that the change is for avoiding oops, not about getting
better values.
Otherwise feel free to add:
Reviewed-by: Jan Kara <jack@suse.cz>
Honza
> diff --git a/mm/page-writeback.c b/mm/page-writeback.c
> index 5daf556..eb59f7e 100644
> --- a/mm/page-writeback.c
> +++ b/mm/page-writeback.c
> @@ -580,7 +580,7 @@ static long long pos_ratio_polynom(unsigned long setpoint,
> long x;
>
> x = div64_s64(((s64)setpoint - (s64)dirty) << RATELIMIT_CALC_SHIFT,
> - limit - setpoint + 1);
> + (limit - setpoint) | 1);
> pos_ratio = x;
> pos_ratio = pos_ratio * x >> RATELIMIT_CALC_SHIFT;
> pos_ratio = pos_ratio * x >> RATELIMIT_CALC_SHIFT;
> @@ -807,7 +807,7 @@ static unsigned long bdi_position_ratio(struct backing_dev_info *bdi,
> * scale global setpoint to bdi's:
> * bdi_setpoint = setpoint * bdi_thresh / thresh
> */
> - x = div_u64((u64)bdi_thresh << 16, thresh + 1);
> + x = div_u64((u64)bdi_thresh << 16, thresh | 1);
> bdi_setpoint = setpoint * (u64)x >> 16;
> /*
> * Use span=(8*write_bw) in single bdi case as indicated by
> @@ -822,7 +822,7 @@ static unsigned long bdi_position_ratio(struct backing_dev_info *bdi,
>
> if (bdi_dirty < x_intercept - span / 4) {
> pos_ratio = div64_u64(pos_ratio * (x_intercept - bdi_dirty),
> - x_intercept - bdi_setpoint + 1);
> + (x_intercept - bdi_setpoint) | 1);
> } else
> pos_ratio /= 4;
>
--
Jan Kara <jack@suse.cz>
SUSE Labs, CR
next prev parent reply other threads:[~2015-04-22 10:58 UTC|newest]
Thread overview: 3+ messages / expand[flat|nested] mbox.gz Atom feed top
2015-04-21 20:49 Tejun Heo
2015-04-22 10:58 ` Jan Kara [this message]
2015-04-23 16:37 ` Jens Axboe
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20150422105845.GA11059@quack.suse.cz \
--to=jack@suse.cz \
--cc=axboe@kernel.dk \
--cc=fengguang.wu@intel.com \
--cc=linux-kernel@vger.kernel.org \
--cc=tj@kernel.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox
Powered by JetHome