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