summaryrefslogtreecommitdiffstats
path: root/fs/freevxfs
diff options
context:
space:
mode:
authorKrzysztof Błaszkowski <kb@sysmikro.com.pl>2016-06-12 19:26:04 +0200
committerChristoph Hellwig <hch@lst.de>2016-06-12 19:35:13 +0200
commitf2fe2fa1fbad72e469f49da3716f176a9b53fb75 (patch)
tree514950548a93ceae287185581ebf8347d9551fbc /fs/freevxfs
parent263040a1e7cefa9fb916d6328fc045fdb30ed268 (diff)
downloadop-kernel-dev-f2fe2fa1fbad72e469f49da3716f176a9b53fb75.zip
op-kernel-dev-f2fe2fa1fbad72e469f49da3716f176a9b53fb75.tar.gz
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>
Diffstat (limited to 'fs/freevxfs')
-rw-r--r--fs/freevxfs/vxfs_super.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/fs/freevxfs/vxfs_super.c b/fs/freevxfs/vxfs_super.c
index e5eef14..455ce5b 100644
--- a/fs/freevxfs/vxfs_super.c
+++ b/fs/freevxfs/vxfs_super.c
@@ -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;
}
OpenPOWER on IntegriCloud