bcachefs: BTREE_INSERT_JOURNAL_RES_FULL is no longer possible
[linux-block.git] / fs / bcachefs / bcachefs.h
CommitLineData
1c6fdbd8
KO
1/* SPDX-License-Identifier: GPL-2.0 */
2#ifndef _BCACHEFS_H
3#define _BCACHEFS_H
4
5/*
6 * SOME HIGH LEVEL CODE DOCUMENTATION:
7 *
8 * Bcache mostly works with cache sets, cache devices, and backing devices.
9 *
10 * Support for multiple cache devices hasn't quite been finished off yet, but
11 * it's about 95% plumbed through. A cache set and its cache devices is sort of
12 * like a md raid array and its component devices. Most of the code doesn't care
13 * about individual cache devices, the main abstraction is the cache set.
14 *
15 * Multiple cache devices is intended to give us the ability to mirror dirty
16 * cached data and metadata, without mirroring clean cached data.
17 *
18 * Backing devices are different, in that they have a lifetime independent of a
19 * cache set. When you register a newly formatted backing device it'll come up
20 * in passthrough mode, and then you can attach and detach a backing device from
21 * a cache set at runtime - while it's mounted and in use. Detaching implicitly
22 * invalidates any cached data for that backing device.
23 *
24 * A cache set can have multiple (many) backing devices attached to it.
25 *
26 * There's also flash only volumes - this is the reason for the distinction
27 * between struct cached_dev and struct bcache_device. A flash only volume
28 * works much like a bcache device that has a backing device, except the
29 * "cached" data is always dirty. The end result is that we get thin
30 * provisioning with very little additional code.
31 *
32 * Flash only volumes work but they're not production ready because the moving
33 * garbage collector needs more work. More on that later.
34 *
35 * BUCKETS/ALLOCATION:
36 *
37 * Bcache is primarily designed for caching, which means that in normal
38 * operation all of our available space will be allocated. Thus, we need an
39 * efficient way of deleting things from the cache so we can write new things to
40 * it.
41 *
42 * To do this, we first divide the cache device up into buckets. A bucket is the
43 * unit of allocation; they're typically around 1 mb - anywhere from 128k to 2M+
44 * works efficiently.
45 *
46 * Each bucket has a 16 bit priority, and an 8 bit generation associated with
47 * it. The gens and priorities for all the buckets are stored contiguously and
48 * packed on disk (in a linked list of buckets - aside from the superblock, all
49 * of bcache's metadata is stored in buckets).
50 *
51 * The priority is used to implement an LRU. We reset a bucket's priority when
52 * we allocate it or on cache it, and every so often we decrement the priority
53 * of each bucket. It could be used to implement something more sophisticated,
54 * if anyone ever gets around to it.
55 *
56 * The generation is used for invalidating buckets. Each pointer also has an 8
57 * bit generation embedded in it; for a pointer to be considered valid, its gen
58 * must match the gen of the bucket it points into. Thus, to reuse a bucket all
59 * we have to do is increment its gen (and write its new gen to disk; we batch
60 * this up).
61 *
62 * Bcache is entirely COW - we never write twice to a bucket, even buckets that
63 * contain metadata (including btree nodes).
64 *
65 * THE BTREE:
66 *
67 * Bcache is in large part design around the btree.
68 *
69 * At a high level, the btree is just an index of key -> ptr tuples.
70 *
71 * Keys represent extents, and thus have a size field. Keys also have a variable
72 * number of pointers attached to them (potentially zero, which is handy for
73 * invalidating the cache).
74 *
75 * The key itself is an inode:offset pair. The inode number corresponds to a
76 * backing device or a flash only volume. The offset is the ending offset of the
77 * extent within the inode - not the starting offset; this makes lookups
78 * slightly more convenient.
79 *
80 * Pointers contain the cache device id, the offset on that device, and an 8 bit
81 * generation number. More on the gen later.
82 *
83 * Index lookups are not fully abstracted - cache lookups in particular are
84 * still somewhat mixed in with the btree code, but things are headed in that
85 * direction.
86 *
87 * Updates are fairly well abstracted, though. There are two different ways of
88 * updating the btree; insert and replace.
89 *
90 * BTREE_INSERT will just take a list of keys and insert them into the btree -
91 * overwriting (possibly only partially) any extents they overlap with. This is
92 * used to update the index after a write.
93 *
94 * BTREE_REPLACE is really cmpxchg(); it inserts a key into the btree iff it is
95 * overwriting a key that matches another given key. This is used for inserting
96 * data into the cache after a cache miss, and for background writeback, and for
97 * the moving garbage collector.
98 *
99 * There is no "delete" operation; deleting things from the index is
100 * accomplished by either by invalidating pointers (by incrementing a bucket's
101 * gen) or by inserting a key with 0 pointers - which will overwrite anything
102 * previously present at that location in the index.
103 *
104 * This means that there are always stale/invalid keys in the btree. They're
105 * filtered out by the code that iterates through a btree node, and removed when
106 * a btree node is rewritten.
107 *
108 * BTREE NODES:
109 *
110 * Our unit of allocation is a bucket, and we we can't arbitrarily allocate and
111 * free smaller than a bucket - so, that's how big our btree nodes are.
112 *
113 * (If buckets are really big we'll only use part of the bucket for a btree node
114 * - no less than 1/4th - but a bucket still contains no more than a single
115 * btree node. I'd actually like to change this, but for now we rely on the
116 * bucket's gen for deleting btree nodes when we rewrite/split a node.)
117 *
118 * Anyways, btree nodes are big - big enough to be inefficient with a textbook
119 * btree implementation.
120 *
121 * The way this is solved is that btree nodes are internally log structured; we
122 * can append new keys to an existing btree node without rewriting it. This
123 * means each set of keys we write is sorted, but the node is not.
124 *
125 * We maintain this log structure in memory - keeping 1Mb of keys sorted would
126 * be expensive, and we have to distinguish between the keys we have written and
127 * the keys we haven't. So to do a lookup in a btree node, we have to search
128 * each sorted set. But we do merge written sets together lazily, so the cost of
129 * these extra searches is quite low (normally most of the keys in a btree node
130 * will be in one big set, and then there'll be one or two sets that are much
131 * smaller).
132 *
133 * This log structure makes bcache's btree more of a hybrid between a
134 * conventional btree and a compacting data structure, with some of the
135 * advantages of both.
136 *
137 * GARBAGE COLLECTION:
138 *
139 * We can't just invalidate any bucket - it might contain dirty data or
140 * metadata. If it once contained dirty data, other writes might overwrite it
141 * later, leaving no valid pointers into that bucket in the index.
142 *
143 * Thus, the primary purpose of garbage collection is to find buckets to reuse.
144 * It also counts how much valid data it each bucket currently contains, so that
145 * allocation can reuse buckets sooner when they've been mostly overwritten.
146 *
147 * It also does some things that are really internal to the btree
148 * implementation. If a btree node contains pointers that are stale by more than
149 * some threshold, it rewrites the btree node to avoid the bucket's generation
150 * wrapping around. It also merges adjacent btree nodes if they're empty enough.
151 *
152 * THE JOURNAL:
153 *
154 * Bcache's journal is not necessary for consistency; we always strictly
155 * order metadata writes so that the btree and everything else is consistent on
156 * disk in the event of an unclean shutdown, and in fact bcache had writeback
157 * caching (with recovery from unclean shutdown) before journalling was
158 * implemented.
159 *
160 * Rather, the journal is purely a performance optimization; we can't complete a
161 * write until we've updated the index on disk, otherwise the cache would be
162 * inconsistent in the event of an unclean shutdown. This means that without the
163 * journal, on random write workloads we constantly have to update all the leaf
164 * nodes in the btree, and those writes will be mostly empty (appending at most
165 * a few keys each) - highly inefficient in terms of amount of metadata writes,
166 * and it puts more strain on the various btree resorting/compacting code.
167 *
168 * The journal is just a log of keys we've inserted; on startup we just reinsert
169 * all the keys in the open journal entries. That means that when we're updating
170 * a node in the btree, we can wait until a 4k block of keys fills up before
171 * writing them out.
172 *
173 * For simplicity, we only journal updates to leaf nodes; updates to parent
174 * nodes are rare enough (since our leaf nodes are huge) that it wasn't worth
175 * the complexity to deal with journalling them (in particular, journal replay)
176 * - updates to non leaf nodes just happen synchronously (see btree_split()).
177 */
178
179#undef pr_fmt
180#define pr_fmt(fmt) "bcachefs: %s() " fmt "\n", __func__
181
182#include <linux/backing-dev-defs.h>
183#include <linux/bug.h>
184#include <linux/bio.h>
185#include <linux/closure.h>
186#include <linux/kobject.h>
187#include <linux/list.h>
188#include <linux/mutex.h>
189#include <linux/percpu-refcount.h>
190#include <linux/percpu-rwsem.h>
191#include <linux/rhashtable.h>
192#include <linux/rwsem.h>
193#include <linux/seqlock.h>
194#include <linux/shrinker.h>
195#include <linux/types.h>
196#include <linux/workqueue.h>
197#include <linux/zstd.h>
198
199#include "bcachefs_format.h"
200#include "fifo.h"
201#include "opts.h"
202#include "util.h"
203
204#define dynamic_fault(...) 0
205#define race_fault(...) 0
206
207#define bch2_fs_init_fault(name) \
208 dynamic_fault("bcachefs:bch_fs_init:" name)
209#define bch2_meta_read_fault(name) \
210 dynamic_fault("bcachefs:meta:read:" name)
211#define bch2_meta_write_fault(name) \
212 dynamic_fault("bcachefs:meta:write:" name)
213
214#ifdef __KERNEL__
215#define bch2_fmt(_c, fmt) "bcachefs (%s): " fmt "\n", ((_c)->name)
216#else
217#define bch2_fmt(_c, fmt) fmt "\n"
218#endif
219
220#define bch_info(c, fmt, ...) \
221 printk(KERN_INFO bch2_fmt(c, fmt), ##__VA_ARGS__)
222#define bch_notice(c, fmt, ...) \
223 printk(KERN_NOTICE bch2_fmt(c, fmt), ##__VA_ARGS__)
224#define bch_warn(c, fmt, ...) \
225 printk(KERN_WARNING bch2_fmt(c, fmt), ##__VA_ARGS__)
226#define bch_err(c, fmt, ...) \
227 printk(KERN_ERR bch2_fmt(c, fmt), ##__VA_ARGS__)
228
229#define bch_verbose(c, fmt, ...) \
230do { \
231 if ((c)->opts.verbose_recovery) \
232 bch_info(c, fmt, ##__VA_ARGS__); \
233} while (0)
234
235#define pr_verbose_init(opts, fmt, ...) \
236do { \
237 if (opt_get(opts, verbose_init)) \
238 pr_info(fmt, ##__VA_ARGS__); \
239} while (0)
240
241/* Parameters that are useful for debugging, but should always be compiled in: */
242#define BCH_DEBUG_PARAMS_ALWAYS() \
243 BCH_DEBUG_PARAM(key_merging_disabled, \
244 "Disables merging of extents") \
245 BCH_DEBUG_PARAM(btree_gc_always_rewrite, \
246 "Causes mark and sweep to compact and rewrite every " \
247 "btree node it traverses") \
248 BCH_DEBUG_PARAM(btree_gc_rewrite_disabled, \
249 "Disables rewriting of btree nodes during mark and sweep")\
250 BCH_DEBUG_PARAM(btree_shrinker_disabled, \
251 "Disables the shrinker callback for the btree node cache")
252
253/* Parameters that should only be compiled in in debug mode: */
254#define BCH_DEBUG_PARAMS_DEBUG() \
255 BCH_DEBUG_PARAM(expensive_debug_checks, \
256 "Enables various runtime debugging checks that " \
257 "significantly affect performance") \
258 BCH_DEBUG_PARAM(debug_check_bkeys, \
259 "Run bkey_debugcheck (primarily checking GC/allocation "\
260 "information) when iterating over keys") \
261 BCH_DEBUG_PARAM(verify_btree_ondisk, \
262 "Reread btree nodes at various points to verify the " \
263 "mergesort in the read path against modifications " \
264 "done in memory") \
265 BCH_DEBUG_PARAM(journal_seq_verify, \
266 "Store the journal sequence number in the version " \
267 "number of every btree key, and verify that btree " \
268 "update ordering is preserved during recovery") \
269 BCH_DEBUG_PARAM(inject_invalid_keys, \
270 "Store the journal sequence number in the version " \
271 "number of every btree key, and verify that btree " \
272 "update ordering is preserved during recovery") \
b29e197a
KO
273 BCH_DEBUG_PARAM(test_alloc_startup, \
274 "Force allocator startup to use the slowpath where it" \
275 "can't find enough free buckets without invalidating" \
276 "cached data")
1c6fdbd8
KO
277
278#define BCH_DEBUG_PARAMS_ALL() BCH_DEBUG_PARAMS_ALWAYS() BCH_DEBUG_PARAMS_DEBUG()
279
280#ifdef CONFIG_BCACHEFS_DEBUG
281#define BCH_DEBUG_PARAMS() BCH_DEBUG_PARAMS_ALL()
282#else
283#define BCH_DEBUG_PARAMS() BCH_DEBUG_PARAMS_ALWAYS()
284#endif
285
286#define BCH_TIME_STATS() \
287 x(btree_node_mem_alloc) \
288 x(btree_gc) \
289 x(btree_split) \
290 x(btree_sort) \
291 x(btree_read) \
292 x(btree_lock_contended_read) \
293 x(btree_lock_contended_intent) \
294 x(btree_lock_contended_write) \
295 x(data_write) \
296 x(data_read) \
297 x(data_promote) \
298 x(journal_write) \
299 x(journal_delay) \
300 x(journal_blocked) \
301 x(journal_flush_seq)
302
303enum bch_time_stats {
304#define x(name) BCH_TIME_##name,
305 BCH_TIME_STATS()
306#undef x
307 BCH_TIME_STAT_NR
308};
309
310#include "alloc_types.h"
311#include "btree_types.h"
312#include "buckets_types.h"
313#include "clock_types.h"
314#include "journal_types.h"
315#include "keylist_types.h"
316#include "quota_types.h"
317#include "rebalance_types.h"
318#include "super_types.h"
319
320/* Number of nodes btree coalesce will try to coalesce at once */
321#define GC_MERGE_NODES 4U
322
323/* Maximum number of nodes we might need to allocate atomically: */
324#define BTREE_RESERVE_MAX (BTREE_MAX_DEPTH + (BTREE_MAX_DEPTH - 1))
325
326/* Size of the freelist we allocate btree nodes from: */
327#define BTREE_NODE_RESERVE (BTREE_RESERVE_MAX * 4)
328
329struct btree;
330
331enum gc_phase {
332 GC_PHASE_START,
333 GC_PHASE_SB,
334
335#define DEF_BTREE_ID(kwd, val, name) GC_PHASE_BTREE_##kwd,
336 DEFINE_BCH_BTREE_IDS()
337#undef DEF_BTREE_ID
338
339 GC_PHASE_PENDING_DELETE,
340 GC_PHASE_ALLOC,
341 GC_PHASE_DONE
342};
343
344struct gc_pos {
345 enum gc_phase phase;
346 struct bpos pos;
347 unsigned level;
348};
349
350struct io_count {
351 u64 sectors[2][BCH_DATA_NR];
352};
353
354struct bch_dev {
355 struct kobject kobj;
356 struct percpu_ref ref;
357 struct completion ref_completion;
358 struct percpu_ref io_ref;
359 struct completion io_ref_completion;
360
361 struct bch_fs *fs;
362
363 u8 dev_idx;
364 /*
365 * Cached version of this device's member info from superblock
366 * Committed by bch2_write_super() -> bch_fs_mi_update()
367 */
368 struct bch_member_cpu mi;
369 __uuid_t uuid;
370 char name[BDEVNAME_SIZE];
371
372 struct bch_sb_handle disk_sb;
373 int sb_write_error;
374
375 struct bch_devs_mask self;
376
377 /* biosets used in cloned bios for writing multiple replicas */
378 struct bio_set replica_set;
379
380 /*
381 * Buckets:
382 * Per-bucket arrays are protected by c->usage_lock, bucket_lock and
383 * gc_lock, for device resize - holding any is sufficient for access:
384 * Or rcu_read_lock(), but only for ptr_stale():
385 */
386 struct bucket_array __rcu *buckets;
387 unsigned long *buckets_dirty;
388 /* most out of date gen in the btree */
389 u8 *oldest_gens;
390 struct rw_semaphore bucket_lock;
391
392 struct bch_dev_usage __percpu *usage_percpu;
393 struct bch_dev_usage usage_cached;
394
395 /* Allocator: */
396 struct task_struct __rcu *alloc_thread;
397
398 /*
399 * free: Buckets that are ready to be used
400 *
401 * free_inc: Incoming buckets - these are buckets that currently have
402 * cached data in them, and we can't reuse them until after we write
403 * their new gen to disk. After prio_write() finishes writing the new
404 * gens/prios, they'll be moved to the free list (and possibly discarded
405 * in the process)
406 */
407 alloc_fifo free[RESERVE_NR];
408 alloc_fifo free_inc;
409 spinlock_t freelist_lock;
1c6fdbd8
KO
410
411 u8 open_buckets_partial[OPEN_BUCKETS_COUNT];
412 unsigned open_buckets_partial_nr;
413
414 size_t fifo_last_bucket;
415
416 /* last calculated minimum prio */
417 u16 max_last_bucket_io[2];
418
1c6fdbd8
KO
419 size_t inc_gen_needs_gc;
420 size_t inc_gen_really_needs_gc;
1c6fdbd8
KO
421 bool allocator_blocked;
422
423 alloc_heap alloc_heap;
424
425 /* Copying GC: */
426 struct task_struct *copygc_thread;
427 copygc_heap copygc_heap;
428 struct bch_pd_controller copygc_pd;
429 struct write_point copygc_write_point;
a9bec520 430 u64 copygc_threshold;
1c6fdbd8
KO
431
432 atomic64_t rebalance_work;
433
434 struct journal_device journal;
435
436 struct work_struct io_error_work;
437
438 /* The rest of this all shows up in sysfs */
439 atomic64_t cur_latency[2];
440 struct bch2_time_stats io_latency[2];
441
442#define CONGESTED_MAX 1024
443 atomic_t congested;
444 u64 congested_last;
445
446 struct io_count __percpu *io_done;
447};
448
449/*
450 * Flag bits for what phase of startup/shutdown the cache set is at, how we're
451 * shutting down, etc.:
452 *
453 * BCH_FS_UNREGISTERING means we're not just shutting down, we're detaching
454 * all the backing devices first (their cached data gets invalidated, and they
455 * won't automatically reattach).
456 */
457enum {
458 /* startup: */
459 BCH_FS_ALLOC_READ_DONE,
460 BCH_FS_ALLOCATOR_STARTED,
461 BCH_FS_INITIAL_GC_DONE,
462 BCH_FS_FSCK_DONE,
463 BCH_FS_STARTED,
464
465 /* shutdown: */
466 BCH_FS_EMERGENCY_RO,
467 BCH_FS_WRITE_DISABLE_COMPLETE,
468
469 /* errors: */
470 BCH_FS_ERROR,
471 BCH_FS_GC_FAILURE,
472
473 /* misc: */
474 BCH_FS_BDEV_MOUNTED,
475 BCH_FS_FSCK_FIXED_ERRORS,
88c07f73 476 BCH_FS_FSCK_UNFIXED_ERRORS,
1c6fdbd8
KO
477 BCH_FS_FIXED_GENS,
478 BCH_FS_REBUILD_REPLICAS,
479 BCH_FS_HOLD_BTREE_WRITES,
480};
481
482struct btree_debug {
483 unsigned id;
484 struct dentry *btree;
485 struct dentry *btree_format;
486 struct dentry *failed;
487};
488
489enum bch_fs_state {
490 BCH_FS_STARTING = 0,
491 BCH_FS_STOPPING,
492 BCH_FS_RO,
493 BCH_FS_RW,
494};
495
496struct bch_fs {
497 struct closure cl;
498
499 struct list_head list;
500 struct kobject kobj;
501 struct kobject internal;
502 struct kobject opts_dir;
503 struct kobject time_stats;
504 unsigned long flags;
505
506 int minor;
507 struct device *chardev;
508 struct super_block *vfs_sb;
509 char name[40];
510
511 /* ro/rw, add/remove devices: */
512 struct mutex state_lock;
513 enum bch_fs_state state;
514
515 /* Counts outstanding writes, for clean transition to read-only */
516 struct percpu_ref writes;
517 struct work_struct read_only_work;
518
519 struct bch_dev __rcu *devs[BCH_SB_MEMBERS_MAX];
520
521 struct bch_replicas_cpu __rcu *replicas;
522 struct bch_replicas_cpu __rcu *replicas_gc;
523 struct mutex replicas_gc_lock;
524
525 struct bch_disk_groups_cpu __rcu *disk_groups;
526
527 struct bch_opts opts;
528
529 /* Updated by bch2_sb_update():*/
530 struct {
531 __uuid_t uuid;
532 __uuid_t user_uuid;
533
534 u16 encoded_extent_max;
535
536 u8 nr_devices;
537 u8 clean;
538
539 u8 encryption_type;
540
541 u64 time_base_lo;
542 u32 time_base_hi;
543 u32 time_precision;
544 u64 features;
545 } sb;
546
547 struct bch_sb_handle disk_sb;
548
549 unsigned short block_bits; /* ilog2(block_size) */
550
551 u16 btree_foreground_merge_threshold;
552
553 struct closure sb_write;
554 struct mutex sb_lock;
555
556 /* BTREE CACHE */
557 struct bio_set btree_bio;
558
559 struct btree_root btree_roots[BTREE_ID_NR];
560 bool btree_roots_dirty;
561 struct mutex btree_root_lock;
562
563 struct btree_cache btree_cache;
564
565 mempool_t btree_reserve_pool;
566
567 /*
568 * Cache of allocated btree nodes - if we allocate a btree node and
569 * don't use it, if we free it that space can't be reused until going
570 * _all_ the way through the allocator (which exposes us to a livelock
571 * when allocating btree reserves fail halfway through) - instead, we
572 * can stick them here:
573 */
574 struct btree_alloc btree_reserve_cache[BTREE_NODE_RESERVE * 2];
575 unsigned btree_reserve_cache_nr;
576 struct mutex btree_reserve_cache_lock;
577
578 mempool_t btree_interior_update_pool;
579 struct list_head btree_interior_update_list;
580 struct mutex btree_interior_update_lock;
581 struct closure_waitlist btree_interior_update_wait;
582
583 struct workqueue_struct *wq;
584 /* copygc needs its own workqueue for index updates.. */
585 struct workqueue_struct *copygc_wq;
586
587 /* ALLOCATION */
588 struct delayed_work pd_controllers_update;
589 unsigned pd_controllers_update_seconds;
590
591 struct bch_devs_mask rw_devs[BCH_DATA_NR];
592
593 u64 capacity; /* sectors */
594
595 /*
596 * When capacity _decreases_ (due to a disk being removed), we
597 * increment capacity_gen - this invalidates outstanding reservations
598 * and forces them to be revalidated
599 */
600 u32 capacity_gen;
601
602 atomic64_t sectors_available;
603
604 struct bch_fs_usage __percpu *usage_percpu;
605 struct bch_fs_usage usage_cached;
606 struct percpu_rw_semaphore usage_lock;
607
608 struct closure_waitlist freelist_wait;
609
610 /*
611 * When we invalidate buckets, we use both the priority and the amount
612 * of good data to determine which buckets to reuse first - to weight
613 * those together consistently we keep track of the smallest nonzero
614 * priority of any bucket.
615 */
616 struct bucket_clock bucket_clock[2];
617
618 struct io_clock io_clock[2];
619
620 /* ALLOCATOR */
621 spinlock_t freelist_lock;
622 u8 open_buckets_freelist;
623 u8 open_buckets_nr_free;
624 struct closure_waitlist open_buckets_wait;
625 struct open_bucket open_buckets[OPEN_BUCKETS_COUNT];
626
627 struct write_point btree_write_point;
628 struct write_point rebalance_write_point;
629
630 struct write_point write_points[WRITE_POINT_COUNT];
631 struct hlist_head write_points_hash[WRITE_POINT_COUNT];
632 struct mutex write_points_hash_lock;
633
634 /* GARBAGE COLLECTION */
635 struct task_struct *gc_thread;
636 atomic_t kick_gc;
637 unsigned long gc_count;
638
639 /*
640 * Tracks GC's progress - everything in the range [ZERO_KEY..gc_cur_pos]
641 * has been marked by GC.
642 *
643 * gc_cur_phase is a superset of btree_ids (BTREE_ID_EXTENTS etc.)
644 *
645 * gc_cur_phase == GC_PHASE_DONE indicates that gc is finished/not
646 * currently running, and gc marks are currently valid
647 *
648 * Protected by gc_pos_lock. Only written to by GC thread, so GC thread
649 * can read without a lock.
650 */
651 seqcount_t gc_pos_lock;
652 struct gc_pos gc_pos;
653
654 /*
655 * The allocation code needs gc_mark in struct bucket to be correct, but
656 * it's not while a gc is in progress.
657 */
658 struct rw_semaphore gc_lock;
659
660 /* IO PATH */
661 struct bio_set bio_read;
662 struct bio_set bio_read_split;
663 struct bio_set bio_write;
664 struct mutex bio_bounce_pages_lock;
665 mempool_t bio_bounce_pages;
666 struct rhashtable promote_table;
667
668 mempool_t compression_bounce[2];
669 mempool_t compress_workspace[BCH_COMPRESSION_NR];
670 mempool_t decompress_workspace;
671 ZSTD_parameters zstd_params;
672
673 struct crypto_shash *sha256;
674 struct crypto_sync_skcipher *chacha20;
675 struct crypto_shash *poly1305;
676
677 atomic64_t key_version;
678
679 /* REBALANCE */
680 struct bch_fs_rebalance rebalance;
681
682 /* VFS IO PATH - fs-io.c */
683 struct bio_set writepage_bioset;
684 struct bio_set dio_write_bioset;
685 struct bio_set dio_read_bioset;
686
687 struct bio_list btree_write_error_list;
688 struct work_struct btree_write_error_work;
689 spinlock_t btree_write_error_lock;
690
691 /* ERRORS */
692 struct list_head fsck_errors;
693 struct mutex fsck_error_lock;
694 bool fsck_alloc_err;
695
696 /* FILESYSTEM */
697 atomic_long_t nr_inodes;
698
699 /* QUOTAS */
700 struct bch_memquota_type quotas[QTYP_NR];
701
702 /* DEBUG JUNK */
703 struct dentry *debug;
704 struct btree_debug btree_debug[BTREE_ID_NR];
705#ifdef CONFIG_BCACHEFS_DEBUG
706 struct btree *verify_data;
707 struct btree_node *verify_ondisk;
708 struct mutex verify_lock;
709#endif
710
711 u64 unused_inode_hint;
712
713 /*
714 * A btree node on disk could have too many bsets for an iterator to fit
715 * on the stack - have to dynamically allocate them
716 */
717 mempool_t fill_iter;
718
719 mempool_t btree_bounce_pool;
720
721 struct journal journal;
722
c6923995 723 u64 last_bucket_seq_cleanup;
1c6fdbd8
KO
724
725 /* The rest of this all shows up in sysfs */
726 atomic_long_t read_realloc_races;
727 atomic_long_t extent_migrate_done;
728 atomic_long_t extent_migrate_raced;
729
730 unsigned btree_gc_periodic:1;
731 unsigned copy_gc_enabled:1;
732 bool promote_whole_extents;
733
734#define BCH_DEBUG_PARAM(name, description) bool name;
735 BCH_DEBUG_PARAMS_ALL()
736#undef BCH_DEBUG_PARAM
737
738 struct bch2_time_stats times[BCH_TIME_STAT_NR];
739};
740
741static inline void bch2_set_ra_pages(struct bch_fs *c, unsigned ra_pages)
742{
743#ifndef NO_BCACHEFS_FS
744 if (c->vfs_sb)
745 c->vfs_sb->s_bdi->ra_pages = ra_pages;
746#endif
747}
748
749static inline bool bch2_fs_running(struct bch_fs *c)
750{
751 return c->state == BCH_FS_RO || c->state == BCH_FS_RW;
752}
753
754static inline unsigned bucket_bytes(const struct bch_dev *ca)
755{
756 return ca->mi.bucket_size << 9;
757}
758
759static inline unsigned block_bytes(const struct bch_fs *c)
760{
761 return c->opts.block_size << 9;
762}
763
764static inline struct timespec64 bch2_time_to_timespec(struct bch_fs *c, u64 time)
765{
766 return ns_to_timespec64(time * c->sb.time_precision + c->sb.time_base_lo);
767}
768
769static inline s64 timespec_to_bch2_time(struct bch_fs *c, struct timespec64 ts)
770{
771 s64 ns = timespec64_to_ns(&ts) - c->sb.time_base_lo;
772
773 if (c->sb.time_precision == 1)
774 return ns;
775
776 return div_s64(ns, c->sb.time_precision);
777}
778
779static inline s64 bch2_current_time(struct bch_fs *c)
780{
781 struct timespec64 now;
782
783 ktime_get_real_ts64(&now);
784 return timespec_to_bch2_time(c, now);
785}
786
787#endif /* _BCACHEFS_H */