On Aug 10, 2010, at 7:33 AM, Joe Perches wrote: > On Mon, 2010-08-09 at 18:43 -0700, Anirban Chakraborty wrote: >> Your patch is fine except that the preferred way is to use kzalloc over kaclloc. kzalloc does not need that extra >> argument that you are passing to kcalloc. > > You probably meant to write "my preferred way" > as the kcalloc to "kzalloc with a multiply" > ratio is pretty high. > > It's actually about 2.5 to 1 in favor of kcalloc. > > $ grep -rw --include=*.[ch] kcalloc * | wc -l > 419 > > $ grep -rP --include=*.[ch] "\bkzalloc\s*\(\s*\w+\s*\*\s*\w+" * | \ > grep -vP "\bkzalloc\s*\(\s*sizeof\s+\*\s*\w+\s*," | wc -l > 164 > > (the grep -vP avoids kzalloc(sizeof *p, GFP_foo) > > Actually, there might be a reason to use kzalloc > in that location to match the other similar use > a few lines away, but I'd prefer that the other > use be converted to kcalloc. I was suggesting based on the following: http://lwn.net/Articles/147014/ thanks, Anirban -- To unsubscribe from this list: send the line "unsubscribe kernel-janitors" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html