mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/next/linux-next.git
synced 2025-01-08 15:04:45 +00:00
bcachefs: Fix redundant variable initialization
path->level was being read, but never used. Reported-by: Colin Ian King <colin.i.king@gmail.com> Signed-off-by: Kent Overstreet <kent.overstreet@linux.dev>
This commit is contained in:
parent
e17b93eb36
commit
cd5bd16282
@ -1214,8 +1214,6 @@ __bch2_btree_path_set_pos(struct btree_trans *trans,
|
||||
struct btree_path *path, struct bpos new_pos,
|
||||
bool intent, unsigned long ip, int cmp)
|
||||
{
|
||||
unsigned level = path->level;
|
||||
|
||||
bch2_trans_verify_not_in_restart(trans);
|
||||
EBUG_ON(!path->ref);
|
||||
|
||||
@ -1231,7 +1229,7 @@ __bch2_btree_path_set_pos(struct btree_trans *trans,
|
||||
goto out;
|
||||
}
|
||||
|
||||
level = btree_path_up_until_good_node(trans, path, cmp);
|
||||
unsigned level = btree_path_up_until_good_node(trans, path, cmp);
|
||||
|
||||
if (btree_path_node(path, level)) {
|
||||
struct btree_path_level *l = &path->l[level];
|
||||
|
Loading…
Reference in New Issue
Block a user