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