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