From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from mail.bootlin.com ([62.4.15.54]) by bombadil.infradead.org with esmtp (Exim 4.90_1 #2 (Red Hat Linux)) id 1gJZz8-0000ug-Nd for linux-mtd@lists.infradead.org; Mon, 05 Nov 2018 08:11:48 +0000 Date: Mon, 5 Nov 2018 09:11:24 +0100 From: Boris Brezillon To: David Woodhouse , Brian Norris , Boris Brezillon , Marek Vasut , Richard Weinberger , linux-mtd@lists.infradead.org Cc: linux-kernel@vger.kernel.org, Kees Cook , Olof Johansson Subject: Re: [PATCH v2] mtd: sa1100: avoid VLA in sa1100_setup_mtd Message-ID: <20181105091124.6594ee53@bbrezillon> In-Reply-To: <20181105075835.16234-1-boris.brezillon@bootlin.com> References: <20181105075835.16234-1-boris.brezillon@bootlin.com> MIME-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit List-Id: Linux MTD discussion mailing list List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , On Mon, 5 Nov 2018 08:58:35 +0100 Boris Brezillon wrote: > Enabling -Wvla found another variable-length array with randconfig > testing: > > drivers/mtd/maps/sa1100-flash.c: In function 'sa1100_setup_mtd': > drivers/mtd/maps/sa1100-flash.c:224:10: error: ISO C90 forbids variable length array 'cdev' [-Werror=vla] > > Dynamically allocate the cdev array passed to mtd_concat_create() > instead of using a VLA. > > Reported-by: Arnd Bergmann > Signed-off-by: Boris Brezillon > Cc: Kees Cook > Cc: Olof Johansson > --- > Changes in v2: > - Allocate cdev dynamically instead of having a fixed-size array > > Hello, > > I'm planning to queue this patch to the mtd/fixes PR. Arnd, Kees, feel ^ I meant branch, not PR, but this patch should also be part of the 4.20-rc2 fixes PR. > free to add your R-b. > > Regards, > > Boris > --- > drivers/mtd/maps/sa1100-flash.c | 10 +++++++++- > 1 file changed, 9 insertions(+), 1 deletion(-) > > diff --git a/drivers/mtd/maps/sa1100-flash.c b/drivers/mtd/maps/sa1100-flash.c > index 784c6e1a0391..fd5fe12d7461 100644 > --- a/drivers/mtd/maps/sa1100-flash.c > +++ b/drivers/mtd/maps/sa1100-flash.c > @@ -221,7 +221,14 @@ static struct sa_info *sa1100_setup_mtd(struct platform_device *pdev, > info->mtd = info->subdev[0].mtd; > ret = 0; > } else if (info->num_subdev > 1) { > - struct mtd_info *cdev[nr]; > + struct mtd_info **cdev; > + > + cdev = kmalloc_array(nr, sizeof(*cdev), GFP_KERNEL); > + if (!cdev) { > + ret = -ENOMEM; > + goto err; > + } > + > /* > * We detected multiple devices. Concatenate them together. > */ > @@ -230,6 +237,7 @@ static struct sa_info *sa1100_setup_mtd(struct platform_device *pdev, > > info->mtd = mtd_concat_create(cdev, info->num_subdev, > plat->name); > + kfree(cdev); > if (info->mtd == NULL) { > ret = -ENXIO; > goto err;