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