]> git.sesse.net Git - bcachefs-tools-debian/blob - libbcachefs/btree_cache.c
fc69f6855d29a725e815b12d731d799bb605752e
[bcachefs-tools-debian] / libbcachefs / btree_cache.c
1 // SPDX-License-Identifier: GPL-2.0
2
3 #include "bcachefs.h"
4 #include "btree_cache.h"
5 #include "btree_io.h"
6 #include "btree_iter.h"
7 #include "btree_locking.h"
8 #include "debug.h"
9
10 #include <linux/prefetch.h>
11 #include <linux/sched/mm.h>
12 #include <trace/events/bcachefs.h>
13
14 const char * const bch2_btree_ids[] = {
15 #define x(kwd, val, name) name,
16         BCH_BTREE_IDS()
17 #undef x
18         NULL
19 };
20
21 void bch2_recalc_btree_reserve(struct bch_fs *c)
22 {
23         unsigned i, reserve = 16;
24
25         if (!c->btree_roots[0].b)
26                 reserve += 8;
27
28         for (i = 0; i < BTREE_ID_NR; i++)
29                 if (c->btree_roots[i].b)
30                         reserve += min_t(unsigned, 1,
31                                          c->btree_roots[i].b->level) * 8;
32
33         c->btree_cache.reserve = reserve;
34 }
35
36 static inline unsigned btree_cache_can_free(struct btree_cache *bc)
37 {
38         return max_t(int, 0, bc->used - bc->reserve);
39 }
40
41 static void __btree_node_data_free(struct bch_fs *c, struct btree *b)
42 {
43         EBUG_ON(btree_node_write_in_flight(b));
44
45         kvpfree(b->data, btree_bytes(c));
46         b->data = NULL;
47         bch2_btree_keys_free(b);
48 }
49
50 static void btree_node_data_free(struct bch_fs *c, struct btree *b)
51 {
52         struct btree_cache *bc = &c->btree_cache;
53
54         __btree_node_data_free(c, b);
55         bc->used--;
56         list_move(&b->list, &bc->freed);
57 }
58
59 static int bch2_btree_cache_cmp_fn(struct rhashtable_compare_arg *arg,
60                                    const void *obj)
61 {
62         const struct btree *b = obj;
63         const u64 *v = arg->key;
64
65         return b->hash_val == *v ? 0 : 1;
66 }
67
68 static const struct rhashtable_params bch_btree_cache_params = {
69         .head_offset    = offsetof(struct btree, hash),
70         .key_offset     = offsetof(struct btree, hash_val),
71         .key_len        = sizeof(u64),
72         .obj_cmpfn      = bch2_btree_cache_cmp_fn,
73 };
74
75 static void btree_node_data_alloc(struct bch_fs *c, struct btree *b, gfp_t gfp)
76 {
77         struct btree_cache *bc = &c->btree_cache;
78
79         b->data = kvpmalloc(btree_bytes(c), gfp);
80         if (!b->data)
81                 goto err;
82
83         if (bch2_btree_keys_alloc(b, btree_page_order(c), gfp))
84                 goto err;
85
86         bc->used++;
87         list_move(&b->list, &bc->freeable);
88         return;
89 err:
90         kvpfree(b->data, btree_bytes(c));
91         b->data = NULL;
92         list_move(&b->list, &bc->freed);
93 }
94
95 static struct btree *btree_node_mem_alloc(struct bch_fs *c, gfp_t gfp)
96 {
97         struct btree *b = kzalloc(sizeof(struct btree), gfp);
98         if (!b)
99                 return NULL;
100
101         bkey_btree_ptr_init(&b->key);
102         six_lock_init(&b->lock);
103         INIT_LIST_HEAD(&b->list);
104         INIT_LIST_HEAD(&b->write_blocked);
105
106         btree_node_data_alloc(c, b, gfp);
107         return b->data ? b : NULL;
108 }
109
110 /* Btree in memory cache - hash table */
111
112 void bch2_btree_node_hash_remove(struct btree_cache *bc, struct btree *b)
113 {
114         rhashtable_remove_fast(&bc->table, &b->hash, bch_btree_cache_params);
115
116         /* Cause future lookups for this node to fail: */
117         b->hash_val = 0;
118 }
119
120 int __bch2_btree_node_hash_insert(struct btree_cache *bc, struct btree *b)
121 {
122         BUG_ON(b->hash_val);
123         b->hash_val = btree_ptr_hash_val(&b->key);
124
125         return rhashtable_lookup_insert_fast(&bc->table, &b->hash,
126                                              bch_btree_cache_params);
127 }
128
129 int bch2_btree_node_hash_insert(struct btree_cache *bc, struct btree *b,
130                                 unsigned level, enum btree_id id)
131 {
132         int ret;
133
134         b->level        = level;
135         b->btree_id     = id;
136
137         mutex_lock(&bc->lock);
138         ret = __bch2_btree_node_hash_insert(bc, b);
139         if (!ret)
140                 list_add(&b->list, &bc->live);
141         mutex_unlock(&bc->lock);
142
143         return ret;
144 }
145
146 __flatten
147 static inline struct btree *btree_cache_find(struct btree_cache *bc,
148                                      const struct bkey_i *k)
149 {
150         u64 v = btree_ptr_hash_val(k);
151
152         return rhashtable_lookup_fast(&bc->table, &v, bch_btree_cache_params);
153 }
154
155 /*
156  * this version is for btree nodes that have already been freed (we're not
157  * reaping a real btree node)
158  */
159 static int __btree_node_reclaim(struct bch_fs *c, struct btree *b, bool flush)
160 {
161         struct btree_cache *bc = &c->btree_cache;
162         int ret = 0;
163
164         lockdep_assert_held(&bc->lock);
165
166         if (!six_trylock_intent(&b->lock))
167                 return -ENOMEM;
168
169         if (!six_trylock_write(&b->lock))
170                 goto out_unlock_intent;
171
172         if (btree_node_noevict(b))
173                 goto out_unlock;
174
175         if (!btree_node_may_write(b))
176                 goto out_unlock;
177
178         if (btree_node_dirty(b) &&
179             test_bit(BCH_FS_HOLD_BTREE_WRITES, &c->flags))
180                 goto out_unlock;
181
182         if (btree_node_dirty(b) ||
183             btree_node_write_in_flight(b) ||
184             btree_node_read_in_flight(b)) {
185                 if (!flush)
186                         goto out_unlock;
187
188                 wait_on_bit_io(&b->flags, BTREE_NODE_read_in_flight,
189                                TASK_UNINTERRUPTIBLE);
190
191                 /*
192                  * Using the underscore version because we don't want to compact
193                  * bsets after the write, since this node is about to be evicted
194                  * - unless btree verify mode is enabled, since it runs out of
195                  * the post write cleanup:
196                  */
197                 if (verify_btree_ondisk(c))
198                         bch2_btree_node_write(c, b, SIX_LOCK_intent);
199                 else
200                         __bch2_btree_node_write(c, b, SIX_LOCK_read);
201
202                 /* wait for any in flight btree write */
203                 btree_node_wait_on_io(b);
204         }
205 out:
206         if (b->hash_val && !ret)
207                 trace_btree_node_reap(c, b);
208         return ret;
209 out_unlock:
210         six_unlock_write(&b->lock);
211 out_unlock_intent:
212         six_unlock_intent(&b->lock);
213         ret = -ENOMEM;
214         goto out;
215 }
216
217 static int btree_node_reclaim(struct bch_fs *c, struct btree *b)
218 {
219         return __btree_node_reclaim(c, b, false);
220 }
221
222 static int btree_node_write_and_reclaim(struct bch_fs *c, struct btree *b)
223 {
224         return __btree_node_reclaim(c, b, true);
225 }
226
227 static unsigned long bch2_btree_cache_scan(struct shrinker *shrink,
228                                            struct shrink_control *sc)
229 {
230         struct bch_fs *c = container_of(shrink, struct bch_fs,
231                                         btree_cache.shrink);
232         struct btree_cache *bc = &c->btree_cache;
233         struct btree *b, *t;
234         unsigned long nr = sc->nr_to_scan;
235         unsigned long can_free;
236         unsigned long touched = 0;
237         unsigned long freed = 0;
238         unsigned i;
239
240         if (btree_shrinker_disabled(c))
241                 return SHRINK_STOP;
242
243         /* Return -1 if we can't do anything right now */
244         if (sc->gfp_mask & __GFP_IO)
245                 mutex_lock(&bc->lock);
246         else if (!mutex_trylock(&bc->lock))
247                 return -1;
248
249         /*
250          * It's _really_ critical that we don't free too many btree nodes - we
251          * have to always leave ourselves a reserve. The reserve is how we
252          * guarantee that allocating memory for a new btree node can always
253          * succeed, so that inserting keys into the btree can always succeed and
254          * IO can always make forward progress:
255          */
256         nr /= btree_pages(c);
257         can_free = btree_cache_can_free(bc);
258         nr = min_t(unsigned long, nr, can_free);
259
260         i = 0;
261         list_for_each_entry_safe(b, t, &bc->freeable, list) {
262                 touched++;
263
264                 if (freed >= nr)
265                         break;
266
267                 if (++i > 3 &&
268                     !btree_node_reclaim(c, b)) {
269                         btree_node_data_free(c, b);
270                         six_unlock_write(&b->lock);
271                         six_unlock_intent(&b->lock);
272                         freed++;
273                 }
274         }
275 restart:
276         list_for_each_entry_safe(b, t, &bc->live, list) {
277                 touched++;
278
279                 if (freed >= nr) {
280                         /* Save position */
281                         if (&t->list != &bc->live)
282                                 list_move_tail(&bc->live, &t->list);
283                         break;
284                 }
285
286                 if (!btree_node_accessed(b) &&
287                     !btree_node_reclaim(c, b)) {
288                         /* can't call bch2_btree_node_hash_remove under lock  */
289                         freed++;
290                         if (&t->list != &bc->live)
291                                 list_move_tail(&bc->live, &t->list);
292
293                         btree_node_data_free(c, b);
294                         mutex_unlock(&bc->lock);
295
296                         bch2_btree_node_hash_remove(bc, b);
297                         six_unlock_write(&b->lock);
298                         six_unlock_intent(&b->lock);
299
300                         if (freed >= nr)
301                                 goto out;
302
303                         if (sc->gfp_mask & __GFP_IO)
304                                 mutex_lock(&bc->lock);
305                         else if (!mutex_trylock(&bc->lock))
306                                 goto out;
307                         goto restart;
308                 } else
309                         clear_btree_node_accessed(b);
310         }
311
312         mutex_unlock(&bc->lock);
313 out:
314         return (unsigned long) freed * btree_pages(c);
315 }
316
317 static unsigned long bch2_btree_cache_count(struct shrinker *shrink,
318                                             struct shrink_control *sc)
319 {
320         struct bch_fs *c = container_of(shrink, struct bch_fs,
321                                         btree_cache.shrink);
322         struct btree_cache *bc = &c->btree_cache;
323
324         if (btree_shrinker_disabled(c))
325                 return 0;
326
327         return btree_cache_can_free(bc) * btree_pages(c);
328 }
329
330 void bch2_fs_btree_cache_exit(struct bch_fs *c)
331 {
332         struct btree_cache *bc = &c->btree_cache;
333         struct btree *b;
334         unsigned i;
335
336         if (bc->shrink.list.next)
337                 unregister_shrinker(&bc->shrink);
338
339         mutex_lock(&bc->lock);
340
341 #ifdef CONFIG_BCACHEFS_DEBUG
342         if (c->verify_data)
343                 list_move(&c->verify_data->list, &bc->live);
344
345         kvpfree(c->verify_ondisk, btree_bytes(c));
346 #endif
347
348         for (i = 0; i < BTREE_ID_NR; i++)
349                 if (c->btree_roots[i].b)
350                         list_add(&c->btree_roots[i].b->list, &bc->live);
351
352         list_splice(&bc->freeable, &bc->live);
353
354         while (!list_empty(&bc->live)) {
355                 b = list_first_entry(&bc->live, struct btree, list);
356
357                 BUG_ON(btree_node_read_in_flight(b) ||
358                        btree_node_write_in_flight(b));
359
360                 if (btree_node_dirty(b))
361                         bch2_btree_complete_write(c, b, btree_current_write(b));
362                 clear_btree_node_dirty(b);
363
364                 btree_node_data_free(c, b);
365         }
366
367         while (!list_empty(&bc->freed)) {
368                 b = list_first_entry(&bc->freed, struct btree, list);
369                 list_del(&b->list);
370                 kfree(b);
371         }
372
373         mutex_unlock(&bc->lock);
374
375         if (bc->table_init_done)
376                 rhashtable_destroy(&bc->table);
377 }
378
379 int bch2_fs_btree_cache_init(struct bch_fs *c)
380 {
381         struct btree_cache *bc = &c->btree_cache;
382         unsigned i;
383         int ret = 0;
384
385         pr_verbose_init(c->opts, "");
386
387         ret = rhashtable_init(&bc->table, &bch_btree_cache_params);
388         if (ret)
389                 goto out;
390
391         bc->table_init_done = true;
392
393         bch2_recalc_btree_reserve(c);
394
395         for (i = 0; i < bc->reserve; i++)
396                 if (!btree_node_mem_alloc(c, GFP_KERNEL)) {
397                         ret = -ENOMEM;
398                         goto out;
399                 }
400
401         list_splice_init(&bc->live, &bc->freeable);
402
403 #ifdef CONFIG_BCACHEFS_DEBUG
404         mutex_init(&c->verify_lock);
405
406         c->verify_ondisk = kvpmalloc(btree_bytes(c), GFP_KERNEL);
407         if (!c->verify_ondisk) {
408                 ret = -ENOMEM;
409                 goto out;
410         }
411
412         c->verify_data = btree_node_mem_alloc(c, GFP_KERNEL);
413         if (!c->verify_data) {
414                 ret = -ENOMEM;
415                 goto out;
416         }
417
418         list_del_init(&c->verify_data->list);
419 #endif
420
421         bc->shrink.count_objects        = bch2_btree_cache_count;
422         bc->shrink.scan_objects         = bch2_btree_cache_scan;
423         bc->shrink.seeks                = 4;
424         bc->shrink.batch                = btree_pages(c) * 2;
425         register_shrinker(&bc->shrink);
426 out:
427         pr_verbose_init(c->opts, "ret %i", ret);
428         return ret;
429 }
430
431 void bch2_fs_btree_cache_init_early(struct btree_cache *bc)
432 {
433         mutex_init(&bc->lock);
434         INIT_LIST_HEAD(&bc->live);
435         INIT_LIST_HEAD(&bc->freeable);
436         INIT_LIST_HEAD(&bc->freed);
437 }
438
439 /*
440  * We can only have one thread cannibalizing other cached btree nodes at a time,
441  * or we'll deadlock. We use an open coded mutex to ensure that, which a
442  * cannibalize_bucket() will take. This means every time we unlock the root of
443  * the btree, we need to release this lock if we have it held.
444  */
445 void bch2_btree_cache_cannibalize_unlock(struct bch_fs *c)
446 {
447         struct btree_cache *bc = &c->btree_cache;
448
449         if (bc->alloc_lock == current) {
450                 trace_btree_node_cannibalize_unlock(c);
451                 bc->alloc_lock = NULL;
452                 closure_wake_up(&bc->alloc_wait);
453         }
454 }
455
456 int bch2_btree_cache_cannibalize_lock(struct bch_fs *c, struct closure *cl)
457 {
458         struct btree_cache *bc = &c->btree_cache;
459         struct task_struct *old;
460
461         old = cmpxchg(&bc->alloc_lock, NULL, current);
462         if (old == NULL || old == current)
463                 goto success;
464
465         if (!cl) {
466                 trace_btree_node_cannibalize_lock_fail(c);
467                 return -ENOMEM;
468         }
469
470         closure_wait(&bc->alloc_wait, cl);
471
472         /* Try again, after adding ourselves to waitlist */
473         old = cmpxchg(&bc->alloc_lock, NULL, current);
474         if (old == NULL || old == current) {
475                 /* We raced */
476                 closure_wake_up(&bc->alloc_wait);
477                 goto success;
478         }
479
480         trace_btree_node_cannibalize_lock_fail(c);
481         return -EAGAIN;
482
483 success:
484         trace_btree_node_cannibalize_lock(c);
485         return 0;
486 }
487
488 static struct btree *btree_node_cannibalize(struct bch_fs *c)
489 {
490         struct btree_cache *bc = &c->btree_cache;
491         struct btree *b;
492
493         list_for_each_entry_reverse(b, &bc->live, list)
494                 if (!btree_node_reclaim(c, b))
495                         return b;
496
497         while (1) {
498                 list_for_each_entry_reverse(b, &bc->live, list)
499                         if (!btree_node_write_and_reclaim(c, b))
500                                 return b;
501
502                 /*
503                  * Rare case: all nodes were intent-locked.
504                  * Just busy-wait.
505                  */
506                 WARN_ONCE(1, "btree cache cannibalize failed\n");
507                 cond_resched();
508         }
509 }
510
511 struct btree *bch2_btree_node_mem_alloc(struct bch_fs *c)
512 {
513         struct btree_cache *bc = &c->btree_cache;
514         struct btree *b;
515         u64 start_time = local_clock();
516         unsigned flags;
517
518         flags = memalloc_nofs_save();
519         mutex_lock(&bc->lock);
520
521         /*
522          * btree_free() doesn't free memory; it sticks the node on the end of
523          * the list. Check if there's any freed nodes there:
524          */
525         list_for_each_entry(b, &bc->freeable, list)
526                 if (!btree_node_reclaim(c, b))
527                         goto out_unlock;
528
529         /*
530          * We never free struct btree itself, just the memory that holds the on
531          * disk node. Check the freed list before allocating a new one:
532          */
533         list_for_each_entry(b, &bc->freed, list)
534                 if (!btree_node_reclaim(c, b)) {
535                         btree_node_data_alloc(c, b, __GFP_NOWARN|GFP_NOIO);
536                         if (b->data)
537                                 goto out_unlock;
538
539                         six_unlock_write(&b->lock);
540                         six_unlock_intent(&b->lock);
541                         goto err;
542                 }
543
544         b = btree_node_mem_alloc(c, __GFP_NOWARN|GFP_NOIO);
545         if (!b)
546                 goto err;
547
548         BUG_ON(!six_trylock_intent(&b->lock));
549         BUG_ON(!six_trylock_write(&b->lock));
550 out_unlock:
551         BUG_ON(btree_node_hashed(b));
552         BUG_ON(btree_node_write_in_flight(b));
553
554         list_del_init(&b->list);
555         mutex_unlock(&bc->lock);
556 out:
557         b->flags                = 0;
558         b->written              = 0;
559         b->nsets                = 0;
560         b->sib_u64s[0]          = 0;
561         b->sib_u64s[1]          = 0;
562         b->whiteout_u64s        = 0;
563         bch2_btree_keys_init(b, &c->expensive_debug_checks);
564
565         bch2_time_stats_update(&c->times[BCH_TIME_btree_node_mem_alloc],
566                                start_time);
567
568         memalloc_nofs_restore(flags);
569         return b;
570 err:
571         /* Try to cannibalize another cached btree node: */
572         if (bc->alloc_lock == current) {
573                 b = btree_node_cannibalize(c);
574                 list_del_init(&b->list);
575                 mutex_unlock(&bc->lock);
576
577                 bch2_btree_node_hash_remove(bc, b);
578
579                 trace_btree_node_cannibalize(c);
580                 goto out;
581         }
582
583         mutex_unlock(&bc->lock);
584         memalloc_nofs_restore(flags);
585         return ERR_PTR(-ENOMEM);
586 }
587
588 /* Slowpath, don't want it inlined into btree_iter_traverse() */
589 static noinline struct btree *bch2_btree_node_fill(struct bch_fs *c,
590                                 struct btree_iter *iter,
591                                 const struct bkey_i *k,
592                                 enum btree_id btree_id,
593                                 unsigned level,
594                                 enum six_lock_type lock_type,
595                                 bool sync)
596 {
597         struct btree_cache *bc = &c->btree_cache;
598         struct btree *b;
599
600         BUG_ON(level + 1 >= BTREE_MAX_DEPTH);
601         /*
602          * Parent node must be locked, else we could read in a btree node that's
603          * been freed:
604          */
605         if (iter && !bch2_btree_node_relock(iter, level + 1))
606                 return ERR_PTR(-EINTR);
607
608         b = bch2_btree_node_mem_alloc(c);
609         if (IS_ERR(b))
610                 return b;
611
612         bkey_copy(&b->key, k);
613         if (bch2_btree_node_hash_insert(bc, b, level, btree_id)) {
614                 /* raced with another fill: */
615
616                 /* mark as unhashed... */
617                 b->hash_val = 0;
618
619                 mutex_lock(&bc->lock);
620                 list_add(&b->list, &bc->freeable);
621                 mutex_unlock(&bc->lock);
622
623                 six_unlock_write(&b->lock);
624                 six_unlock_intent(&b->lock);
625                 return NULL;
626         }
627
628         /*
629          * Unlock before doing IO:
630          *
631          * XXX: ideally should be dropping all btree node locks here
632          */
633         if (iter && btree_node_read_locked(iter, level + 1))
634                 btree_node_unlock(iter, level + 1);
635
636         bch2_btree_node_read(c, b, sync);
637
638         six_unlock_write(&b->lock);
639
640         if (!sync) {
641                 six_unlock_intent(&b->lock);
642                 return NULL;
643         }
644
645         if (lock_type == SIX_LOCK_read)
646                 six_lock_downgrade(&b->lock);
647
648         return b;
649 }
650
651 /**
652  * bch_btree_node_get - find a btree node in the cache and lock it, reading it
653  * in from disk if necessary.
654  *
655  * If IO is necessary and running under generic_make_request, returns -EAGAIN.
656  *
657  * The btree node will have either a read or a write lock held, depending on
658  * the @write parameter.
659  */
660 struct btree *bch2_btree_node_get(struct bch_fs *c, struct btree_iter *iter,
661                                   const struct bkey_i *k, unsigned level,
662                                   enum six_lock_type lock_type)
663 {
664         struct btree_cache *bc = &c->btree_cache;
665         struct btree *b;
666         struct bset_tree *t;
667
668         EBUG_ON(level >= BTREE_MAX_DEPTH);
669
670         b = btree_node_mem_ptr(k);
671         if (b)
672                 goto lock_node;
673 retry:
674         b = btree_cache_find(bc, k);
675         if (unlikely(!b)) {
676                 /*
677                  * We must have the parent locked to call bch2_btree_node_fill(),
678                  * else we could read in a btree node from disk that's been
679                  * freed:
680                  */
681                 b = bch2_btree_node_fill(c, iter, k, iter->btree_id,
682                                          level, lock_type, true);
683
684                 /* We raced and found the btree node in the cache */
685                 if (!b)
686                         goto retry;
687
688                 if (IS_ERR(b))
689                         return b;
690         } else {
691 lock_node:
692                 /*
693                  * There's a potential deadlock with splits and insertions into
694                  * interior nodes we have to avoid:
695                  *
696                  * The other thread might be holding an intent lock on the node
697                  * we want, and they want to update its parent node so they're
698                  * going to upgrade their intent lock on the parent node to a
699                  * write lock.
700                  *
701                  * But if we're holding a read lock on the parent, and we're
702                  * trying to get the intent lock they're holding, we deadlock.
703                  *
704                  * So to avoid this we drop the read locks on parent nodes when
705                  * we're starting to take intent locks - and handle the race.
706                  *
707                  * The race is that they might be about to free the node we
708                  * want, and dropping our read lock on the parent node lets them
709                  * update the parent marking the node we want as freed, and then
710                  * free it:
711                  *
712                  * To guard against this, btree nodes are evicted from the cache
713                  * when they're freed - and b->hash_val is zeroed out, which we
714                  * check for after we lock the node.
715                  *
716                  * Then, bch2_btree_node_relock() on the parent will fail - because
717                  * the parent was modified, when the pointer to the node we want
718                  * was removed - and we'll bail out:
719                  */
720                 if (btree_node_read_locked(iter, level + 1))
721                         btree_node_unlock(iter, level + 1);
722
723                 if (!btree_node_lock(b, k->k.p, level, iter, lock_type))
724                         return ERR_PTR(-EINTR);
725
726                 if (unlikely(b->hash_val != btree_ptr_hash_val(k) ||
727                              b->level != level ||
728                              race_fault())) {
729                         six_unlock_type(&b->lock, lock_type);
730                         if (bch2_btree_node_relock(iter, level + 1))
731                                 goto retry;
732
733                         trace_trans_restart_btree_node_reused(iter->trans->ip);
734                         return ERR_PTR(-EINTR);
735                 }
736         }
737
738         /* XXX: waiting on IO with btree locks held: */
739         wait_on_bit_io(&b->flags, BTREE_NODE_read_in_flight,
740                        TASK_UNINTERRUPTIBLE);
741
742         prefetch(b->aux_data);
743
744         for_each_bset(b, t) {
745                 void *p = (u64 *) b->aux_data + t->aux_data_offset;
746
747                 prefetch(p + L1_CACHE_BYTES * 0);
748                 prefetch(p + L1_CACHE_BYTES * 1);
749                 prefetch(p + L1_CACHE_BYTES * 2);
750         }
751
752         /* avoid atomic set bit if it's not needed: */
753         if (!btree_node_accessed(b))
754                 set_btree_node_accessed(b);
755
756         if (unlikely(btree_node_read_error(b))) {
757                 six_unlock_type(&b->lock, lock_type);
758                 return ERR_PTR(-EIO);
759         }
760
761         EBUG_ON(b->btree_id != iter->btree_id ||
762                 BTREE_NODE_LEVEL(b->data) != level ||
763                 bkey_cmp(b->data->max_key, k->k.p));
764
765         return b;
766 }
767
768 struct btree *bch2_btree_node_get_noiter(struct bch_fs *c,
769                                          const struct bkey_i *k,
770                                          enum btree_id btree_id,
771                                          unsigned level)
772 {
773         struct btree_cache *bc = &c->btree_cache;
774         struct btree *b;
775         struct bset_tree *t;
776
777         EBUG_ON(level >= BTREE_MAX_DEPTH);
778
779         b = btree_node_mem_ptr(k);
780         if (b)
781                 goto lock_node;
782 retry:
783         b = btree_cache_find(bc, k);
784         if (unlikely(!b)) {
785                 b = bch2_btree_node_fill(c, NULL, k, btree_id,
786                                          level, SIX_LOCK_read, true);
787
788                 /* We raced and found the btree node in the cache */
789                 if (!b)
790                         goto retry;
791
792                 if (IS_ERR(b))
793                         return b;
794         } else {
795 lock_node:
796                 six_lock_read(&b->lock);
797
798                 if (unlikely(b->hash_val != btree_ptr_hash_val(k) ||
799                              b->btree_id != btree_id ||
800                              b->level != level)) {
801                         six_unlock_read(&b->lock);
802                         goto retry;
803                 }
804         }
805
806         /* XXX: waiting on IO with btree locks held: */
807         wait_on_bit_io(&b->flags, BTREE_NODE_read_in_flight,
808                        TASK_UNINTERRUPTIBLE);
809
810         prefetch(b->aux_data);
811
812         for_each_bset(b, t) {
813                 void *p = (u64 *) b->aux_data + t->aux_data_offset;
814
815                 prefetch(p + L1_CACHE_BYTES * 0);
816                 prefetch(p + L1_CACHE_BYTES * 1);
817                 prefetch(p + L1_CACHE_BYTES * 2);
818         }
819
820         /* avoid atomic set bit if it's not needed: */
821         if (!btree_node_accessed(b))
822                 set_btree_node_accessed(b);
823
824         if (unlikely(btree_node_read_error(b))) {
825                 six_unlock_read(&b->lock);
826                 return ERR_PTR(-EIO);
827         }
828
829         EBUG_ON(b->btree_id != btree_id ||
830                 BTREE_NODE_LEVEL(b->data) != level ||
831                 bkey_cmp(b->data->max_key, k->k.p));
832
833         return b;
834 }
835
836 struct btree *bch2_btree_node_get_sibling(struct bch_fs *c,
837                                           struct btree_iter *iter,
838                                           struct btree *b,
839                                           enum btree_node_sibling sib)
840 {
841         struct btree_trans *trans = iter->trans;
842         struct btree *parent;
843         struct btree_node_iter node_iter;
844         struct bkey_packed *k;
845         BKEY_PADDED(k) tmp;
846         struct btree *ret = NULL;
847         unsigned level = b->level;
848
849         parent = btree_iter_node(iter, level + 1);
850         if (!parent)
851                 return NULL;
852
853         /*
854          * There's a corner case where a btree_iter might have a node locked
855          * that is just outside its current pos - when
856          * bch2_btree_iter_set_pos_same_leaf() gets to the end of the node.
857          *
858          * But the lock ordering checks in __bch2_btree_node_lock() go off of
859          * iter->pos, not the node's key: so if the iterator is marked as
860          * needing to be traversed, we risk deadlock if we don't bail out here:
861          */
862         if (iter->uptodate >= BTREE_ITER_NEED_TRAVERSE)
863                 return ERR_PTR(-EINTR);
864
865         if (!bch2_btree_node_relock(iter, level + 1)) {
866                 ret = ERR_PTR(-EINTR);
867                 goto out;
868         }
869
870         node_iter = iter->l[parent->level].iter;
871
872         k = bch2_btree_node_iter_peek_all(&node_iter, parent);
873         BUG_ON(bkey_cmp_left_packed(parent, k, &b->key.k.p));
874
875         k = sib == btree_prev_sib
876                 ? bch2_btree_node_iter_prev(&node_iter, parent)
877                 : (bch2_btree_node_iter_advance(&node_iter, parent),
878                    bch2_btree_node_iter_peek(&node_iter, parent));
879         if (!k)
880                 goto out;
881
882         bch2_bkey_unpack(parent, &tmp.k, k);
883
884         ret = bch2_btree_node_get(c, iter, &tmp.k, level,
885                                   SIX_LOCK_intent);
886
887         if (PTR_ERR_OR_ZERO(ret) == -EINTR && !trans->nounlock) {
888                 struct btree_iter *linked;
889
890                 if (!bch2_btree_node_relock(iter, level + 1))
891                         goto out;
892
893                 /*
894                  * We might have got -EINTR because trylock failed, and we're
895                  * holding other locks that would cause us to deadlock:
896                  */
897                 trans_for_each_iter(trans, linked)
898                         if (btree_iter_cmp(iter, linked) < 0)
899                                 __bch2_btree_iter_unlock(linked);
900
901                 if (sib == btree_prev_sib)
902                         btree_node_unlock(iter, level);
903
904                 ret = bch2_btree_node_get(c, iter, &tmp.k, level,
905                                           SIX_LOCK_intent);
906
907                 /*
908                  * before btree_iter_relock() calls btree_iter_verify_locks():
909                  */
910                 if (btree_lock_want(iter, level + 1) == BTREE_NODE_UNLOCKED)
911                         btree_node_unlock(iter, level + 1);
912
913                 if (!bch2_btree_node_relock(iter, level)) {
914                         btree_iter_set_dirty(iter, BTREE_ITER_NEED_RELOCK);
915
916                         if (!IS_ERR(ret)) {
917                                 six_unlock_intent(&ret->lock);
918                                 ret = ERR_PTR(-EINTR);
919                         }
920                 }
921
922                 bch2_trans_relock(trans);
923         }
924 out:
925         if (btree_lock_want(iter, level + 1) == BTREE_NODE_UNLOCKED)
926                 btree_node_unlock(iter, level + 1);
927
928         if (PTR_ERR_OR_ZERO(ret) == -EINTR)
929                 bch2_btree_iter_upgrade(iter, level + 2);
930
931         BUG_ON(!IS_ERR(ret) && !btree_node_locked(iter, level));
932
933         if (!IS_ERR_OR_NULL(ret)) {
934                 struct btree *n1 = ret, *n2 = b;
935
936                 if (sib != btree_prev_sib)
937                         swap(n1, n2);
938
939                 BUG_ON(bkey_cmp(bkey_successor(n1->key.k.p),
940                                 n2->data->min_key));
941         }
942
943         bch2_btree_trans_verify_locks(trans);
944
945         return ret;
946 }
947
948 void bch2_btree_node_prefetch(struct bch_fs *c, struct btree_iter *iter,
949                               const struct bkey_i *k, unsigned level)
950 {
951         struct btree_cache *bc = &c->btree_cache;
952         struct btree *b;
953
954         BUG_ON(!btree_node_locked(iter, level + 1));
955         BUG_ON(level >= BTREE_MAX_DEPTH);
956
957         b = btree_cache_find(bc, k);
958         if (b)
959                 return;
960
961         bch2_btree_node_fill(c, iter, k, iter->btree_id,
962                              level, SIX_LOCK_read, false);
963 }
964
965 void bch2_btree_node_to_text(struct printbuf *out, struct bch_fs *c,
966                              struct btree *b)
967 {
968         const struct bkey_format *f = &b->format;
969         struct bset_stats stats;
970
971         memset(&stats, 0, sizeof(stats));
972
973         bch2_btree_keys_stats(b, &stats);
974
975         pr_buf(out,
976                "l %u %llu:%llu - %llu:%llu:\n"
977                "    ptrs: ",
978                b->level,
979                b->data->min_key.inode,
980                b->data->min_key.offset,
981                b->data->max_key.inode,
982                b->data->max_key.offset);
983         bch2_val_to_text(out, c, bkey_i_to_s_c(&b->key));
984         pr_buf(out, "\n"
985                "    format: u64s %u fields %u %u %u %u %u\n"
986                "    unpack fn len: %u\n"
987                "    bytes used %zu/%zu (%zu%% full)\n"
988                "    sib u64s: %u, %u (merge threshold %zu)\n"
989                "    nr packed keys %u\n"
990                "    nr unpacked keys %u\n"
991                "    floats %zu\n"
992                "    failed unpacked %zu\n",
993                f->key_u64s,
994                f->bits_per_field[0],
995                f->bits_per_field[1],
996                f->bits_per_field[2],
997                f->bits_per_field[3],
998                f->bits_per_field[4],
999                b->unpack_fn_len,
1000                b->nr.live_u64s * sizeof(u64),
1001                btree_bytes(c) - sizeof(struct btree_node),
1002                b->nr.live_u64s * 100 / btree_max_u64s(c),
1003                b->sib_u64s[0],
1004                b->sib_u64s[1],
1005                BTREE_FOREGROUND_MERGE_THRESHOLD(c),
1006                b->nr.packed_keys,
1007                b->nr.unpacked_keys,
1008                stats.floats,
1009                stats.failed);
1010 }