diff options
| author | Al Viro <viro@zeniv.linux.org.uk> | 2012-01-08 22:15:13 -0500 | 
|---|---|---|
| committer | Al Viro <viro@zeniv.linux.org.uk> | 2012-03-20 21:29:35 -0400 | 
| commit | 48fde701aff662559b38d9a609574068f22d00fe (patch) | |
| tree | aa6b203dc671b51d58575b65eb08310ff8309b60 /fs/btrfs/super.c | |
| parent | 6b4231e2f92adbcf96fb2a3fa751d7ca0a61b21f (diff) | |
| download | olio-linux-3.10-48fde701aff662559b38d9a609574068f22d00fe.tar.xz olio-linux-3.10-48fde701aff662559b38d9a609574068f22d00fe.zip  | |
switch open-coded instances of d_make_root() to new helper
Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
Diffstat (limited to 'fs/btrfs/super.c')
| -rw-r--r-- | fs/btrfs/super.c | 8 | 
1 files changed, 2 insertions, 6 deletions
diff --git a/fs/btrfs/super.c b/fs/btrfs/super.c index 3ce97b217cb..81df3fec6a6 100644 --- a/fs/btrfs/super.c +++ b/fs/btrfs/super.c @@ -629,7 +629,6 @@ static int btrfs_fill_super(struct super_block *sb,  			    void *data, int silent)  {  	struct inode *inode; -	struct dentry *root_dentry;  	struct btrfs_fs_info *fs_info = btrfs_sb(sb);  	struct btrfs_key key;  	int err; @@ -660,15 +659,12 @@ static int btrfs_fill_super(struct super_block *sb,  		goto fail_close;  	} -	root_dentry = d_alloc_root(inode); -	if (!root_dentry) { -		iput(inode); +	sb->s_root = d_make_root(inode); +	if (!sb->s_root) {  		err = -ENOMEM;  		goto fail_close;  	} -	sb->s_root = root_dentry; -  	save_mount_options(sb, data);  	cleancache_init_fs(sb);  	sb->s_flags |= MS_ACTIVE;  |