diff options
author | Krzysztof Błaszkowski <kb@sysmikro.com.pl> | 2016-06-12 19:26:04 +0200 |
---|---|---|
committer | Christoph Hellwig <hch@lst.de> | 2016-06-12 19:35:13 +0200 |
commit | f2fe2fa1fbad72e469f49da3716f176a9b53fb75 (patch) | |
tree | 514950548a93ceae287185581ebf8347d9551fbc /fs | |
parent | 263040a1e7cefa9fb916d6328fc045fdb30ed268 (diff) | |
download | linux-f2fe2fa1fbad72e469f49da3716f176a9b53fb75.tar.bz2 |
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')
-rw-r--r-- | fs/freevxfs/vxfs_super.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/fs/freevxfs/vxfs_super.c b/fs/freevxfs/vxfs_super.c index e5eef1400d67..455ce5b77e9b 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; } |