projects
/
linux-2.6-microblaze.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
fd00045
)
bcachefs: Fix error handling in bch2_btree_node_prefetch()
author
Kent Overstreet
<kent.overstreet@linux.dev>
Sun, 27 Oct 2024 22:25:30 +0000
(18:25 -0400)
committer
Kent Overstreet
<kent.overstreet@linux.dev>
Thu, 7 Nov 2024 21:48:20 +0000
(16:48 -0500)
Signed-off-by: Kent Overstreet <kent.overstreet@linux.dev>
fs/bcachefs/btree_cache.c
patch
|
blob
|
history
diff --git
a/fs/bcachefs/btree_cache.c
b/fs/bcachefs/btree_cache.c
index
6e4afb2
..
6f62257
100644
(file)
--- a/
fs/bcachefs/btree_cache.c
+++ b/
fs/bcachefs/btree_cache.c
@@
-1312,9
+1312,12
@@
int bch2_btree_node_prefetch(struct btree_trans *trans,
b = bch2_btree_node_fill(trans, path, k, btree_id,
level, SIX_LOCK_read, false);
- if (!IS_ERR_OR_NULL(b))
+ int ret = PTR_ERR_OR_ZERO(b);
+ if (ret)
+ return ret;
+ if (b)
six_unlock_read(&b->c.lock);
- return
bch2_trans_relock(trans) ?: PTR_ERR_OR_ZERO(b)
;
+ return
0
;
}
void bch2_btree_node_evict(struct btree_trans *trans, const struct bkey_i *k)