From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S935232AbdAKWB4 (ORCPT ); Wed, 11 Jan 2017 17:01:56 -0500 Received: from mail-wj0-f194.google.com ([209.85.210.194]:35441 "EHLO mail-wj0-f194.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1758376AbdAKWB2 (ORCPT ); Wed, 11 Jan 2017 17:01:28 -0500 From: Marek Vasut Subject: Re: [PATCH 01/18] mtd-cfi_cmdset_0001: Use kmalloc_array() in cfi_intelext_partition_fixup() To: SF Markus Elfring , linux-mtd@lists.infradead.org, Boris Brezillon , Brian Norris , Cyrille Pitchen , David Woodhouse , Denys Vlasenko , Richard Weinberger References: <71189baa-8780-b80a-0b4d-9dae74763ba3@users.sourceforge.net> Cc: LKML , kernel-janitors@vger.kernel.org Message-ID: <31f8448f-aba7-965a-e924-e1ec63eecbaf@gmail.com> Date: Wed, 11 Jan 2017 22:59:52 +0100 User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:45.0) Gecko/20100101 Icedove/45.4.0 MIME-Version: 1.0 In-Reply-To: Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On 01/11/2017 09:35 PM, SF Markus Elfring wrote: > From: Markus Elfring > Date: Tue, 10 Jan 2017 18:48:34 +0100 > > * A multiplication for the size determination of a memory allocation > indicated that an array data structure should be processed. > Thus use the corresponding function "kmalloc_array". > > This issue was detected by using the Coccinelle software. > > * Replace the specification of a data structure by a pointer dereference > to make the corresponding size determination a bit safer according to > the Linux coding style convention. > > Signed-off-by: Markus Elfring > --- > drivers/mtd/chips/cfi_cmdset_0001.c | 4 +++- > 1 file changed, 3 insertions(+), 1 deletion(-) > > diff --git a/drivers/mtd/chips/cfi_cmdset_0001.c b/drivers/mtd/chips/cfi_cmdset_0001.c > index 5e1b68cbcd0a..68227aa74d22 100644 > --- a/drivers/mtd/chips/cfi_cmdset_0001.c > +++ b/drivers/mtd/chips/cfi_cmdset_0001.c > @@ -746,7 +746,9 @@ static int cfi_intelext_partition_fixup(struct mtd_info *mtd, > newcfi = kmalloc(sizeof(struct cfi_private) + numvirtchips * sizeof(struct flchip), GFP_KERNEL); > if (!newcfi) > return -ENOMEM; > - shared = kmalloc(sizeof(struct flchip_shared) * cfi->numchips, GFP_KERNEL); > + shared = kmalloc_array(cfi->numchips, > + sizeof(*shared), > + GFP_KERNEL); You can keep this on a single line, no need for the linebreak. It doesn't violate the 80-chars per line rule IMO. > if (!shared) { > kfree(newcfi); > return -ENOMEM; > -- Best regards, Marek Vasut