aboutsummaryrefslogtreecommitdiffstats
path: root/fs/jffs2/scan.c
diff options
context:
space:
mode:
authorYan Burman <burman.yan@gmail.com>2006-12-04 18:03:01 -0500
committerDavid Woodhouse <dwmw2@infradead.org>2006-12-10 06:50:34 -0500
commit3d375d9e0feee79e63a552a3eb3b46f989afce34 (patch)
tree2fa6b2d68831adf9ac909ab5ae6b86a465c50282 /fs/jffs2/scan.c
parentdb06e2a93ff73270e0053c37c88073094e77913d (diff)
[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.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/fs/jffs2/scan.c b/fs/jffs2/scan.c
index e2413466ddd5..ee4fc50b0b20 100644
--- a/fs/jffs2/scan.c
+++ b/fs/jffs2/scan.c
@@ -128,12 +128,11 @@ int jffs2_scan_medium(struct jffs2_sb_info *c)
128 } 128 }
129 129
130 if (jffs2_sum_active()) { 130 if (jffs2_sum_active()) {
131 s = kmalloc(sizeof(struct jffs2_summary), GFP_KERNEL); 131 s = kzalloc(sizeof(struct jffs2_summary), GFP_KERNEL);
132 if (!s) { 132 if (!s) {
133 JFFS2_WARNING("Can't allocate memory for summary\n"); 133 JFFS2_WARNING("Can't allocate memory for summary\n");
134 return -ENOMEM; 134 return -ENOMEM;
135 } 135 }
136 memset(s, 0, sizeof(struct jffs2_summary));
137 } 136 }
138 137
139 for (i=0; i<c->nr_blocks; i++) { 138 for (i=0; i<c->nr_blocks; i++) {