diff options
author | Yan Burman <burman.yan@gmail.com> | 2006-12-04 15:03:01 -0800 |
---|---|---|
committer | David Woodhouse <dwmw2@infradead.org> | 2006-12-10 11:50:34 +0000 |
commit | 3d375d9e0feee79e63a552a3eb3b46f989afce34 (patch) | |
tree | 2fa6b2d68831adf9ac909ab5ae6b86a465c50282 /fs/jffs2/scan.c | |
parent | db06e2a93ff73270e0053c37c88073094e77913d (diff) | |
download | op-kernel-dev-3d375d9e0feee79e63a552a3eb3b46f989afce34.zip op-kernel-dev-3d375d9e0feee79e63a552a3eb3b46f989afce34.tar.gz |
[JFFS2] replace kmalloc+memset with kzalloc
Replace kmalloc+memset with kzalloc
Signed-off-by: Yan Burman <burman.yan@gmail.com>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: David Woodhouse <dwmw2@infradead.org>
Diffstat (limited to 'fs/jffs2/scan.c')
-rw-r--r-- | fs/jffs2/scan.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/fs/jffs2/scan.c b/fs/jffs2/scan.c index e241346..ee4fc50 100644 --- a/fs/jffs2/scan.c +++ b/fs/jffs2/scan.c @@ -128,12 +128,11 @@ int jffs2_scan_medium(struct jffs2_sb_info *c) } if (jffs2_sum_active()) { - s = kmalloc(sizeof(struct jffs2_summary), GFP_KERNEL); + s = kzalloc(sizeof(struct jffs2_summary), GFP_KERNEL); if (!s) { JFFS2_WARNING("Can't allocate memory for summary\n"); return -ENOMEM; } - memset(s, 0, sizeof(struct jffs2_summary)); } for (i=0; i<c->nr_blocks; i++) { |