Commit 58e9ff56382bdce340d50b6ff22c422dc617106c

Authored by Russell King
Committed by Russell King
1 parent ae92dc9f7b

[ARM] Use kcalloc to allocate counter_config array rather than kmalloc

We need this to be zero initialised.  Since this is an array, use kcalloc
rather than kzalloc or kmalloc.

Signed-off-by: Russell King <rmk+kernel@arm.linux.org.uk>

Showing 1 changed file with 1 additions and 1 deletions Side-by-side Diff

arch/arm/oprofile/common.c
... ... @@ -140,7 +140,7 @@
140 140 if (ret < 0)
141 141 return ret;
142 142  
143   - counter_config = kmalloc(sizeof(struct op_counter_config) * spec->num_counters,
  143 + counter_config = kcalloc(spec->num_counters, sizeof(struct op_counter_config),
144 144 GFP_KERNEL);
145 145 if (!counter_config)
146 146 return -ENOMEM;