• Kees Cook's avatar
    treewide: Replace more open-coded allocation size multiplications · 329e0989
    Kees Cook authored
    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: default avatarKees Cook <keescook@chromium.org>
    329e0989
safexcel.c 33.8 KB