Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 371fdab1 authored by James Hogan's avatar James Hogan Committed by Al Viro
Browse files

hostfs: use kmalloc instead of kzalloc



The inode info structure is zeroed at allocation with kzalloc, and then
all but one of the fields (including the largest, vfs_inode) are
initialised explicitly. Switch to using kmalloc and initialise the
remaining field too.

Reported-by: default avatarAl Viro <viro@zeniv.linux.org.uk>
Signed-off-by: default avatarJames Hogan <james.hogan@imgtec.com>
Signed-off-by: default avatarAl Viro <viro@zeniv.linux.org.uk>
parent 2b3b9bb0
Loading
Loading
Loading
Loading
+2 −1
Original line number Diff line number Diff line
@@ -228,10 +228,11 @@ static struct inode *hostfs_alloc_inode(struct super_block *sb)
{
	struct hostfs_inode_info *hi;

	hi = kzalloc(sizeof(*hi), GFP_KERNEL);
	hi = kmalloc(sizeof(*hi), GFP_KERNEL);
	if (hi == NULL)
		return NULL;
	hi->fd = -1;
	hi->mode = 0;
	inode_init_once(&hi->vfs_inode);
	return &hi->vfs_inode;
}