aboutsummaryrefslogtreecommitdiffstats
path: root/fs/exofs
diff options
context:
space:
mode:
authorAl Viro <viro@zeniv.linux.org.uk>2012-01-08 22:15:13 -0500
committerAl Viro <viro@zeniv.linux.org.uk>2012-03-20 21:29:35 -0400
commit48fde701aff662559b38d9a609574068f22d00fe (patch)
treeaa6b203dc671b51d58575b65eb08310ff8309b60 /fs/exofs
parent6b4231e2f92adbcf96fb2a3fa751d7ca0a61b21f (diff)
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/exofs')
-rw-r--r--fs/exofs/super.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/fs/exofs/super.c b/fs/exofs/super.c
index 6cafcadfc3c..7f2b590a36b 100644
--- a/fs/exofs/super.c
+++ b/fs/exofs/super.c
@@ -819,9 +819,8 @@ static int exofs_fill_super(struct super_block *sb, void *data, int silent)
819 ret = PTR_ERR(root); 819 ret = PTR_ERR(root);
820 goto free_sbi; 820 goto free_sbi;
821 } 821 }
822 sb->s_root = d_alloc_root(root); 822 sb->s_root = d_make_root(root);
823 if (!sb->s_root) { 823 if (!sb->s_root) {
824 iput(root);
825 EXOFS_ERR("ERROR: get root inode failed\n"); 824 EXOFS_ERR("ERROR: get root inode failed\n");
826 ret = -ENOMEM; 825 ret = -ENOMEM;
827 goto free_sbi; 826 goto free_sbi;