Replace kzalloc with kcalloc. As kcalloc is preferred for allocating an
array instead of kzalloc. This patch fixes the checkpatch issue.
Signed-off-by: Varsha Rao <rvarsha016@gmail.com>
        if (state == IP_VS_STATE_MASTER) {
                struct ipvs_master_sync_state *ms;
 
-               ipvs->ms = kzalloc(count * sizeof(ipvs->ms[0]), GFP_KERNEL);
+               ipvs->ms = kcalloc(count, sizeof(ipvs->ms[0]), GFP_KERNEL);
                if (!ipvs->ms)
                        goto out;
                ms = ipvs->ms;
                        ms->ipvs = ipvs;
                }
        } else {
-               array = kzalloc(count * sizeof(struct task_struct *),
+               array = kcalloc(count, sizeof(struct task_struct *),
                                GFP_KERNEL);
                if (!array)
                        goto out;