]> asedeno.scripts.mit.edu Git - linux.git/commitdiff
Staging: lustre: Fix prefer kcalloc over kzalloc with multiply
authorSumit Pundir <pundirsumit11@gmail.com>
Fri, 5 Jan 2018 16:49:47 +0000 (22:19 +0530)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Mon, 8 Jan 2018 15:03:45 +0000 (16:03 +0100)
Use kcalloc for allocating an array instead of kzalloc with
multiply. kcalloc is the preferred API. Issue reported by
checkpatch.pl

Signed-off-by: Sumit Pundir <pundirsumit11@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/staging/lustre/lustre/obdclass/cl_object.c

index b90074790a2af102999f2ec9e675438010f4fd14..7b18d775b001297e1aa75643d9d00641688de4de 100644 (file)
@@ -1017,7 +1017,7 @@ int cl_global_init(void)
 {
        int result;
 
-       cl_envs = kzalloc(sizeof(*cl_envs) * num_possible_cpus(), GFP_KERNEL);
+       cl_envs = kcalloc(num_possible_cpus(), sizeof(*cl_envs), GFP_KERNEL);
        if (!cl_envs) {
                result = -ENOMEM;
                goto out;