diff options
Diffstat (limited to 'fs/ext2/super.c')
| -rw-r--r-- | fs/ext2/super.c | 5 | 
1 files changed, 2 insertions, 3 deletions
diff --git a/fs/ext2/super.c b/fs/ext2/super.c index bd8ac164a3b..9b403f064ce 100644 --- a/fs/ext2/super.c +++ b/fs/ext2/super.c @@ -173,7 +173,6 @@ static struct inode *ext2_alloc_inode(struct super_block *sb)  static void ext2_i_callback(struct rcu_head *head)  {  	struct inode *inode = container_of(head, struct inode, i_rcu); -	INIT_LIST_HEAD(&inode->i_dentry);  	kmem_cache_free(ext2_inode_cachep, EXT2_I(inode));  } @@ -211,9 +210,9 @@ static void destroy_inodecache(void)  	kmem_cache_destroy(ext2_inode_cachep);  } -static int ext2_show_options(struct seq_file *seq, struct vfsmount *vfs) +static int ext2_show_options(struct seq_file *seq, struct dentry *root)  { -	struct super_block *sb = vfs->mnt_sb; +	struct super_block *sb = root->d_sb;  	struct ext2_sb_info *sbi = EXT2_SB(sb);  	struct ext2_super_block *es = sbi->s_es;  	unsigned long def_mount_opts;  |