linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
From: "Maciej Żenczykowski" <maze@google.com>
To: George Spelvin <lkml@sdf.org>
Cc: Kernel hackers <linux-kernel@vger.kernel.org>,
	"David S. Miller" <davem@davemloft.net>,
	Alexey Kuznetsov <kuznet@ms2.inr.ac.ru>,
	Hideaki YOSHIFUJI <yoshfuji@linux-ipv6.org>,
	Linux NetDev <netdev@vger.kernel.org>
Subject: Re: [RFC PATCH v1 18/50] net/ipv6/addrconf.c: Use prandom_u32_max for rfc3315 backoff time computation
Date: Sat, 28 Mar 2020 09:56:58 -0700	[thread overview]
Message-ID: <CANP3RGean6M7PuTMXKJrXSdU+2RgzqsoEvnQK5C0RFoXGfFwBA@mail.gmail.com> (raw)
In-Reply-To: <202003281643.02SGhD4n009959@sdf.org>

>         /* multiply 'initial retransmission time' by 0.9 .. 1.1 */
> -       u64 tmp = (900000 + prandom_u32() % 200001) * (u64)irt;
> -       do_div(tmp, 1000000);
> -       return (s32)tmp;
> +       s32 range = irt / 5;
> +       return irt - (s32)(range/2) + (s32)prandom_u32_max(range);

The cast on range/2 looks entirely spurious

>         /* multiply 'retransmission timeout' by 1.9 .. 2.1 */
> -       u64 tmp = (1900000 + prandom_u32() % 200001) * (u64)rt;
> -       do_div(tmp, 1000000);
> -       if ((s32)tmp > mrt) {
> +       s32 range = rt / 5;
> +       s32 tmp = 2*rt - (s32)(range/2) + (s32)prandom_u32_max(range);

Here as well.  Honestly the cast on prandom might also not be
necessary, but that at least has a reason.

> +       if (tmp > mrt) {
>                 /* multiply 'maximum retransmission time' by 0.9 .. 1.1 */
> -               tmp = (900000 + prandom_u32() % 200001) * (u64)mrt;
> -               do_div(tmp, 1000000);
> +               range = mrt / 5;
> +               tmp = mrt - (s32)(range/2) + (s32)prandom_u32_max(range);

Ditto.

>         }
>         return (s32)tmp;
>  }

- Maciej

       reply	other threads:[~2020-03-28 16:57 UTC|newest]

Thread overview: 3+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
     [not found] <202003281643.02SGhD4n009959@sdf.org>
2020-03-28 16:56 ` Maciej Żenczykowski [this message]
2020-03-28 17:37   ` [RFC PATCH v1 18/50] net/ipv6/addrconf.c: Use prandom_u32_max for rfc3315 backoff time computation George Spelvin
2019-08-22  0:30 George Spelvin

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=CANP3RGean6M7PuTMXKJrXSdU+2RgzqsoEvnQK5C0RFoXGfFwBA@mail.gmail.com \
    --to=maze@google.com \
    --cc=davem@davemloft.net \
    --cc=kuznet@ms2.inr.ac.ru \
    --cc=linux-kernel@vger.kernel.org \
    --cc=lkml@sdf.org \
    --cc=netdev@vger.kernel.org \
    --cc=yoshfuji@linux-ipv6.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;
as well as URLs for NNTP newsgroup(s).