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] [day] [month] [year] [list]
Message-ID: <20230614-passcode-stimulate-70eecb6d81d2@spud>
Date:   Wed, 14 Jun 2023 15:33:33 +0100
From:   Conor Dooley <conor@...nel.org>
To:     Wang Ming <machel@...o.com>
Cc:     Greg Kroah-Hartman <gregkh@...uxfoundation.org>,
        "Rafael J. Wysocki" <rafael@...nel.org>,
        linux-kernel@...r.kernel.org, opensource.kernel@...o.com
Subject: Re: [PATCH v1] drivers:base:Fix unsigned compared with less than zero

Hey,

On Wed, Jun 14, 2023 at 09:35:36PM +0800, Wang Ming wrote:
> The return value of the of_count_cache_leaves() is long.
> However, the return value is being assigned to an unsigned
> long variable 'leaves',so making 'leaves' to long.

But you actually made it an int?

> silence the warning:
> ./drivers/base/cacheinfo.c:300:5-11: WARNING: Unsigned expression
> compared with zero: leaves > 0

I'm dumb, why is comparing an unsigned value with zero a problem in and
of itself? Zero is a valid value for an unsigned type, no?

If you actually look at the function, it only returns positive, non-zero
values anyway, so returning an int is a bit pointless, as are the
checks, no?

> 
> Signed-off-by: Wang Ming <machel@...o.com>
> ---
>  drivers/base/cacheinfo.c | 3 ++-
>  1 file changed, 2 insertions(+), 1 deletion(-)
> 
> diff --git a/drivers/base/cacheinfo.c b/drivers/base/cacheinfo.c
> index cbae8be1f..7280d5cb3 100644
> --- a/drivers/base/cacheinfo.c
> +++ b/drivers/base/cacheinfo.c
> @@ -289,7 +289,8 @@ int init_of_cache_level(unsigned int cpu)
>         struct cpu_cacheinfo *this_cpu_ci = get_cpu_cacheinfo(cpu);
>         struct device_node *np = of_cpu_device_node_get(cpu);
>         struct device_node *prev = NULL;
> -       unsigned int levels = 0, leaves, level;
> +       unsigned int levels = 0, level;
> +       int leaves;
> 
>         if (!of_check_cache_nodes(np)) {
>                 of_node_put(np);
> --
> 2.25.1
> 
> 
> ________________________________
> 本邮件及其附件内容可能含有机密和/或隐私信息,仅供指定个人或机构使用。若您非发件人指定收件人或其代理人,请勿使用、传播、复制或存储此邮件之任何内容或其附件。如您误收本邮件,请即以回复或电话方式通知发件人,并将原始邮件、附件及其所有复本删除。谢谢。
> The contents of this message and any attachments may contain confidential and/or privileged information and are intended exclusively for the addressee(s). If you are not the intended recipient of this message or their agent, please note that any use, dissemination, copying, or storage of this message or its attachments is not allowed. If you receive this message in error, please notify the sender by reply the message or phone and delete this message, any attachments and any copies immediately.
^^^
Gotta sort this out chief, I should probably be deleting this, not
replying to it...

Download attachment "signature.asc" of type "application/pgp-signature" (229 bytes)

Powered by blists - more mailing lists

Powered by Openwall GNU/*/Linux Powered by OpenVZ