]> git.sesse.net Git - bcachefs-tools-debian/blob - libbcachefs/super.c
Update bcachefs sources to a0d7001b0f bcachefs: Change bch2_dev_lookup() to not use...
[bcachefs-tools-debian] / libbcachefs / super.c
1 // SPDX-License-Identifier: GPL-2.0
2 /*
3  * bcachefs setup/teardown code, and some metadata io - read a superblock and
4  * figure out what to do with it.
5  *
6  * Copyright 2010, 2011 Kent Overstreet <kent.overstreet@gmail.com>
7  * Copyright 2012 Google, Inc.
8  */
9
10 #include "bcachefs.h"
11 #include "alloc_background.h"
12 #include "alloc_foreground.h"
13 #include "bkey_sort.h"
14 #include "btree_cache.h"
15 #include "btree_gc.h"
16 #include "btree_key_cache.h"
17 #include "btree_update_interior.h"
18 #include "btree_io.h"
19 #include "buckets_waiting_for_journal.h"
20 #include "chardev.h"
21 #include "checksum.h"
22 #include "clock.h"
23 #include "compress.h"
24 #include "debug.h"
25 #include "disk_groups.h"
26 #include "ec.h"
27 #include "error.h"
28 #include "fs.h"
29 #include "fs-io.h"
30 #include "fsck.h"
31 #include "inode.h"
32 #include "io.h"
33 #include "journal.h"
34 #include "journal_reclaim.h"
35 #include "journal_seq_blacklist.h"
36 #include "move.h"
37 #include "migrate.h"
38 #include "movinggc.h"
39 #include "quota.h"
40 #include "rebalance.h"
41 #include "recovery.h"
42 #include "replicas.h"
43 #include "subvolume.h"
44 #include "super.h"
45 #include "super-io.h"
46 #include "sysfs.h"
47
48 #include <linux/backing-dev.h>
49 #include <linux/blkdev.h>
50 #include <linux/debugfs.h>
51 #include <linux/device.h>
52 #include <linux/genhd.h>
53 #include <linux/idr.h>
54 #include <linux/module.h>
55 #include <linux/percpu.h>
56 #include <linux/random.h>
57 #include <linux/sysfs.h>
58 #include <crypto/hash.h>
59
60 #include <trace/events/bcachefs.h>
61
62 MODULE_LICENSE("GPL");
63 MODULE_AUTHOR("Kent Overstreet <kent.overstreet@gmail.com>");
64
65 #define KTYPE(type)                                                     \
66 struct kobj_type type ## _ktype = {                                     \
67         .release        = type ## _release,                             \
68         .sysfs_ops      = &type ## _sysfs_ops,                          \
69         .default_attrs  = type ## _files                                \
70 }
71
72 static void bch2_fs_release(struct kobject *);
73 static void bch2_dev_release(struct kobject *);
74
75 static void bch2_fs_internal_release(struct kobject *k)
76 {
77 }
78
79 static void bch2_fs_opts_dir_release(struct kobject *k)
80 {
81 }
82
83 static void bch2_fs_time_stats_release(struct kobject *k)
84 {
85 }
86
87 static KTYPE(bch2_fs);
88 static KTYPE(bch2_fs_internal);
89 static KTYPE(bch2_fs_opts_dir);
90 static KTYPE(bch2_fs_time_stats);
91 static KTYPE(bch2_dev);
92
93 static struct kset *bcachefs_kset;
94 static LIST_HEAD(bch_fs_list);
95 static DEFINE_MUTEX(bch_fs_list_lock);
96
97 static DECLARE_WAIT_QUEUE_HEAD(bch_read_only_wait);
98
99 static void bch2_dev_free(struct bch_dev *);
100 static int bch2_dev_alloc(struct bch_fs *, unsigned);
101 static int bch2_dev_sysfs_online(struct bch_fs *, struct bch_dev *);
102 static void __bch2_dev_read_only(struct bch_fs *, struct bch_dev *);
103
104 struct bch_fs *bch2_dev_to_fs(dev_t dev)
105 {
106         struct bch_fs *c;
107         struct bch_dev *ca;
108         unsigned i;
109
110         mutex_lock(&bch_fs_list_lock);
111         rcu_read_lock();
112
113         list_for_each_entry(c, &bch_fs_list, list)
114                 for_each_member_device_rcu(ca, c, i, NULL)
115                         if (ca->disk_sb.bdev && ca->disk_sb.bdev->bd_dev == dev) {
116                                 closure_get(&c->cl);
117                                 goto found;
118                         }
119         c = NULL;
120 found:
121         rcu_read_unlock();
122         mutex_unlock(&bch_fs_list_lock);
123
124         return c;
125 }
126
127 static struct bch_fs *__bch2_uuid_to_fs(uuid_le uuid)
128 {
129         struct bch_fs *c;
130
131         lockdep_assert_held(&bch_fs_list_lock);
132
133         list_for_each_entry(c, &bch_fs_list, list)
134                 if (!memcmp(&c->disk_sb.sb->uuid, &uuid, sizeof(uuid_le)))
135                         return c;
136
137         return NULL;
138 }
139
140 struct bch_fs *bch2_uuid_to_fs(uuid_le uuid)
141 {
142         struct bch_fs *c;
143
144         mutex_lock(&bch_fs_list_lock);
145         c = __bch2_uuid_to_fs(uuid);
146         if (c)
147                 closure_get(&c->cl);
148         mutex_unlock(&bch_fs_list_lock);
149
150         return c;
151 }
152
153 static void bch2_dev_usage_journal_reserve(struct bch_fs *c)
154 {
155         struct bch_dev *ca;
156         unsigned i, nr = 0, u64s =
157                 ((sizeof(struct jset_entry_dev_usage) +
158                   sizeof(struct jset_entry_dev_usage_type) * BCH_DATA_NR)) /
159                 sizeof(u64);
160
161         rcu_read_lock();
162         for_each_member_device_rcu(ca, c, i, NULL)
163                 nr++;
164         rcu_read_unlock();
165
166         bch2_journal_entry_res_resize(&c->journal,
167                         &c->dev_usage_journal_res, u64s * nr);
168 }
169
170 /* Filesystem RO/RW: */
171
172 /*
173  * For startup/shutdown of RW stuff, the dependencies are:
174  *
175  * - foreground writes depend on copygc and rebalance (to free up space)
176  *
177  * - copygc and rebalance depend on mark and sweep gc (they actually probably
178  *   don't because they either reserve ahead of time or don't block if
179  *   allocations fail, but allocations can require mark and sweep gc to run
180  *   because of generation number wraparound)
181  *
182  * - all of the above depends on the allocator threads
183  *
184  * - allocator depends on the journal (when it rewrites prios and gens)
185  */
186
187 static void __bch2_fs_read_only(struct bch_fs *c)
188 {
189         struct bch_dev *ca;
190         unsigned i, clean_passes = 0;
191
192         bch2_rebalance_stop(c);
193         bch2_copygc_stop(c);
194         bch2_gc_thread_stop(c);
195
196         /*
197          * Flush journal before stopping allocators, because flushing journal
198          * blacklist entries involves allocating new btree nodes:
199          */
200         bch2_journal_flush_all_pins(&c->journal);
201
202         /*
203          * If the allocator threads didn't all start up, the btree updates to
204          * write out alloc info aren't going to work:
205          */
206         if (!test_bit(BCH_FS_ALLOCATOR_RUNNING, &c->flags))
207                 goto nowrote_alloc;
208
209         bch_verbose(c, "flushing journal and stopping allocators");
210
211         bch2_journal_flush_all_pins(&c->journal);
212         set_bit(BCH_FS_ALLOCATOR_STOPPING, &c->flags);
213
214         do {
215                 clean_passes++;
216
217                 if (bch2_journal_flush_all_pins(&c->journal))
218                         clean_passes = 0;
219
220                 /*
221                  * In flight interior btree updates will generate more journal
222                  * updates and btree updates (alloc btree):
223                  */
224                 if (bch2_btree_interior_updates_nr_pending(c)) {
225                         closure_wait_event(&c->btree_interior_update_wait,
226                                            !bch2_btree_interior_updates_nr_pending(c));
227                         clean_passes = 0;
228                 }
229                 flush_work(&c->btree_interior_update_work);
230
231                 if (bch2_journal_flush_all_pins(&c->journal))
232                         clean_passes = 0;
233         } while (clean_passes < 2);
234         bch_verbose(c, "flushing journal and stopping allocators complete");
235
236         set_bit(BCH_FS_ALLOC_CLEAN, &c->flags);
237 nowrote_alloc:
238         closure_wait_event(&c->btree_interior_update_wait,
239                            !bch2_btree_interior_updates_nr_pending(c));
240         flush_work(&c->btree_interior_update_work);
241
242         for_each_member_device(ca, c, i)
243                 bch2_dev_allocator_stop(ca);
244
245         clear_bit(BCH_FS_ALLOCATOR_RUNNING, &c->flags);
246         clear_bit(BCH_FS_ALLOCATOR_STOPPING, &c->flags);
247
248         bch2_fs_journal_stop(&c->journal);
249
250         /*
251          * the journal kicks off btree writes via reclaim - wait for in flight
252          * writes after stopping journal:
253          */
254         bch2_btree_flush_all_writes(c);
255
256         /*
257          * After stopping journal:
258          */
259         for_each_member_device(ca, c, i)
260                 bch2_dev_allocator_remove(c, ca);
261 }
262
263 static void bch2_writes_disabled(struct percpu_ref *writes)
264 {
265         struct bch_fs *c = container_of(writes, struct bch_fs, writes);
266
267         set_bit(BCH_FS_WRITE_DISABLE_COMPLETE, &c->flags);
268         wake_up(&bch_read_only_wait);
269 }
270
271 void bch2_fs_read_only(struct bch_fs *c)
272 {
273         if (!test_bit(BCH_FS_RW, &c->flags)) {
274                 bch2_journal_reclaim_stop(&c->journal);
275                 return;
276         }
277
278         BUG_ON(test_bit(BCH_FS_WRITE_DISABLE_COMPLETE, &c->flags));
279
280         /*
281          * Block new foreground-end write operations from starting - any new
282          * writes will return -EROFS:
283          *
284          * (This is really blocking new _allocations_, writes to previously
285          * allocated space can still happen until stopping the allocator in
286          * bch2_dev_allocator_stop()).
287          */
288         percpu_ref_kill(&c->writes);
289
290         cancel_work_sync(&c->ec_stripe_delete_work);
291
292         /*
293          * If we're not doing an emergency shutdown, we want to wait on
294          * outstanding writes to complete so they don't see spurious errors due
295          * to shutting down the allocator:
296          *
297          * If we are doing an emergency shutdown outstanding writes may
298          * hang until we shutdown the allocator so we don't want to wait
299          * on outstanding writes before shutting everything down - but
300          * we do need to wait on them before returning and signalling
301          * that going RO is complete:
302          */
303         wait_event(bch_read_only_wait,
304                    test_bit(BCH_FS_WRITE_DISABLE_COMPLETE, &c->flags) ||
305                    test_bit(BCH_FS_EMERGENCY_RO, &c->flags));
306
307         __bch2_fs_read_only(c);
308
309         wait_event(bch_read_only_wait,
310                    test_bit(BCH_FS_WRITE_DISABLE_COMPLETE, &c->flags));
311
312         clear_bit(BCH_FS_WRITE_DISABLE_COMPLETE, &c->flags);
313
314         if (!bch2_journal_error(&c->journal) &&
315             !test_bit(BCH_FS_ERROR, &c->flags) &&
316             !test_bit(BCH_FS_EMERGENCY_RO, &c->flags) &&
317             test_bit(BCH_FS_STARTED, &c->flags) &&
318             test_bit(BCH_FS_ALLOC_CLEAN, &c->flags) &&
319             !c->opts.norecovery) {
320                 bch_verbose(c, "marking filesystem clean");
321                 bch2_fs_mark_clean(c);
322         }
323
324         clear_bit(BCH_FS_RW, &c->flags);
325 }
326
327 static void bch2_fs_read_only_work(struct work_struct *work)
328 {
329         struct bch_fs *c =
330                 container_of(work, struct bch_fs, read_only_work);
331
332         down_write(&c->state_lock);
333         bch2_fs_read_only(c);
334         up_write(&c->state_lock);
335 }
336
337 static void bch2_fs_read_only_async(struct bch_fs *c)
338 {
339         queue_work(system_long_wq, &c->read_only_work);
340 }
341
342 bool bch2_fs_emergency_read_only(struct bch_fs *c)
343 {
344         bool ret = !test_and_set_bit(BCH_FS_EMERGENCY_RO, &c->flags);
345
346         bch2_journal_halt(&c->journal);
347         bch2_fs_read_only_async(c);
348
349         wake_up(&bch_read_only_wait);
350         return ret;
351 }
352
353 static int bch2_fs_read_write_late(struct bch_fs *c)
354 {
355         int ret;
356
357         ret = bch2_gc_thread_start(c);
358         if (ret) {
359                 bch_err(c, "error starting gc thread");
360                 return ret;
361         }
362
363         ret = bch2_copygc_start(c);
364         if (ret) {
365                 bch_err(c, "error starting copygc thread");
366                 return ret;
367         }
368
369         ret = bch2_rebalance_start(c);
370         if (ret) {
371                 bch_err(c, "error starting rebalance thread");
372                 return ret;
373         }
374
375         schedule_work(&c->ec_stripe_delete_work);
376
377         return 0;
378 }
379
380 static int __bch2_fs_read_write(struct bch_fs *c, bool early)
381 {
382         struct bch_dev *ca;
383         unsigned i;
384         int ret;
385
386         if (test_bit(BCH_FS_INITIAL_GC_UNFIXED, &c->flags)) {
387                 bch_err(c, "cannot go rw, unfixed btree errors");
388                 return -EROFS;
389         }
390
391         if (test_bit(BCH_FS_RW, &c->flags))
392                 return 0;
393
394         /*
395          * nochanges is used for fsck -n mode - we have to allow going rw
396          * during recovery for that to work:
397          */
398         if (c->opts.norecovery ||
399             (c->opts.nochanges &&
400              (!early || c->opts.read_only)))
401                 return -EROFS;
402
403         bch_info(c, "going read-write");
404
405         ret = bch2_fs_mark_dirty(c);
406         if (ret)
407                 goto err;
408
409         clear_bit(BCH_FS_ALLOC_CLEAN, &c->flags);
410
411         for_each_rw_member(ca, c, i)
412                 bch2_dev_allocator_add(c, ca);
413         bch2_recalc_capacity(c);
414
415         for_each_rw_member(ca, c, i) {
416                 ret = bch2_dev_allocator_start(ca);
417                 if (ret) {
418                         bch_err(c, "error starting allocator threads");
419                         percpu_ref_put(&ca->io_ref);
420                         goto err;
421                 }
422         }
423
424         set_bit(BCH_FS_ALLOCATOR_RUNNING, &c->flags);
425
426         for_each_rw_member(ca, c, i)
427                 bch2_wake_allocator(ca);
428
429         if (!early) {
430                 ret = bch2_fs_read_write_late(c);
431                 if (ret)
432                         goto err;
433         }
434
435         percpu_ref_reinit(&c->writes);
436         set_bit(BCH_FS_RW, &c->flags);
437         set_bit(BCH_FS_WAS_RW, &c->flags);
438         return 0;
439 err:
440         __bch2_fs_read_only(c);
441         return ret;
442 }
443
444 int bch2_fs_read_write(struct bch_fs *c)
445 {
446         return __bch2_fs_read_write(c, false);
447 }
448
449 int bch2_fs_read_write_early(struct bch_fs *c)
450 {
451         lockdep_assert_held(&c->state_lock);
452
453         return __bch2_fs_read_write(c, true);
454 }
455
456 /* Filesystem startup/shutdown: */
457
458 static void __bch2_fs_free(struct bch_fs *c)
459 {
460         unsigned i;
461         int cpu;
462
463         for (i = 0; i < BCH_TIME_STAT_NR; i++)
464                 bch2_time_stats_exit(&c->times[i]);
465
466         bch2_fs_snapshots_exit(c);
467         bch2_fs_quota_exit(c);
468         bch2_fs_fsio_exit(c);
469         bch2_fs_ec_exit(c);
470         bch2_fs_encryption_exit(c);
471         bch2_fs_io_exit(c);
472         bch2_fs_buckets_waiting_for_journal_exit(c);
473         bch2_fs_btree_interior_update_exit(c);
474         bch2_fs_btree_iter_exit(c);
475         bch2_fs_btree_key_cache_exit(&c->btree_key_cache);
476         bch2_fs_btree_cache_exit(c);
477         bch2_fs_replicas_exit(c);
478         bch2_fs_journal_exit(&c->journal);
479         bch2_io_clock_exit(&c->io_clock[WRITE]);
480         bch2_io_clock_exit(&c->io_clock[READ]);
481         bch2_fs_compress_exit(c);
482         bch2_journal_keys_free(&c->journal_keys);
483         bch2_journal_entries_free(&c->journal_entries);
484         percpu_free_rwsem(&c->mark_lock);
485
486         if (c->btree_paths_bufs)
487                 for_each_possible_cpu(cpu)
488                         kfree(per_cpu_ptr(c->btree_paths_bufs, cpu)->path);
489
490         free_percpu(c->online_reserved);
491         free_percpu(c->btree_paths_bufs);
492         free_percpu(c->pcpu);
493         mempool_exit(&c->large_bkey_pool);
494         mempool_exit(&c->btree_bounce_pool);
495         bioset_exit(&c->btree_bio);
496         mempool_exit(&c->fill_iter);
497         percpu_ref_exit(&c->writes);
498         kfree(rcu_dereference_protected(c->disk_groups, 1));
499         kfree(c->journal_seq_blacklist_table);
500         kfree(c->unused_inode_hints);
501         free_heap(&c->copygc_heap);
502
503         if (c->io_complete_wq )
504                 destroy_workqueue(c->io_complete_wq );
505         if (c->copygc_wq)
506                 destroy_workqueue(c->copygc_wq);
507         if (c->btree_io_complete_wq)
508                 destroy_workqueue(c->btree_io_complete_wq);
509         if (c->btree_update_wq)
510                 destroy_workqueue(c->btree_update_wq);
511
512         bch2_free_super(&c->disk_sb);
513         kvpfree(c, sizeof(*c));
514         module_put(THIS_MODULE);
515 }
516
517 static void bch2_fs_release(struct kobject *kobj)
518 {
519         struct bch_fs *c = container_of(kobj, struct bch_fs, kobj);
520
521         __bch2_fs_free(c);
522 }
523
524 void __bch2_fs_stop(struct bch_fs *c)
525 {
526         struct bch_dev *ca;
527         unsigned i;
528
529         bch_verbose(c, "shutting down");
530
531         set_bit(BCH_FS_STOPPING, &c->flags);
532
533         cancel_work_sync(&c->journal_seq_blacklist_gc_work);
534
535         down_write(&c->state_lock);
536         bch2_fs_read_only(c);
537         up_write(&c->state_lock);
538
539         for_each_member_device(ca, c, i)
540                 if (ca->kobj.state_in_sysfs &&
541                     ca->disk_sb.bdev)
542                         sysfs_remove_link(bdev_kobj(ca->disk_sb.bdev), "bcachefs");
543
544         if (c->kobj.state_in_sysfs)
545                 kobject_del(&c->kobj);
546
547         bch2_fs_debug_exit(c);
548         bch2_fs_chardev_exit(c);
549
550         kobject_put(&c->time_stats);
551         kobject_put(&c->opts_dir);
552         kobject_put(&c->internal);
553
554         /* btree prefetch might have kicked off reads in the background: */
555         bch2_btree_flush_all_reads(c);
556
557         for_each_member_device(ca, c, i)
558                 cancel_work_sync(&ca->io_error_work);
559
560         cancel_work_sync(&c->read_only_work);
561
562         for (i = 0; i < c->sb.nr_devices; i++)
563                 if (c->devs[i])
564                         bch2_free_super(&c->devs[i]->disk_sb);
565 }
566
567 void bch2_fs_free(struct bch_fs *c)
568 {
569         unsigned i;
570
571         mutex_lock(&bch_fs_list_lock);
572         list_del(&c->list);
573         mutex_unlock(&bch_fs_list_lock);
574
575         closure_sync(&c->cl);
576         closure_debug_destroy(&c->cl);
577
578         for (i = 0; i < c->sb.nr_devices; i++)
579                 if (c->devs[i])
580                         bch2_dev_free(rcu_dereference_protected(c->devs[i], 1));
581
582         bch_verbose(c, "shutdown complete");
583
584         kobject_put(&c->kobj);
585 }
586
587 void bch2_fs_stop(struct bch_fs *c)
588 {
589         __bch2_fs_stop(c);
590         bch2_fs_free(c);
591 }
592
593 static int bch2_fs_online(struct bch_fs *c)
594 {
595         struct bch_dev *ca;
596         unsigned i;
597         int ret = 0;
598
599         lockdep_assert_held(&bch_fs_list_lock);
600
601         if (__bch2_uuid_to_fs(c->sb.uuid)) {
602                 bch_err(c, "filesystem UUID already open");
603                 return -EINVAL;
604         }
605
606         ret = bch2_fs_chardev_init(c);
607         if (ret) {
608                 bch_err(c, "error creating character device");
609                 return ret;
610         }
611
612         bch2_fs_debug_init(c);
613
614         ret = kobject_add(&c->kobj, NULL, "%pU", c->sb.user_uuid.b) ?:
615             kobject_add(&c->internal, &c->kobj, "internal") ?:
616             kobject_add(&c->opts_dir, &c->kobj, "options") ?:
617             kobject_add(&c->time_stats, &c->kobj, "time_stats") ?:
618             bch2_opts_create_sysfs_files(&c->opts_dir);
619         if (ret) {
620                 bch_err(c, "error creating sysfs objects");
621                 return ret;
622         }
623
624         down_write(&c->state_lock);
625
626         for_each_member_device(ca, c, i) {
627                 ret = bch2_dev_sysfs_online(c, ca);
628                 if (ret) {
629                         bch_err(c, "error creating sysfs objects");
630                         percpu_ref_put(&ca->ref);
631                         goto err;
632                 }
633         }
634
635         BUG_ON(!list_empty(&c->list));
636         list_add(&c->list, &bch_fs_list);
637 err:
638         up_write(&c->state_lock);
639         return ret;
640 }
641
642 static struct bch_fs *bch2_fs_alloc(struct bch_sb *sb, struct bch_opts opts)
643 {
644         struct bch_sb_field_members *mi;
645         struct bch_fs *c;
646         unsigned i, iter_size;
647         int ret = 0;
648
649         pr_verbose_init(opts, "");
650
651         c = kvpmalloc(sizeof(struct bch_fs), GFP_KERNEL|__GFP_ZERO);
652         if (!c) {
653                 c = ERR_PTR(-ENOMEM);
654                 goto out;
655         }
656
657         __module_get(THIS_MODULE);
658
659         closure_init(&c->cl, NULL);
660
661         c->kobj.kset = bcachefs_kset;
662         kobject_init(&c->kobj, &bch2_fs_ktype);
663         kobject_init(&c->internal, &bch2_fs_internal_ktype);
664         kobject_init(&c->opts_dir, &bch2_fs_opts_dir_ktype);
665         kobject_init(&c->time_stats, &bch2_fs_time_stats_ktype);
666
667         c->minor                = -1;
668         c->disk_sb.fs_sb        = true;
669
670         init_rwsem(&c->state_lock);
671         mutex_init(&c->sb_lock);
672         mutex_init(&c->replicas_gc_lock);
673         mutex_init(&c->btree_root_lock);
674         INIT_WORK(&c->read_only_work, bch2_fs_read_only_work);
675
676         init_rwsem(&c->gc_lock);
677         mutex_init(&c->gc_gens_lock);
678
679         for (i = 0; i < BCH_TIME_STAT_NR; i++)
680                 bch2_time_stats_init(&c->times[i]);
681
682         bch2_fs_copygc_init(c);
683         bch2_fs_btree_key_cache_init_early(&c->btree_key_cache);
684         bch2_fs_allocator_background_init(c);
685         bch2_fs_allocator_foreground_init(c);
686         bch2_fs_rebalance_init(c);
687         bch2_fs_quota_init(c);
688
689         INIT_LIST_HEAD(&c->list);
690
691         mutex_init(&c->usage_scratch_lock);
692
693         mutex_init(&c->bio_bounce_pages_lock);
694         mutex_init(&c->snapshot_table_lock);
695
696         spin_lock_init(&c->btree_write_error_lock);
697
698         INIT_WORK(&c->journal_seq_blacklist_gc_work,
699                   bch2_blacklist_entries_gc);
700
701         INIT_LIST_HEAD(&c->journal_entries);
702         INIT_LIST_HEAD(&c->journal_iters);
703
704         INIT_LIST_HEAD(&c->fsck_errors);
705         mutex_init(&c->fsck_error_lock);
706
707         INIT_LIST_HEAD(&c->ec_stripe_head_list);
708         mutex_init(&c->ec_stripe_head_lock);
709
710         INIT_LIST_HEAD(&c->ec_stripe_new_list);
711         mutex_init(&c->ec_stripe_new_lock);
712
713         INIT_LIST_HEAD(&c->data_progress_list);
714         mutex_init(&c->data_progress_lock);
715
716         spin_lock_init(&c->ec_stripes_heap_lock);
717
718         seqcount_init(&c->gc_pos_lock);
719
720         seqcount_init(&c->usage_lock);
721
722         sema_init(&c->io_in_flight, 64);
723
724         c->copy_gc_enabled              = 1;
725         c->rebalance.enabled            = 1;
726         c->promote_whole_extents        = true;
727
728         c->journal.flush_write_time     = &c->times[BCH_TIME_journal_flush_write];
729         c->journal.noflush_write_time   = &c->times[BCH_TIME_journal_noflush_write];
730         c->journal.blocked_time         = &c->times[BCH_TIME_blocked_journal];
731         c->journal.flush_seq_time       = &c->times[BCH_TIME_journal_flush_seq];
732
733         bch2_fs_btree_cache_init_early(&c->btree_cache);
734
735         mutex_init(&c->sectors_available_lock);
736
737         ret = percpu_init_rwsem(&c->mark_lock);
738         if (ret)
739                 goto err;
740
741         mutex_lock(&c->sb_lock);
742         ret = bch2_sb_to_fs(c, sb);
743         mutex_unlock(&c->sb_lock);
744
745         if (ret)
746                 goto err;
747
748         uuid_unparse_lower(c->sb.user_uuid.b, c->name);
749
750         /* Compat: */
751         if (sb->version <= bcachefs_metadata_version_inode_v2 &&
752             !BCH_SB_JOURNAL_FLUSH_DELAY(sb))
753                 SET_BCH_SB_JOURNAL_FLUSH_DELAY(sb, 1000);
754
755         if (sb->version <= bcachefs_metadata_version_inode_v2 &&
756             !BCH_SB_JOURNAL_RECLAIM_DELAY(sb))
757                 SET_BCH_SB_JOURNAL_RECLAIM_DELAY(sb, 100);
758
759         c->opts = bch2_opts_default;
760         ret = bch2_opts_from_sb(&c->opts, sb);
761         if (ret)
762                 goto err;
763
764         bch2_opts_apply(&c->opts, opts);
765
766         /* key cache currently disabled for inodes, because of snapshots: */
767         c->opts.inodes_use_key_cache = 0;
768
769         c->btree_key_cache_btrees |= 1U << BTREE_ID_alloc;
770         if (c->opts.inodes_use_key_cache)
771                 c->btree_key_cache_btrees |= 1U << BTREE_ID_inodes;
772
773         c->block_bits           = ilog2(block_sectors(c));
774         c->btree_foreground_merge_threshold = BTREE_FOREGROUND_MERGE_THRESHOLD(c);
775
776         if (bch2_fs_init_fault("fs_alloc")) {
777                 bch_err(c, "fs_alloc fault injected");
778                 ret = -EFAULT;
779                 goto err;
780         }
781
782         iter_size = sizeof(struct sort_iter) +
783                 (btree_blocks(c) + 1) * 2 *
784                 sizeof(struct sort_iter_set);
785
786         c->inode_shard_bits = ilog2(roundup_pow_of_two(num_possible_cpus()));
787
788         if (!(c->btree_update_wq = alloc_workqueue("bcachefs",
789                                 WQ_FREEZABLE|WQ_MEM_RECLAIM|WQ_CPU_INTENSIVE, 1)) ||
790             !(c->btree_io_complete_wq = alloc_workqueue("bcachefs_btree_io",
791                                 WQ_FREEZABLE|WQ_MEM_RECLAIM|WQ_CPU_INTENSIVE, 1)) ||
792             !(c->copygc_wq = alloc_workqueue("bcachefs_copygc",
793                                 WQ_FREEZABLE|WQ_MEM_RECLAIM|WQ_CPU_INTENSIVE, 1)) ||
794             !(c->io_complete_wq = alloc_workqueue("bcachefs_io",
795                                 WQ_FREEZABLE|WQ_HIGHPRI|WQ_MEM_RECLAIM, 1)) ||
796             percpu_ref_init(&c->writes, bch2_writes_disabled,
797                             PERCPU_REF_INIT_DEAD, GFP_KERNEL) ||
798             mempool_init_kmalloc_pool(&c->fill_iter, 1, iter_size) ||
799             bioset_init(&c->btree_bio, 1,
800                         max(offsetof(struct btree_read_bio, bio),
801                             offsetof(struct btree_write_bio, wbio.bio)),
802                         BIOSET_NEED_BVECS) ||
803             !(c->pcpu = alloc_percpu(struct bch_fs_pcpu)) ||
804             !(c->btree_paths_bufs = alloc_percpu(struct btree_path_buf)) ||
805             !(c->online_reserved = alloc_percpu(u64)) ||
806             mempool_init_kvpmalloc_pool(&c->btree_bounce_pool, 1,
807                                         btree_bytes(c)) ||
808             mempool_init_kmalloc_pool(&c->large_bkey_pool, 1, 2048) ||
809             !(c->unused_inode_hints = kcalloc(1U << c->inode_shard_bits,
810                                               sizeof(u64), GFP_KERNEL))) {
811                 ret = -ENOMEM;
812                 goto err;
813         }
814
815         ret = bch2_io_clock_init(&c->io_clock[READ]) ?:
816             bch2_io_clock_init(&c->io_clock[WRITE]) ?:
817             bch2_fs_journal_init(&c->journal) ?:
818             bch2_fs_replicas_init(c) ?:
819             bch2_fs_btree_cache_init(c) ?:
820             bch2_fs_btree_key_cache_init(&c->btree_key_cache) ?:
821             bch2_fs_btree_iter_init(c) ?:
822             bch2_fs_btree_interior_update_init(c) ?:
823             bch2_fs_buckets_waiting_for_journal_init(c);
824             bch2_fs_subvolumes_init(c) ?:
825             bch2_fs_io_init(c) ?:
826             bch2_fs_encryption_init(c) ?:
827             bch2_fs_compress_init(c) ?:
828             bch2_fs_ec_init(c) ?:
829             bch2_fs_fsio_init(c);
830         if (ret)
831                 goto err;
832
833         if (c->opts.nochanges)
834                 set_bit(JOURNAL_NOCHANGES, &c->journal.flags);
835
836         mi = bch2_sb_get_members(c->disk_sb.sb);
837         for (i = 0; i < c->sb.nr_devices; i++)
838                 if (bch2_dev_exists(c->disk_sb.sb, mi, i) &&
839                     bch2_dev_alloc(c, i)) {
840                         ret = -EEXIST;
841                         goto err;
842                 }
843
844         bch2_journal_entry_res_resize(&c->journal,
845                         &c->btree_root_journal_res,
846                         BTREE_ID_NR * (JSET_KEYS_U64s + BKEY_BTREE_PTR_U64s_MAX));
847         bch2_dev_usage_journal_reserve(c);
848         bch2_journal_entry_res_resize(&c->journal,
849                         &c->clock_journal_res,
850                         (sizeof(struct jset_entry_clock) / sizeof(u64)) * 2);
851
852         mutex_lock(&bch_fs_list_lock);
853         ret = bch2_fs_online(c);
854         mutex_unlock(&bch_fs_list_lock);
855
856         if (ret)
857                 goto err;
858 out:
859         pr_verbose_init(opts, "ret %i", PTR_ERR_OR_ZERO(c));
860         return c;
861 err:
862         bch2_fs_free(c);
863         c = ERR_PTR(ret);
864         goto out;
865 }
866
867 noinline_for_stack
868 static void print_mount_opts(struct bch_fs *c)
869 {
870         enum bch_opt_id i;
871         char buf[512];
872         struct printbuf p = PBUF(buf);
873         bool first = true;
874
875         strcpy(buf, "(null)");
876
877         if (c->opts.read_only) {
878                 pr_buf(&p, "ro");
879                 first = false;
880         }
881
882         for (i = 0; i < bch2_opts_nr; i++) {
883                 const struct bch_option *opt = &bch2_opt_table[i];
884                 u64 v = bch2_opt_get_by_id(&c->opts, i);
885
886                 if (!(opt->flags & OPT_MOUNT))
887                         continue;
888
889                 if (v == bch2_opt_get_by_id(&bch2_opts_default, i))
890                         continue;
891
892                 if (!first)
893                         pr_buf(&p, ",");
894                 first = false;
895                 bch2_opt_to_text(&p, c, opt, v, OPT_SHOW_MOUNT_STYLE);
896         }
897
898         bch_info(c, "mounted with opts: %s", buf);
899 }
900
901 int bch2_fs_start(struct bch_fs *c)
902 {
903         struct bch_sb_field_members *mi;
904         struct bch_dev *ca;
905         time64_t now = ktime_get_real_seconds();
906         unsigned i;
907         int ret = -EINVAL;
908
909         down_write(&c->state_lock);
910
911         BUG_ON(test_bit(BCH_FS_STARTED, &c->flags));
912
913         mutex_lock(&c->sb_lock);
914
915         for_each_online_member(ca, c, i)
916                 bch2_sb_from_fs(c, ca);
917
918         mi = bch2_sb_get_members(c->disk_sb.sb);
919         for_each_online_member(ca, c, i)
920                 mi->members[ca->dev_idx].last_mount = cpu_to_le64(now);
921
922         mutex_unlock(&c->sb_lock);
923
924         for_each_rw_member(ca, c, i)
925                 bch2_dev_allocator_add(c, ca);
926         bch2_recalc_capacity(c);
927
928         ret = BCH_SB_INITIALIZED(c->disk_sb.sb)
929                 ? bch2_fs_recovery(c)
930                 : bch2_fs_initialize(c);
931         if (ret)
932                 goto err;
933
934         ret = bch2_opts_check_may_set(c);
935         if (ret)
936                 goto err;
937
938         ret = -EINVAL;
939         if (bch2_fs_init_fault("fs_start")) {
940                 bch_err(c, "fs_start fault injected");
941                 goto err;
942         }
943
944         set_bit(BCH_FS_STARTED, &c->flags);
945
946         /*
947          * Allocator threads don't start filling copygc reserve until after we
948          * set BCH_FS_STARTED - wake them now:
949          *
950          * XXX ugly hack:
951          * Need to set ca->allocator_state here instead of relying on the
952          * allocator threads to do it to avoid racing with the copygc threads
953          * checking it and thinking they have no alloc reserve:
954          */
955         for_each_online_member(ca, c, i) {
956                 ca->allocator_state = ALLOCATOR_running;
957                 bch2_wake_allocator(ca);
958         }
959
960         if (c->opts.read_only || c->opts.nochanges) {
961                 bch2_fs_read_only(c);
962         } else {
963                 ret = !test_bit(BCH_FS_RW, &c->flags)
964                         ? bch2_fs_read_write(c)
965                         : bch2_fs_read_write_late(c);
966                 if (ret)
967                         goto err;
968         }
969
970         print_mount_opts(c);
971         ret = 0;
972 out:
973         up_write(&c->state_lock);
974         return ret;
975 err:
976         switch (ret) {
977         case BCH_FSCK_ERRORS_NOT_FIXED:
978                 bch_err(c, "filesystem contains errors: please report this to the developers");
979                 pr_cont("mount with -o fix_errors to repair\n");
980                 break;
981         case BCH_FSCK_REPAIR_UNIMPLEMENTED:
982                 bch_err(c, "filesystem contains errors: please report this to the developers");
983                 pr_cont("repair unimplemented: inform the developers so that it can be added\n");
984                 break;
985         case BCH_FSCK_REPAIR_IMPOSSIBLE:
986                 bch_err(c, "filesystem contains errors, but repair impossible");
987                 break;
988         case BCH_FSCK_UNKNOWN_VERSION:
989                 bch_err(c, "unknown metadata version");
990                 break;
991         case -ENOMEM:
992                 bch_err(c, "cannot allocate memory");
993                 break;
994         case -EIO:
995                 bch_err(c, "IO error");
996                 break;
997         }
998
999         if (ret >= 0)
1000                 ret = -EIO;
1001         goto out;
1002 }
1003
1004 static const char *bch2_dev_may_add(struct bch_sb *sb, struct bch_fs *c)
1005 {
1006         struct bch_sb_field_members *sb_mi;
1007
1008         sb_mi = bch2_sb_get_members(sb);
1009         if (!sb_mi)
1010                 return "Invalid superblock: member info area missing";
1011
1012         if (le16_to_cpu(sb->block_size) != block_sectors(c))
1013                 return "mismatched block size";
1014
1015         if (le16_to_cpu(sb_mi->members[sb->dev_idx].bucket_size) <
1016             BCH_SB_BTREE_NODE_SIZE(c->disk_sb.sb))
1017                 return "new cache bucket size is too small";
1018
1019         return NULL;
1020 }
1021
1022 static const char *bch2_dev_in_fs(struct bch_sb *fs, struct bch_sb *sb)
1023 {
1024         struct bch_sb *newest =
1025                 le64_to_cpu(fs->seq) > le64_to_cpu(sb->seq) ? fs : sb;
1026         struct bch_sb_field_members *mi = bch2_sb_get_members(newest);
1027
1028         if (uuid_le_cmp(fs->uuid, sb->uuid))
1029                 return "device not a member of filesystem";
1030
1031         if (!bch2_dev_exists(newest, mi, sb->dev_idx))
1032                 return "device has been removed";
1033
1034         if (fs->block_size != sb->block_size)
1035                 return "mismatched block size";
1036
1037         return NULL;
1038 }
1039
1040 /* Device startup/shutdown: */
1041
1042 static void bch2_dev_release(struct kobject *kobj)
1043 {
1044         struct bch_dev *ca = container_of(kobj, struct bch_dev, kobj);
1045
1046         kfree(ca);
1047 }
1048
1049 static void bch2_dev_free(struct bch_dev *ca)
1050 {
1051         bch2_dev_allocator_stop(ca);
1052
1053         cancel_work_sync(&ca->io_error_work);
1054
1055         if (ca->kobj.state_in_sysfs &&
1056             ca->disk_sb.bdev)
1057                 sysfs_remove_link(bdev_kobj(ca->disk_sb.bdev), "bcachefs");
1058
1059         if (ca->kobj.state_in_sysfs)
1060                 kobject_del(&ca->kobj);
1061
1062         bch2_free_super(&ca->disk_sb);
1063         bch2_dev_journal_exit(ca);
1064
1065         free_percpu(ca->io_done);
1066         bioset_exit(&ca->replica_set);
1067         bch2_dev_buckets_free(ca);
1068         free_page((unsigned long) ca->sb_read_scratch);
1069
1070         bch2_time_stats_exit(&ca->io_latency[WRITE]);
1071         bch2_time_stats_exit(&ca->io_latency[READ]);
1072
1073         percpu_ref_exit(&ca->io_ref);
1074         percpu_ref_exit(&ca->ref);
1075         kobject_put(&ca->kobj);
1076 }
1077
1078 static void __bch2_dev_offline(struct bch_fs *c, struct bch_dev *ca)
1079 {
1080
1081         lockdep_assert_held(&c->state_lock);
1082
1083         if (percpu_ref_is_zero(&ca->io_ref))
1084                 return;
1085
1086         __bch2_dev_read_only(c, ca);
1087
1088         reinit_completion(&ca->io_ref_completion);
1089         percpu_ref_kill(&ca->io_ref);
1090         wait_for_completion(&ca->io_ref_completion);
1091
1092         if (ca->kobj.state_in_sysfs) {
1093                 sysfs_remove_link(bdev_kobj(ca->disk_sb.bdev), "bcachefs");
1094                 sysfs_remove_link(&ca->kobj, "block");
1095         }
1096
1097         bch2_free_super(&ca->disk_sb);
1098         bch2_dev_journal_exit(ca);
1099 }
1100
1101 static void bch2_dev_ref_complete(struct percpu_ref *ref)
1102 {
1103         struct bch_dev *ca = container_of(ref, struct bch_dev, ref);
1104
1105         complete(&ca->ref_completion);
1106 }
1107
1108 static void bch2_dev_io_ref_complete(struct percpu_ref *ref)
1109 {
1110         struct bch_dev *ca = container_of(ref, struct bch_dev, io_ref);
1111
1112         complete(&ca->io_ref_completion);
1113 }
1114
1115 static int bch2_dev_sysfs_online(struct bch_fs *c, struct bch_dev *ca)
1116 {
1117         int ret;
1118
1119         if (!c->kobj.state_in_sysfs)
1120                 return 0;
1121
1122         if (!ca->kobj.state_in_sysfs) {
1123                 ret = kobject_add(&ca->kobj, &c->kobj,
1124                                   "dev-%u", ca->dev_idx);
1125                 if (ret)
1126                         return ret;
1127         }
1128
1129         if (ca->disk_sb.bdev) {
1130                 struct kobject *block = bdev_kobj(ca->disk_sb.bdev);
1131
1132                 ret = sysfs_create_link(block, &ca->kobj, "bcachefs");
1133                 if (ret)
1134                         return ret;
1135
1136                 ret = sysfs_create_link(&ca->kobj, block, "block");
1137                 if (ret)
1138                         return ret;
1139         }
1140
1141         return 0;
1142 }
1143
1144 static struct bch_dev *__bch2_dev_alloc(struct bch_fs *c,
1145                                         struct bch_member *member)
1146 {
1147         struct bch_dev *ca;
1148
1149         ca = kzalloc(sizeof(*ca), GFP_KERNEL);
1150         if (!ca)
1151                 return NULL;
1152
1153         kobject_init(&ca->kobj, &bch2_dev_ktype);
1154         init_completion(&ca->ref_completion);
1155         init_completion(&ca->io_ref_completion);
1156
1157         init_rwsem(&ca->bucket_lock);
1158
1159         INIT_WORK(&ca->io_error_work, bch2_io_error_work);
1160
1161         bch2_time_stats_init(&ca->io_latency[READ]);
1162         bch2_time_stats_init(&ca->io_latency[WRITE]);
1163
1164         ca->mi = bch2_mi_to_cpu(member);
1165         ca->uuid = member->uuid;
1166
1167         if (opt_defined(c->opts, discard))
1168                 ca->mi.discard = opt_get(c->opts, discard);
1169
1170         if (percpu_ref_init(&ca->ref, bch2_dev_ref_complete,
1171                             0, GFP_KERNEL) ||
1172             percpu_ref_init(&ca->io_ref, bch2_dev_io_ref_complete,
1173                             PERCPU_REF_INIT_DEAD, GFP_KERNEL) ||
1174             !(ca->sb_read_scratch = (void *) __get_free_page(GFP_KERNEL)) ||
1175             bch2_dev_buckets_alloc(c, ca) ||
1176             bioset_init(&ca->replica_set, 4,
1177                         offsetof(struct bch_write_bio, bio), 0) ||
1178             !(ca->io_done       = alloc_percpu(*ca->io_done)))
1179                 goto err;
1180
1181         return ca;
1182 err:
1183         bch2_dev_free(ca);
1184         return NULL;
1185 }
1186
1187 static void bch2_dev_attach(struct bch_fs *c, struct bch_dev *ca,
1188                             unsigned dev_idx)
1189 {
1190         ca->dev_idx = dev_idx;
1191         __set_bit(ca->dev_idx, ca->self.d);
1192         scnprintf(ca->name, sizeof(ca->name), "dev-%u", dev_idx);
1193
1194         ca->fs = c;
1195         rcu_assign_pointer(c->devs[ca->dev_idx], ca);
1196
1197         if (bch2_dev_sysfs_online(c, ca))
1198                 pr_warn("error creating sysfs objects");
1199 }
1200
1201 static int bch2_dev_alloc(struct bch_fs *c, unsigned dev_idx)
1202 {
1203         struct bch_member *member =
1204                 bch2_sb_get_members(c->disk_sb.sb)->members + dev_idx;
1205         struct bch_dev *ca = NULL;
1206         int ret = 0;
1207
1208         pr_verbose_init(c->opts, "");
1209
1210         if (bch2_fs_init_fault("dev_alloc"))
1211                 goto err;
1212
1213         ca = __bch2_dev_alloc(c, member);
1214         if (!ca)
1215                 goto err;
1216
1217         ca->fs = c;
1218
1219         if (ca->mi.state == BCH_MEMBER_STATE_rw &&
1220             bch2_dev_allocator_start(ca)) {
1221                 bch2_dev_free(ca);
1222                 goto err;
1223         }
1224
1225         bch2_dev_attach(c, ca, dev_idx);
1226 out:
1227         pr_verbose_init(c->opts, "ret %i", ret);
1228         return ret;
1229 err:
1230         if (ca)
1231                 bch2_dev_free(ca);
1232         ret = -ENOMEM;
1233         goto out;
1234 }
1235
1236 static int __bch2_dev_attach_bdev(struct bch_dev *ca, struct bch_sb_handle *sb)
1237 {
1238         unsigned ret;
1239
1240         if (bch2_dev_is_online(ca)) {
1241                 bch_err(ca, "already have device online in slot %u",
1242                         sb->sb->dev_idx);
1243                 return -EINVAL;
1244         }
1245
1246         if (get_capacity(sb->bdev->bd_disk) <
1247             ca->mi.bucket_size * ca->mi.nbuckets) {
1248                 bch_err(ca, "cannot online: device too small");
1249                 return -EINVAL;
1250         }
1251
1252         BUG_ON(!percpu_ref_is_zero(&ca->io_ref));
1253
1254         if (get_capacity(sb->bdev->bd_disk) <
1255             ca->mi.bucket_size * ca->mi.nbuckets) {
1256                 bch_err(ca, "device too small");
1257                 return -EINVAL;
1258         }
1259
1260         ret = bch2_dev_journal_init(ca, sb->sb);
1261         if (ret)
1262                 return ret;
1263
1264         /* Commit: */
1265         ca->disk_sb = *sb;
1266         if (sb->mode & FMODE_EXCL)
1267                 ca->disk_sb.bdev->bd_holder = ca;
1268         memset(sb, 0, sizeof(*sb));
1269
1270         ca->dev = ca->disk_sb.bdev->bd_dev;
1271
1272         percpu_ref_reinit(&ca->io_ref);
1273
1274         return 0;
1275 }
1276
1277 static int bch2_dev_attach_bdev(struct bch_fs *c, struct bch_sb_handle *sb)
1278 {
1279         struct bch_dev *ca;
1280         int ret;
1281
1282         lockdep_assert_held(&c->state_lock);
1283
1284         if (le64_to_cpu(sb->sb->seq) >
1285             le64_to_cpu(c->disk_sb.sb->seq))
1286                 bch2_sb_to_fs(c, sb->sb);
1287
1288         BUG_ON(sb->sb->dev_idx >= c->sb.nr_devices ||
1289                !c->devs[sb->sb->dev_idx]);
1290
1291         ca = bch_dev_locked(c, sb->sb->dev_idx);
1292
1293         ret = __bch2_dev_attach_bdev(ca, sb);
1294         if (ret)
1295                 return ret;
1296
1297         bch2_dev_sysfs_online(c, ca);
1298
1299         if (c->sb.nr_devices == 1)
1300                 bdevname(ca->disk_sb.bdev, c->name);
1301         bdevname(ca->disk_sb.bdev, ca->name);
1302
1303         rebalance_wakeup(c);
1304         return 0;
1305 }
1306
1307 /* Device management: */
1308
1309 /*
1310  * Note: this function is also used by the error paths - when a particular
1311  * device sees an error, we call it to determine whether we can just set the
1312  * device RO, or - if this function returns false - we'll set the whole
1313  * filesystem RO:
1314  *
1315  * XXX: maybe we should be more explicit about whether we're changing state
1316  * because we got an error or what have you?
1317  */
1318 bool bch2_dev_state_allowed(struct bch_fs *c, struct bch_dev *ca,
1319                             enum bch_member_state new_state, int flags)
1320 {
1321         struct bch_devs_mask new_online_devs;
1322         struct bch_dev *ca2;
1323         int i, nr_rw = 0, required;
1324
1325         lockdep_assert_held(&c->state_lock);
1326
1327         switch (new_state) {
1328         case BCH_MEMBER_STATE_rw:
1329                 return true;
1330         case BCH_MEMBER_STATE_ro:
1331                 if (ca->mi.state != BCH_MEMBER_STATE_rw)
1332                         return true;
1333
1334                 /* do we have enough devices to write to?  */
1335                 for_each_member_device(ca2, c, i)
1336                         if (ca2 != ca)
1337                                 nr_rw += ca2->mi.state == BCH_MEMBER_STATE_rw;
1338
1339                 required = max(!(flags & BCH_FORCE_IF_METADATA_DEGRADED)
1340                                ? c->opts.metadata_replicas
1341                                : c->opts.metadata_replicas_required,
1342                                !(flags & BCH_FORCE_IF_DATA_DEGRADED)
1343                                ? c->opts.data_replicas
1344                                : c->opts.data_replicas_required);
1345
1346                 return nr_rw >= required;
1347         case BCH_MEMBER_STATE_failed:
1348         case BCH_MEMBER_STATE_spare:
1349                 if (ca->mi.state != BCH_MEMBER_STATE_rw &&
1350                     ca->mi.state != BCH_MEMBER_STATE_ro)
1351                         return true;
1352
1353                 /* do we have enough devices to read from?  */
1354                 new_online_devs = bch2_online_devs(c);
1355                 __clear_bit(ca->dev_idx, new_online_devs.d);
1356
1357                 return bch2_have_enough_devs(c, new_online_devs, flags, false);
1358         default:
1359                 BUG();
1360         }
1361 }
1362
1363 static bool bch2_fs_may_start(struct bch_fs *c)
1364 {
1365         struct bch_sb_field_members *mi;
1366         struct bch_dev *ca;
1367         unsigned i, flags = 0;
1368
1369         if (c->opts.very_degraded)
1370                 flags |= BCH_FORCE_IF_DEGRADED|BCH_FORCE_IF_LOST;
1371
1372         if (c->opts.degraded)
1373                 flags |= BCH_FORCE_IF_DEGRADED;
1374
1375         if (!c->opts.degraded &&
1376             !c->opts.very_degraded) {
1377                 mutex_lock(&c->sb_lock);
1378                 mi = bch2_sb_get_members(c->disk_sb.sb);
1379
1380                 for (i = 0; i < c->disk_sb.sb->nr_devices; i++) {
1381                         if (!bch2_dev_exists(c->disk_sb.sb, mi, i))
1382                                 continue;
1383
1384                         ca = bch_dev_locked(c, i);
1385
1386                         if (!bch2_dev_is_online(ca) &&
1387                             (ca->mi.state == BCH_MEMBER_STATE_rw ||
1388                              ca->mi.state == BCH_MEMBER_STATE_ro)) {
1389                                 mutex_unlock(&c->sb_lock);
1390                                 return false;
1391                         }
1392                 }
1393                 mutex_unlock(&c->sb_lock);
1394         }
1395
1396         return bch2_have_enough_devs(c, bch2_online_devs(c), flags, true);
1397 }
1398
1399 static void __bch2_dev_read_only(struct bch_fs *c, struct bch_dev *ca)
1400 {
1401         /*
1402          * Device going read only means the copygc reserve get smaller, so we
1403          * don't want that happening while copygc is in progress:
1404          */
1405         bch2_copygc_stop(c);
1406
1407         /*
1408          * The allocator thread itself allocates btree nodes, so stop it first:
1409          */
1410         bch2_dev_allocator_stop(ca);
1411         bch2_dev_allocator_remove(c, ca);
1412         bch2_dev_journal_stop(&c->journal, ca);
1413
1414         bch2_copygc_start(c);
1415 }
1416
1417 static int __bch2_dev_read_write(struct bch_fs *c, struct bch_dev *ca)
1418 {
1419         lockdep_assert_held(&c->state_lock);
1420
1421         BUG_ON(ca->mi.state != BCH_MEMBER_STATE_rw);
1422
1423         bch2_dev_allocator_add(c, ca);
1424         bch2_recalc_capacity(c);
1425
1426         return bch2_dev_allocator_start(ca);
1427 }
1428
1429 int __bch2_dev_set_state(struct bch_fs *c, struct bch_dev *ca,
1430                          enum bch_member_state new_state, int flags)
1431 {
1432         struct bch_sb_field_members *mi;
1433         int ret = 0;
1434
1435         if (ca->mi.state == new_state)
1436                 return 0;
1437
1438         if (!bch2_dev_state_allowed(c, ca, new_state, flags))
1439                 return -EINVAL;
1440
1441         if (new_state != BCH_MEMBER_STATE_rw)
1442                 __bch2_dev_read_only(c, ca);
1443
1444         bch_notice(ca, "%s", bch2_member_states[new_state]);
1445
1446         mutex_lock(&c->sb_lock);
1447         mi = bch2_sb_get_members(c->disk_sb.sb);
1448         SET_BCH_MEMBER_STATE(&mi->members[ca->dev_idx], new_state);
1449         bch2_write_super(c);
1450         mutex_unlock(&c->sb_lock);
1451
1452         if (new_state == BCH_MEMBER_STATE_rw)
1453                 ret = __bch2_dev_read_write(c, ca);
1454
1455         rebalance_wakeup(c);
1456
1457         return ret;
1458 }
1459
1460 int bch2_dev_set_state(struct bch_fs *c, struct bch_dev *ca,
1461                        enum bch_member_state new_state, int flags)
1462 {
1463         int ret;
1464
1465         down_write(&c->state_lock);
1466         ret = __bch2_dev_set_state(c, ca, new_state, flags);
1467         up_write(&c->state_lock);
1468
1469         return ret;
1470 }
1471
1472 /* Device add/removal: */
1473
1474 static int bch2_dev_remove_alloc(struct bch_fs *c, struct bch_dev *ca)
1475 {
1476         struct btree_trans trans;
1477         size_t i;
1478         int ret;
1479
1480         bch2_trans_init(&trans, c, 0, 0);
1481
1482         for (i = 0; i < ca->mi.nbuckets; i++) {
1483                 ret = lockrestart_do(&trans,
1484                         bch2_btree_key_cache_flush(&trans,
1485                                 BTREE_ID_alloc, POS(ca->dev_idx, i)));
1486                 if (ret)
1487                         break;
1488         }
1489         bch2_trans_exit(&trans);
1490
1491         if (ret) {
1492                 bch_err(c, "error %i removing dev alloc info", ret);
1493                 return ret;
1494         }
1495
1496         return bch2_btree_delete_range(c, BTREE_ID_alloc,
1497                                        POS(ca->dev_idx, 0),
1498                                        POS(ca->dev_idx + 1, 0),
1499                                        0, NULL);
1500 }
1501
1502 int bch2_dev_remove(struct bch_fs *c, struct bch_dev *ca, int flags)
1503 {
1504         struct bch_sb_field_members *mi;
1505         unsigned dev_idx = ca->dev_idx, data;
1506         int ret = -EINVAL;
1507
1508         down_write(&c->state_lock);
1509
1510         /*
1511          * We consume a reference to ca->ref, regardless of whether we succeed
1512          * or fail:
1513          */
1514         percpu_ref_put(&ca->ref);
1515
1516         if (!bch2_dev_state_allowed(c, ca, BCH_MEMBER_STATE_failed, flags)) {
1517                 bch_err(ca, "Cannot remove without losing data");
1518                 goto err;
1519         }
1520
1521         __bch2_dev_read_only(c, ca);
1522
1523         ret = bch2_dev_data_drop(c, ca->dev_idx, flags);
1524         if (ret) {
1525                 bch_err(ca, "Remove failed: error %i dropping data", ret);
1526                 goto err;
1527         }
1528
1529         ret = bch2_journal_flush_device_pins(&c->journal, ca->dev_idx);
1530         if (ret) {
1531                 bch_err(ca, "Remove failed: error %i flushing journal", ret);
1532                 goto err;
1533         }
1534
1535         ret = bch2_dev_remove_alloc(c, ca);
1536         if (ret) {
1537                 bch_err(ca, "Remove failed, error deleting alloc info");
1538                 goto err;
1539         }
1540
1541         /*
1542          * must flush all existing journal entries, they might have
1543          * (overwritten) keys that point to the device we're removing:
1544          */
1545         bch2_journal_flush_all_pins(&c->journal);
1546         /*
1547          * hack to ensure bch2_replicas_gc2() clears out entries to this device
1548          */
1549         bch2_journal_meta(&c->journal);
1550         ret = bch2_journal_error(&c->journal);
1551         if (ret) {
1552                 bch_err(ca, "Remove failed, journal error");
1553                 goto err;
1554         }
1555
1556         ret = bch2_replicas_gc2(c);
1557         if (ret) {
1558                 bch_err(ca, "Remove failed: error %i from replicas gc", ret);
1559                 goto err;
1560         }
1561
1562         data = bch2_dev_has_data(c, ca);
1563         if (data) {
1564                 char data_has_str[100];
1565
1566                 bch2_flags_to_text(&PBUF(data_has_str),
1567                                    bch2_data_types, data);
1568                 bch_err(ca, "Remove failed, still has data (%s)", data_has_str);
1569                 ret = -EBUSY;
1570                 goto err;
1571         }
1572
1573         __bch2_dev_offline(c, ca);
1574
1575         mutex_lock(&c->sb_lock);
1576         rcu_assign_pointer(c->devs[ca->dev_idx], NULL);
1577         mutex_unlock(&c->sb_lock);
1578
1579         percpu_ref_kill(&ca->ref);
1580         wait_for_completion(&ca->ref_completion);
1581
1582         bch2_dev_free(ca);
1583
1584         /*
1585          * Free this device's slot in the bch_member array - all pointers to
1586          * this device must be gone:
1587          */
1588         mutex_lock(&c->sb_lock);
1589         mi = bch2_sb_get_members(c->disk_sb.sb);
1590         memset(&mi->members[dev_idx].uuid, 0, sizeof(mi->members[dev_idx].uuid));
1591
1592         bch2_write_super(c);
1593
1594         mutex_unlock(&c->sb_lock);
1595         up_write(&c->state_lock);
1596
1597         bch2_dev_usage_journal_reserve(c);
1598         return 0;
1599 err:
1600         if (ca->mi.state == BCH_MEMBER_STATE_rw &&
1601             !percpu_ref_is_zero(&ca->io_ref))
1602                 __bch2_dev_read_write(c, ca);
1603         up_write(&c->state_lock);
1604         return ret;
1605 }
1606
1607 /* Add new device to running filesystem: */
1608 int bch2_dev_add(struct bch_fs *c, const char *path)
1609 {
1610         struct bch_opts opts = bch2_opts_empty();
1611         struct bch_sb_handle sb;
1612         const char *err;
1613         struct bch_dev *ca = NULL;
1614         struct bch_sb_field_members *mi;
1615         struct bch_member dev_mi;
1616         unsigned dev_idx, nr_devices, u64s;
1617         char *_errbuf;
1618         struct printbuf errbuf;
1619         int ret;
1620
1621         _errbuf = kmalloc(4096, GFP_KERNEL);
1622         if (!_errbuf)
1623                 return -ENOMEM;
1624
1625         errbuf = _PBUF(_errbuf, 4096);
1626
1627         ret = bch2_read_super(path, &opts, &sb);
1628         if (ret) {
1629                 bch_err(c, "device add error: error reading super: %i", ret);
1630                 goto err;
1631         }
1632
1633         dev_mi = bch2_sb_get_members(sb.sb)->members[sb.sb->dev_idx];
1634
1635         err = bch2_dev_may_add(sb.sb, c);
1636         if (err) {
1637                 bch_err(c, "device add error: %s", err);
1638                 ret = -EINVAL;
1639                 goto err;
1640         }
1641
1642         ca = __bch2_dev_alloc(c, &dev_mi);
1643         if (!ca) {
1644                 bch2_free_super(&sb);
1645                 ret = -ENOMEM;
1646                 goto err;
1647         }
1648
1649         ret = __bch2_dev_attach_bdev(ca, &sb);
1650         if (ret) {
1651                 bch2_dev_free(ca);
1652                 goto err;
1653         }
1654
1655         ret = bch2_dev_journal_alloc(ca);
1656         if (ret) {
1657                 bch_err(c, "device add error: journal alloc failed");
1658                 goto err;
1659         }
1660
1661         down_write(&c->state_lock);
1662         mutex_lock(&c->sb_lock);
1663
1664         ret = bch2_sb_from_fs(c, ca);
1665         if (ret) {
1666                 bch_err(c, "device add error: new device superblock too small");
1667                 goto err_unlock;
1668         }
1669
1670         mi = bch2_sb_get_members(ca->disk_sb.sb);
1671
1672         if (!bch2_sb_resize_members(&ca->disk_sb,
1673                                 le32_to_cpu(mi->field.u64s) +
1674                                 sizeof(dev_mi) / sizeof(u64))) {
1675                 bch_err(c, "device add error: new device superblock too small");
1676                 ret = -ENOSPC;
1677                 goto err_unlock;
1678         }
1679
1680         if (dynamic_fault("bcachefs:add:no_slot"))
1681                 goto no_slot;
1682
1683         mi = bch2_sb_get_members(c->disk_sb.sb);
1684         for (dev_idx = 0; dev_idx < BCH_SB_MEMBERS_MAX; dev_idx++)
1685                 if (!bch2_dev_exists(c->disk_sb.sb, mi, dev_idx))
1686                         goto have_slot;
1687 no_slot:
1688         bch_err(c, "device add error: already have maximum number of devices");
1689         ret = -ENOSPC;
1690         goto err_unlock;
1691
1692 have_slot:
1693         nr_devices = max_t(unsigned, dev_idx + 1, c->sb.nr_devices);
1694         u64s = (sizeof(struct bch_sb_field_members) +
1695                 sizeof(struct bch_member) * nr_devices) / sizeof(u64);
1696
1697         mi = bch2_sb_resize_members(&c->disk_sb, u64s);
1698         if (!mi) {
1699                 bch_err(c, "device add error: no room in superblock for member info");
1700                 ret = -ENOSPC;
1701                 goto err_unlock;
1702         }
1703
1704         /* success: */
1705
1706         mi->members[dev_idx] = dev_mi;
1707         mi->members[dev_idx].last_mount = cpu_to_le64(ktime_get_real_seconds());
1708         c->disk_sb.sb->nr_devices       = nr_devices;
1709
1710         ca->disk_sb.sb->dev_idx = dev_idx;
1711         bch2_dev_attach(c, ca, dev_idx);
1712
1713         bch2_write_super(c);
1714         mutex_unlock(&c->sb_lock);
1715
1716         bch2_dev_usage_journal_reserve(c);
1717
1718         ret = bch2_trans_mark_dev_sb(c, ca);
1719         if (ret) {
1720                 bch_err(c, "device add error: error marking new superblock: %i", ret);
1721                 goto err_late;
1722         }
1723
1724         ca->new_fs_bucket_idx = 0;
1725
1726         if (ca->mi.state == BCH_MEMBER_STATE_rw) {
1727                 ret = __bch2_dev_read_write(c, ca);
1728                 if (ret) {
1729                         bch_err(c, "device add error: error going RW on new device: %i", ret);
1730                         goto err_late;
1731                 }
1732         }
1733
1734         up_write(&c->state_lock);
1735         return 0;
1736
1737 err_unlock:
1738         mutex_unlock(&c->sb_lock);
1739         up_write(&c->state_lock);
1740 err:
1741         if (ca)
1742                 bch2_dev_free(ca);
1743         bch2_free_super(&sb);
1744         kfree(_errbuf);
1745         return ret;
1746 err_late:
1747         up_write(&c->state_lock);
1748         ca = NULL;
1749         goto err;
1750 }
1751
1752 /* Hot add existing device to running filesystem: */
1753 int bch2_dev_online(struct bch_fs *c, const char *path)
1754 {
1755         struct bch_opts opts = bch2_opts_empty();
1756         struct bch_sb_handle sb = { NULL };
1757         struct bch_sb_field_members *mi;
1758         struct bch_dev *ca;
1759         unsigned dev_idx;
1760         const char *err;
1761         int ret;
1762
1763         down_write(&c->state_lock);
1764
1765         ret = bch2_read_super(path, &opts, &sb);
1766         if (ret) {
1767                 up_write(&c->state_lock);
1768                 return ret;
1769         }
1770
1771         dev_idx = sb.sb->dev_idx;
1772
1773         err = bch2_dev_in_fs(c->disk_sb.sb, sb.sb);
1774         if (err) {
1775                 bch_err(c, "error bringing %s online: %s", path, err);
1776                 goto err;
1777         }
1778
1779         ret = bch2_dev_attach_bdev(c, &sb);
1780         if (ret)
1781                 goto err;
1782
1783         ca = bch_dev_locked(c, dev_idx);
1784
1785         ret = bch2_trans_mark_dev_sb(c, ca);
1786         if (ret) {
1787                 bch_err(c, "error bringing %s online: error %i from bch2_trans_mark_dev_sb",
1788                         path, ret);
1789                 goto err;
1790         }
1791
1792         if (ca->mi.state == BCH_MEMBER_STATE_rw) {
1793                 ret = __bch2_dev_read_write(c, ca);
1794                 if (ret)
1795                         goto err;
1796         }
1797
1798         mutex_lock(&c->sb_lock);
1799         mi = bch2_sb_get_members(c->disk_sb.sb);
1800
1801         mi->members[ca->dev_idx].last_mount =
1802                 cpu_to_le64(ktime_get_real_seconds());
1803
1804         bch2_write_super(c);
1805         mutex_unlock(&c->sb_lock);
1806
1807         up_write(&c->state_lock);
1808         return 0;
1809 err:
1810         up_write(&c->state_lock);
1811         bch2_free_super(&sb);
1812         return -EINVAL;
1813 }
1814
1815 int bch2_dev_offline(struct bch_fs *c, struct bch_dev *ca, int flags)
1816 {
1817         down_write(&c->state_lock);
1818
1819         if (!bch2_dev_is_online(ca)) {
1820                 bch_err(ca, "Already offline");
1821                 up_write(&c->state_lock);
1822                 return 0;
1823         }
1824
1825         if (!bch2_dev_state_allowed(c, ca, BCH_MEMBER_STATE_failed, flags)) {
1826                 bch_err(ca, "Cannot offline required disk");
1827                 up_write(&c->state_lock);
1828                 return -EINVAL;
1829         }
1830
1831         __bch2_dev_offline(c, ca);
1832
1833         up_write(&c->state_lock);
1834         return 0;
1835 }
1836
1837 int bch2_dev_resize(struct bch_fs *c, struct bch_dev *ca, u64 nbuckets)
1838 {
1839         struct bch_member *mi;
1840         int ret = 0;
1841
1842         down_write(&c->state_lock);
1843
1844         if (nbuckets < ca->mi.nbuckets) {
1845                 bch_err(ca, "Cannot shrink yet");
1846                 ret = -EINVAL;
1847                 goto err;
1848         }
1849
1850         if (bch2_dev_is_online(ca) &&
1851             get_capacity(ca->disk_sb.bdev->bd_disk) <
1852             ca->mi.bucket_size * nbuckets) {
1853                 bch_err(ca, "New size larger than device");
1854                 ret = -EINVAL;
1855                 goto err;
1856         }
1857
1858         ret = bch2_dev_buckets_resize(c, ca, nbuckets);
1859         if (ret) {
1860                 bch_err(ca, "Resize error: %i", ret);
1861                 goto err;
1862         }
1863
1864         ret = bch2_trans_mark_dev_sb(c, ca);
1865         if (ret) {
1866                 goto err;
1867         }
1868
1869         mutex_lock(&c->sb_lock);
1870         mi = &bch2_sb_get_members(c->disk_sb.sb)->members[ca->dev_idx];
1871         mi->nbuckets = cpu_to_le64(nbuckets);
1872
1873         bch2_write_super(c);
1874         mutex_unlock(&c->sb_lock);
1875
1876         bch2_recalc_capacity(c);
1877 err:
1878         up_write(&c->state_lock);
1879         return ret;
1880 }
1881
1882 /* return with ref on ca->ref: */
1883 struct bch_dev *bch2_dev_lookup(struct bch_fs *c, const char *name)
1884 {
1885         struct bch_dev *ca;
1886         unsigned i;
1887
1888         rcu_read_lock();
1889         for_each_member_device_rcu(ca, c, i, NULL)
1890                 if (!strcmp(name, ca->name))
1891                         goto found;
1892         ca = ERR_PTR(-ENOENT);
1893 found:
1894         rcu_read_unlock();
1895
1896         return ca;
1897 }
1898
1899 /* Filesystem open: */
1900
1901 struct bch_fs *bch2_fs_open(char * const *devices, unsigned nr_devices,
1902                             struct bch_opts opts)
1903 {
1904         struct bch_sb_handle *sb = NULL;
1905         struct bch_fs *c = NULL;
1906         struct bch_sb_field_members *mi;
1907         unsigned i, best_sb = 0;
1908         const char *err;
1909         char *_errbuf = NULL;
1910         struct printbuf errbuf;
1911         int ret = 0;
1912
1913         if (!try_module_get(THIS_MODULE))
1914                 return ERR_PTR(-ENODEV);
1915
1916         pr_verbose_init(opts, "");
1917
1918         if (!nr_devices) {
1919                 ret = -EINVAL;
1920                 goto err;
1921         }
1922
1923         _errbuf = kmalloc(4096, GFP_KERNEL);
1924         if (!_errbuf) {
1925                 ret = -ENOMEM;
1926                 goto err;
1927         }
1928
1929         errbuf = _PBUF(_errbuf, 4096);
1930
1931         sb = kcalloc(nr_devices, sizeof(*sb), GFP_KERNEL);
1932         if (!sb) {
1933                 ret = -ENOMEM;
1934                 goto err;
1935         }
1936
1937         for (i = 0; i < nr_devices; i++) {
1938                 ret = bch2_read_super(devices[i], &opts, &sb[i]);
1939                 if (ret)
1940                         goto err;
1941
1942         }
1943
1944         for (i = 1; i < nr_devices; i++)
1945                 if (le64_to_cpu(sb[i].sb->seq) >
1946                     le64_to_cpu(sb[best_sb].sb->seq))
1947                         best_sb = i;
1948
1949         mi = bch2_sb_get_members(sb[best_sb].sb);
1950
1951         i = 0;
1952         while (i < nr_devices) {
1953                 if (i != best_sb &&
1954                     !bch2_dev_exists(sb[best_sb].sb, mi, sb[i].sb->dev_idx)) {
1955                         char buf[BDEVNAME_SIZE];
1956                         pr_info("%s has been removed, skipping",
1957                                 bdevname(sb[i].bdev, buf));
1958                         bch2_free_super(&sb[i]);
1959                         array_remove_item(sb, nr_devices, i);
1960                         continue;
1961                 }
1962
1963                 err = bch2_dev_in_fs(sb[best_sb].sb, sb[i].sb);
1964                 if (err)
1965                         goto err_print;
1966                 i++;
1967         }
1968
1969         c = bch2_fs_alloc(sb[best_sb].sb, opts);
1970         if (IS_ERR(c)) {
1971                 ret = PTR_ERR(c);
1972                 goto err;
1973         }
1974
1975         down_write(&c->state_lock);
1976         for (i = 0; i < nr_devices; i++) {
1977                 ret = bch2_dev_attach_bdev(c, &sb[i]);
1978                 if (ret) {
1979                         up_write(&c->state_lock);
1980                         goto err;
1981                 }
1982         }
1983         up_write(&c->state_lock);
1984
1985         err = "insufficient devices";
1986         if (!bch2_fs_may_start(c))
1987                 goto err_print;
1988
1989         if (!c->opts.nostart) {
1990                 ret = bch2_fs_start(c);
1991                 if (ret)
1992                         goto err;
1993         }
1994 out:
1995         kfree(sb);
1996         kfree(_errbuf);
1997         module_put(THIS_MODULE);
1998         pr_verbose_init(opts, "ret %i", PTR_ERR_OR_ZERO(c));
1999         return c;
2000 err_print:
2001         pr_err("bch_fs_open err opening %s: %s",
2002                devices[0], err);
2003         ret = -EINVAL;
2004 err:
2005         if (!IS_ERR_OR_NULL(c))
2006                 bch2_fs_stop(c);
2007         if (sb)
2008                 for (i = 0; i < nr_devices; i++)
2009                         bch2_free_super(&sb[i]);
2010         c = ERR_PTR(ret);
2011         goto out;
2012 }
2013
2014 /* Global interfaces/init */
2015
2016 static void bcachefs_exit(void)
2017 {
2018         bch2_debug_exit();
2019         bch2_vfs_exit();
2020         bch2_chardev_exit();
2021         bch2_btree_key_cache_exit();
2022         if (bcachefs_kset)
2023                 kset_unregister(bcachefs_kset);
2024 }
2025
2026 static int __init bcachefs_init(void)
2027 {
2028         bch2_bkey_pack_test();
2029
2030         if (!(bcachefs_kset = kset_create_and_add("bcachefs", NULL, fs_kobj)) ||
2031             bch2_btree_key_cache_init() ||
2032             bch2_chardev_init() ||
2033             bch2_vfs_init() ||
2034             bch2_debug_init())
2035                 goto err;
2036
2037         return 0;
2038 err:
2039         bcachefs_exit();
2040         return -ENOMEM;
2041 }
2042
2043 #define BCH_DEBUG_PARAM(name, description)                      \
2044         bool bch2_##name;                                       \
2045         module_param_named(name, bch2_##name, bool, 0644);      \
2046         MODULE_PARM_DESC(name, description);
2047 BCH_DEBUG_PARAMS()
2048 #undef BCH_DEBUG_PARAM
2049
2050 module_exit(bcachefs_exit);
2051 module_init(bcachefs_init);