mirror of https://github.com/torvalds/linux.git
bcachefs: Fix incorrect error handling found_btree_node_is_readable()
error handling here is slightly odd, which is why we were accidently calling evict() on an error pointer Signed-off-by: Kent Overstreet <kent.overstreet@linux.dev>
This commit is contained in:
parent
161f73c2c7
commit
1c8cc24eef
|
|
@ -72,10 +72,11 @@ static bool found_btree_node_is_readable(struct btree_trans *trans,
|
||||||
|
|
||||||
struct btree *b = bch2_btree_node_get_noiter(trans, &k.k, f->btree_id, f->level, false);
|
struct btree *b = bch2_btree_node_get_noiter(trans, &k.k, f->btree_id, f->level, false);
|
||||||
bool ret = !IS_ERR_OR_NULL(b);
|
bool ret = !IS_ERR_OR_NULL(b);
|
||||||
if (ret) {
|
if (!ret)
|
||||||
f->sectors_written = b->written;
|
return ret;
|
||||||
six_unlock_read(&b->c.lock);
|
|
||||||
}
|
f->sectors_written = b->written;
|
||||||
|
six_unlock_read(&b->c.lock);
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* We might update this node's range; if that happens, we need the node
|
* We might update this node's range; if that happens, we need the node
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue