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 <keesc...@chromium.org>

Has this had any testing in linux-next?

And when was "earlier"?

thanks,

greg k-h

Reply via email to