aboutsummaryrefslogtreecommitdiffstats
path: root/fs/configfs
diff options
context:
space:
mode:
Diffstat (limited to 'fs/configfs')
-rw-r--r--fs/configfs/mount.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/fs/configfs/mount.c b/fs/configfs/mount.c
index 276e15cafd58..07f60455f1c1 100644
--- a/fs/configfs/mount.c
+++ b/fs/configfs/mount.c
@@ -91,10 +91,9 @@ static int configfs_fill_super(struct super_block *sb, void *data, int silent)
91 return -ENOMEM; 91 return -ENOMEM;
92 } 92 }
93 93
94 root = d_alloc_root(inode); 94 root = d_make_root(inode);
95 if (!root) { 95 if (!root) {
96 pr_debug("%s: could not get root dentry!\n",__func__); 96 pr_debug("%s: could not get root dentry!\n",__func__);
97 iput(inode);
98 return -ENOMEM; 97 return -ENOMEM;
99 } 98 }
100 config_group_init(&configfs_root_group); 99 config_group_init(&configfs_root_group);