fs: allocate inode by using alloc_inode_sb()
[sfrench/cifs-2.6.git] / fs / hpfs / super.c
index a7dbfc89202270e205c5fa1ee13a83c4d0e6824e..1cb89595b87560f4845a324e04bfce6daf5b246b 100644 (file)
@@ -232,7 +232,7 @@ static struct kmem_cache * hpfs_inode_cachep;
 static struct inode *hpfs_alloc_inode(struct super_block *sb)
 {
        struct hpfs_inode_info *ei;
-       ei = kmem_cache_alloc(hpfs_inode_cachep, GFP_NOFS);
+       ei = alloc_inode_sb(sb, hpfs_inode_cachep, GFP_NOFS);
        if (!ei)
                return NULL;
        return &ei->vfs_inode;