]> git.sesse.net Git - bcachefs-tools-debian/blob - libbcachefs/btree_write_buffer.c
Update bcachefs sources to 841a95c29f4c bcachefs: fix userspace build errors
[bcachefs-tools-debian] / libbcachefs / btree_write_buffer.c
1 // SPDX-License-Identifier: GPL-2.0
2
3 #include "bcachefs.h"
4 #include "btree_locking.h"
5 #include "btree_update.h"
6 #include "btree_update_interior.h"
7 #include "btree_write_buffer.h"
8 #include "error.h"
9 #include "journal.h"
10 #include "journal_io.h"
11 #include "journal_reclaim.h"
12
13 #include <linux/prefetch.h>
14
15 static int bch2_btree_write_buffer_journal_flush(struct journal *,
16                                 struct journal_entry_pin *, u64);
17
18 static int bch2_journal_keys_to_write_buffer(struct bch_fs *, struct journal_buf *);
19
20 static inline bool __wb_key_cmp(const struct wb_key_ref *l, const struct wb_key_ref *r)
21 {
22         return (cmp_int(l->hi, r->hi) ?:
23                 cmp_int(l->mi, r->mi) ?:
24                 cmp_int(l->lo, r->lo)) >= 0;
25 }
26
27 static inline bool wb_key_cmp(const struct wb_key_ref *l, const struct wb_key_ref *r)
28 {
29 #ifdef CONFIG_X86_64
30         int cmp;
31
32         asm("mov   (%[l]), %%rax;"
33             "sub   (%[r]), %%rax;"
34             "mov  8(%[l]), %%rax;"
35             "sbb  8(%[r]), %%rax;"
36             "mov 16(%[l]), %%rax;"
37             "sbb 16(%[r]), %%rax;"
38             : "=@ccae" (cmp)
39             : [l] "r" (l), [r] "r" (r)
40             : "rax", "cc");
41
42         EBUG_ON(cmp != __wb_key_cmp(l, r));
43         return cmp;
44 #else
45         return __wb_key_cmp(l, r);
46 #endif
47 }
48
49 /* Compare excluding idx, the low 24 bits: */
50 static inline bool wb_key_eq(const void *_l, const void *_r)
51 {
52         const struct wb_key_ref *l = _l;
53         const struct wb_key_ref *r = _r;
54
55         return !((l->hi ^ r->hi)|
56                  (l->mi ^ r->mi)|
57                  ((l->lo >> 24) ^ (r->lo >> 24)));
58 }
59
60 static noinline void wb_sort(struct wb_key_ref *base, size_t num)
61 {
62         size_t n = num, a = num / 2;
63
64         if (!a)         /* num < 2 || size == 0 */
65                 return;
66
67         for (;;) {
68                 size_t b, c, d;
69
70                 if (a)                  /* Building heap: sift down --a */
71                         --a;
72                 else if (--n)           /* Sorting: Extract root to --n */
73                         swap(base[0], base[n]);
74                 else                    /* Sort complete */
75                         break;
76
77                 /*
78                  * Sift element at "a" down into heap.  This is the
79                  * "bottom-up" variant, which significantly reduces
80                  * calls to cmp_func(): we find the sift-down path all
81                  * the way to the leaves (one compare per level), then
82                  * backtrack to find where to insert the target element.
83                  *
84                  * Because elements tend to sift down close to the leaves,
85                  * this uses fewer compares than doing two per level
86                  * on the way down.  (A bit more than half as many on
87                  * average, 3/4 worst-case.)
88                  */
89                 for (b = a; c = 2*b + 1, (d = c + 1) < n;)
90                         b = wb_key_cmp(base + c, base + d) ? c : d;
91                 if (d == n)             /* Special case last leaf with no sibling */
92                         b = c;
93
94                 /* Now backtrack from "b" to the correct location for "a" */
95                 while (b != a && wb_key_cmp(base + a, base + b))
96                         b = (b - 1) / 2;
97                 c = b;                  /* Where "a" belongs */
98                 while (b != a) {        /* Shift it into place */
99                         b = (b - 1) / 2;
100                         swap(base[b], base[c]);
101                 }
102         }
103 }
104
105 static noinline int wb_flush_one_slowpath(struct btree_trans *trans,
106                                           struct btree_iter *iter,
107                                           struct btree_write_buffered_key *wb)
108 {
109         struct btree_path *path = btree_iter_path(trans, iter);
110
111         bch2_btree_node_unlock_write(trans, path, path->l[0].b);
112
113         trans->journal_res.seq = wb->journal_seq;
114
115         return bch2_trans_update(trans, iter, &wb->k,
116                                  BTREE_UPDATE_INTERNAL_SNAPSHOT_NODE) ?:
117                 bch2_trans_commit(trans, NULL, NULL,
118                                   BCH_TRANS_COMMIT_no_enospc|
119                                   BCH_TRANS_COMMIT_no_check_rw|
120                                   BCH_TRANS_COMMIT_no_journal_res|
121                                   BCH_TRANS_COMMIT_journal_reclaim);
122 }
123
124 static inline int wb_flush_one(struct btree_trans *trans, struct btree_iter *iter,
125                                struct btree_write_buffered_key *wb,
126                                bool *write_locked, size_t *fast)
127 {
128         struct bch_fs *c = trans->c;
129         struct btree_path *path;
130         int ret;
131
132         EBUG_ON(!wb->journal_seq);
133         EBUG_ON(!c->btree_write_buffer.flushing.pin.seq);
134         EBUG_ON(c->btree_write_buffer.flushing.pin.seq > wb->journal_seq);
135
136         ret = bch2_btree_iter_traverse(iter);
137         if (ret)
138                 return ret;
139
140         /*
141          * We can't clone a path that has write locks: unshare it now, before
142          * set_pos and traverse():
143          */
144         if (btree_iter_path(trans, iter)->ref > 1)
145                 iter->path = __bch2_btree_path_make_mut(trans, iter->path, true, _THIS_IP_);
146
147         path = btree_iter_path(trans, iter);
148
149         if (!*write_locked) {
150                 ret = bch2_btree_node_lock_write(trans, path, &path->l[0].b->c);
151                 if (ret)
152                         return ret;
153
154                 bch2_btree_node_prep_for_write(trans, path, path->l[0].b);
155                 *write_locked = true;
156         }
157
158         if (unlikely(!bch2_btree_node_insert_fits(c, path->l[0].b, wb->k.k.u64s))) {
159                 *write_locked = false;
160                 return wb_flush_one_slowpath(trans, iter, wb);
161         }
162
163         bch2_btree_insert_key_leaf(trans, path, &wb->k, wb->journal_seq);
164         (*fast)++;
165         return 0;
166 }
167
168 /*
169  * Update a btree with a write buffered key using the journal seq of the
170  * original write buffer insert.
171  *
172  * It is not safe to rejournal the key once it has been inserted into the write
173  * buffer because that may break recovery ordering. For example, the key may
174  * have already been modified in the active write buffer in a seq that comes
175  * before the current transaction. If we were to journal this key again and
176  * crash, recovery would process updates in the wrong order.
177  */
178 static int
179 btree_write_buffered_insert(struct btree_trans *trans,
180                           struct btree_write_buffered_key *wb)
181 {
182         struct btree_iter iter;
183         int ret;
184
185         bch2_trans_iter_init(trans, &iter, wb->btree, bkey_start_pos(&wb->k.k),
186                              BTREE_ITER_CACHED|BTREE_ITER_INTENT);
187
188         trans->journal_res.seq = wb->journal_seq;
189
190         ret   = bch2_btree_iter_traverse(&iter) ?:
191                 bch2_trans_update(trans, &iter, &wb->k,
192                                   BTREE_UPDATE_INTERNAL_SNAPSHOT_NODE);
193         bch2_trans_iter_exit(trans, &iter);
194         return ret;
195 }
196
197 static void move_keys_from_inc_to_flushing(struct btree_write_buffer *wb)
198 {
199         struct bch_fs *c = container_of(wb, struct bch_fs, btree_write_buffer);
200         struct journal *j = &c->journal;
201
202         if (!wb->inc.keys.nr)
203                 return;
204
205         bch2_journal_pin_add(j, wb->inc.keys.data[0].journal_seq, &wb->flushing.pin,
206                              bch2_btree_write_buffer_journal_flush);
207
208         darray_resize(&wb->flushing.keys, min_t(size_t, 1U << 20, wb->flushing.keys.nr + wb->inc.keys.nr));
209         darray_resize(&wb->sorted, wb->flushing.keys.size);
210
211         if (!wb->flushing.keys.nr && wb->sorted.size >= wb->inc.keys.nr) {
212                 swap(wb->flushing.keys, wb->inc.keys);
213                 goto out;
214         }
215
216         size_t nr = min(darray_room(wb->flushing.keys),
217                         wb->sorted.size - wb->flushing.keys.nr);
218         nr = min(nr, wb->inc.keys.nr);
219
220         memcpy(&darray_top(wb->flushing.keys),
221                wb->inc.keys.data,
222                sizeof(wb->inc.keys.data[0]) * nr);
223
224         memmove(wb->inc.keys.data,
225                 wb->inc.keys.data + nr,
226                sizeof(wb->inc.keys.data[0]) * (wb->inc.keys.nr - nr));
227
228         wb->flushing.keys.nr    += nr;
229         wb->inc.keys.nr         -= nr;
230 out:
231         if (!wb->inc.keys.nr)
232                 bch2_journal_pin_drop(j, &wb->inc.pin);
233         else
234                 bch2_journal_pin_update(j, wb->inc.keys.data[0].journal_seq, &wb->inc.pin,
235                                         bch2_btree_write_buffer_journal_flush);
236
237         if (j->watermark) {
238                 spin_lock(&j->lock);
239                 bch2_journal_set_watermark(j);
240                 spin_unlock(&j->lock);
241         }
242
243         BUG_ON(wb->sorted.size < wb->flushing.keys.nr);
244 }
245
246 static int bch2_btree_write_buffer_flush_locked(struct btree_trans *trans)
247 {
248         struct bch_fs *c = trans->c;
249         struct journal *j = &c->journal;
250         struct btree_write_buffer *wb = &c->btree_write_buffer;
251         struct wb_key_ref *i;
252         struct btree_iter iter = { NULL };
253         size_t skipped = 0, fast = 0, slowpath = 0;
254         bool write_locked = false;
255         int ret = 0;
256
257         bch2_trans_unlock(trans);
258         bch2_trans_begin(trans);
259
260         mutex_lock(&wb->inc.lock);
261         move_keys_from_inc_to_flushing(wb);
262         mutex_unlock(&wb->inc.lock);
263
264         for (size_t i = 0; i < wb->flushing.keys.nr; i++) {
265                 wb->sorted.data[i].idx = i;
266                 wb->sorted.data[i].btree = wb->flushing.keys.data[i].btree;
267                 memcpy(&wb->sorted.data[i].pos, &wb->flushing.keys.data[i].k.k.p, sizeof(struct bpos));
268         }
269         wb->sorted.nr = wb->flushing.keys.nr;
270
271         /*
272          * We first sort so that we can detect and skip redundant updates, and
273          * then we attempt to flush in sorted btree order, as this is most
274          * efficient.
275          *
276          * However, since we're not flushing in the order they appear in the
277          * journal we won't be able to drop our journal pin until everything is
278          * flushed - which means this could deadlock the journal if we weren't
279          * passing BCH_TRANS_COMMIT_journal_reclaim. This causes the update to fail
280          * if it would block taking a journal reservation.
281          *
282          * If that happens, simply skip the key so we can optimistically insert
283          * as many keys as possible in the fast path.
284          */
285         wb_sort(wb->sorted.data, wb->sorted.nr);
286
287         darray_for_each(wb->sorted, i) {
288                 struct btree_write_buffered_key *k = &wb->flushing.keys.data[i->idx];
289
290                 for (struct wb_key_ref *n = i + 1; n < min(i + 4, &darray_top(wb->sorted)); n++)
291                         prefetch(&wb->flushing.keys.data[n->idx]);
292
293                 BUG_ON(!k->journal_seq);
294
295                 if (i + 1 < &darray_top(wb->sorted) &&
296                     wb_key_eq(i, i + 1)) {
297                         struct btree_write_buffered_key *n = &wb->flushing.keys.data[i[1].idx];
298
299                         skipped++;
300                         n->journal_seq = min_t(u64, n->journal_seq, k->journal_seq);
301                         k->journal_seq = 0;
302                         continue;
303                 }
304
305                 if (write_locked) {
306                         struct btree_path *path = btree_iter_path(trans, &iter);
307
308                         if (path->btree_id != i->btree ||
309                             bpos_gt(k->k.k.p, path->l[0].b->key.k.p)) {
310                                 bch2_btree_node_unlock_write(trans, path, path->l[0].b);
311                                 write_locked = false;
312                         }
313                 }
314
315                 if (!iter.path || iter.btree_id != k->btree) {
316                         bch2_trans_iter_exit(trans, &iter);
317                         bch2_trans_iter_init(trans, &iter, k->btree, k->k.k.p,
318                                              BTREE_ITER_INTENT|BTREE_ITER_ALL_SNAPSHOTS);
319                 }
320
321                 bch2_btree_iter_set_pos(&iter, k->k.k.p);
322                 btree_iter_path(trans, &iter)->preserve = false;
323
324                 do {
325                         if (race_fault()) {
326                                 ret = -BCH_ERR_journal_reclaim_would_deadlock;
327                                 break;
328                         }
329
330                         ret = wb_flush_one(trans, &iter, k, &write_locked, &fast);
331                         if (!write_locked)
332                                 bch2_trans_begin(trans);
333                 } while (bch2_err_matches(ret, BCH_ERR_transaction_restart));
334
335                 if (!ret) {
336                         k->journal_seq = 0;
337                 } else if (ret == -BCH_ERR_journal_reclaim_would_deadlock) {
338                         slowpath++;
339                         ret = 0;
340                 } else
341                         break;
342         }
343
344         if (write_locked) {
345                 struct btree_path *path = btree_iter_path(trans, &iter);
346                 bch2_btree_node_unlock_write(trans, path, path->l[0].b);
347         }
348         bch2_trans_iter_exit(trans, &iter);
349
350         if (ret)
351                 goto err;
352
353         if (slowpath) {
354                 /*
355                  * Flush in the order they were present in the journal, so that
356                  * we can release journal pins:
357                  * The fastpath zapped the seq of keys that were successfully flushed so
358                  * we can skip those here.
359                  */
360                 trace_and_count(c, write_buffer_flush_slowpath, trans, slowpath, wb->flushing.keys.nr);
361
362                 struct btree_write_buffered_key *i;
363                 darray_for_each(wb->flushing.keys, i) {
364                         if (!i->journal_seq)
365                                 continue;
366
367                         bch2_journal_pin_update(j, i->journal_seq, &wb->flushing.pin,
368                                                 bch2_btree_write_buffer_journal_flush);
369
370                         bch2_trans_begin(trans);
371
372                         ret = commit_do(trans, NULL, NULL,
373                                         BCH_WATERMARK_reclaim|
374                                         BCH_TRANS_COMMIT_no_check_rw|
375                                         BCH_TRANS_COMMIT_no_enospc|
376                                         BCH_TRANS_COMMIT_no_journal_res|
377                                         BCH_TRANS_COMMIT_journal_reclaim,
378                                         btree_write_buffered_insert(trans, i));
379                         if (ret)
380                                 goto err;
381                 }
382         }
383 err:
384         bch2_fs_fatal_err_on(ret, c, "%s: insert error %s", __func__, bch2_err_str(ret));
385         trace_write_buffer_flush(trans, wb->flushing.keys.nr, skipped, fast, 0);
386         bch2_journal_pin_drop(j, &wb->flushing.pin);
387         wb->flushing.keys.nr = 0;
388         return ret;
389 }
390
391 static int fetch_wb_keys_from_journal(struct bch_fs *c, u64 seq)
392 {
393         struct journal *j = &c->journal;
394         struct journal_buf *buf;
395         int ret = 0;
396
397         while (!ret && (buf = bch2_next_write_buffer_flush_journal_buf(j, seq))) {
398                 ret = bch2_journal_keys_to_write_buffer(c, buf);
399                 mutex_unlock(&j->buf_lock);
400         }
401
402         return ret;
403 }
404
405 static int btree_write_buffer_flush_seq(struct btree_trans *trans, u64 seq)
406 {
407         struct bch_fs *c = trans->c;
408         struct btree_write_buffer *wb = &c->btree_write_buffer;
409         int ret = 0, fetch_from_journal_err;
410
411         do {
412                 bch2_trans_unlock(trans);
413
414                 fetch_from_journal_err = fetch_wb_keys_from_journal(c, seq);
415
416                 /*
417                  * On memory allocation failure, bch2_btree_write_buffer_flush_locked()
418                  * is not guaranteed to empty wb->inc:
419                  */
420                 mutex_lock(&wb->flushing.lock);
421                 ret = bch2_btree_write_buffer_flush_locked(trans);
422                 mutex_unlock(&wb->flushing.lock);
423         } while (!ret &&
424                  (fetch_from_journal_err ||
425                   (wb->inc.pin.seq && wb->inc.pin.seq <= seq) ||
426                   (wb->flushing.pin.seq && wb->flushing.pin.seq <= seq)));
427
428         return ret;
429 }
430
431 static int bch2_btree_write_buffer_journal_flush(struct journal *j,
432                                 struct journal_entry_pin *_pin, u64 seq)
433 {
434         struct bch_fs *c = container_of(j, struct bch_fs, journal);
435
436         return bch2_trans_run(c, btree_write_buffer_flush_seq(trans, seq));
437 }
438
439 int bch2_btree_write_buffer_flush_sync(struct btree_trans *trans)
440 {
441         struct bch_fs *c = trans->c;
442
443         trace_and_count(c, write_buffer_flush_sync, trans, _RET_IP_);
444
445         return btree_write_buffer_flush_seq(trans, journal_cur_seq(&c->journal));
446 }
447
448 int bch2_btree_write_buffer_flush_nocheck_rw(struct btree_trans *trans)
449 {
450         struct bch_fs *c = trans->c;
451         struct btree_write_buffer *wb = &c->btree_write_buffer;
452         int ret = 0;
453
454         if (mutex_trylock(&wb->flushing.lock)) {
455                 ret = bch2_btree_write_buffer_flush_locked(trans);
456                 mutex_unlock(&wb->flushing.lock);
457         }
458
459         return ret;
460 }
461
462 int bch2_btree_write_buffer_tryflush(struct btree_trans *trans)
463 {
464         struct bch_fs *c = trans->c;
465
466         if (!bch2_write_ref_tryget(c, BCH_WRITE_REF_btree_write_buffer))
467                 return -BCH_ERR_erofs_no_writes;
468
469         int ret = bch2_btree_write_buffer_flush_nocheck_rw(trans);
470         bch2_write_ref_put(c, BCH_WRITE_REF_btree_write_buffer);
471         return ret;
472 }
473
474 static void bch2_btree_write_buffer_flush_work(struct work_struct *work)
475 {
476         struct bch_fs *c = container_of(work, struct bch_fs, btree_write_buffer.flush_work);
477         struct btree_write_buffer *wb = &c->btree_write_buffer;
478         int ret;
479
480         mutex_lock(&wb->flushing.lock);
481         do {
482                 ret = bch2_trans_run(c, bch2_btree_write_buffer_flush_locked(trans));
483         } while (!ret && bch2_btree_write_buffer_should_flush(c));
484         mutex_unlock(&wb->flushing.lock);
485
486         bch2_write_ref_put(c, BCH_WRITE_REF_btree_write_buffer);
487 }
488
489 int __bch2_journal_key_to_wb(struct bch_fs *c,
490                              struct journal_keys_to_wb *dst,
491                              enum btree_id btree, struct bkey_i *k)
492 {
493         struct btree_write_buffer *wb = &c->btree_write_buffer;
494         int ret;
495 retry:
496         ret = darray_make_room_gfp(&dst->wb->keys, 1, GFP_KERNEL);
497         if (!ret && dst->wb == &wb->flushing)
498                 ret = darray_resize(&wb->sorted, wb->flushing.keys.size);
499
500         if (unlikely(ret)) {
501                 if (dst->wb == &c->btree_write_buffer.flushing) {
502                         mutex_unlock(&dst->wb->lock);
503                         dst->wb = &c->btree_write_buffer.inc;
504                         bch2_journal_pin_add(&c->journal, dst->seq, &dst->wb->pin,
505                                              bch2_btree_write_buffer_journal_flush);
506                         goto retry;
507                 }
508
509                 return ret;
510         }
511
512         dst->room = darray_room(dst->wb->keys);
513         if (dst->wb == &wb->flushing)
514                 dst->room = min(dst->room, wb->sorted.size - wb->flushing.keys.nr);
515         BUG_ON(!dst->room);
516         BUG_ON(!dst->seq);
517
518         struct btree_write_buffered_key *wb_k = &darray_top(dst->wb->keys);
519         wb_k->journal_seq       = dst->seq;
520         wb_k->btree             = btree;
521         bkey_copy(&wb_k->k, k);
522         dst->wb->keys.nr++;
523         dst->room--;
524         return 0;
525 }
526
527 void bch2_journal_keys_to_write_buffer_start(struct bch_fs *c, struct journal_keys_to_wb *dst, u64 seq)
528 {
529         struct btree_write_buffer *wb = &c->btree_write_buffer;
530
531         if (mutex_trylock(&wb->flushing.lock)) {
532                 mutex_lock(&wb->inc.lock);
533                 move_keys_from_inc_to_flushing(wb);
534
535                 /*
536                  * Attempt to skip wb->inc, and add keys directly to
537                  * wb->flushing, saving us a copy later:
538                  */
539
540                 if (!wb->inc.keys.nr) {
541                         dst->wb = &wb->flushing;
542                 } else {
543                         mutex_unlock(&wb->flushing.lock);
544                         dst->wb = &wb->inc;
545                 }
546         } else {
547                 mutex_lock(&wb->inc.lock);
548                 dst->wb = &wb->inc;
549         }
550
551         dst->room = darray_room(dst->wb->keys);
552         if (dst->wb == &wb->flushing)
553                 dst->room = min(dst->room, wb->sorted.size - wb->flushing.keys.nr);
554         dst->seq = seq;
555
556         bch2_journal_pin_add(&c->journal, seq, &dst->wb->pin,
557                              bch2_btree_write_buffer_journal_flush);
558 }
559
560 void bch2_journal_keys_to_write_buffer_end(struct bch_fs *c, struct journal_keys_to_wb *dst)
561 {
562         struct btree_write_buffer *wb = &c->btree_write_buffer;
563
564         if (!dst->wb->keys.nr)
565                 bch2_journal_pin_drop(&c->journal, &dst->wb->pin);
566
567         if (bch2_btree_write_buffer_should_flush(c) &&
568             __bch2_write_ref_tryget(c, BCH_WRITE_REF_btree_write_buffer) &&
569             !queue_work(system_unbound_wq, &c->btree_write_buffer.flush_work))
570                 bch2_write_ref_put(c, BCH_WRITE_REF_btree_write_buffer);
571
572         if (dst->wb == &wb->flushing)
573                 mutex_unlock(&wb->flushing.lock);
574         mutex_unlock(&wb->inc.lock);
575 }
576
577 static int bch2_journal_keys_to_write_buffer(struct bch_fs *c, struct journal_buf *buf)
578 {
579         struct journal_keys_to_wb dst;
580         struct jset_entry *entry;
581         struct bkey_i *k;
582         int ret = 0;
583
584         bch2_journal_keys_to_write_buffer_start(c, &dst, le64_to_cpu(buf->data->seq));
585
586         for_each_jset_entry_type(entry, buf->data, BCH_JSET_ENTRY_write_buffer_keys) {
587                 jset_entry_for_each_key(entry, k) {
588                         ret = bch2_journal_key_to_wb(c, &dst, entry->btree_id, k);
589                         if (ret)
590                                 goto out;
591                 }
592
593                 entry->type = BCH_JSET_ENTRY_btree_keys;
594         }
595
596         buf->need_flush_to_write_buffer = false;
597 out:
598         bch2_journal_keys_to_write_buffer_end(c, &dst);
599         return ret;
600 }
601
602 static int wb_keys_resize(struct btree_write_buffer_keys *wb, size_t new_size)
603 {
604         if (wb->keys.size >= new_size)
605                 return 0;
606
607         if (!mutex_trylock(&wb->lock))
608                 return -EINTR;
609
610         int ret = darray_resize(&wb->keys, new_size);
611         mutex_unlock(&wb->lock);
612         return ret;
613 }
614
615 int bch2_btree_write_buffer_resize(struct bch_fs *c, size_t new_size)
616 {
617         struct btree_write_buffer *wb = &c->btree_write_buffer;
618
619         return wb_keys_resize(&wb->flushing, new_size) ?:
620                 wb_keys_resize(&wb->inc, new_size);
621 }
622
623 void bch2_fs_btree_write_buffer_exit(struct bch_fs *c)
624 {
625         struct btree_write_buffer *wb = &c->btree_write_buffer;
626
627         BUG_ON((wb->inc.keys.nr || wb->flushing.keys.nr) &&
628                !bch2_journal_error(&c->journal));
629
630         darray_exit(&wb->sorted);
631         darray_exit(&wb->flushing.keys);
632         darray_exit(&wb->inc.keys);
633 }
634
635 int bch2_fs_btree_write_buffer_init(struct bch_fs *c)
636 {
637         struct btree_write_buffer *wb = &c->btree_write_buffer;
638
639         mutex_init(&wb->inc.lock);
640         mutex_init(&wb->flushing.lock);
641         INIT_WORK(&wb->flush_work, bch2_btree_write_buffer_flush_work);
642
643         /* Will be resized by journal as needed: */
644         unsigned initial_size = 1 << 16;
645
646         return  darray_make_room(&wb->inc.keys, initial_size) ?:
647                 darray_make_room(&wb->flushing.keys, initial_size) ?:
648                 darray_make_room(&wb->sorted, initial_size);
649 }