From 30cca2e94d0dfa8c3151daf1393f402d32bb9407 Mon Sep 17 00:00:00 2001 From: Kent Overstreet Date: Sun, 26 Feb 2023 21:36:39 -0500 Subject: Update bcachefs sources to ca97ee3577 bcachefs: bch2_btree_iter_peek_and_restart_outlined() Signed-off-by: Kent Overstreet --- libbcachefs/keylist.c | 16 ---------------- 1 file changed, 16 deletions(-) (limited to 'libbcachefs/keylist.c') diff --git a/libbcachefs/keylist.c b/libbcachefs/keylist.c index 29e51bde..cf5998e5 100644 --- a/libbcachefs/keylist.c +++ b/libbcachefs/keylist.c @@ -31,22 +31,6 @@ int bch2_keylist_realloc(struct keylist *l, u64 *inline_u64s, return 0; } -void bch2_keylist_add_in_order(struct keylist *l, struct bkey_i *insert) -{ - struct bkey_i *where; - - for_each_keylist_key(l, where) - if (bpos_lt(insert->k.p, where->k.p)) - break; - - memmove_u64s_up((u64 *) where + insert->k.u64s, - where, - ((u64 *) l->top) - ((u64 *) where)); - - l->top_p += insert->k.u64s; - bkey_copy(where, insert); -} - void bch2_keylist_pop_front(struct keylist *l) { l->top_p -= bch2_keylist_front(l)->k.u64s; -- cgit v1.2.3