Re: [PATCH] Parisc: Check kmalloc return value before use thebuffer in ccio-dma.c

From: Kyle McMartin
Date: Thu May 06 2010 - 00:03:46 EST


On Thu, May 06, 2010 at 10:42:08AM +0800, wzt.wzt@xxxxxxxxx wrote:
> + if (!name) {
> + printk(KERN_ERR "%s() failed to get enough memory\n", __func__);
> + return ;
> + }
> +
> snprintf(name, 14, "GSC Bus [%d/]", ioc->hw_path);

This code can't fail, since the failure case won't be handled by the
probe function, and will continue along without properly initializing
the resources and will fail later. While we could add proper error
handling, if these functions are called, the ccio IOMMU exists on the
machine, and without it, we can't do any DMA (amongst other things.)
So in that case, if this kmalloc fails (which it really shouldn't...)
we're pretty much screwed.

We can change it to GFP_ATOMIC|__GFP_NOFAIL so it will retry infinitely,
or we can panic in the error path with a nice error message so the users
knows why his machine isn't going to work.

I suggest the latter since you'll have the test to squelch gcc warnings
and such.

regards, Kyle

--
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/