Re: [PATCH 05/14] RFC: usb/host/fotg210: change kmalloc by kmalloc_array
From: Sergei Shtylyov
Date: Mon Sep 21 2015 - 14:57:10 EST
On 09/21/2015 06:01 PM, Peter Senna Tschudin wrote:
This patch change:
"Replaces" maybe?
kmalloc(DBG_SCHED_LIMIT * sizeof(*seen), GFP_ATOMIC)
by:
kmalloc_array(DBG_SCHED_LIMIT, sizeof(*seen), GFP_ATOMIC)
as kmalloc_array() should be used for allocating arrays.
Signed-off-by: Peter Senna Tschudin <peter.senna@xxxxxxxxx>
[...]
MBR, Sergei
--
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/