提交 b4f359ab 编写于 作者: T Tsutomu Itoh 提交者: Chris Mason

Btrfs: remove unnecessary code in btree_get_extent()

Unnecessary lookup_extent_mapping() is removed because an error is
returned to the caller.
This patch was made based on the advice from Stefan Behrens, thanks.
Signed-off-by: NTsutomu Itoh <t-itoh@jp.fujitsu.com>
上级 0433f20d
......@@ -217,16 +217,10 @@ static struct extent_map *btree_get_extent(struct inode *inode,
write_lock(&em_tree->lock);
ret = add_extent_mapping(em_tree, em);
if (ret == -EEXIST) {
u64 failed_start = em->start;
u64 failed_len = em->len;
free_extent_map(em);
em = lookup_extent_mapping(em_tree, start, len);
if (!em) {
lookup_extent_mapping(em_tree, failed_start,
failed_len);
if (!em)
em = ERR_PTR(-EIO);
}
} else if (ret) {
free_extent_map(em);
em = ERR_PTR(ret);
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册