Home
last modified time | relevance | path

Searched refs:insert_keys (Results 1 – 3 of 3) sorted by relevance

/linux/drivers/md/bcache/
H A Drequest.c66 journal_ref = bch_journal(op->c, &op->insert_keys, in CLOSURE_CALLBACK()
69 ret = bch_btree_insert(op->c, &op->insert_keys, in CLOSURE_CALLBACK()
86 bch_keylist_free(&op->insert_keys); in CLOSURE_CALLBACK()
120 if (bch_keylist_realloc(&op->insert_keys, 2, op->c)) in bch_data_invalidate()
126 bch_keylist_add(&op->insert_keys, in bch_data_invalidate()
152 struct bkey *src = op->insert_keys.keys, *dst = op->insert_keys.keys; in CLOSURE_CALLBACK()
154 while (src != op->insert_keys.top) { in CLOSURE_CALLBACK()
164 op->insert_keys.top = dst; in CLOSURE_CALLBACK()
210 if (bch_keylist_realloc(&op->insert_keys, in CLOSURE_CALLBACK()
217 k = op->insert_keys.top; in CLOSURE_CALLBACK()
[all …]
H A Dbtree.c1355 struct keylist *insert_keys,
2196 struct keylist *insert_keys, in bch_btree_insert_keys() argument
2202 while (!bch_keylist_empty(insert_keys)) { in bch_btree_insert_keys()
2203 struct bkey *k = insert_keys->keys; in bch_btree_insert_keys()
2213 bch_keylist_pop_front(insert_keys); in bch_btree_insert_keys()
2216 bkey_copy(&temp.key, insert_keys->keys); in bch_btree_insert_keys()
2219 bch_cut_front(&b->key, insert_keys->keys); in bch_btree_insert_keys()
2231 BUG_ON(!bch_keylist_empty(insert_keys) && b->level); in bch_btree_insert_keys()
2238 struct keylist *insert_keys, in btree_split() argument
2282 bch_btree_insert_keys(n1, op, insert_keys, replace_key); in btree_split()
[all …]
H A Drequest.h32 struct keylist insert_keys; member