lists.openwall.net   lists  /  announce  owl-users  owl-dev  john-users  john-dev  passwdqc-users  yescrypt  popa3d-users  /  oss-security  kernel-hardening  musl  sabotage  tlsify  passwords  /  crypt-dev  xvendor  /  Bugtraq  Full-Disclosure  linux-kernel  linux-netdev  linux-ext4  linux-hardening  linux-cve-announce  PHC 
Open Source and information security mailing list archives
 
Hash Suite: Windows password security audit tool. GUI, reports in PDF.
[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Date:   Fri, 3 Jan 2020 00:00:23 -0800
From:   Justin Capella <justincapella@...il.com>
To:     Wen Yang <wenyang@...ux.alibaba.com>
Cc:     Steven Rostedt <rostedt@...dmis.org>,
        Ingo Molnar <mingo@...hat.com>, xlpang@...ux.alibaba.com,
        LKML <linux-kernel@...r.kernel.org>
Subject: Re: [PATCH v2] ftrace: avoid potential division by zero

> -               do_div(stddev, rec->counter * (rec->counter - 1) * 1000);
>
> +               stddev = div64_ul(stddev,
> +                                 rec->counter * (rec->counter - 1) * 1000);


Is a rec->counter > 1 assertion needed here?

Powered by blists - more mailing lists

Powered by Openwall GNU/*/Linux Powered by OpenVZ