switch open-coded instances of d_make_root() to new helper

Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
Этот коммит содержится в:
Al Viro
2012-01-08 22:15:13 -05:00
родитель 6b4231e2f9
Коммит 48fde701af
64 изменённых файлов: 105 добавлений и 264 удалений

Просмотреть файл

@@ -819,9 +819,8 @@ static int exofs_fill_super(struct super_block *sb, void *data, int silent)
ret = PTR_ERR(root);
goto free_sbi;
}
sb->s_root = d_alloc_root(root);
sb->s_root = d_make_root(root);
if (!sb->s_root) {
iput(root);
EXOFS_ERR("ERROR: get root inode failed\n");
ret = -ENOMEM;
goto free_sbi;