Commit 89bfae43 authored by Firo Yang's avatar Firo Yang Committed by Linus Torvalds

fs/reiserfs: remove unneeded cast

kmem_cache_alloc() returns void*.
Signed-off-by: default avatarFiro Yang <firogm@gmail.com>
Signed-off-by: default avatarAndrew Morton <akpm@linux-foundation.org>
Signed-off-by: default avatarLinus Torvalds <torvalds@linux-foundation.org>
parent f73c2f1f
...@@ -588,8 +588,7 @@ static struct kmem_cache *reiserfs_inode_cachep; ...@@ -588,8 +588,7 @@ static struct kmem_cache *reiserfs_inode_cachep;
static struct inode *reiserfs_alloc_inode(struct super_block *sb) static struct inode *reiserfs_alloc_inode(struct super_block *sb)
{ {
struct reiserfs_inode_info *ei; struct reiserfs_inode_info *ei;
ei = (struct reiserfs_inode_info *) ei = kmem_cache_alloc(reiserfs_inode_cachep, GFP_KERNEL);
kmem_cache_alloc(reiserfs_inode_cachep, GFP_KERNEL);
if (!ei) if (!ei)
return NULL; return NULL;
atomic_set(&ei->openers, 0); atomic_set(&ei->openers, 0);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment