1
0
Fork 0

freevxfs: fix lack of inode initialization

There is nothing worse than just allocated inode without being
initialized _once().

Signed-off-by: Krzysztof Błaszkowski <kb@sysmikro.com.pl>
Signed-off-by: Christoph Hellwig <hch@lst.de>
steinar/wifi_calib_4_9_kernel
Krzysztof Błaszkowski 2016-06-12 19:26:04 +02:00 committed by Christoph Hellwig
parent 263040a1e7
commit f2fe2fa1fb
1 changed files with 1 additions and 0 deletions

View File

@ -127,6 +127,7 @@ static struct inode *vxfs_alloc_inode(struct super_block *sb)
vi = kmem_cache_alloc(vxfs_inode_cachep, GFP_KERNEL);
if (!vi)
return NULL;
inode_init_once(&vi->vfs_inode);
return &vi->vfs_inode;
}