summaryrefslogtreecommitdiffstats
path: root/arch/parisc
diff options
context:
space:
mode:
authorMarkus Elfring <elfring@users.sourceforge.net>2016-08-28 11:40:53 +0200
committerHelge Deller <deller@gmx.de>2016-09-20 18:02:56 +0200
commitc4351d980ed88ac290136bfe59c8bd2b95f12b63 (patch)
tree8243e4270cb63121cea2a5543e1020228a42acc1 /arch/parisc
parent5baf919dd75817ba23423a8c9ef9be357fe2bb94 (diff)
downloadop-kernel-dev-c4351d980ed88ac290136bfe59c8bd2b95f12b63.zip
op-kernel-dev-c4351d980ed88ac290136bfe59c8bd2b95f12b63.tar.gz
parisc: Use kmalloc_array() in add_system_map_addresses()
* 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 type 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 <elfring@users.sourceforge.net> Signed-off-by: Helge Deller <deller@gmx.de>
Diffstat (limited to 'arch/parisc')
-rw-r--r--arch/parisc/kernel/inventory.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/parisc/kernel/inventory.c b/arch/parisc/kernel/inventory.c
index f0b6722..545f9d2 100644
--- a/arch/parisc/kernel/inventory.c
+++ b/arch/parisc/kernel/inventory.c
@@ -506,7 +506,7 @@ add_system_map_addresses(struct parisc_device *dev, int num_addrs,
long status;
struct pdc_system_map_addr_info addr_result;
- dev->addr = kmalloc(num_addrs * sizeof(unsigned long), GFP_KERNEL);
+ dev->addr = kmalloc_array(num_addrs, sizeof(*dev->addr), GFP_KERNEL);
if(!dev->addr) {
printk(KERN_ERR "%s %s(): memory allocation failure\n",
__FILE__, __func__);
OpenPOWER on IntegriCloud