Re: [PATCH] spufs: correct kcalloc usage

2008-07-10 Thread Jeremy Kerr
Milton, > kcalloc is supposed to be called with the count as its first argument > and the element size as the second. Thanks, applied. Cheers, Jeremy ___ Linuxppc-dev mailing list Linuxppc-dev@ozlabs.org https://ozlabs.org/mailman/listinfo/linuxppc-d

[PATCH] spufs: correct kcalloc usage

2008-07-10 Thread Milton Miller
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 <[EMAIL PROTECTED]> --- Both arguments are size_t so does not affect correctness. This callsite is during module_init and therefore not performance critical. Ano