[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>
This commit is contained in:
committed by
David Woodhouse
parent
db06e2a93f
commit
3d375d9e0f
@@ -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) {
|
||||
|
Reference in New Issue
Block a user