|
@@ -67,7 +67,7 @@ static struct kmem_cache * efs_inode_cachep;
|
|
static struct inode *efs_alloc_inode(struct super_block *sb)
|
|
static struct inode *efs_alloc_inode(struct super_block *sb)
|
|
{
|
|
{
|
|
struct efs_inode_info *ei;
|
|
struct efs_inode_info *ei;
|
|
- ei = (struct efs_inode_info *)kmem_cache_alloc(efs_inode_cachep, GFP_KERNEL);
|
|
|
|
|
|
+ ei = kmem_cache_alloc(efs_inode_cachep, GFP_KERNEL);
|
|
if (!ei)
|
|
if (!ei)
|
|
return NULL;
|
|
return NULL;
|
|
return &ei->vfs_inode;
|
|
return &ei->vfs_inode;
|