Re: [PATCH v4.19-rc7] treewide: Replace more open-coded allocation size multiplications

From: Greg KH
Date: Fri Oct 05 2018 - 19:51:41 EST


On Fri, Oct 05, 2018 at 04:35:59PM -0700, Kees Cook wrote:
> As done treewide earlier, this catches several more open-coded
> allocation size calculations that were added to the kernel during the
> merge window. This performs the following mechanical transformations
> using Coccinelle:
>
> kvmalloc(a * b, ...) -> kvmalloc_array(a, b, ...)
> kvzalloc(a * b, ...) -> kvcalloc(a, b, ...)
> devm_kzalloc(..., a * b, ...) -> devm_kcalloc(..., a, b, ...)
>
> Signed-off-by: Kees Cook <keescook@xxxxxxxxxxxx>

Has this had any testing in linux-next?

And when was "earlier"?

thanks,

greg k-h