aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFabian Frederick <[email protected]>2014-08-08 14:19:43 -0700
committerLinus Torvalds <[email protected]>2014-08-08 15:57:18 -0700
commit6f4535ed7d626c3760243b9c5223baaa358a5fdd (patch)
treee8d9c77d3a5f12771661b9c57cea9f40d9afc791
parentb86280aa48b67c8119ed8f6c6bebd8c0af13a269 (diff)
fs/ramfs/file-nommu.c: replace count*size kzalloc by kcalloc
Signed-off-by: Fabian Frederick <[email protected]> Cc: Axel Lin <[email protected]> Signed-off-by: Andrew Morton <[email protected]> Signed-off-by: Linus Torvalds <[email protected]>
-rw-r--r--fs/ramfs/file-nommu.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/ramfs/file-nommu.c b/fs/ramfs/file-nommu.c
index dda012ad4208..bbafbde3471a 100644
--- a/fs/ramfs/file-nommu.c
+++ b/fs/ramfs/file-nommu.c
@@ -222,7 +222,7 @@ static unsigned long ramfs_nommu_get_unmapped_area(struct file *file,
/* gang-find the pages */
ret = -ENOMEM;
- pages = kzalloc(lpages * sizeof(struct page *), GFP_KERNEL);
+ pages = kcalloc(lpages, sizeof(struct page *), GFP_KERNEL);
if (!pages)
goto out_free;