[<prev] [next>] [<thread-prev] [day] [month] [year] [list]
Message-ID: <164744454291.16413.16962718539524275233.kvalo@kernel.org>
Date: Wed, 16 Mar 2022 15:29:04 +0000 (UTC)
From: Kalle Valo <kvalo@...nel.org>
To: Julia Lawall <Julia.Lawall@...ia.fr>
Cc: kernel-janitors@...r.kernel.org,
"David S. Miller" <davem@...emloft.net>,
Jakub Kicinski <kuba@...nel.org>,
linux-wireless@...r.kernel.org, netdev@...r.kernel.org,
linux-kernel@...r.kernel.org
Subject: Re: [PATCH 5/6] zd1201: use kzalloc
Julia Lawall <Julia.Lawall@...ia.fr> wrote:
> Use kzalloc instead of kmalloc + memset.
>
> The semantic patch that makes this change is:
> (https://coccinelle.gitlabpages.inria.fr/website/)
>
> //<smpl>
> @@
> expression res, size, flag;
> @@
> - res = kmalloc(size, flag);
> + res = kzalloc(size, flag);
> ...
> - memset(res, 0, size);
> //</smpl>
>
> Signed-off-by: Julia Lawall <Julia.Lawall@...ia.fr>
Patch applied to wireless-next.git, thanks.
3c0e3ca6028b zd1201: use kzalloc
--
https://patchwork.kernel.org/project/linux-wireless/patch/20220312102705.71413-6-Julia.Lawall@inria.fr/
https://wireless.wiki.kernel.org/en/developers/documentation/submittingpatches
Powered by blists - more mailing lists