f2fs: replace count*size kzalloc by kcalloc
kcalloc manages count*sizeof overflow. Cc: Jaegeuk Kim <jaegeuk.kim@samsung.com> Cc: linux-f2fs-devel@lists.sourceforge.net Signed-off-by: Fabian Frederick <fabf@skynet.be> Signed-off-by: Jaegeuk Kim <jaegeuk@kernel.org>
This commit is contained in:
Родитель
aec71382c6
Коммит
b434babf85
|
@ -1703,7 +1703,7 @@ static int build_curseg(struct f2fs_sb_info *sbi)
|
||||||
struct curseg_info *array;
|
struct curseg_info *array;
|
||||||
int i;
|
int i;
|
||||||
|
|
||||||
array = kzalloc(sizeof(*array) * NR_CURSEG_TYPE, GFP_KERNEL);
|
array = kcalloc(NR_CURSEG_TYPE, sizeof(*array), GFP_KERNEL);
|
||||||
if (!array)
|
if (!array)
|
||||||
return -ENOMEM;
|
return -ENOMEM;
|
||||||
|
|
||||||
|
|
Загрузка…
Ссылка в новой задаче