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 for Android: free password hash cracker in your pocket
[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Date:   Fri, 17 Nov 2017 17:59:06 +0200
From:   Andy Shevchenko <andy.shevchenko@...il.com>
To:     Vasyl Gomonovych <gomonovych@...il.com>
Cc:     "David S. Miller" <davem@...emloft.net>,
        "Elior, Ariel" <Ariel.Elior@...ium.com>,
        everest-linux-l2@...ium.com, netdev <netdev@...r.kernel.org>,
        "linux-kernel@...r.kernel.org" <linux-kernel@...r.kernel.org>
Subject: Re: [PATCH] qed: fix unnecessary call to memset cocci warnings

On Fri, Nov 17, 2017 at 12:04 AM, Vasyl Gomonovych <gomonovych@...il.com> wrote:
> Use kzalloc rather than kmalloc followed by memset with 0
>
> drivers/net/ethernet/qlogic/qed/qed_dcbx.c:1280:13-20: WARNING:
> kzalloc should be used for dcbx_info, instead of kmalloc/memset
> Generated by: scripts/coccinelle/api/alloc/kzalloc-simple.cocci

While this looks okay per se now, it would be good if you put version
of the patch and add a changelog to it.

I think no need to resend this one, just for your information.

Reviewed-by: Andy Shevchenko <andy.shevchenko@...il.com>

> Signed-off-by: Vasyl Gomonovych <gomonovych@...il.com>
> ---
>  drivers/net/ethernet/qlogic/qed/qed_dcbx.c | 3 +--
>  1 file changed, 1 insertion(+), 2 deletions(-)
>
> diff --git a/drivers/net/ethernet/qlogic/qed/qed_dcbx.c b/drivers/net/ethernet/qlogic/qed/qed_dcbx.c
> index 8f6ccc0c39e5..cc9e0dfcee48 100644
> --- a/drivers/net/ethernet/qlogic/qed/qed_dcbx.c
> +++ b/drivers/net/ethernet/qlogic/qed/qed_dcbx.c
> @@ -1277,11 +1277,10 @@ static struct qed_dcbx_get *qed_dcbnl_get_dcbx(struct qed_hwfn *hwfn,
>  {
>         struct qed_dcbx_get *dcbx_info;
>
> -       dcbx_info = kmalloc(sizeof(*dcbx_info), GFP_ATOMIC);
> +       dcbx_info = kzalloc(sizeof(*dcbx_info), GFP_ATOMIC);
>         if (!dcbx_info)
>                 return NULL;
>
> -       memset(dcbx_info, 0, sizeof(*dcbx_info));
>         if (qed_dcbx_query_params(hwfn, dcbx_info, type)) {
>                 kfree(dcbx_info);
>                 return NULL;
> --
> 1.9.1
>



-- 
With Best Regards,
Andy Shevchenko

Powered by blists - more mailing lists

Powered by Openwall GNU/*/Linux Powered by OpenVZ