Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]


Groups > linux.kernel > #1296579

Re: [PATCH] wlcore: consolidate kmalloc + memset 0 into kzalloc

From Souptick Joarder <jrdr.linux@gmail.com>
Newsgroups linux.kernel
Subject Re: [PATCH] wlcore: consolidate kmalloc + memset 0 into kzalloc
Date 2015-12-22 08:10 +0100
Message-ID <qIpf3-Md-1@gated-at.bofh.it> (permalink)
References <qIbYv-zb-15@gated-at.bofh.it>
Organization linux.* mail to news gateway

Show all headers | View raw


On Mon, Dec 21, 2015 at 10:17 PM, Nicholas Mc Guire <hofrat@osadl.org> wrote:
> This is an API consolidation only. The use of kmalloc + memset to 0
> is equivalent to kzalloc.
>
> Signed-off-by: Nicholas Mc Guire <hofrat@osadl.org>
> ---
>
> Found by coccinelle script (relaxed version of
> scripts/coccinelle/api/alloc/kzalloc-simple.cocci)
>
> Patch was compile tested with: x86_64_defconfig +
> CONFIG_WL12XX=m (implies CONFIG_WLCORE=m)
>
> Patch is against linux-next (localversion-next is -next-20151221)
>
>  drivers/net/wireless/ti/wlcore/main.c | 3 +--
>  1 file changed, 1 insertion(+), 2 deletions(-)
>
> diff --git a/drivers/net/wireless/ti/wlcore/main.c b/drivers/net/wireless/ti/wlcore/main.c
> index ec7f6af..dfc49bf 100644
> --- a/drivers/net/wireless/ti/wlcore/main.c
> +++ b/drivers/net/wireless/ti/wlcore/main.c
> @@ -838,7 +838,7 @@ static void wl12xx_read_fwlog_panic(struct wl1271 *wl)
>
>         wl1271_info("Reading FW panic log");
>
> -       block = kmalloc(wl->fw_mem_block_size, GFP_KERNEL);
> +       block = kzalloc(wl->fw_mem_block_size, GFP_KERNEL);
>         if (!block)
>                 return;
>
> @@ -885,7 +885,6 @@ static void wl12xx_read_fwlog_panic(struct wl1271 *wl)
>                         goto out;
>                 }
>
> -               memset(block, 0, wl->fw_mem_block_size);

Current code is reseting the block value to 0 in each iterations and
perform some operations.
But if you are using kzalloc as mentioned above it will memset 0 to
block pointer only once.
So both are not equivalent operations.

>                 ret = wlcore_read_hwaddr(wl, addr, block,
>                                         wl->fw_mem_block_size, false);
>
> --
> 2.1.4
>
> --
> To unsubscribe from this list: send the line "unsubscribe linux-wireless" in
> the body of a message to majordomo@vger.kernel.org
> More majordomo info at  http://vger.kernel.org/majordomo-info.html

-Souptick
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Please read the FAQ at  http://www.tux.org/lkml/

Back to linux.kernel | Previous | NextPrevious in thread | Find similar | Unroll thread


Thread

[PATCH] wlcore: consolidate kmalloc + memset 0 into kzalloc Nicholas Mc Guire <hofrat@osadl.org> - 2015-12-21 18:00 +0100
  Re: [PATCH] wlcore: consolidate kmalloc + memset 0 into kzalloc Julian Calaby <julian.calaby@gmail.com> - 2015-12-22 00:00 +0100
    Re: [PATCH] wlcore: consolidate kmalloc + memset 0 into kzalloc Nicholas Mc Guire <der.herr@hofr.at> - 2015-12-22 08:40 +0100
      Re: [PATCH] wlcore: consolidate kmalloc + memset 0 into kzalloc Julian Calaby <julian.calaby@gmail.com> - 2015-12-22 09:00 +0100
  Re: [PATCH] wlcore: consolidate kmalloc + memset 0 into kzalloc Souptick Joarder <jrdr.linux@gmail.com> - 2015-12-22 08:10 +0100

csiph-web