From: Markus Elfring Date: Sat, 6 May 2017 06:38:49 +0000 (+0200) Subject: dlm: Use kcalloc() in dlm_scan_waiters() X-Git-Url: https://git.stricted.de/?a=commitdiff_plain;h=fbb1008151cabb83aeadf91ae363196def070eba;p=GitHub%2Fmoto-9609%2Fandroid_kernel_motorola_exynos9610.git dlm: Use kcalloc() in dlm_scan_waiters() A multiplication for the size determination of a memory allocation indicated that an array data structure should be processed. Thus use the corresponding function "kcalloc". This issue was detected by using the Coccinelle software. Signed-off-by: Markus Elfring Signed-off-by: David Teigland --- diff --git a/fs/dlm/lock.c b/fs/dlm/lock.c index 6df332296c66..fd6fe55bedae 100644 --- a/fs/dlm/lock.c +++ b/fs/dlm/lock.c @@ -1426,7 +1426,7 @@ void dlm_scan_waiters(struct dlm_ls *ls) if (!num_nodes) { num_nodes = ls->ls_num_nodes; - warned = kzalloc(num_nodes * sizeof(int), GFP_KERNEL); + warned = kcalloc(num_nodes, sizeof(int), GFP_KERNEL); } if (!warned) continue;