bcachefs: Don't issue transaction restart on key cache realloc
authorKent Overstreet <kent.overstreet@linux.dev>
Mon, 17 Oct 2022 11:32:57 +0000 (07:32 -0400)
committerKent Overstreet <kent.overstreet@linux.dev>
Sun, 22 Oct 2023 21:09:44 +0000 (17:09 -0400)
This shouldn't be needed anymore, since we don't rely on the pointer
validity that this was guarding against anymore - we get a new good
reference and save it right after this function.

Signed-off-by: Kent Overstreet <kent.overstreet@linux.dev>
fs/bcachefs/btree_update_leaf.c

index b60786c20ccf5cafd4ba0fb3abafb403ecb3e806..fc53958e561981f3bcf3ad2d6c836f090d5aff51 100644 (file)
@@ -339,7 +339,7 @@ btree_key_can_insert_cached(struct btree_trans *trans,
 {
        struct bch_fs *c = trans->c;
        struct bkey_cached *ck = (void *) path->l[0].b;
-       unsigned old_u64s = ck->u64s, new_u64s;
+       unsigned new_u64s;
        struct bkey_i *new_k;
 
        EBUG_ON(path->level);
@@ -368,12 +368,7 @@ btree_key_can_insert_cached(struct btree_trans *trans,
 
        ck->u64s        = new_u64s;
        ck->k           = new_k;
-       /*
-        * Keys returned by peek() are no longer valid pointers, so we need a
-        * transaction restart:
-        */
-       trace_and_count(c, trans_restart_key_cache_key_realloced, trans, _RET_IP_, path, old_u64s, new_u64s);
-       return btree_trans_restart_nounlock(trans, BCH_ERR_transaction_restart_key_cache_realloced);
+       return 0;
 }
 
 /* Triggers: */