• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 // SPDX-License-Identifier: GPL-2.0
2 /*
3  * Code for working with individual keys, and sorted sets of keys with in a
4  * btree node
5  *
6  * Copyright 2012 Google, Inc.
7  */
8 
9 #define pr_fmt(fmt) "bcache: %s() " fmt "\n", __func__
10 
11 #include "util.h"
12 #include "bset.h"
13 
14 #include <linux/console.h>
15 #include <linux/sched/clock.h>
16 #include <linux/random.h>
17 #include <linux/prefetch.h>
18 
19 #ifdef CONFIG_BCACHE_DEBUG
20 
bch_dump_bset(struct btree_keys * b,struct bset * i,unsigned set)21 void bch_dump_bset(struct btree_keys *b, struct bset *i, unsigned set)
22 {
23 	struct bkey *k, *next;
24 
25 	for (k = i->start; k < bset_bkey_last(i); k = next) {
26 		next = bkey_next(k);
27 
28 		printk(KERN_ERR "block %u key %u/%u: ", set,
29 		       (unsigned) ((u64 *) k - i->d), i->keys);
30 
31 		if (b->ops->key_dump)
32 			b->ops->key_dump(b, k);
33 		else
34 			printk("%llu:%llu\n", KEY_INODE(k), KEY_OFFSET(k));
35 
36 		if (next < bset_bkey_last(i) &&
37 		    bkey_cmp(k, b->ops->is_extents ?
38 			     &START_KEY(next) : next) > 0)
39 			printk(KERN_ERR "Key skipped backwards\n");
40 	}
41 }
42 
bch_dump_bucket(struct btree_keys * b)43 void bch_dump_bucket(struct btree_keys *b)
44 {
45 	unsigned i;
46 
47 	console_lock();
48 	for (i = 0; i <= b->nsets; i++)
49 		bch_dump_bset(b, b->set[i].data,
50 			      bset_sector_offset(b, b->set[i].data));
51 	console_unlock();
52 }
53 
__bch_count_data(struct btree_keys * b)54 int __bch_count_data(struct btree_keys *b)
55 {
56 	unsigned ret = 0;
57 	struct btree_iter iter;
58 	struct bkey *k;
59 
60 	if (b->ops->is_extents)
61 		for_each_key(b, k, &iter)
62 			ret += KEY_SIZE(k);
63 	return ret;
64 }
65 
__bch_check_keys(struct btree_keys * b,const char * fmt,...)66 void __bch_check_keys(struct btree_keys *b, const char *fmt, ...)
67 {
68 	va_list args;
69 	struct bkey *k, *p = NULL;
70 	struct btree_iter iter;
71 	const char *err;
72 
73 	for_each_key(b, k, &iter) {
74 		if (b->ops->is_extents) {
75 			err = "Keys out of order";
76 			if (p && bkey_cmp(&START_KEY(p), &START_KEY(k)) > 0)
77 				goto bug;
78 
79 			if (bch_ptr_invalid(b, k))
80 				continue;
81 
82 			err =  "Overlapping keys";
83 			if (p && bkey_cmp(p, &START_KEY(k)) > 0)
84 				goto bug;
85 		} else {
86 			if (bch_ptr_bad(b, k))
87 				continue;
88 
89 			err = "Duplicate keys";
90 			if (p && !bkey_cmp(p, k))
91 				goto bug;
92 		}
93 		p = k;
94 	}
95 #if 0
96 	err = "Key larger than btree node key";
97 	if (p && bkey_cmp(p, &b->key) > 0)
98 		goto bug;
99 #endif
100 	return;
101 bug:
102 	bch_dump_bucket(b);
103 
104 	va_start(args, fmt);
105 	vprintk(fmt, args);
106 	va_end(args);
107 
108 	panic("bch_check_keys error:  %s:\n", err);
109 }
110 
bch_btree_iter_next_check(struct btree_iter * iter)111 static void bch_btree_iter_next_check(struct btree_iter *iter)
112 {
113 	struct bkey *k = iter->data->k, *next = bkey_next(k);
114 
115 	if (next < iter->data->end &&
116 	    bkey_cmp(k, iter->b->ops->is_extents ?
117 		     &START_KEY(next) : next) > 0) {
118 		bch_dump_bucket(iter->b);
119 		panic("Key skipped backwards\n");
120 	}
121 }
122 
123 #else
124 
bch_btree_iter_next_check(struct btree_iter * iter)125 static inline void bch_btree_iter_next_check(struct btree_iter *iter) {}
126 
127 #endif
128 
129 /* Keylists */
130 
__bch_keylist_realloc(struct keylist * l,unsigned u64s)131 int __bch_keylist_realloc(struct keylist *l, unsigned u64s)
132 {
133 	size_t oldsize = bch_keylist_nkeys(l);
134 	size_t newsize = oldsize + u64s;
135 	uint64_t *old_keys = l->keys_p == l->inline_keys ? NULL : l->keys_p;
136 	uint64_t *new_keys;
137 
138 	newsize = roundup_pow_of_two(newsize);
139 
140 	if (newsize <= KEYLIST_INLINE ||
141 	    roundup_pow_of_two(oldsize) == newsize)
142 		return 0;
143 
144 	new_keys = krealloc(old_keys, sizeof(uint64_t) * newsize, GFP_NOIO);
145 
146 	if (!new_keys)
147 		return -ENOMEM;
148 
149 	if (!old_keys)
150 		memcpy(new_keys, l->inline_keys, sizeof(uint64_t) * oldsize);
151 
152 	l->keys_p = new_keys;
153 	l->top_p = new_keys + oldsize;
154 
155 	return 0;
156 }
157 
bch_keylist_pop(struct keylist * l)158 struct bkey *bch_keylist_pop(struct keylist *l)
159 {
160 	struct bkey *k = l->keys;
161 
162 	if (k == l->top)
163 		return NULL;
164 
165 	while (bkey_next(k) != l->top)
166 		k = bkey_next(k);
167 
168 	return l->top = k;
169 }
170 
bch_keylist_pop_front(struct keylist * l)171 void bch_keylist_pop_front(struct keylist *l)
172 {
173 	l->top_p -= bkey_u64s(l->keys);
174 
175 	memmove(l->keys,
176 		bkey_next(l->keys),
177 		bch_keylist_bytes(l));
178 }
179 
180 /* Key/pointer manipulation */
181 
bch_bkey_copy_single_ptr(struct bkey * dest,const struct bkey * src,unsigned i)182 void bch_bkey_copy_single_ptr(struct bkey *dest, const struct bkey *src,
183 			      unsigned i)
184 {
185 	BUG_ON(i > KEY_PTRS(src));
186 
187 	/* Only copy the header, key, and one pointer. */
188 	memcpy(dest, src, 2 * sizeof(uint64_t));
189 	dest->ptr[0] = src->ptr[i];
190 	SET_KEY_PTRS(dest, 1);
191 	/* We didn't copy the checksum so clear that bit. */
192 	SET_KEY_CSUM(dest, 0);
193 }
194 
__bch_cut_front(const struct bkey * where,struct bkey * k)195 bool __bch_cut_front(const struct bkey *where, struct bkey *k)
196 {
197 	unsigned i, len = 0;
198 
199 	if (bkey_cmp(where, &START_KEY(k)) <= 0)
200 		return false;
201 
202 	if (bkey_cmp(where, k) < 0)
203 		len = KEY_OFFSET(k) - KEY_OFFSET(where);
204 	else
205 		bkey_copy_key(k, where);
206 
207 	for (i = 0; i < KEY_PTRS(k); i++)
208 		SET_PTR_OFFSET(k, i, PTR_OFFSET(k, i) + KEY_SIZE(k) - len);
209 
210 	BUG_ON(len > KEY_SIZE(k));
211 	SET_KEY_SIZE(k, len);
212 	return true;
213 }
214 
__bch_cut_back(const struct bkey * where,struct bkey * k)215 bool __bch_cut_back(const struct bkey *where, struct bkey *k)
216 {
217 	unsigned len = 0;
218 
219 	if (bkey_cmp(where, k) >= 0)
220 		return false;
221 
222 	BUG_ON(KEY_INODE(where) != KEY_INODE(k));
223 
224 	if (bkey_cmp(where, &START_KEY(k)) > 0)
225 		len = KEY_OFFSET(where) - KEY_START(k);
226 
227 	bkey_copy_key(k, where);
228 
229 	BUG_ON(len > KEY_SIZE(k));
230 	SET_KEY_SIZE(k, len);
231 	return true;
232 }
233 
234 /* Auxiliary search trees */
235 
236 /* 32 bits total: */
237 #define BKEY_MID_BITS		3
238 #define BKEY_EXPONENT_BITS	7
239 #define BKEY_MANTISSA_BITS	(32 - BKEY_MID_BITS - BKEY_EXPONENT_BITS)
240 #define BKEY_MANTISSA_MASK	((1 << BKEY_MANTISSA_BITS) - 1)
241 
242 struct bkey_float {
243 	unsigned	exponent:BKEY_EXPONENT_BITS;
244 	unsigned	m:BKEY_MID_BITS;
245 	unsigned	mantissa:BKEY_MANTISSA_BITS;
246 } __packed;
247 
248 /*
249  * BSET_CACHELINE was originally intended to match the hardware cacheline size -
250  * it used to be 64, but I realized the lookup code would touch slightly less
251  * memory if it was 128.
252  *
253  * It definites the number of bytes (in struct bset) per struct bkey_float in
254  * the auxiliar search tree - when we're done searching the bset_float tree we
255  * have this many bytes left that we do a linear search over.
256  *
257  * Since (after level 5) every level of the bset_tree is on a new cacheline,
258  * we're touching one fewer cacheline in the bset tree in exchange for one more
259  * cacheline in the linear search - but the linear search might stop before it
260  * gets to the second cacheline.
261  */
262 
263 #define BSET_CACHELINE		128
264 
265 /* Space required for the btree node keys */
btree_keys_bytes(struct btree_keys * b)266 static inline size_t btree_keys_bytes(struct btree_keys *b)
267 {
268 	return PAGE_SIZE << b->page_order;
269 }
270 
btree_keys_cachelines(struct btree_keys * b)271 static inline size_t btree_keys_cachelines(struct btree_keys *b)
272 {
273 	return btree_keys_bytes(b) / BSET_CACHELINE;
274 }
275 
276 /* Space required for the auxiliary search trees */
bset_tree_bytes(struct btree_keys * b)277 static inline size_t bset_tree_bytes(struct btree_keys *b)
278 {
279 	return btree_keys_cachelines(b) * sizeof(struct bkey_float);
280 }
281 
282 /* Space required for the prev pointers */
bset_prev_bytes(struct btree_keys * b)283 static inline size_t bset_prev_bytes(struct btree_keys *b)
284 {
285 	return btree_keys_cachelines(b) * sizeof(uint8_t);
286 }
287 
288 /* Memory allocation */
289 
bch_btree_keys_free(struct btree_keys * b)290 void bch_btree_keys_free(struct btree_keys *b)
291 {
292 	struct bset_tree *t = b->set;
293 
294 	if (bset_prev_bytes(b) < PAGE_SIZE)
295 		kfree(t->prev);
296 	else
297 		free_pages((unsigned long) t->prev,
298 			   get_order(bset_prev_bytes(b)));
299 
300 	if (bset_tree_bytes(b) < PAGE_SIZE)
301 		kfree(t->tree);
302 	else
303 		free_pages((unsigned long) t->tree,
304 			   get_order(bset_tree_bytes(b)));
305 
306 	free_pages((unsigned long) t->data, b->page_order);
307 
308 	t->prev = NULL;
309 	t->tree = NULL;
310 	t->data = NULL;
311 }
312 EXPORT_SYMBOL(bch_btree_keys_free);
313 
bch_btree_keys_alloc(struct btree_keys * b,unsigned page_order,gfp_t gfp)314 int bch_btree_keys_alloc(struct btree_keys *b, unsigned page_order, gfp_t gfp)
315 {
316 	struct bset_tree *t = b->set;
317 
318 	BUG_ON(t->data);
319 
320 	b->page_order = page_order;
321 
322 	t->data = (void *) __get_free_pages(gfp, b->page_order);
323 	if (!t->data)
324 		goto err;
325 
326 	t->tree = bset_tree_bytes(b) < PAGE_SIZE
327 		? kmalloc(bset_tree_bytes(b), gfp)
328 		: (void *) __get_free_pages(gfp, get_order(bset_tree_bytes(b)));
329 	if (!t->tree)
330 		goto err;
331 
332 	t->prev = bset_prev_bytes(b) < PAGE_SIZE
333 		? kmalloc(bset_prev_bytes(b), gfp)
334 		: (void *) __get_free_pages(gfp, get_order(bset_prev_bytes(b)));
335 	if (!t->prev)
336 		goto err;
337 
338 	return 0;
339 err:
340 	bch_btree_keys_free(b);
341 	return -ENOMEM;
342 }
343 EXPORT_SYMBOL(bch_btree_keys_alloc);
344 
bch_btree_keys_init(struct btree_keys * b,const struct btree_keys_ops * ops,bool * expensive_debug_checks)345 void bch_btree_keys_init(struct btree_keys *b, const struct btree_keys_ops *ops,
346 			 bool *expensive_debug_checks)
347 {
348 	unsigned i;
349 
350 	b->ops = ops;
351 	b->expensive_debug_checks = expensive_debug_checks;
352 	b->nsets = 0;
353 	b->last_set_unwritten = 0;
354 
355 	/* XXX: shouldn't be needed */
356 	for (i = 0; i < MAX_BSETS; i++)
357 		b->set[i].size = 0;
358 	/*
359 	 * Second loop starts at 1 because b->keys[0]->data is the memory we
360 	 * allocated
361 	 */
362 	for (i = 1; i < MAX_BSETS; i++)
363 		b->set[i].data = NULL;
364 }
365 EXPORT_SYMBOL(bch_btree_keys_init);
366 
367 /* Binary tree stuff for auxiliary search trees */
368 
inorder_next(unsigned j,unsigned size)369 static unsigned inorder_next(unsigned j, unsigned size)
370 {
371 	if (j * 2 + 1 < size) {
372 		j = j * 2 + 1;
373 
374 		while (j * 2 < size)
375 			j *= 2;
376 	} else
377 		j >>= ffz(j) + 1;
378 
379 	return j;
380 }
381 
inorder_prev(unsigned j,unsigned size)382 static unsigned inorder_prev(unsigned j, unsigned size)
383 {
384 	if (j * 2 < size) {
385 		j = j * 2;
386 
387 		while (j * 2 + 1 < size)
388 			j = j * 2 + 1;
389 	} else
390 		j >>= ffs(j);
391 
392 	return j;
393 }
394 
395 /* I have no idea why this code works... and I'm the one who wrote it
396  *
397  * However, I do know what it does:
398  * Given a binary tree constructed in an array (i.e. how you normally implement
399  * a heap), it converts a node in the tree - referenced by array index - to the
400  * index it would have if you did an inorder traversal.
401  *
402  * Also tested for every j, size up to size somewhere around 6 million.
403  *
404  * The binary tree starts at array index 1, not 0
405  * extra is a function of size:
406  *   extra = (size - rounddown_pow_of_two(size - 1)) << 1;
407  */
__to_inorder(unsigned j,unsigned size,unsigned extra)408 static unsigned __to_inorder(unsigned j, unsigned size, unsigned extra)
409 {
410 	unsigned b = fls(j);
411 	unsigned shift = fls(size - 1) - b;
412 
413 	j  ^= 1U << (b - 1);
414 	j <<= 1;
415 	j  |= 1;
416 	j <<= shift;
417 
418 	if (j > extra)
419 		j -= (j - extra) >> 1;
420 
421 	return j;
422 }
423 
to_inorder(unsigned j,struct bset_tree * t)424 static unsigned to_inorder(unsigned j, struct bset_tree *t)
425 {
426 	return __to_inorder(j, t->size, t->extra);
427 }
428 
__inorder_to_tree(unsigned j,unsigned size,unsigned extra)429 static unsigned __inorder_to_tree(unsigned j, unsigned size, unsigned extra)
430 {
431 	unsigned shift;
432 
433 	if (j > extra)
434 		j += j - extra;
435 
436 	shift = ffs(j);
437 
438 	j >>= shift;
439 	j  |= roundup_pow_of_two(size) >> shift;
440 
441 	return j;
442 }
443 
inorder_to_tree(unsigned j,struct bset_tree * t)444 static unsigned inorder_to_tree(unsigned j, struct bset_tree *t)
445 {
446 	return __inorder_to_tree(j, t->size, t->extra);
447 }
448 
449 #if 0
450 void inorder_test(void)
451 {
452 	unsigned long done = 0;
453 	ktime_t start = ktime_get();
454 
455 	for (unsigned size = 2;
456 	     size < 65536000;
457 	     size++) {
458 		unsigned extra = (size - rounddown_pow_of_two(size - 1)) << 1;
459 		unsigned i = 1, j = rounddown_pow_of_two(size - 1);
460 
461 		if (!(size % 4096))
462 			printk(KERN_NOTICE "loop %u, %llu per us\n", size,
463 			       done / ktime_us_delta(ktime_get(), start));
464 
465 		while (1) {
466 			if (__inorder_to_tree(i, size, extra) != j)
467 				panic("size %10u j %10u i %10u", size, j, i);
468 
469 			if (__to_inorder(j, size, extra) != i)
470 				panic("size %10u j %10u i %10u", size, j, i);
471 
472 			if (j == rounddown_pow_of_two(size) - 1)
473 				break;
474 
475 			BUG_ON(inorder_prev(inorder_next(j, size), size) != j);
476 
477 			j = inorder_next(j, size);
478 			i++;
479 		}
480 
481 		done += size - 1;
482 	}
483 }
484 #endif
485 
486 /*
487  * Cacheline/offset <-> bkey pointer arithmetic:
488  *
489  * t->tree is a binary search tree in an array; each node corresponds to a key
490  * in one cacheline in t->set (BSET_CACHELINE bytes).
491  *
492  * This means we don't have to store the full index of the key that a node in
493  * the binary tree points to; to_inorder() gives us the cacheline, and then
494  * bkey_float->m gives us the offset within that cacheline, in units of 8 bytes.
495  *
496  * cacheline_to_bkey() and friends abstract out all the pointer arithmetic to
497  * make this work.
498  *
499  * To construct the bfloat for an arbitrary key we need to know what the key
500  * immediately preceding it is: we have to check if the two keys differ in the
501  * bits we're going to store in bkey_float->mantissa. t->prev[j] stores the size
502  * of the previous key so we can walk backwards to it from t->tree[j]'s key.
503  */
504 
cacheline_to_bkey(struct bset_tree * t,unsigned cacheline,unsigned offset)505 static struct bkey *cacheline_to_bkey(struct bset_tree *t, unsigned cacheline,
506 				      unsigned offset)
507 {
508 	return ((void *) t->data) + cacheline * BSET_CACHELINE + offset * 8;
509 }
510 
bkey_to_cacheline(struct bset_tree * t,struct bkey * k)511 static unsigned bkey_to_cacheline(struct bset_tree *t, struct bkey *k)
512 {
513 	return ((void *) k - (void *) t->data) / BSET_CACHELINE;
514 }
515 
bkey_to_cacheline_offset(struct bset_tree * t,unsigned cacheline,struct bkey * k)516 static unsigned bkey_to_cacheline_offset(struct bset_tree *t,
517 					 unsigned cacheline,
518 					 struct bkey *k)
519 {
520 	return (u64 *) k - (u64 *) cacheline_to_bkey(t, cacheline, 0);
521 }
522 
tree_to_bkey(struct bset_tree * t,unsigned j)523 static struct bkey *tree_to_bkey(struct bset_tree *t, unsigned j)
524 {
525 	return cacheline_to_bkey(t, to_inorder(j, t), t->tree[j].m);
526 }
527 
tree_to_prev_bkey(struct bset_tree * t,unsigned j)528 static struct bkey *tree_to_prev_bkey(struct bset_tree *t, unsigned j)
529 {
530 	return (void *) (((uint64_t *) tree_to_bkey(t, j)) - t->prev[j]);
531 }
532 
533 /*
534  * For the write set - the one we're currently inserting keys into - we don't
535  * maintain a full search tree, we just keep a simple lookup table in t->prev.
536  */
table_to_bkey(struct bset_tree * t,unsigned cacheline)537 static struct bkey *table_to_bkey(struct bset_tree *t, unsigned cacheline)
538 {
539 	return cacheline_to_bkey(t, cacheline, t->prev[cacheline]);
540 }
541 
shrd128(uint64_t high,uint64_t low,uint8_t shift)542 static inline uint64_t shrd128(uint64_t high, uint64_t low, uint8_t shift)
543 {
544 	low >>= shift;
545 	low  |= (high << 1) << (63U - shift);
546 	return low;
547 }
548 
bfloat_mantissa(const struct bkey * k,struct bkey_float * f)549 static inline unsigned bfloat_mantissa(const struct bkey *k,
550 				       struct bkey_float *f)
551 {
552 	const uint64_t *p = &k->low - (f->exponent >> 6);
553 	return shrd128(p[-1], p[0], f->exponent & 63) & BKEY_MANTISSA_MASK;
554 }
555 
make_bfloat(struct bset_tree * t,unsigned j)556 static void make_bfloat(struct bset_tree *t, unsigned j)
557 {
558 	struct bkey_float *f = &t->tree[j];
559 	struct bkey *m = tree_to_bkey(t, j);
560 	struct bkey *p = tree_to_prev_bkey(t, j);
561 
562 	struct bkey *l = is_power_of_2(j)
563 		? t->data->start
564 		: tree_to_prev_bkey(t, j >> ffs(j));
565 
566 	struct bkey *r = is_power_of_2(j + 1)
567 		? bset_bkey_idx(t->data, t->data->keys - bkey_u64s(&t->end))
568 		: tree_to_bkey(t, j >> (ffz(j) + 1));
569 
570 	BUG_ON(m < l || m > r);
571 	BUG_ON(bkey_next(p) != m);
572 
573 	if (KEY_INODE(l) != KEY_INODE(r))
574 		f->exponent = fls64(KEY_INODE(r) ^ KEY_INODE(l)) + 64;
575 	else
576 		f->exponent = fls64(r->low ^ l->low);
577 
578 	f->exponent = max_t(int, f->exponent - BKEY_MANTISSA_BITS, 0);
579 
580 	/*
581 	 * Setting f->exponent = 127 flags this node as failed, and causes the
582 	 * lookup code to fall back to comparing against the original key.
583 	 */
584 
585 	if (bfloat_mantissa(m, f) != bfloat_mantissa(p, f))
586 		f->mantissa = bfloat_mantissa(m, f) - 1;
587 	else
588 		f->exponent = 127;
589 }
590 
bset_alloc_tree(struct btree_keys * b,struct bset_tree * t)591 static void bset_alloc_tree(struct btree_keys *b, struct bset_tree *t)
592 {
593 	if (t != b->set) {
594 		unsigned j = roundup(t[-1].size,
595 				     64 / sizeof(struct bkey_float));
596 
597 		t->tree = t[-1].tree + j;
598 		t->prev = t[-1].prev + j;
599 	}
600 
601 	while (t < b->set + MAX_BSETS)
602 		t++->size = 0;
603 }
604 
bch_bset_build_unwritten_tree(struct btree_keys * b)605 static void bch_bset_build_unwritten_tree(struct btree_keys *b)
606 {
607 	struct bset_tree *t = bset_tree_last(b);
608 
609 	BUG_ON(b->last_set_unwritten);
610 	b->last_set_unwritten = 1;
611 
612 	bset_alloc_tree(b, t);
613 
614 	if (t->tree != b->set->tree + btree_keys_cachelines(b)) {
615 		t->prev[0] = bkey_to_cacheline_offset(t, 0, t->data->start);
616 		t->size = 1;
617 	}
618 }
619 
bch_bset_init_next(struct btree_keys * b,struct bset * i,uint64_t magic)620 void bch_bset_init_next(struct btree_keys *b, struct bset *i, uint64_t magic)
621 {
622 	if (i != b->set->data) {
623 		b->set[++b->nsets].data = i;
624 		i->seq = b->set->data->seq;
625 	} else
626 		get_random_bytes(&i->seq, sizeof(uint64_t));
627 
628 	i->magic	= magic;
629 	i->version	= 0;
630 	i->keys		= 0;
631 
632 	bch_bset_build_unwritten_tree(b);
633 }
634 EXPORT_SYMBOL(bch_bset_init_next);
635 
bch_bset_build_written_tree(struct btree_keys * b)636 void bch_bset_build_written_tree(struct btree_keys *b)
637 {
638 	struct bset_tree *t = bset_tree_last(b);
639 	struct bkey *prev = NULL, *k = t->data->start;
640 	unsigned j, cacheline = 1;
641 
642 	b->last_set_unwritten = 0;
643 
644 	bset_alloc_tree(b, t);
645 
646 	t->size = min_t(unsigned,
647 			bkey_to_cacheline(t, bset_bkey_last(t->data)),
648 			b->set->tree + btree_keys_cachelines(b) - t->tree);
649 
650 	if (t->size < 2) {
651 		t->size = 0;
652 		return;
653 	}
654 
655 	t->extra = (t->size - rounddown_pow_of_two(t->size - 1)) << 1;
656 
657 	/* First we figure out where the first key in each cacheline is */
658 	for (j = inorder_next(0, t->size);
659 	     j;
660 	     j = inorder_next(j, t->size)) {
661 		while (bkey_to_cacheline(t, k) < cacheline)
662 			prev = k, k = bkey_next(k);
663 
664 		t->prev[j] = bkey_u64s(prev);
665 		t->tree[j].m = bkey_to_cacheline_offset(t, cacheline++, k);
666 	}
667 
668 	while (bkey_next(k) != bset_bkey_last(t->data))
669 		k = bkey_next(k);
670 
671 	t->end = *k;
672 
673 	/* Then we build the tree */
674 	for (j = inorder_next(0, t->size);
675 	     j;
676 	     j = inorder_next(j, t->size))
677 		make_bfloat(t, j);
678 }
679 EXPORT_SYMBOL(bch_bset_build_written_tree);
680 
681 /* Insert */
682 
bch_bset_fix_invalidated_key(struct btree_keys * b,struct bkey * k)683 void bch_bset_fix_invalidated_key(struct btree_keys *b, struct bkey *k)
684 {
685 	struct bset_tree *t;
686 	unsigned inorder, j = 1;
687 
688 	for (t = b->set; t <= bset_tree_last(b); t++)
689 		if (k < bset_bkey_last(t->data))
690 			goto found_set;
691 
692 	BUG();
693 found_set:
694 	if (!t->size || !bset_written(b, t))
695 		return;
696 
697 	inorder = bkey_to_cacheline(t, k);
698 
699 	if (k == t->data->start)
700 		goto fix_left;
701 
702 	if (bkey_next(k) == bset_bkey_last(t->data)) {
703 		t->end = *k;
704 		goto fix_right;
705 	}
706 
707 	j = inorder_to_tree(inorder, t);
708 
709 	if (j &&
710 	    j < t->size &&
711 	    k == tree_to_bkey(t, j))
712 fix_left:	do {
713 			make_bfloat(t, j);
714 			j = j * 2;
715 		} while (j < t->size);
716 
717 	j = inorder_to_tree(inorder + 1, t);
718 
719 	if (j &&
720 	    j < t->size &&
721 	    k == tree_to_prev_bkey(t, j))
722 fix_right:	do {
723 			make_bfloat(t, j);
724 			j = j * 2 + 1;
725 		} while (j < t->size);
726 }
727 EXPORT_SYMBOL(bch_bset_fix_invalidated_key);
728 
bch_bset_fix_lookup_table(struct btree_keys * b,struct bset_tree * t,struct bkey * k)729 static void bch_bset_fix_lookup_table(struct btree_keys *b,
730 				      struct bset_tree *t,
731 				      struct bkey *k)
732 {
733 	unsigned shift = bkey_u64s(k);
734 	unsigned j = bkey_to_cacheline(t, k);
735 
736 	/* We're getting called from btree_split() or btree_gc, just bail out */
737 	if (!t->size)
738 		return;
739 
740 	/* k is the key we just inserted; we need to find the entry in the
741 	 * lookup table for the first key that is strictly greater than k:
742 	 * it's either k's cacheline or the next one
743 	 */
744 	while (j < t->size &&
745 	       table_to_bkey(t, j) <= k)
746 		j++;
747 
748 	/* Adjust all the lookup table entries, and find a new key for any that
749 	 * have gotten too big
750 	 */
751 	for (; j < t->size; j++) {
752 		t->prev[j] += shift;
753 
754 		if (t->prev[j] > 7) {
755 			k = table_to_bkey(t, j - 1);
756 
757 			while (k < cacheline_to_bkey(t, j, 0))
758 				k = bkey_next(k);
759 
760 			t->prev[j] = bkey_to_cacheline_offset(t, j, k);
761 		}
762 	}
763 
764 	if (t->size == b->set->tree + btree_keys_cachelines(b) - t->tree)
765 		return;
766 
767 	/* Possibly add a new entry to the end of the lookup table */
768 
769 	for (k = table_to_bkey(t, t->size - 1);
770 	     k != bset_bkey_last(t->data);
771 	     k = bkey_next(k))
772 		if (t->size == bkey_to_cacheline(t, k)) {
773 			t->prev[t->size] = bkey_to_cacheline_offset(t, t->size, k);
774 			t->size++;
775 		}
776 }
777 
778 /*
779  * Tries to merge l and r: l should be lower than r
780  * Returns true if we were able to merge. If we did merge, l will be the merged
781  * key, r will be untouched.
782  */
bch_bkey_try_merge(struct btree_keys * b,struct bkey * l,struct bkey * r)783 bool bch_bkey_try_merge(struct btree_keys *b, struct bkey *l, struct bkey *r)
784 {
785 	if (!b->ops->key_merge)
786 		return false;
787 
788 	/*
789 	 * Generic header checks
790 	 * Assumes left and right are in order
791 	 * Left and right must be exactly aligned
792 	 */
793 	if (!bch_bkey_equal_header(l, r) ||
794 	     bkey_cmp(l, &START_KEY(r)))
795 		return false;
796 
797 	return b->ops->key_merge(b, l, r);
798 }
799 EXPORT_SYMBOL(bch_bkey_try_merge);
800 
bch_bset_insert(struct btree_keys * b,struct bkey * where,struct bkey * insert)801 void bch_bset_insert(struct btree_keys *b, struct bkey *where,
802 		     struct bkey *insert)
803 {
804 	struct bset_tree *t = bset_tree_last(b);
805 
806 	BUG_ON(!b->last_set_unwritten);
807 	BUG_ON(bset_byte_offset(b, t->data) +
808 	       __set_bytes(t->data, t->data->keys + bkey_u64s(insert)) >
809 	       PAGE_SIZE << b->page_order);
810 
811 	memmove((uint64_t *) where + bkey_u64s(insert),
812 		where,
813 		(void *) bset_bkey_last(t->data) - (void *) where);
814 
815 	t->data->keys += bkey_u64s(insert);
816 	bkey_copy(where, insert);
817 	bch_bset_fix_lookup_table(b, t, where);
818 }
819 EXPORT_SYMBOL(bch_bset_insert);
820 
bch_btree_insert_key(struct btree_keys * b,struct bkey * k,struct bkey * replace_key)821 unsigned bch_btree_insert_key(struct btree_keys *b, struct bkey *k,
822 			      struct bkey *replace_key)
823 {
824 	unsigned status = BTREE_INSERT_STATUS_NO_INSERT;
825 	struct bset *i = bset_tree_last(b)->data;
826 	struct bkey *m, *prev = NULL;
827 	struct btree_iter iter;
828 	struct bkey preceding_key_on_stack = ZERO_KEY;
829 	struct bkey *preceding_key_p = &preceding_key_on_stack;
830 
831 	BUG_ON(b->ops->is_extents && !KEY_SIZE(k));
832 
833 	/*
834 	 * If k has preceding key, preceding_key_p will be set to address
835 	 *  of k's preceding key; otherwise preceding_key_p will be set
836 	 * to NULL inside preceding_key().
837 	 */
838 	if (b->ops->is_extents)
839 		preceding_key(&START_KEY(k), &preceding_key_p);
840 	else
841 		preceding_key(k, &preceding_key_p);
842 
843 	m = bch_btree_iter_init(b, &iter, preceding_key_p);
844 
845 	if (b->ops->insert_fixup(b, k, &iter, replace_key))
846 		return status;
847 
848 	status = BTREE_INSERT_STATUS_INSERT;
849 
850 	while (m != bset_bkey_last(i) &&
851 	       bkey_cmp(k, b->ops->is_extents ? &START_KEY(m) : m) > 0)
852 		prev = m, m = bkey_next(m);
853 
854 	/* prev is in the tree, if we merge we're done */
855 	status = BTREE_INSERT_STATUS_BACK_MERGE;
856 	if (prev &&
857 	    bch_bkey_try_merge(b, prev, k))
858 		goto merged;
859 #if 0
860 	status = BTREE_INSERT_STATUS_OVERWROTE;
861 	if (m != bset_bkey_last(i) &&
862 	    KEY_PTRS(m) == KEY_PTRS(k) && !KEY_SIZE(m))
863 		goto copy;
864 #endif
865 	status = BTREE_INSERT_STATUS_FRONT_MERGE;
866 	if (m != bset_bkey_last(i) &&
867 	    bch_bkey_try_merge(b, k, m))
868 		goto copy;
869 
870 	bch_bset_insert(b, m, k);
871 copy:	bkey_copy(m, k);
872 merged:
873 	return status;
874 }
875 EXPORT_SYMBOL(bch_btree_insert_key);
876 
877 /* Lookup */
878 
879 struct bset_search_iter {
880 	struct bkey *l, *r;
881 };
882 
bset_search_write_set(struct bset_tree * t,const struct bkey * search)883 static struct bset_search_iter bset_search_write_set(struct bset_tree *t,
884 						     const struct bkey *search)
885 {
886 	unsigned li = 0, ri = t->size;
887 
888 	while (li + 1 != ri) {
889 		unsigned m = (li + ri) >> 1;
890 
891 		if (bkey_cmp(table_to_bkey(t, m), search) > 0)
892 			ri = m;
893 		else
894 			li = m;
895 	}
896 
897 	return (struct bset_search_iter) {
898 		table_to_bkey(t, li),
899 		ri < t->size ? table_to_bkey(t, ri) : bset_bkey_last(t->data)
900 	};
901 }
902 
bset_search_tree(struct bset_tree * t,const struct bkey * search)903 static struct bset_search_iter bset_search_tree(struct bset_tree *t,
904 						const struct bkey *search)
905 {
906 	struct bkey *l, *r;
907 	struct bkey_float *f;
908 	unsigned inorder, j, n = 1;
909 
910 	do {
911 		unsigned p = n << 4;
912 		p &= ((int) (p - t->size)) >> 31;
913 
914 		prefetch(&t->tree[p]);
915 
916 		j = n;
917 		f = &t->tree[j];
918 
919 		/*
920 		 * n = (f->mantissa > bfloat_mantissa())
921 		 *	? j * 2
922 		 *	: j * 2 + 1;
923 		 *
924 		 * We need to subtract 1 from f->mantissa for the sign bit trick
925 		 * to work  - that's done in make_bfloat()
926 		 */
927 		if (likely(f->exponent != 127))
928 			n = j * 2 + (((unsigned)
929 				      (f->mantissa -
930 				       bfloat_mantissa(search, f))) >> 31);
931 		else
932 			n = (bkey_cmp(tree_to_bkey(t, j), search) > 0)
933 				? j * 2
934 				: j * 2 + 1;
935 	} while (n < t->size);
936 
937 	inorder = to_inorder(j, t);
938 
939 	/*
940 	 * n would have been the node we recursed to - the low bit tells us if
941 	 * we recursed left or recursed right.
942 	 */
943 	if (n & 1) {
944 		l = cacheline_to_bkey(t, inorder, f->m);
945 
946 		if (++inorder != t->size) {
947 			f = &t->tree[inorder_next(j, t->size)];
948 			r = cacheline_to_bkey(t, inorder, f->m);
949 		} else
950 			r = bset_bkey_last(t->data);
951 	} else {
952 		r = cacheline_to_bkey(t, inorder, f->m);
953 
954 		if (--inorder) {
955 			f = &t->tree[inorder_prev(j, t->size)];
956 			l = cacheline_to_bkey(t, inorder, f->m);
957 		} else
958 			l = t->data->start;
959 	}
960 
961 	return (struct bset_search_iter) {l, r};
962 }
963 
__bch_bset_search(struct btree_keys * b,struct bset_tree * t,const struct bkey * search)964 struct bkey *__bch_bset_search(struct btree_keys *b, struct bset_tree *t,
965 			       const struct bkey *search)
966 {
967 	struct bset_search_iter i;
968 
969 	/*
970 	 * First, we search for a cacheline, then lastly we do a linear search
971 	 * within that cacheline.
972 	 *
973 	 * To search for the cacheline, there's three different possibilities:
974 	 *  * The set is too small to have a search tree, so we just do a linear
975 	 *    search over the whole set.
976 	 *  * The set is the one we're currently inserting into; keeping a full
977 	 *    auxiliary search tree up to date would be too expensive, so we
978 	 *    use a much simpler lookup table to do a binary search -
979 	 *    bset_search_write_set().
980 	 *  * Or we use the auxiliary search tree we constructed earlier -
981 	 *    bset_search_tree()
982 	 */
983 
984 	if (unlikely(!t->size)) {
985 		i.l = t->data->start;
986 		i.r = bset_bkey_last(t->data);
987 	} else if (bset_written(b, t)) {
988 		/*
989 		 * Each node in the auxiliary search tree covers a certain range
990 		 * of bits, and keys above and below the set it covers might
991 		 * differ outside those bits - so we have to special case the
992 		 * start and end - handle that here:
993 		 */
994 
995 		if (unlikely(bkey_cmp(search, &t->end) >= 0))
996 			return bset_bkey_last(t->data);
997 
998 		if (unlikely(bkey_cmp(search, t->data->start) < 0))
999 			return t->data->start;
1000 
1001 		i = bset_search_tree(t, search);
1002 	} else {
1003 		BUG_ON(!b->nsets &&
1004 		       t->size < bkey_to_cacheline(t, bset_bkey_last(t->data)));
1005 
1006 		i = bset_search_write_set(t, search);
1007 	}
1008 
1009 	if (btree_keys_expensive_checks(b)) {
1010 		BUG_ON(bset_written(b, t) &&
1011 		       i.l != t->data->start &&
1012 		       bkey_cmp(tree_to_prev_bkey(t,
1013 			  inorder_to_tree(bkey_to_cacheline(t, i.l), t)),
1014 				search) > 0);
1015 
1016 		BUG_ON(i.r != bset_bkey_last(t->data) &&
1017 		       bkey_cmp(i.r, search) <= 0);
1018 	}
1019 
1020 	while (likely(i.l != i.r) &&
1021 	       bkey_cmp(i.l, search) <= 0)
1022 		i.l = bkey_next(i.l);
1023 
1024 	return i.l;
1025 }
1026 EXPORT_SYMBOL(__bch_bset_search);
1027 
1028 /* Btree iterator */
1029 
1030 typedef bool (btree_iter_cmp_fn)(struct btree_iter_set,
1031 				 struct btree_iter_set);
1032 
btree_iter_cmp(struct btree_iter_set l,struct btree_iter_set r)1033 static inline bool btree_iter_cmp(struct btree_iter_set l,
1034 				  struct btree_iter_set r)
1035 {
1036 	return bkey_cmp(l.k, r.k) > 0;
1037 }
1038 
btree_iter_end(struct btree_iter * iter)1039 static inline bool btree_iter_end(struct btree_iter *iter)
1040 {
1041 	return !iter->used;
1042 }
1043 
bch_btree_iter_push(struct btree_iter * iter,struct bkey * k,struct bkey * end)1044 void bch_btree_iter_push(struct btree_iter *iter, struct bkey *k,
1045 			 struct bkey *end)
1046 {
1047 	if (k != end)
1048 		BUG_ON(!heap_add(iter,
1049 				 ((struct btree_iter_set) { k, end }),
1050 				 btree_iter_cmp));
1051 }
1052 
__bch_btree_iter_init(struct btree_keys * b,struct btree_iter * iter,struct bkey * search,struct bset_tree * start)1053 static struct bkey *__bch_btree_iter_init(struct btree_keys *b,
1054 					  struct btree_iter *iter,
1055 					  struct bkey *search,
1056 					  struct bset_tree *start)
1057 {
1058 	struct bkey *ret = NULL;
1059 	iter->size = ARRAY_SIZE(iter->data);
1060 	iter->used = 0;
1061 
1062 #ifdef CONFIG_BCACHE_DEBUG
1063 	iter->b = b;
1064 #endif
1065 
1066 	for (; start <= bset_tree_last(b); start++) {
1067 		ret = bch_bset_search(b, start, search);
1068 		bch_btree_iter_push(iter, ret, bset_bkey_last(start->data));
1069 	}
1070 
1071 	return ret;
1072 }
1073 
bch_btree_iter_init(struct btree_keys * b,struct btree_iter * iter,struct bkey * search)1074 struct bkey *bch_btree_iter_init(struct btree_keys *b,
1075 				 struct btree_iter *iter,
1076 				 struct bkey *search)
1077 {
1078 	return __bch_btree_iter_init(b, iter, search, b->set);
1079 }
1080 EXPORT_SYMBOL(bch_btree_iter_init);
1081 
__bch_btree_iter_next(struct btree_iter * iter,btree_iter_cmp_fn * cmp)1082 static inline struct bkey *__bch_btree_iter_next(struct btree_iter *iter,
1083 						 btree_iter_cmp_fn *cmp)
1084 {
1085 	struct btree_iter_set unused;
1086 	struct bkey *ret = NULL;
1087 
1088 	if (!btree_iter_end(iter)) {
1089 		bch_btree_iter_next_check(iter);
1090 
1091 		ret = iter->data->k;
1092 		iter->data->k = bkey_next(iter->data->k);
1093 
1094 		if (iter->data->k > iter->data->end) {
1095 			WARN_ONCE(1, "bset was corrupt!\n");
1096 			iter->data->k = iter->data->end;
1097 		}
1098 
1099 		if (iter->data->k == iter->data->end)
1100 			heap_pop(iter, unused, cmp);
1101 		else
1102 			heap_sift(iter, 0, cmp);
1103 	}
1104 
1105 	return ret;
1106 }
1107 
bch_btree_iter_next(struct btree_iter * iter)1108 struct bkey *bch_btree_iter_next(struct btree_iter *iter)
1109 {
1110 	return __bch_btree_iter_next(iter, btree_iter_cmp);
1111 
1112 }
1113 EXPORT_SYMBOL(bch_btree_iter_next);
1114 
bch_btree_iter_next_filter(struct btree_iter * iter,struct btree_keys * b,ptr_filter_fn fn)1115 struct bkey *bch_btree_iter_next_filter(struct btree_iter *iter,
1116 					struct btree_keys *b, ptr_filter_fn fn)
1117 {
1118 	struct bkey *ret;
1119 
1120 	do {
1121 		ret = bch_btree_iter_next(iter);
1122 	} while (ret && fn(b, ret));
1123 
1124 	return ret;
1125 }
1126 
1127 /* Mergesort */
1128 
bch_bset_sort_state_free(struct bset_sort_state * state)1129 void bch_bset_sort_state_free(struct bset_sort_state *state)
1130 {
1131 	if (state->pool)
1132 		mempool_destroy(state->pool);
1133 }
1134 
bch_bset_sort_state_init(struct bset_sort_state * state,unsigned page_order)1135 int bch_bset_sort_state_init(struct bset_sort_state *state, unsigned page_order)
1136 {
1137 	spin_lock_init(&state->time.lock);
1138 
1139 	state->page_order = page_order;
1140 	state->crit_factor = int_sqrt(1 << page_order);
1141 
1142 	state->pool = mempool_create_page_pool(1, page_order);
1143 	if (!state->pool)
1144 		return -ENOMEM;
1145 
1146 	return 0;
1147 }
1148 EXPORT_SYMBOL(bch_bset_sort_state_init);
1149 
btree_mergesort(struct btree_keys * b,struct bset * out,struct btree_iter * iter,bool fixup,bool remove_stale)1150 static void btree_mergesort(struct btree_keys *b, struct bset *out,
1151 			    struct btree_iter *iter,
1152 			    bool fixup, bool remove_stale)
1153 {
1154 	int i;
1155 	struct bkey *k, *last = NULL;
1156 	BKEY_PADDED(k) tmp;
1157 	bool (*bad)(struct btree_keys *, const struct bkey *) = remove_stale
1158 		? bch_ptr_bad
1159 		: bch_ptr_invalid;
1160 
1161 	/* Heapify the iterator, using our comparison function */
1162 	for (i = iter->used / 2 - 1; i >= 0; --i)
1163 		heap_sift(iter, i, b->ops->sort_cmp);
1164 
1165 	while (!btree_iter_end(iter)) {
1166 		if (b->ops->sort_fixup && fixup)
1167 			k = b->ops->sort_fixup(iter, &tmp.k);
1168 		else
1169 			k = NULL;
1170 
1171 		if (!k)
1172 			k = __bch_btree_iter_next(iter, b->ops->sort_cmp);
1173 
1174 		if (bad(b, k))
1175 			continue;
1176 
1177 		if (!last) {
1178 			last = out->start;
1179 			bkey_copy(last, k);
1180 		} else if (!bch_bkey_try_merge(b, last, k)) {
1181 			last = bkey_next(last);
1182 			bkey_copy(last, k);
1183 		}
1184 	}
1185 
1186 	out->keys = last ? (uint64_t *) bkey_next(last) - out->d : 0;
1187 
1188 	pr_debug("sorted %i keys", out->keys);
1189 }
1190 
__btree_sort(struct btree_keys * b,struct btree_iter * iter,unsigned start,unsigned order,bool fixup,struct bset_sort_state * state)1191 static void __btree_sort(struct btree_keys *b, struct btree_iter *iter,
1192 			 unsigned start, unsigned order, bool fixup,
1193 			 struct bset_sort_state *state)
1194 {
1195 	uint64_t start_time;
1196 	bool used_mempool = false;
1197 	struct bset *out = (void *) __get_free_pages(__GFP_NOWARN|GFP_NOWAIT,
1198 						     order);
1199 	if (!out) {
1200 		struct page *outp;
1201 
1202 		BUG_ON(order > state->page_order);
1203 
1204 		outp = mempool_alloc(state->pool, GFP_NOIO);
1205 		out = page_address(outp);
1206 		used_mempool = true;
1207 		order = state->page_order;
1208 	}
1209 
1210 	start_time = local_clock();
1211 
1212 	btree_mergesort(b, out, iter, fixup, false);
1213 	b->nsets = start;
1214 
1215 	if (!start && order == b->page_order) {
1216 		/*
1217 		 * Our temporary buffer is the same size as the btree node's
1218 		 * buffer, we can just swap buffers instead of doing a big
1219 		 * memcpy()
1220 		 */
1221 
1222 		out->magic	= b->set->data->magic;
1223 		out->seq	= b->set->data->seq;
1224 		out->version	= b->set->data->version;
1225 		swap(out, b->set->data);
1226 	} else {
1227 		b->set[start].data->keys = out->keys;
1228 		memcpy(b->set[start].data->start, out->start,
1229 		       (void *) bset_bkey_last(out) - (void *) out->start);
1230 	}
1231 
1232 	if (used_mempool)
1233 		mempool_free(virt_to_page(out), state->pool);
1234 	else
1235 		free_pages((unsigned long) out, order);
1236 
1237 	bch_bset_build_written_tree(b);
1238 
1239 	if (!start)
1240 		bch_time_stats_update(&state->time, start_time);
1241 }
1242 
bch_btree_sort_partial(struct btree_keys * b,unsigned start,struct bset_sort_state * state)1243 void bch_btree_sort_partial(struct btree_keys *b, unsigned start,
1244 			    struct bset_sort_state *state)
1245 {
1246 	size_t order = b->page_order, keys = 0;
1247 	struct btree_iter iter;
1248 	int oldsize = bch_count_data(b);
1249 
1250 	__bch_btree_iter_init(b, &iter, NULL, &b->set[start]);
1251 
1252 	if (start) {
1253 		unsigned i;
1254 
1255 		for (i = start; i <= b->nsets; i++)
1256 			keys += b->set[i].data->keys;
1257 
1258 		order = get_order(__set_bytes(b->set->data, keys));
1259 	}
1260 
1261 	__btree_sort(b, &iter, start, order, false, state);
1262 
1263 	EBUG_ON(oldsize >= 0 && bch_count_data(b) != oldsize);
1264 }
1265 EXPORT_SYMBOL(bch_btree_sort_partial);
1266 
bch_btree_sort_and_fix_extents(struct btree_keys * b,struct btree_iter * iter,struct bset_sort_state * state)1267 void bch_btree_sort_and_fix_extents(struct btree_keys *b,
1268 				    struct btree_iter *iter,
1269 				    struct bset_sort_state *state)
1270 {
1271 	__btree_sort(b, iter, 0, b->page_order, true, state);
1272 }
1273 
bch_btree_sort_into(struct btree_keys * b,struct btree_keys * new,struct bset_sort_state * state)1274 void bch_btree_sort_into(struct btree_keys *b, struct btree_keys *new,
1275 			 struct bset_sort_state *state)
1276 {
1277 	uint64_t start_time = local_clock();
1278 
1279 	struct btree_iter iter;
1280 	bch_btree_iter_init(b, &iter, NULL);
1281 
1282 	btree_mergesort(b, new->set->data, &iter, false, true);
1283 
1284 	bch_time_stats_update(&state->time, start_time);
1285 
1286 	new->set->size = 0; // XXX: why?
1287 }
1288 
1289 #define SORT_CRIT	(4096 / sizeof(uint64_t))
1290 
bch_btree_sort_lazy(struct btree_keys * b,struct bset_sort_state * state)1291 void bch_btree_sort_lazy(struct btree_keys *b, struct bset_sort_state *state)
1292 {
1293 	unsigned crit = SORT_CRIT;
1294 	int i;
1295 
1296 	/* Don't sort if nothing to do */
1297 	if (!b->nsets)
1298 		goto out;
1299 
1300 	for (i = b->nsets - 1; i >= 0; --i) {
1301 		crit *= state->crit_factor;
1302 
1303 		if (b->set[i].data->keys < crit) {
1304 			bch_btree_sort_partial(b, i, state);
1305 			return;
1306 		}
1307 	}
1308 
1309 	/* Sort if we'd overflow */
1310 	if (b->nsets + 1 == MAX_BSETS) {
1311 		bch_btree_sort(b, state);
1312 		return;
1313 	}
1314 
1315 out:
1316 	bch_bset_build_written_tree(b);
1317 }
1318 EXPORT_SYMBOL(bch_btree_sort_lazy);
1319 
bch_btree_keys_stats(struct btree_keys * b,struct bset_stats * stats)1320 void bch_btree_keys_stats(struct btree_keys *b, struct bset_stats *stats)
1321 {
1322 	unsigned i;
1323 
1324 	for (i = 0; i <= b->nsets; i++) {
1325 		struct bset_tree *t = &b->set[i];
1326 		size_t bytes = t->data->keys * sizeof(uint64_t);
1327 		size_t j;
1328 
1329 		if (bset_written(b, t)) {
1330 			stats->sets_written++;
1331 			stats->bytes_written += bytes;
1332 
1333 			stats->floats += t->size - 1;
1334 
1335 			for (j = 1; j < t->size; j++)
1336 				if (t->tree[j].exponent == 127)
1337 					stats->failed++;
1338 		} else {
1339 			stats->sets_unwritten++;
1340 			stats->bytes_unwritten += bytes;
1341 		}
1342 	}
1343 }
1344