[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>

authored by Yan Burman and committed by David Woodhouse 3d375d9e db06e2a9

+4 -9
+1 -2
fs/jffs2/fs.c
··· 502 502 if (ret) 503 503 return ret; 504 504 505 - c->inocache_list = kmalloc(INOCACHE_HASHSIZE * sizeof(struct jffs2_inode_cache *), GFP_KERNEL); 505 + c->inocache_list = kcalloc(INOCACHE_HASHSIZE, sizeof(struct jffs2_inode_cache *), GFP_KERNEL); 506 506 if (!c->inocache_list) { 507 507 ret = -ENOMEM; 508 508 goto out_wbuf; 509 509 } 510 - memset(c->inocache_list, 0, INOCACHE_HASHSIZE * sizeof(struct jffs2_inode_cache *)); 511 510 512 511 jffs2_init_xattr_subsystem(c); 513 512
+1 -2
fs/jffs2/readinode.c
··· 944 944 int jffs2_do_crccheck_inode(struct jffs2_sb_info *c, struct jffs2_inode_cache *ic) 945 945 { 946 946 struct jffs2_raw_inode n; 947 - struct jffs2_inode_info *f = kmalloc(sizeof(*f), GFP_KERNEL); 947 + struct jffs2_inode_info *f = kzalloc(sizeof(*f), GFP_KERNEL); 948 948 int ret; 949 949 950 950 if (!f) 951 951 return -ENOMEM; 952 952 953 - memset(f, 0, sizeof(*f)); 954 953 init_MUTEX_LOCKED(&f->sem); 955 954 f->inocache = ic; 956 955
+1 -2
fs/jffs2/scan.c
··· 128 128 } 129 129 130 130 if (jffs2_sum_active()) { 131 - s = kmalloc(sizeof(struct jffs2_summary), GFP_KERNEL); 131 + s = kzalloc(sizeof(struct jffs2_summary), GFP_KERNEL); 132 132 if (!s) { 133 133 JFFS2_WARNING("Can't allocate memory for summary\n"); 134 134 return -ENOMEM; 135 135 } 136 - memset(s, 0, sizeof(struct jffs2_summary)); 137 136 } 138 137 139 138 for (i=0; i<c->nr_blocks; i++) {
+1 -3
fs/jffs2/summary.c
··· 26 26 27 27 int jffs2_sum_init(struct jffs2_sb_info *c) 28 28 { 29 - c->summary = kmalloc(sizeof(struct jffs2_summary), GFP_KERNEL); 29 + c->summary = kzalloc(sizeof(struct jffs2_summary), GFP_KERNEL); 30 30 31 31 if (!c->summary) { 32 32 JFFS2_WARNING("Can't allocate memory for summary information!\n"); 33 33 return -ENOMEM; 34 34 } 35 - 36 - memset(c->summary, 0, sizeof(struct jffs2_summary)); 37 35 38 36 c->summary->sum_buf = vmalloc(c->sector_size); 39 37