mirror of
https://github.com/torvalds/linux.git
synced 2024-11-22 12:11:40 +00:00
fs/ocfs2/slot_map.c: replace count*size kzalloc by kcalloc
kcalloc manages count*sizeof overflow. Signed-off-by: Fabian Frederick <fabf@skynet.be> Cc: Mark Fasheh <mfasheh@suse.com> Cc: Joel Becker <jlbec@evilplan.org> Signed-off-by: Andrew Morton <akpm@linux-foundation.org> Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
This commit is contained in:
parent
bba1cb17d9
commit
1b7f8ba603
@ -382,7 +382,7 @@ static int ocfs2_map_slot_buffers(struct ocfs2_super *osb,
|
||||
|
||||
trace_ocfs2_map_slot_buffers(bytes, si->si_blocks);
|
||||
|
||||
si->si_bh = kzalloc(sizeof(struct buffer_head *) * si->si_blocks,
|
||||
si->si_bh = kcalloc(si->si_blocks, sizeof(struct buffer_head *),
|
||||
GFP_KERNEL);
|
||||
if (!si->si_bh) {
|
||||
status = -ENOMEM;
|
||||
|
Loading…
Reference in New Issue
Block a user