powerpc/spufs: correct kcalloc usage
kcalloc is supposed to be called with the count as its first argument and the element size as the second. Signed-off-by: Milton Miller <miltonm@bga.com> Signed-off-by: Jeremy Kerr <jk@ozlabs.org>
This commit is contained in:
committed by
Jeremy Kerr
parent
8725f25acc
commit
9bcab8405c
@@ -196,8 +196,7 @@ static int __init sputrace_init(void)
|
|||||||
struct proc_dir_entry *entry;
|
struct proc_dir_entry *entry;
|
||||||
int i, error = -ENOMEM;
|
int i, error = -ENOMEM;
|
||||||
|
|
||||||
sputrace_log = kcalloc(sizeof(struct sputrace),
|
sputrace_log = kcalloc(bufsize, sizeof(struct sputrace), GFP_KERNEL);
|
||||||
bufsize, GFP_KERNEL);
|
|
||||||
if (!sputrace_log)
|
if (!sputrace_log)
|
||||||
goto out;
|
goto out;
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user