[PATCH] fs: Conversions from kmalloc+memset to k(z|c)alloc
Conversions from kmalloc+memset to kzalloc. Signed-off-by: Panagiotis Issaris <takis@issaris.org> Jffs2-bit-acked-by: David Woodhouse <dwmw2@infradead.org> Signed-off-by: Andrew Morton <akpm@osdl.org> Signed-off-by: Linus Torvalds <torvalds@osdl.org>
This commit is contained in:
committed by
Linus Torvalds
parent
32c2d2bc4b
commit
f8314dc60c
@ -369,10 +369,9 @@ static int sysv_fill_super(struct super_block *sb, void *data, int silent)
|
||||
if (64 != sizeof (struct sysv_inode))
|
||||
panic("sysv fs: bad inode size");
|
||||
|
||||
sbi = kmalloc(sizeof(struct sysv_sb_info), GFP_KERNEL);
|
||||
sbi = kzalloc(sizeof(struct sysv_sb_info), GFP_KERNEL);
|
||||
if (!sbi)
|
||||
return -ENOMEM;
|
||||
memset(sbi, 0, sizeof(struct sysv_sb_info));
|
||||
|
||||
sbi->s_sb = sb;
|
||||
sbi->s_block_base = 0;
|
||||
@ -453,10 +452,9 @@ static int v7_fill_super(struct super_block *sb, void *data, int silent)
|
||||
if (64 != sizeof (struct sysv_inode))
|
||||
panic("sysv fs: bad i-node size");
|
||||
|
||||
sbi = kmalloc(sizeof(struct sysv_sb_info), GFP_KERNEL);
|
||||
sbi = kzalloc(sizeof(struct sysv_sb_info), GFP_KERNEL);
|
||||
if (!sbi)
|
||||
return -ENOMEM;
|
||||
memset(sbi, 0, sizeof(struct sysv_sb_info));
|
||||
|
||||
sbi->s_sb = sb;
|
||||
sbi->s_block_base = 0;
|
||||
|
Reference in New Issue
Block a user