提交 a596a23b 编写于 作者: A Al Viro

bfs_lookup(): use d_splice_alias()

code is actually simpler that way.
Acked-by: N"Tigran A. Aivazian" <aivazian.tigran@gmail.com>
Signed-off-by: NAl Viro <viro@zeniv.linux.org.uk>
上级 837f3ec6
......@@ -141,14 +141,9 @@ static struct dentry *bfs_lookup(struct inode *dir, struct dentry *dentry,
unsigned long ino = (unsigned long)le16_to_cpu(de->ino);
brelse(bh);
inode = bfs_iget(dir->i_sb, ino);
if (IS_ERR(inode)) {
mutex_unlock(&info->bfs_lock);
return ERR_CAST(inode);
}
}
mutex_unlock(&info->bfs_lock);
d_add(dentry, inode);
return NULL;
return d_splice_alias(inode, dentry);
}
static int bfs_link(struct dentry *old, struct inode *dir,
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册