mirror of
https://github.com/torvalds/linux
synced 2024-11-05 18:23:50 +00:00
bcachefs: Kill bch2_keylist_add_in_order()
Dead code, so delete Signed-off-by: Kent Overstreet <kent.overstreet@linux.dev>
This commit is contained in:
parent
e151580d30
commit
e094beccc1
2 changed files with 0 additions and 17 deletions
|
@ -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;
|
||||
|
|
|
@ -5,7 +5,6 @@
|
|||
#include "keylist_types.h"
|
||||
|
||||
int bch2_keylist_realloc(struct keylist *, u64 *, size_t, size_t);
|
||||
void bch2_keylist_add_in_order(struct keylist *, struct bkey_i *);
|
||||
void bch2_keylist_pop_front(struct keylist *);
|
||||
|
||||
static inline void bch2_keylist_init(struct keylist *l, u64 *inline_keys)
|
||||
|
|
Loading…
Reference in a new issue