dmaengine: fsl-edma: use struct_size() in kzalloc()
authorGustavo A. R. Silva <gustavo@embeddedor.com>
Fri, 4 Jan 2019 21:25:45 +0000 (15:25 -0600)
committerVinod Koul <vkoul@kernel.org>
Mon, 7 Jan 2019 12:38:17 +0000 (18:08 +0530)
commitde1fa4f61be71725581c8e30f3665aaa20d1610e
treec5c06e3583028b71aff5dd036f026bf0ed3e596f
parent279cc97c01a20477fe33b6705abff8a186761a8a
dmaengine: fsl-edma: use struct_size() in kzalloc()

One of the more common cases of allocation size calculations is finding the
size of a structure that has a zero-sized array at the end, along with memory
for some number of elements for that array. For example:

struct foo {
    int stuff;
    void *entry[];
};

instance = kzalloc(sizeof(struct foo) + sizeof(void *) * count, GFP_KERNEL);

Instead of leaving these open-coded and prone to type mistakes, we can now
use the new struct_size() helper:

instance = kzalloc(struct_size(instance, entry, count), GFP_KERNEL);

This code was detected with the help of Coccinelle.

Signed-off-by: Gustavo A. R. Silva <gustavo@embeddedor.com>
Tested-by: Angelo Dureghello <angelo@sysam.it>
Signed-off-by: Vinod Koul <vkoul@kernel.org>
drivers/dma/fsl-edma-common.c