Re: [PATCH]use kzalloc in vfs where appropriate

From: Matthew Wilcox
Date: Fri Mar 17 2006 - 16:05:47 EST


On Fri, Mar 17, 2006 at 09:58:14PM +0100, Oliver Neukum wrote:
> --- a/fs/bio.c 2006-03-11 23:12:55.000000000 +0100
> +++ b/fs/bio.c 2006-03-17 16:44:49.000000000 +0100
> @@ -635,12 +635,10 @@
> return ERR_PTR(-ENOMEM);
>
> ret = -ENOMEM;
> - pages = kmalloc(nr_pages * sizeof(struct page *), GFP_KERNEL);
> + pages = kzalloc(nr_pages * sizeof(struct page *), GFP_KERNEL);

Didn't we just discuss this one and conclude it needed to use kcalloc
instead?
-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@xxxxxxxxxxxxxxx
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/