aboutsummaryrefslogtreecommitdiffstats
path: root/fs/jffs2/summary.c
diff options
context:
space:
mode:
authorYan Burman <burman.yan@gmail.com>2006-12-04 15:03:01 -0800
committerDavid Woodhouse <dwmw2@infradead.org>2006-12-10 11:50:34 +0000
commit3d375d9e0feee79e63a552a3eb3b46f989afce34 (patch)
tree2fa6b2d68831adf9ac909ab5ae6b86a465c50282 /fs/jffs2/summary.c
parent[MTD] Fix SSFDC build for variable blocksize. (diff)
downloadlinux-dev-3d375d9e0feee79e63a552a3eb3b46f989afce34.tar.xz
linux-dev-3d375d9e0feee79e63a552a3eb3b46f989afce34.zip
[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/summary.c')
-rw-r--r--fs/jffs2/summary.c4
1 files changed, 1 insertions, 3 deletions
diff --git a/fs/jffs2/summary.c b/fs/jffs2/summary.c
index e52cef526d90..c4f7e4703c0a 100644
--- a/fs/jffs2/summary.c
+++ b/fs/jffs2/summary.c
@@ -26,15 +26,13 @@
int jffs2_sum_init(struct jffs2_sb_info *c)
{
- c->summary = kmalloc(sizeof(struct jffs2_summary), GFP_KERNEL);
+ c->summary = kzalloc(sizeof(struct jffs2_summary), GFP_KERNEL);
if (!c->summary) {
JFFS2_WARNING("Can't allocate memory for summary information!\n");
return -ENOMEM;
}
- memset(c->summary, 0, sizeof(struct jffs2_summary));
-
c->summary->sum_buf = vmalloc(c->sector_size);
if (!c->summary->sum_buf) {