1b2441318SGreg Kroah-Hartman /* SPDX-License-Identifier: GPL-2.0 */
2cafe5635SKent Overstreet #ifndef _BCACHE_H
3cafe5635SKent Overstreet #define _BCACHE_H
4cafe5635SKent Overstreet
5cafe5635SKent Overstreet /*
6cafe5635SKent Overstreet * SOME HIGH LEVEL CODE DOCUMENTATION:
7cafe5635SKent Overstreet *
8cafe5635SKent Overstreet * Bcache mostly works with cache sets, cache devices, and backing devices.
9cafe5635SKent Overstreet *
10cafe5635SKent Overstreet * Support for multiple cache devices hasn't quite been finished off yet, but
11cafe5635SKent Overstreet * it's about 95% plumbed through. A cache set and its cache devices is sort of
12cafe5635SKent Overstreet * like a md raid array and its component devices. Most of the code doesn't care
13cafe5635SKent Overstreet * about individual cache devices, the main abstraction is the cache set.
14cafe5635SKent Overstreet *
15cafe5635SKent Overstreet * Multiple cache devices is intended to give us the ability to mirror dirty
16cafe5635SKent Overstreet * cached data and metadata, without mirroring clean cached data.
17cafe5635SKent Overstreet *
18cafe5635SKent Overstreet * Backing devices are different, in that they have a lifetime independent of a
19cafe5635SKent Overstreet * cache set. When you register a newly formatted backing device it'll come up
20cafe5635SKent Overstreet * in passthrough mode, and then you can attach and detach a backing device from
21cafe5635SKent Overstreet * a cache set at runtime - while it's mounted and in use. Detaching implicitly
22cafe5635SKent Overstreet * invalidates any cached data for that backing device.
23cafe5635SKent Overstreet *
24cafe5635SKent Overstreet * A cache set can have multiple (many) backing devices attached to it.
25cafe5635SKent Overstreet *
26cafe5635SKent Overstreet * There's also flash only volumes - this is the reason for the distinction
27cafe5635SKent Overstreet * between struct cached_dev and struct bcache_device. A flash only volume
28cafe5635SKent Overstreet * works much like a bcache device that has a backing device, except the
29cafe5635SKent Overstreet * "cached" data is always dirty. The end result is that we get thin
30cafe5635SKent Overstreet * provisioning with very little additional code.
31cafe5635SKent Overstreet *
32cafe5635SKent Overstreet * Flash only volumes work but they're not production ready because the moving
33cafe5635SKent Overstreet * garbage collector needs more work. More on that later.
34cafe5635SKent Overstreet *
35cafe5635SKent Overstreet * BUCKETS/ALLOCATION:
36cafe5635SKent Overstreet *
37cafe5635SKent Overstreet * Bcache is primarily designed for caching, which means that in normal
38cafe5635SKent Overstreet * operation all of our available space will be allocated. Thus, we need an
39cafe5635SKent Overstreet * efficient way of deleting things from the cache so we can write new things to
40cafe5635SKent Overstreet * it.
41cafe5635SKent Overstreet *
42cafe5635SKent Overstreet * To do this, we first divide the cache device up into buckets. A bucket is the
43cafe5635SKent Overstreet * unit of allocation; they're typically around 1 mb - anywhere from 128k to 2M+
44cafe5635SKent Overstreet * works efficiently.
45cafe5635SKent Overstreet *
46cafe5635SKent Overstreet * Each bucket has a 16 bit priority, and an 8 bit generation associated with
47cafe5635SKent Overstreet * it. The gens and priorities for all the buckets are stored contiguously and
48cafe5635SKent Overstreet * packed on disk (in a linked list of buckets - aside from the superblock, all
49cafe5635SKent Overstreet * of bcache's metadata is stored in buckets).
50cafe5635SKent Overstreet *
51cafe5635SKent Overstreet * The priority is used to implement an LRU. We reset a bucket's priority when
52cafe5635SKent Overstreet * we allocate it or on cache it, and every so often we decrement the priority
53cafe5635SKent Overstreet * of each bucket. It could be used to implement something more sophisticated,
54cafe5635SKent Overstreet * if anyone ever gets around to it.
55cafe5635SKent Overstreet *
56cafe5635SKent Overstreet * The generation is used for invalidating buckets. Each pointer also has an 8
57cafe5635SKent Overstreet * bit generation embedded in it; for a pointer to be considered valid, its gen
58cafe5635SKent Overstreet * must match the gen of the bucket it points into. Thus, to reuse a bucket all
59cafe5635SKent Overstreet * we have to do is increment its gen (and write its new gen to disk; we batch
60cafe5635SKent Overstreet * this up).
61cafe5635SKent Overstreet *
62cafe5635SKent Overstreet * Bcache is entirely COW - we never write twice to a bucket, even buckets that
63cafe5635SKent Overstreet * contain metadata (including btree nodes).
64cafe5635SKent Overstreet *
65cafe5635SKent Overstreet * THE BTREE:
66cafe5635SKent Overstreet *
67cafe5635SKent Overstreet * Bcache is in large part design around the btree.
68cafe5635SKent Overstreet *
69cafe5635SKent Overstreet * At a high level, the btree is just an index of key -> ptr tuples.
70cafe5635SKent Overstreet *
71cafe5635SKent Overstreet * Keys represent extents, and thus have a size field. Keys also have a variable
72cafe5635SKent Overstreet * number of pointers attached to them (potentially zero, which is handy for
73cafe5635SKent Overstreet * invalidating the cache).
74cafe5635SKent Overstreet *
75cafe5635SKent Overstreet * The key itself is an inode:offset pair. The inode number corresponds to a
76cafe5635SKent Overstreet * backing device or a flash only volume. The offset is the ending offset of the
77cafe5635SKent Overstreet * extent within the inode - not the starting offset; this makes lookups
78cafe5635SKent Overstreet * slightly more convenient.
79cafe5635SKent Overstreet *
80cafe5635SKent Overstreet * Pointers contain the cache device id, the offset on that device, and an 8 bit
81cafe5635SKent Overstreet * generation number. More on the gen later.
82cafe5635SKent Overstreet *
83cafe5635SKent Overstreet * Index lookups are not fully abstracted - cache lookups in particular are
84cafe5635SKent Overstreet * still somewhat mixed in with the btree code, but things are headed in that
85cafe5635SKent Overstreet * direction.
86cafe5635SKent Overstreet *
87cafe5635SKent Overstreet * Updates are fairly well abstracted, though. There are two different ways of
88cafe5635SKent Overstreet * updating the btree; insert and replace.
89cafe5635SKent Overstreet *
90cafe5635SKent Overstreet * BTREE_INSERT will just take a list of keys and insert them into the btree -
91cafe5635SKent Overstreet * overwriting (possibly only partially) any extents they overlap with. This is
92cafe5635SKent Overstreet * used to update the index after a write.
93cafe5635SKent Overstreet *
94cafe5635SKent Overstreet * BTREE_REPLACE is really cmpxchg(); it inserts a key into the btree iff it is
95cafe5635SKent Overstreet * overwriting a key that matches another given key. This is used for inserting
96cafe5635SKent Overstreet * data into the cache after a cache miss, and for background writeback, and for
97cafe5635SKent Overstreet * the moving garbage collector.
98cafe5635SKent Overstreet *
99cafe5635SKent Overstreet * There is no "delete" operation; deleting things from the index is
100cafe5635SKent Overstreet * accomplished by either by invalidating pointers (by incrementing a bucket's
101cafe5635SKent Overstreet * gen) or by inserting a key with 0 pointers - which will overwrite anything
102cafe5635SKent Overstreet * previously present at that location in the index.
103cafe5635SKent Overstreet *
104cafe5635SKent Overstreet * This means that there are always stale/invalid keys in the btree. They're
105cafe5635SKent Overstreet * filtered out by the code that iterates through a btree node, and removed when
106cafe5635SKent Overstreet * a btree node is rewritten.
107cafe5635SKent Overstreet *
108cafe5635SKent Overstreet * BTREE NODES:
109cafe5635SKent Overstreet *
1106dd3be69SJilin Yuan * Our unit of allocation is a bucket, and we can't arbitrarily allocate and
111cafe5635SKent Overstreet * free smaller than a bucket - so, that's how big our btree nodes are.
112cafe5635SKent Overstreet *
113cafe5635SKent Overstreet * (If buckets are really big we'll only use part of the bucket for a btree node
114cafe5635SKent Overstreet * - no less than 1/4th - but a bucket still contains no more than a single
115cafe5635SKent Overstreet * btree node. I'd actually like to change this, but for now we rely on the
116cafe5635SKent Overstreet * bucket's gen for deleting btree nodes when we rewrite/split a node.)
117cafe5635SKent Overstreet *
118cafe5635SKent Overstreet * Anyways, btree nodes are big - big enough to be inefficient with a textbook
119cafe5635SKent Overstreet * btree implementation.
120cafe5635SKent Overstreet *
121cafe5635SKent Overstreet * The way this is solved is that btree nodes are internally log structured; we
122cafe5635SKent Overstreet * can append new keys to an existing btree node without rewriting it. This
123cafe5635SKent Overstreet * means each set of keys we write is sorted, but the node is not.
124cafe5635SKent Overstreet *
125cafe5635SKent Overstreet * We maintain this log structure in memory - keeping 1Mb of keys sorted would
126cafe5635SKent Overstreet * be expensive, and we have to distinguish between the keys we have written and
127cafe5635SKent Overstreet * the keys we haven't. So to do a lookup in a btree node, we have to search
128cafe5635SKent Overstreet * each sorted set. But we do merge written sets together lazily, so the cost of
129cafe5635SKent Overstreet * these extra searches is quite low (normally most of the keys in a btree node
130cafe5635SKent Overstreet * will be in one big set, and then there'll be one or two sets that are much
131cafe5635SKent Overstreet * smaller).
132cafe5635SKent Overstreet *
133cafe5635SKent Overstreet * This log structure makes bcache's btree more of a hybrid between a
134cafe5635SKent Overstreet * conventional btree and a compacting data structure, with some of the
135cafe5635SKent Overstreet * advantages of both.
136cafe5635SKent Overstreet *
137cafe5635SKent Overstreet * GARBAGE COLLECTION:
138cafe5635SKent Overstreet *
139cafe5635SKent Overstreet * We can't just invalidate any bucket - it might contain dirty data or
140cafe5635SKent Overstreet * metadata. If it once contained dirty data, other writes might overwrite it
141cafe5635SKent Overstreet * later, leaving no valid pointers into that bucket in the index.
142cafe5635SKent Overstreet *
143cafe5635SKent Overstreet * Thus, the primary purpose of garbage collection is to find buckets to reuse.
144cafe5635SKent Overstreet * It also counts how much valid data it each bucket currently contains, so that
145cafe5635SKent Overstreet * allocation can reuse buckets sooner when they've been mostly overwritten.
146cafe5635SKent Overstreet *
147cafe5635SKent Overstreet * It also does some things that are really internal to the btree
148cafe5635SKent Overstreet * implementation. If a btree node contains pointers that are stale by more than
149cafe5635SKent Overstreet * some threshold, it rewrites the btree node to avoid the bucket's generation
150cafe5635SKent Overstreet * wrapping around. It also merges adjacent btree nodes if they're empty enough.
151cafe5635SKent Overstreet *
152cafe5635SKent Overstreet * THE JOURNAL:
153cafe5635SKent Overstreet *
154cafe5635SKent Overstreet * Bcache's journal is not necessary for consistency; we always strictly
155cafe5635SKent Overstreet * order metadata writes so that the btree and everything else is consistent on
156cafe5635SKent Overstreet * disk in the event of an unclean shutdown, and in fact bcache had writeback
157cafe5635SKent Overstreet * caching (with recovery from unclean shutdown) before journalling was
158cafe5635SKent Overstreet * implemented.
159cafe5635SKent Overstreet *
160cafe5635SKent Overstreet * Rather, the journal is purely a performance optimization; we can't complete a
161cafe5635SKent Overstreet * write until we've updated the index on disk, otherwise the cache would be
162cafe5635SKent Overstreet * inconsistent in the event of an unclean shutdown. This means that without the
163cafe5635SKent Overstreet * journal, on random write workloads we constantly have to update all the leaf
164cafe5635SKent Overstreet * nodes in the btree, and those writes will be mostly empty (appending at most
165cafe5635SKent Overstreet * a few keys each) - highly inefficient in terms of amount of metadata writes,
166cafe5635SKent Overstreet * and it puts more strain on the various btree resorting/compacting code.
167cafe5635SKent Overstreet *
168cafe5635SKent Overstreet * The journal is just a log of keys we've inserted; on startup we just reinsert
169cafe5635SKent Overstreet * all the keys in the open journal entries. That means that when we're updating
170cafe5635SKent Overstreet * a node in the btree, we can wait until a 4k block of keys fills up before
171cafe5635SKent Overstreet * writing them out.
172cafe5635SKent Overstreet *
173cafe5635SKent Overstreet * For simplicity, we only journal updates to leaf nodes; updates to parent
174cafe5635SKent Overstreet * nodes are rare enough (since our leaf nodes are huge) that it wasn't worth
175cafe5635SKent Overstreet * the complexity to deal with journalling them (in particular, journal replay)
176cafe5635SKent Overstreet * - updates to non leaf nodes just happen synchronously (see btree_split()).
177cafe5635SKent Overstreet */
178cafe5635SKent Overstreet
17946f5aa88SJoe Perches #define pr_fmt(fmt) "bcache: %s() " fmt, __func__
180cafe5635SKent Overstreet
181cafe5635SKent Overstreet #include <linux/bio.h>
182cafe5635SKent Overstreet #include <linux/kobject.h>
183cafe5635SKent Overstreet #include <linux/list.h>
184cafe5635SKent Overstreet #include <linux/mutex.h>
185cafe5635SKent Overstreet #include <linux/rbtree.h>
186cafe5635SKent Overstreet #include <linux/rwsem.h>
1873b304d24SElena Reshetova #include <linux/refcount.h>
188cafe5635SKent Overstreet #include <linux/types.h>
189cafe5635SKent Overstreet #include <linux/workqueue.h>
190771f393eSColy Li #include <linux/kthread.h>
191cafe5635SKent Overstreet
192cf2197caSColy Li #include "bcache_ondisk.h"
19367539e85SKent Overstreet #include "bset.h"
194cafe5635SKent Overstreet #include "util.h"
195cafe5635SKent Overstreet #include "closure.h"
196cafe5635SKent Overstreet
197cafe5635SKent Overstreet struct bucket {
198cafe5635SKent Overstreet atomic_t pin;
199cafe5635SKent Overstreet uint16_t prio;
200cafe5635SKent Overstreet uint8_t gen;
201cafe5635SKent Overstreet uint8_t last_gc; /* Most out of date gen in the btree */
202981aa8c0SNicholas Swenson uint16_t gc_mark; /* Bitfield used by GC. See below for field */
203cafe5635SKent Overstreet };
204cafe5635SKent Overstreet
205cafe5635SKent Overstreet /*
206cafe5635SKent Overstreet * I'd use bitfields for these, but I don't trust the compiler not to screw me
207cafe5635SKent Overstreet * as multiple threads touch struct bucket without locking
208cafe5635SKent Overstreet */
209cafe5635SKent Overstreet
210cafe5635SKent Overstreet BITMASK(GC_MARK, struct bucket, gc_mark, 0, 2);
2114fe6a816SKent Overstreet #define GC_MARK_RECLAIMABLE 1
2124fe6a816SKent Overstreet #define GC_MARK_DIRTY 2
2134fe6a816SKent Overstreet #define GC_MARK_METADATA 3
21494717447SDarrick J. Wong #define GC_SECTORS_USED_SIZE 13
21594717447SDarrick J. Wong #define MAX_GC_SECTORS_USED (~(~0ULL << GC_SECTORS_USED_SIZE))
21694717447SDarrick J. Wong BITMASK(GC_SECTORS_USED, struct bucket, gc_mark, 2, GC_SECTORS_USED_SIZE);
217981aa8c0SNicholas Swenson BITMASK(GC_MOVE, struct bucket, gc_mark, 15, 1);
218cafe5635SKent Overstreet
219cafe5635SKent Overstreet #include "journal.h"
220cafe5635SKent Overstreet #include "stats.h"
221cafe5635SKent Overstreet struct search;
222cafe5635SKent Overstreet struct btree;
223cafe5635SKent Overstreet struct keybuf;
224cafe5635SKent Overstreet
225cafe5635SKent Overstreet struct keybuf_key {
226cafe5635SKent Overstreet struct rb_node node;
227cafe5635SKent Overstreet BKEY_PADDED(key);
228cafe5635SKent Overstreet void *private;
229cafe5635SKent Overstreet };
230cafe5635SKent Overstreet
231cafe5635SKent Overstreet struct keybuf {
232cafe5635SKent Overstreet struct bkey last_scanned;
233cafe5635SKent Overstreet spinlock_t lock;
234cafe5635SKent Overstreet
235cafe5635SKent Overstreet /*
236cafe5635SKent Overstreet * Beginning and end of range in rb tree - so that we can skip taking
237cafe5635SKent Overstreet * lock and checking the rb tree when we need to check for overlapping
238cafe5635SKent Overstreet * keys.
239cafe5635SKent Overstreet */
240cafe5635SKent Overstreet struct bkey start;
241cafe5635SKent Overstreet struct bkey end;
242cafe5635SKent Overstreet
243cafe5635SKent Overstreet struct rb_root keys;
244cafe5635SKent Overstreet
24548a915a8SKent Overstreet #define KEYBUF_NR 500
246cafe5635SKent Overstreet DECLARE_ARRAY_ALLOCATOR(struct keybuf_key, freelist, KEYBUF_NR);
247cafe5635SKent Overstreet };
248cafe5635SKent Overstreet
249cafe5635SKent Overstreet struct bcache_device {
250cafe5635SKent Overstreet struct closure cl;
251cafe5635SKent Overstreet
252cafe5635SKent Overstreet struct kobject kobj;
253cafe5635SKent Overstreet
254cafe5635SKent Overstreet struct cache_set *c;
2556f10f7d1SColy Li unsigned int id;
256cafe5635SKent Overstreet #define BCACHEDEVNAME_SIZE 12
257cafe5635SKent Overstreet char name[BCACHEDEVNAME_SIZE];
258cafe5635SKent Overstreet
259cafe5635SKent Overstreet struct gendisk *disk;
260cafe5635SKent Overstreet
261c4d951ddSKent Overstreet unsigned long flags;
262c4d951ddSKent Overstreet #define BCACHE_DEV_CLOSING 0
263c4d951ddSKent Overstreet #define BCACHE_DEV_DETACHING 1
264c4d951ddSKent Overstreet #define BCACHE_DEV_UNLINK_DONE 2
2653fd47bfeSColy Li #define BCACHE_DEV_WB_RUNNING 3
2663fd47bfeSColy Li #define BCACHE_DEV_RATE_DW_RUNNING 4
2677a148126SColy Li int nr_stripes;
268*09bdafb8SColy Li #define BCH_MIN_STRIPE_SZ ((4 << 20) >> SECTOR_SHIFT)
2696f10f7d1SColy Li unsigned int stripe_size;
270279afbadSKent Overstreet atomic_t *stripe_sectors_dirty;
27148a915a8SKent Overstreet unsigned long *full_dirty_stripes;
272279afbadSKent Overstreet
273d19936a2SKent Overstreet struct bio_set bio_split;
274cafe5635SKent Overstreet
2756f10f7d1SColy Li unsigned int data_csum:1;
276cafe5635SKent Overstreet
277fc2d5988SColy Li int (*cache_miss)(struct btree *b, struct search *s,
278fc2d5988SColy Li struct bio *bio, unsigned int sectors);
27905bdb996SChristoph Hellwig int (*ioctl)(struct bcache_device *d, blk_mode_t mode,
280fc2d5988SColy Li unsigned int cmd, unsigned long arg);
281cafe5635SKent Overstreet };
282cafe5635SKent Overstreet
283cafe5635SKent Overstreet struct io {
284cafe5635SKent Overstreet /* Used to track sequential IO so it can be skipped */
285cafe5635SKent Overstreet struct hlist_node hash;
286cafe5635SKent Overstreet struct list_head lru;
287cafe5635SKent Overstreet
288cafe5635SKent Overstreet unsigned long jiffies;
2896f10f7d1SColy Li unsigned int sequential;
290cafe5635SKent Overstreet sector_t last;
291cafe5635SKent Overstreet };
292cafe5635SKent Overstreet
2937e027ca4SColy Li enum stop_on_failure {
2947e027ca4SColy Li BCH_CACHED_DEV_STOP_AUTO = 0,
2957e027ca4SColy Li BCH_CACHED_DEV_STOP_ALWAYS,
2967e027ca4SColy Li BCH_CACHED_DEV_STOP_MODE_MAX,
2977e027ca4SColy Li };
2987e027ca4SColy Li
299cafe5635SKent Overstreet struct cached_dev {
300cafe5635SKent Overstreet struct list_head list;
301cafe5635SKent Overstreet struct bcache_device disk;
302cafe5635SKent Overstreet struct block_device *bdev;
303cafe5635SKent Overstreet
304cafe5635SKent Overstreet struct cache_sb sb;
305475389aeSChristoph Hellwig struct cache_sb_disk *sb_disk;
306cafe5635SKent Overstreet struct bio sb_bio;
307cafe5635SKent Overstreet struct bio_vec sb_bv[1];
308cb7a583eSKent Overstreet struct closure sb_write;
309cb7a583eSKent Overstreet struct semaphore sb_write_mutex;
310cafe5635SKent Overstreet
311cafe5635SKent Overstreet /* Refcount on the cache set. Always nonzero when we're caching. */
3123b304d24SElena Reshetova refcount_t count;
313cafe5635SKent Overstreet struct work_struct detach;
314cafe5635SKent Overstreet
315cafe5635SKent Overstreet /*
316cafe5635SKent Overstreet * Device might not be running if it's dirty and the cache set hasn't
317cafe5635SKent Overstreet * showed up yet.
318cafe5635SKent Overstreet */
319cafe5635SKent Overstreet atomic_t running;
320cafe5635SKent Overstreet
321cafe5635SKent Overstreet /*
322cafe5635SKent Overstreet * Writes take a shared lock from start to finish; scanning for dirty
323cafe5635SKent Overstreet * data to refill the rb tree requires an exclusive lock.
324cafe5635SKent Overstreet */
325cafe5635SKent Overstreet struct rw_semaphore writeback_lock;
326cafe5635SKent Overstreet
327cafe5635SKent Overstreet /*
328cafe5635SKent Overstreet * Nonzero, and writeback has a refcount (d->count), iff there is dirty
329cafe5635SKent Overstreet * data in the cache. Protected by writeback_lock; must have an
330cafe5635SKent Overstreet * shared lock to set and exclusive lock to clear.
331cafe5635SKent Overstreet */
332cafe5635SKent Overstreet atomic_t has_dirty;
333cafe5635SKent Overstreet
334038ba8ccSColy Li #define BCH_CACHE_READA_ALL 0
335038ba8ccSColy Li #define BCH_CACHE_READA_META_ONLY 1
336038ba8ccSColy Li unsigned int cache_readahead_policy;
337c2a4f318SKent Overstreet struct bch_ratelimit writeback_rate;
338cafe5635SKent Overstreet struct delayed_work writeback_rate_update;
339cafe5635SKent Overstreet
340c2a4f318SKent Overstreet /* Limit number of writeback bios in flight */
341c2a4f318SKent Overstreet struct semaphore in_flight;
3425e6926daSKent Overstreet struct task_struct *writeback_thread;
3439baf3097STang Junhui struct workqueue_struct *writeback_write_wq;
344cafe5635SKent Overstreet
345cafe5635SKent Overstreet struct keybuf writeback_keys;
346cafe5635SKent Overstreet
3470f0709e6SColy Li struct task_struct *status_update_thread;
3486e6ccc67SMichael Lyle /*
3496e6ccc67SMichael Lyle * Order the write-half of writeback operations strongly in dispatch
3506e6ccc67SMichael Lyle * order. (Maintain LBA order; don't allow reads completing out of
3516e6ccc67SMichael Lyle * order to re-order the writes...)
3526e6ccc67SMichael Lyle */
3536e6ccc67SMichael Lyle struct closure_waitlist writeback_ordering_wait;
3546e6ccc67SMichael Lyle atomic_t writeback_sequence_next;
3556e6ccc67SMichael Lyle
356cafe5635SKent Overstreet /* For tracking sequential IO */
357cafe5635SKent Overstreet #define RECENT_IO_BITS 7
358cafe5635SKent Overstreet #define RECENT_IO (1 << RECENT_IO_BITS)
359cafe5635SKent Overstreet struct io io[RECENT_IO];
360cafe5635SKent Overstreet struct hlist_head io_hash[RECENT_IO + 1];
361cafe5635SKent Overstreet struct list_head io_lru;
362cafe5635SKent Overstreet spinlock_t io_lock;
363cafe5635SKent Overstreet
364cafe5635SKent Overstreet struct cache_accounting accounting;
365cafe5635SKent Overstreet
366cafe5635SKent Overstreet /* The rest of this all shows up in sysfs */
3676f10f7d1SColy Li unsigned int sequential_cutoff;
368cafe5635SKent Overstreet
3696f10f7d1SColy Li unsigned int io_disable:1;
3706f10f7d1SColy Li unsigned int verify:1;
3716f10f7d1SColy Li unsigned int bypass_torture_test:1;
372cafe5635SKent Overstreet
3736f10f7d1SColy Li unsigned int partial_stripes_expensive:1;
3746f10f7d1SColy Li unsigned int writeback_metadata:1;
3756f10f7d1SColy Li unsigned int writeback_running:1;
37671dda2a5Sdongdong tao unsigned int writeback_consider_fragment:1;
377cafe5635SKent Overstreet unsigned char writeback_percent;
3786f10f7d1SColy Li unsigned int writeback_delay;
379cafe5635SKent Overstreet
380cafe5635SKent Overstreet uint64_t writeback_rate_target;
38116749c23SKent Overstreet int64_t writeback_rate_proportional;
3821d316e65SMichael Lyle int64_t writeback_rate_integral;
3831d316e65SMichael Lyle int64_t writeback_rate_integral_scaled;
384e41166c5SMichael Lyle int32_t writeback_rate_change;
385cafe5635SKent Overstreet
3866f10f7d1SColy Li unsigned int writeback_rate_update_seconds;
3876f10f7d1SColy Li unsigned int writeback_rate_i_term_inverse;
3886f10f7d1SColy Li unsigned int writeback_rate_p_term_inverse;
38971dda2a5Sdongdong tao unsigned int writeback_rate_fp_term_low;
39071dda2a5Sdongdong tao unsigned int writeback_rate_fp_term_mid;
39171dda2a5Sdongdong tao unsigned int writeback_rate_fp_term_high;
3926f10f7d1SColy Li unsigned int writeback_rate_minimum;
3937e027ca4SColy Li
3947e027ca4SColy Li enum stop_on_failure stop_when_cache_set_failed;
395c7b7bd07SColy Li #define DEFAULT_CACHED_DEV_ERROR_LIMIT 64
396c7b7bd07SColy Li atomic_t io_errors;
3976f10f7d1SColy Li unsigned int error_limit;
3986f10f7d1SColy Li unsigned int offline_seconds;
399a1a2d8f0SColy Li
400a1a2d8f0SColy Li /*
401a1a2d8f0SColy Li * Retry to update writeback_rate if contention happens for
402a1a2d8f0SColy Li * down_read(dc->writeback_lock) in update_writeback_rate()
403a1a2d8f0SColy Li */
404a1a2d8f0SColy Li #define BCH_WBRATE_UPDATE_MAX_SKIPS 15
405a1a2d8f0SColy Li unsigned int rate_update_retry;
406cafe5635SKent Overstreet };
407cafe5635SKent Overstreet
40878365411SKent Overstreet enum alloc_reserve {
40978365411SKent Overstreet RESERVE_BTREE,
41078365411SKent Overstreet RESERVE_PRIO,
41178365411SKent Overstreet RESERVE_MOVINGGC,
41278365411SKent Overstreet RESERVE_NONE,
41378365411SKent Overstreet RESERVE_NR,
414cafe5635SKent Overstreet };
415cafe5635SKent Overstreet
416cafe5635SKent Overstreet struct cache {
417cafe5635SKent Overstreet struct cache_set *set;
418cafe5635SKent Overstreet struct cache_sb sb;
419475389aeSChristoph Hellwig struct cache_sb_disk *sb_disk;
420cafe5635SKent Overstreet struct bio sb_bio;
421cafe5635SKent Overstreet struct bio_vec sb_bv[1];
422cafe5635SKent Overstreet
423cafe5635SKent Overstreet struct kobject kobj;
424cafe5635SKent Overstreet struct block_device *bdev;
425cafe5635SKent Overstreet
426119ba0f8SKent Overstreet struct task_struct *alloc_thread;
427cafe5635SKent Overstreet
428cafe5635SKent Overstreet struct closure prio;
429cafe5635SKent Overstreet struct prio_set *disk_buckets;
430cafe5635SKent Overstreet
431cafe5635SKent Overstreet /*
432cafe5635SKent Overstreet * When allocating new buckets, prio_write() gets first dibs - since we
433cafe5635SKent Overstreet * may not be allocate at all without writing priorities and gens.
434cb329decSColy Li * prio_last_buckets[] contains the last buckets we wrote priorities to
435cb329decSColy Li * (so gc can mark them as metadata), prio_buckets[] contains the
436cb329decSColy Li * buckets allocated for the next prio write.
437cafe5635SKent Overstreet */
438cafe5635SKent Overstreet uint64_t *prio_buckets;
439cafe5635SKent Overstreet uint64_t *prio_last_buckets;
440cafe5635SKent Overstreet
441cafe5635SKent Overstreet /*
442cafe5635SKent Overstreet * free: Buckets that are ready to be used
443cafe5635SKent Overstreet *
444cafe5635SKent Overstreet * free_inc: Incoming buckets - these are buckets that currently have
445cafe5635SKent Overstreet * cached data in them, and we can't reuse them until after we write
446cafe5635SKent Overstreet * their new gen to disk. After prio_write() finishes writing the new
447cafe5635SKent Overstreet * gens/prios, they'll be moved to the free list (and possibly discarded
448cafe5635SKent Overstreet * in the process)
449cafe5635SKent Overstreet */
45078365411SKent Overstreet DECLARE_FIFO(long, free)[RESERVE_NR];
451cafe5635SKent Overstreet DECLARE_FIFO(long, free_inc);
452cafe5635SKent Overstreet
453cafe5635SKent Overstreet size_t fifo_last_bucket;
454cafe5635SKent Overstreet
455cafe5635SKent Overstreet /* Allocation stuff: */
456cafe5635SKent Overstreet struct bucket *buckets;
457cafe5635SKent Overstreet
458cafe5635SKent Overstreet DECLARE_HEAP(struct bucket *, heap);
459cafe5635SKent Overstreet
460cafe5635SKent Overstreet /*
461cafe5635SKent Overstreet * If nonzero, we know we aren't going to find any buckets to invalidate
462cafe5635SKent Overstreet * until a gc finishes - otherwise we could pointlessly burn a ton of
463cafe5635SKent Overstreet * cpu
464cafe5635SKent Overstreet */
4656f10f7d1SColy Li unsigned int invalidate_needs_gc;
466cafe5635SKent Overstreet
467cafe5635SKent Overstreet bool discard; /* Get rid of? */
468cafe5635SKent Overstreet
469cafe5635SKent Overstreet struct journal_device journal;
470cafe5635SKent Overstreet
471cafe5635SKent Overstreet /* The rest of this all shows up in sysfs */
472cafe5635SKent Overstreet #define IO_ERROR_SHIFT 20
473cafe5635SKent Overstreet atomic_t io_errors;
474cafe5635SKent Overstreet atomic_t io_count;
475cafe5635SKent Overstreet
476cafe5635SKent Overstreet atomic_long_t meta_sectors_written;
477cafe5635SKent Overstreet atomic_long_t btree_sectors_written;
478cafe5635SKent Overstreet atomic_long_t sectors_written;
479cafe5635SKent Overstreet };
480cafe5635SKent Overstreet
481cafe5635SKent Overstreet struct gc_stat {
482cafe5635SKent Overstreet size_t nodes;
4835c25c4fcSTang Junhui size_t nodes_pre;
484cafe5635SKent Overstreet size_t key_bytes;
485cafe5635SKent Overstreet
486cafe5635SKent Overstreet size_t nkeys;
487cafe5635SKent Overstreet uint64_t data; /* sectors */
4886f10f7d1SColy Li unsigned int in_use; /* percent */
489cafe5635SKent Overstreet };
490cafe5635SKent Overstreet
491cafe5635SKent Overstreet /*
492cafe5635SKent Overstreet * Flag bits, for how the cache set is shutting down, and what phase it's at:
493cafe5635SKent Overstreet *
494cafe5635SKent Overstreet * CACHE_SET_UNREGISTERING means we're not just shutting down, we're detaching
495cafe5635SKent Overstreet * all the backing devices first (their cached data gets invalidated, and they
496cafe5635SKent Overstreet * won't automatically reattach).
497cafe5635SKent Overstreet *
498cafe5635SKent Overstreet * CACHE_SET_STOPPING always gets set first when we're closing down a cache set;
499cafe5635SKent Overstreet * we'll continue to run normally for awhile with CACHE_SET_STOPPING set (i.e.
500cafe5635SKent Overstreet * flushing dirty data).
501bf0c55c9SSlava Pestov *
502bf0c55c9SSlava Pestov * CACHE_SET_RUNNING means all cache devices have been registered and journal
503bf0c55c9SSlava Pestov * replay is complete.
504771f393eSColy Li *
505771f393eSColy Li * CACHE_SET_IO_DISABLE is set when bcache is stopping the whold cache set, all
506771f393eSColy Li * external and internal I/O should be denied when this flag is set.
507771f393eSColy Li *
508cafe5635SKent Overstreet */
509cafe5635SKent Overstreet #define CACHE_SET_UNREGISTERING 0
510cafe5635SKent Overstreet #define CACHE_SET_STOPPING 1
511bf0c55c9SSlava Pestov #define CACHE_SET_RUNNING 2
512771f393eSColy Li #define CACHE_SET_IO_DISABLE 3
513cafe5635SKent Overstreet
514cafe5635SKent Overstreet struct cache_set {
515cafe5635SKent Overstreet struct closure cl;
516cafe5635SKent Overstreet
517cafe5635SKent Overstreet struct list_head list;
518cafe5635SKent Overstreet struct kobject kobj;
519cafe5635SKent Overstreet struct kobject internal;
520cafe5635SKent Overstreet struct dentry *debug;
521cafe5635SKent Overstreet struct cache_accounting accounting;
522cafe5635SKent Overstreet
523cafe5635SKent Overstreet unsigned long flags;
524ea8c5356SColy Li atomic_t idle_counter;
525ea8c5356SColy Li atomic_t at_max_writeback_rate;
526cafe5635SKent Overstreet
527697e2349SColy Li struct cache *cache;
528cafe5635SKent Overstreet
529cafe5635SKent Overstreet struct bcache_device **devices;
5306f10f7d1SColy Li unsigned int devices_max_used;
531ea8c5356SColy Li atomic_t attached_dev_nr;
532cafe5635SKent Overstreet struct list_head cached_devs;
533cafe5635SKent Overstreet uint64_t cached_dev_sectors;
53499a27d59STang Junhui atomic_long_t flash_dev_dirty_sectors;
535cafe5635SKent Overstreet struct closure caching;
536cafe5635SKent Overstreet
537cb7a583eSKent Overstreet struct closure sb_write;
538cb7a583eSKent Overstreet struct semaphore sb_write_mutex;
539cafe5635SKent Overstreet
540d19936a2SKent Overstreet mempool_t search;
541d19936a2SKent Overstreet mempool_t bio_meta;
542d19936a2SKent Overstreet struct bio_set bio_split;
543cafe5635SKent Overstreet
544cafe5635SKent Overstreet /* For the btree cache */
545cafe5635SKent Overstreet struct shrinker shrink;
546cafe5635SKent Overstreet
547cafe5635SKent Overstreet /* For the btree cache and anything allocation related */
548cafe5635SKent Overstreet struct mutex bucket_lock;
549cafe5635SKent Overstreet
550cafe5635SKent Overstreet /* log2(bucket_size), in sectors */
551cafe5635SKent Overstreet unsigned short bucket_bits;
552cafe5635SKent Overstreet
553cafe5635SKent Overstreet /* log2(block_size), in sectors */
554cafe5635SKent Overstreet unsigned short block_bits;
555cafe5635SKent Overstreet
556cafe5635SKent Overstreet /*
557cafe5635SKent Overstreet * Default number of pages for a new btree node - may be less than a
558cafe5635SKent Overstreet * full bucket
559cafe5635SKent Overstreet */
5606f10f7d1SColy Li unsigned int btree_pages;
561cafe5635SKent Overstreet
562cafe5635SKent Overstreet /*
563cafe5635SKent Overstreet * Lists of struct btrees; lru is the list for structs that have memory
564cafe5635SKent Overstreet * allocated for actual btree node, freed is for structs that do not.
565cafe5635SKent Overstreet *
566cafe5635SKent Overstreet * We never free a struct btree, except on shutdown - we just put it on
567cafe5635SKent Overstreet * the btree_cache_freed list and reuse it later. This simplifies the
568cafe5635SKent Overstreet * code, and it doesn't cost us much memory as the memory usage is
569cafe5635SKent Overstreet * dominated by buffers that hold the actual btree node data and those
570cafe5635SKent Overstreet * can be freed - and the number of struct btrees allocated is
571cafe5635SKent Overstreet * effectively bounded.
572cafe5635SKent Overstreet *
573cafe5635SKent Overstreet * btree_cache_freeable effectively is a small cache - we use it because
574cafe5635SKent Overstreet * high order page allocations can be rather expensive, and it's quite
575cafe5635SKent Overstreet * common to delete and allocate btree nodes in quick succession. It
576cafe5635SKent Overstreet * should never grow past ~2-3 nodes in practice.
577cafe5635SKent Overstreet */
578cafe5635SKent Overstreet struct list_head btree_cache;
579cafe5635SKent Overstreet struct list_head btree_cache_freeable;
580cafe5635SKent Overstreet struct list_head btree_cache_freed;
581cafe5635SKent Overstreet
582cafe5635SKent Overstreet /* Number of elements in btree_cache + btree_cache_freeable lists */
5836f10f7d1SColy Li unsigned int btree_cache_used;
584cafe5635SKent Overstreet
585cafe5635SKent Overstreet /*
586cafe5635SKent Overstreet * If we need to allocate memory for a new btree node and that
587cafe5635SKent Overstreet * allocation fails, we can cannibalize another node in the btree cache
5880a63b66dSKent Overstreet * to satisfy the allocation - lock to guarantee only one thread does
5890a63b66dSKent Overstreet * this at a time:
590cafe5635SKent Overstreet */
5910a63b66dSKent Overstreet wait_queue_head_t btree_cache_wait;
5920a63b66dSKent Overstreet struct task_struct *btree_cache_alloc_lock;
59334cf78bfSGuoju Fang spinlock_t btree_cannibalize_lock;
594cafe5635SKent Overstreet
595cafe5635SKent Overstreet /*
596cafe5635SKent Overstreet * When we free a btree node, we increment the gen of the bucket the
597cafe5635SKent Overstreet * node is in - but we can't rewrite the prios and gens until we
598cafe5635SKent Overstreet * finished whatever it is we were doing, otherwise after a crash the
599cafe5635SKent Overstreet * btree node would be freed but for say a split, we might not have the
600cafe5635SKent Overstreet * pointers to the new nodes inserted into the btree yet.
601cafe5635SKent Overstreet *
602cafe5635SKent Overstreet * This is a refcount that blocks prio_write() until the new keys are
603cafe5635SKent Overstreet * written.
604cafe5635SKent Overstreet */
605cafe5635SKent Overstreet atomic_t prio_blocked;
60635fcd848SKent Overstreet wait_queue_head_t bucket_wait;
607cafe5635SKent Overstreet
608cafe5635SKent Overstreet /*
609cafe5635SKent Overstreet * For any bio we don't skip we subtract the number of sectors from
610cafe5635SKent Overstreet * rescale; when it hits 0 we rescale all the bucket priorities.
611cafe5635SKent Overstreet */
612cafe5635SKent Overstreet atomic_t rescale;
613cafe5635SKent Overstreet /*
6145c25c4fcSTang Junhui * used for GC, identify if any front side I/Os is inflight
6155c25c4fcSTang Junhui */
6165c25c4fcSTang Junhui atomic_t search_inflight;
6175c25c4fcSTang Junhui /*
618cafe5635SKent Overstreet * When we invalidate buckets, we use both the priority and the amount
619cafe5635SKent Overstreet * of good data to determine which buckets to reuse first - to weight
620cafe5635SKent Overstreet * those together consistently we keep track of the smallest nonzero
621cafe5635SKent Overstreet * priority of any bucket.
622cafe5635SKent Overstreet */
623cafe5635SKent Overstreet uint16_t min_prio;
624cafe5635SKent Overstreet
625cafe5635SKent Overstreet /*
626b0d30981SColy Li * max(gen - last_gc) for all buckets. When it gets too big we have to
627b0d30981SColy Li * gc to keep gens from wrapping around.
628cafe5635SKent Overstreet */
629cafe5635SKent Overstreet uint8_t need_gc;
630cafe5635SKent Overstreet struct gc_stat gc_stats;
631cafe5635SKent Overstreet size_t nbuckets;
632d44c2f9eSTang Junhui size_t avail_nbuckets;
633cafe5635SKent Overstreet
63472a44517SKent Overstreet struct task_struct *gc_thread;
635cafe5635SKent Overstreet /* Where in the btree gc currently is */
636cafe5635SKent Overstreet struct bkey gc_done;
637cafe5635SKent Overstreet
638cafe5635SKent Overstreet /*
6397a671d8eSColy Li * For automatical garbage collection after writeback completed, this
6407a671d8eSColy Li * varialbe is used as bit fields,
6417a671d8eSColy Li * - 0000 0001b (BCH_ENABLE_AUTO_GC): enable gc after writeback
6427a671d8eSColy Li * - 0000 0010b (BCH_DO_AUTO_GC): do gc after writeback
6437a671d8eSColy Li * This is an optimization for following write request after writeback
6447a671d8eSColy Li * finished, but read hit rate dropped due to clean data on cache is
6457a671d8eSColy Li * discarded. Unless user explicitly sets it via sysfs, it won't be
6467a671d8eSColy Li * enabled.
6477a671d8eSColy Li */
6487a671d8eSColy Li #define BCH_ENABLE_AUTO_GC 1
6497a671d8eSColy Li #define BCH_DO_AUTO_GC 2
6507a671d8eSColy Li uint8_t gc_after_writeback;
6517a671d8eSColy Li
6527a671d8eSColy Li /*
653cafe5635SKent Overstreet * The allocation code needs gc_mark in struct bucket to be correct, but
654cafe5635SKent Overstreet * it's not while a gc is in progress. Protected by bucket_lock.
655cafe5635SKent Overstreet */
656cafe5635SKent Overstreet int gc_mark_valid;
657cafe5635SKent Overstreet
658cafe5635SKent Overstreet /* Counts how many sectors bio_insert has added to the cache */
659cafe5635SKent Overstreet atomic_t sectors_to_gc;
660be628be0SKent Overstreet wait_queue_head_t gc_wait;
661cafe5635SKent Overstreet
662cafe5635SKent Overstreet struct keybuf moving_gc_keys;
663cafe5635SKent Overstreet /* Number of moving GC bios in flight */
66472a44517SKent Overstreet struct semaphore moving_in_flight;
665cafe5635SKent Overstreet
666da415a09SNicholas Swenson struct workqueue_struct *moving_gc_wq;
667da415a09SNicholas Swenson
668cafe5635SKent Overstreet struct btree *root;
669cafe5635SKent Overstreet
670cafe5635SKent Overstreet #ifdef CONFIG_BCACHE_DEBUG
671cafe5635SKent Overstreet struct btree *verify_data;
67278b77bf8SKent Overstreet struct bset *verify_ondisk;
673cafe5635SKent Overstreet struct mutex verify_lock;
674cafe5635SKent Overstreet #endif
675cafe5635SKent Overstreet
6761132e56eSColy Li uint8_t set_uuid[16];
6776f10f7d1SColy Li unsigned int nr_uuids;
678cafe5635SKent Overstreet struct uuid_entry *uuids;
679cafe5635SKent Overstreet BKEY_PADDED(uuid_bucket);
680cb7a583eSKent Overstreet struct closure uuid_write;
681cb7a583eSKent Overstreet struct semaphore uuid_write_mutex;
682cafe5635SKent Overstreet
683cafe5635SKent Overstreet /*
684cafe5635SKent Overstreet * A btree node on disk could have too many bsets for an iterator to fit
685d2f96f48SShenghui Wang * on the stack - have to dynamically allocate them.
686d2f96f48SShenghui Wang * bch_cache_set_alloc() will make sure the pool can allocate iterators
687d2f96f48SShenghui Wang * equipped with enough room that can host
688d2f96f48SShenghui Wang * (sb.bucket_size / sb.block_size)
689d2f96f48SShenghui Wang * btree_iter_sets, which is more than static MAX_BSETS.
690cafe5635SKent Overstreet */
691d19936a2SKent Overstreet mempool_t fill_iter;
692cafe5635SKent Overstreet
69367539e85SKent Overstreet struct bset_sort_state sort;
694cafe5635SKent Overstreet
695cafe5635SKent Overstreet /* List of buckets we're currently writing data to */
696cafe5635SKent Overstreet struct list_head data_buckets;
697cafe5635SKent Overstreet spinlock_t data_bucket_lock;
698cafe5635SKent Overstreet
699cafe5635SKent Overstreet struct journal journal;
700cafe5635SKent Overstreet
701cafe5635SKent Overstreet #define CONGESTED_MAX 1024
7026f10f7d1SColy Li unsigned int congested_last_us;
703cafe5635SKent Overstreet atomic_t congested;
704cafe5635SKent Overstreet
705cafe5635SKent Overstreet /* The rest of this all shows up in sysfs */
7066f10f7d1SColy Li unsigned int congested_read_threshold_us;
7076f10f7d1SColy Li unsigned int congested_write_threshold_us;
708cafe5635SKent Overstreet
709cafe5635SKent Overstreet struct time_stats btree_gc_time;
710cafe5635SKent Overstreet struct time_stats btree_split_time;
711cafe5635SKent Overstreet struct time_stats btree_read_time;
712cafe5635SKent Overstreet
713cafe5635SKent Overstreet atomic_long_t cache_read_races;
714cafe5635SKent Overstreet atomic_long_t writeback_keys_done;
715cafe5635SKent Overstreet atomic_long_t writeback_keys_failed;
71677c320ebSKent Overstreet
717a728eacbSTang Junhui atomic_long_t reclaim;
718dff90d58SColy Li atomic_long_t reclaimed_journal_buckets;
719a728eacbSTang Junhui atomic_long_t flush_write;
720a728eacbSTang Junhui
72177c320ebSKent Overstreet enum {
72277c320ebSKent Overstreet ON_ERROR_UNREGISTER,
72377c320ebSKent Overstreet ON_ERROR_PANIC,
72477c320ebSKent Overstreet } on_error;
7257ba0d830SColy Li #define DEFAULT_IO_ERROR_LIMIT 8
7266f10f7d1SColy Li unsigned int error_limit;
7276f10f7d1SColy Li unsigned int error_decay;
72877c320ebSKent Overstreet
729cafe5635SKent Overstreet unsigned short journal_delay_ms;
730a85e968eSKent Overstreet bool expensive_debug_checks;
7316f10f7d1SColy Li unsigned int verify:1;
7326f10f7d1SColy Li unsigned int key_merging_disabled:1;
7336f10f7d1SColy Li unsigned int gc_always_rewrite:1;
7346f10f7d1SColy Li unsigned int shrinker_disabled:1;
7356f10f7d1SColy Li unsigned int copy_gc_enabled:1;
736c5fcdedcSColy Li unsigned int idle_max_writeback_rate_enabled:1;
737cafe5635SKent Overstreet
738cafe5635SKent Overstreet #define BUCKET_HASH_BITS 12
739cafe5635SKent Overstreet struct hlist_head bucket_hash[1 << BUCKET_HASH_BITS];
740cafe5635SKent Overstreet };
741cafe5635SKent Overstreet
742cafe5635SKent Overstreet struct bbio {
7436f10f7d1SColy Li unsigned int submit_time_us;
744cafe5635SKent Overstreet union {
745cafe5635SKent Overstreet struct bkey key;
746cafe5635SKent Overstreet uint64_t _pad[3];
747cafe5635SKent Overstreet /*
748cafe5635SKent Overstreet * We only need pad = 3 here because we only ever carry around a
749cafe5635SKent Overstreet * single pointer - i.e. the pointer we're doing io to/from.
750cafe5635SKent Overstreet */
751cafe5635SKent Overstreet };
752cafe5635SKent Overstreet struct bio bio;
753cafe5635SKent Overstreet };
754cafe5635SKent Overstreet
755cafe5635SKent Overstreet #define BTREE_PRIO USHRT_MAX
756e0a985a4SKent Overstreet #define INITIAL_PRIO 32768U
757cafe5635SKent Overstreet
758cafe5635SKent Overstreet #define btree_bytes(c) ((c)->btree_pages * PAGE_SIZE)
759cafe5635SKent Overstreet #define btree_blocks(b) \
7606f10f7d1SColy Li ((unsigned int) (KEY_SIZE(&b->key) >> (b)->c->block_bits))
761cafe5635SKent Overstreet
762cafe5635SKent Overstreet #define btree_default_blocks(c) \
7636f10f7d1SColy Li ((unsigned int) ((PAGE_SECTORS * (c)->btree_pages) >> (c)->block_bits))
764cafe5635SKent Overstreet
76563a96c05SColy Li #define bucket_bytes(ca) ((ca)->sb.bucket_size << 9)
7664e1ebae3SColy Li #define block_bytes(ca) ((ca)->sb.block_size << 9)
767cafe5635SKent Overstreet
meta_bucket_pages(struct cache_sb * sb)768de1fafabSColy Li static inline unsigned int meta_bucket_pages(struct cache_sb *sb)
769de1fafabSColy Li {
770de1fafabSColy Li unsigned int n, max_pages;
771de1fafabSColy Li
772de1fafabSColy Li max_pages = min_t(unsigned int,
773de1fafabSColy Li __rounddown_pow_of_two(USHRT_MAX) / PAGE_SECTORS,
774de1fafabSColy Li MAX_ORDER_NR_PAGES);
775de1fafabSColy Li
776de1fafabSColy Li n = sb->bucket_size / PAGE_SECTORS;
777de1fafabSColy Li if (n > max_pages)
778de1fafabSColy Li n = max_pages;
779de1fafabSColy Li
780de1fafabSColy Li return n;
781de1fafabSColy Li }
782de1fafabSColy Li
meta_bucket_bytes(struct cache_sb * sb)783de1fafabSColy Li static inline unsigned int meta_bucket_bytes(struct cache_sb *sb)
784de1fafabSColy Li {
785de1fafabSColy Li return meta_bucket_pages(sb) << PAGE_SHIFT;
786de1fafabSColy Li }
787de1fafabSColy Li
788c954ac8dSColy Li #define prios_per_bucket(ca) \
789c954ac8dSColy Li ((meta_bucket_bytes(&(ca)->sb) - sizeof(struct prio_set)) / \
790cafe5635SKent Overstreet sizeof(struct bucket_disk))
791c954ac8dSColy Li
792c954ac8dSColy Li #define prio_buckets(ca) \
793c954ac8dSColy Li DIV_ROUND_UP((size_t) (ca)->sb.nbuckets, prios_per_bucket(ca))
794cafe5635SKent Overstreet
sector_to_bucket(struct cache_set * c,sector_t s)795cafe5635SKent Overstreet static inline size_t sector_to_bucket(struct cache_set *c, sector_t s)
796cafe5635SKent Overstreet {
797cafe5635SKent Overstreet return s >> c->bucket_bits;
798cafe5635SKent Overstreet }
799cafe5635SKent Overstreet
bucket_to_sector(struct cache_set * c,size_t b)800cafe5635SKent Overstreet static inline sector_t bucket_to_sector(struct cache_set *c, size_t b)
801cafe5635SKent Overstreet {
802cafe5635SKent Overstreet return ((sector_t) b) << c->bucket_bits;
803cafe5635SKent Overstreet }
804cafe5635SKent Overstreet
bucket_remainder(struct cache_set * c,sector_t s)805cafe5635SKent Overstreet static inline sector_t bucket_remainder(struct cache_set *c, sector_t s)
806cafe5635SKent Overstreet {
8074a784266SColy Li return s & (c->cache->sb.bucket_size - 1);
808cafe5635SKent Overstreet }
809cafe5635SKent Overstreet
PTR_BUCKET_NR(struct cache_set * c,const struct bkey * k,unsigned int ptr)810cafe5635SKent Overstreet static inline size_t PTR_BUCKET_NR(struct cache_set *c,
811cafe5635SKent Overstreet const struct bkey *k,
8126f10f7d1SColy Li unsigned int ptr)
813cafe5635SKent Overstreet {
814cafe5635SKent Overstreet return sector_to_bucket(c, PTR_OFFSET(k, ptr));
815cafe5635SKent Overstreet }
816cafe5635SKent Overstreet
PTR_BUCKET(struct cache_set * c,const struct bkey * k,unsigned int ptr)817cafe5635SKent Overstreet static inline struct bucket *PTR_BUCKET(struct cache_set *c,
818cafe5635SKent Overstreet const struct bkey *k,
8196f10f7d1SColy Li unsigned int ptr)
820cafe5635SKent Overstreet {
82111e9560eSChristoph Hellwig return c->cache->buckets + PTR_BUCKET_NR(c, k, ptr);
822cafe5635SKent Overstreet }
823cafe5635SKent Overstreet
gen_after(uint8_t a,uint8_t b)8249a02b7eeSKent Overstreet static inline uint8_t gen_after(uint8_t a, uint8_t b)
8259a02b7eeSKent Overstreet {
8269a02b7eeSKent Overstreet uint8_t r = a - b;
8271fae7cf0SColy Li
8289a02b7eeSKent Overstreet return r > 128U ? 0 : r;
8299a02b7eeSKent Overstreet }
8309a02b7eeSKent Overstreet
ptr_stale(struct cache_set * c,const struct bkey * k,unsigned int i)8319a02b7eeSKent Overstreet static inline uint8_t ptr_stale(struct cache_set *c, const struct bkey *k,
8326f10f7d1SColy Li unsigned int i)
8339a02b7eeSKent Overstreet {
8349a02b7eeSKent Overstreet return gen_after(PTR_BUCKET(c, k, i)->gen, PTR_GEN(k, i));
8359a02b7eeSKent Overstreet }
8369a02b7eeSKent Overstreet
ptr_available(struct cache_set * c,const struct bkey * k,unsigned int i)8379a02b7eeSKent Overstreet static inline bool ptr_available(struct cache_set *c, const struct bkey *k,
8386f10f7d1SColy Li unsigned int i)
8399a02b7eeSKent Overstreet {
84011e9560eSChristoph Hellwig return (PTR_DEV(k, i) < MAX_CACHES_PER_SET) && c->cache;
8419a02b7eeSKent Overstreet }
8429a02b7eeSKent Overstreet
843cafe5635SKent Overstreet /* Btree key macros */
844cafe5635SKent Overstreet
845cafe5635SKent Overstreet /*
846cafe5635SKent Overstreet * This is used for various on disk data structures - cache_sb, prio_set, bset,
847cafe5635SKent Overstreet * jset: The checksum is _always_ the first 8 bytes of these structs
848cafe5635SKent Overstreet */
849cafe5635SKent Overstreet #define csum_set(i) \
850169ef1cfSKent Overstreet bch_crc64(((void *) (i)) + sizeof(uint64_t), \
851fafff81cSKent Overstreet ((void *) bset_bkey_last(i)) - \
852fafff81cSKent Overstreet (((void *) (i)) + sizeof(uint64_t)))
853cafe5635SKent Overstreet
854cafe5635SKent Overstreet /* Error handling macros */
855cafe5635SKent Overstreet
856cafe5635SKent Overstreet #define btree_bug(b, ...) \
857cafe5635SKent Overstreet do { \
858cafe5635SKent Overstreet if (bch_cache_set_error((b)->c, __VA_ARGS__)) \
859cafe5635SKent Overstreet dump_stack(); \
860cafe5635SKent Overstreet } while (0)
861cafe5635SKent Overstreet
862cafe5635SKent Overstreet #define cache_bug(c, ...) \
863cafe5635SKent Overstreet do { \
864cafe5635SKent Overstreet if (bch_cache_set_error(c, __VA_ARGS__)) \
865cafe5635SKent Overstreet dump_stack(); \
866cafe5635SKent Overstreet } while (0)
867cafe5635SKent Overstreet
868cafe5635SKent Overstreet #define btree_bug_on(cond, b, ...) \
869cafe5635SKent Overstreet do { \
870cafe5635SKent Overstreet if (cond) \
871cafe5635SKent Overstreet btree_bug(b, __VA_ARGS__); \
872cafe5635SKent Overstreet } while (0)
873cafe5635SKent Overstreet
874cafe5635SKent Overstreet #define cache_bug_on(cond, c, ...) \
875cafe5635SKent Overstreet do { \
876cafe5635SKent Overstreet if (cond) \
877cafe5635SKent Overstreet cache_bug(c, __VA_ARGS__); \
878cafe5635SKent Overstreet } while (0)
879cafe5635SKent Overstreet
880cafe5635SKent Overstreet #define cache_set_err_on(cond, c, ...) \
881cafe5635SKent Overstreet do { \
882cafe5635SKent Overstreet if (cond) \
883cafe5635SKent Overstreet bch_cache_set_error(c, __VA_ARGS__); \
884cafe5635SKent Overstreet } while (0)
885cafe5635SKent Overstreet
886cafe5635SKent Overstreet /* Looping macros */
887cafe5635SKent Overstreet
888cafe5635SKent Overstreet #define for_each_bucket(b, ca) \
889cafe5635SKent Overstreet for (b = (ca)->buckets + (ca)->sb.first_bucket; \
890cafe5635SKent Overstreet b < (ca)->buckets + (ca)->sb.nbuckets; b++)
891cafe5635SKent Overstreet
cached_dev_put(struct cached_dev * dc)892cafe5635SKent Overstreet static inline void cached_dev_put(struct cached_dev *dc)
893cafe5635SKent Overstreet {
8943b304d24SElena Reshetova if (refcount_dec_and_test(&dc->count))
895cafe5635SKent Overstreet schedule_work(&dc->detach);
896cafe5635SKent Overstreet }
897cafe5635SKent Overstreet
cached_dev_get(struct cached_dev * dc)898cafe5635SKent Overstreet static inline bool cached_dev_get(struct cached_dev *dc)
899cafe5635SKent Overstreet {
9003b304d24SElena Reshetova if (!refcount_inc_not_zero(&dc->count))
901cafe5635SKent Overstreet return false;
902cafe5635SKent Overstreet
903cafe5635SKent Overstreet /* Paired with the mb in cached_dev_attach */
9044e857c58SPeter Zijlstra smp_mb__after_atomic();
905cafe5635SKent Overstreet return true;
906cafe5635SKent Overstreet }
907cafe5635SKent Overstreet
908cafe5635SKent Overstreet /*
909cafe5635SKent Overstreet * bucket_gc_gen() returns the difference between the bucket's current gen and
910cafe5635SKent Overstreet * the oldest gen of any pointer into that bucket in the btree (last_gc).
911cafe5635SKent Overstreet */
912cafe5635SKent Overstreet
bucket_gc_gen(struct bucket * b)913cafe5635SKent Overstreet static inline uint8_t bucket_gc_gen(struct bucket *b)
914cafe5635SKent Overstreet {
915cafe5635SKent Overstreet return b->gen - b->last_gc;
916cafe5635SKent Overstreet }
917cafe5635SKent Overstreet
918cafe5635SKent Overstreet #define BUCKET_GC_GEN_MAX 96U
919cafe5635SKent Overstreet
920cafe5635SKent Overstreet #define kobj_attribute_write(n, fn) \
921958bf494SColy Li static struct kobj_attribute ksysfs_##n = __ATTR(n, 0200, NULL, fn)
922cafe5635SKent Overstreet
923cafe5635SKent Overstreet #define kobj_attribute_rw(n, show, store) \
924cafe5635SKent Overstreet static struct kobj_attribute ksysfs_##n = \
925958bf494SColy Li __ATTR(n, 0600, show, store)
926cafe5635SKent Overstreet
wake_up_allocators(struct cache_set * c)927119ba0f8SKent Overstreet static inline void wake_up_allocators(struct cache_set *c)
928119ba0f8SKent Overstreet {
92908fdb2cdSColy Li struct cache *ca = c->cache;
930119ba0f8SKent Overstreet
931119ba0f8SKent Overstreet wake_up_process(ca->alloc_thread);
932119ba0f8SKent Overstreet }
933119ba0f8SKent Overstreet
closure_bio_submit(struct cache_set * c,struct bio * bio,struct closure * cl)934771f393eSColy Li static inline void closure_bio_submit(struct cache_set *c,
935771f393eSColy Li struct bio *bio,
936771f393eSColy Li struct closure *cl)
937771f393eSColy Li {
938771f393eSColy Li closure_get(cl);
939771f393eSColy Li if (unlikely(test_bit(CACHE_SET_IO_DISABLE, &c->flags))) {
940771f393eSColy Li bio->bi_status = BLK_STS_IOERR;
941771f393eSColy Li bio_endio(bio);
942771f393eSColy Li return;
943771f393eSColy Li }
944ed00aabdSChristoph Hellwig submit_bio_noacct(bio);
945771f393eSColy Li }
946771f393eSColy Li
947771f393eSColy Li /*
948771f393eSColy Li * Prevent the kthread exits directly, and make sure when kthread_stop()
949771f393eSColy Li * is called to stop a kthread, it is still alive. If a kthread might be
950771f393eSColy Li * stopped by CACHE_SET_IO_DISABLE bit set, wait_for_kthread_stop() is
951771f393eSColy Li * necessary before the kthread returns.
952771f393eSColy Li */
wait_for_kthread_stop(void)953771f393eSColy Li static inline void wait_for_kthread_stop(void)
954771f393eSColy Li {
955771f393eSColy Li while (!kthread_should_stop()) {
956771f393eSColy Li set_current_state(TASK_INTERRUPTIBLE);
957771f393eSColy Li schedule();
958771f393eSColy Li }
959771f393eSColy Li }
960771f393eSColy Li
961cafe5635SKent Overstreet /* Forward declarations */
962cafe5635SKent Overstreet
963c7b7bd07SColy Li void bch_count_backing_io_errors(struct cached_dev *dc, struct bio *bio);
964fc2d5988SColy Li void bch_count_io_errors(struct cache *ca, blk_status_t error,
965fc2d5988SColy Li int is_read, const char *m);
966fc2d5988SColy Li void bch_bbio_count_io_errors(struct cache_set *c, struct bio *bio,
967fc2d5988SColy Li blk_status_t error, const char *m);
968fc2d5988SColy Li void bch_bbio_endio(struct cache_set *c, struct bio *bio,
969fc2d5988SColy Li blk_status_t error, const char *m);
970fc2d5988SColy Li void bch_bbio_free(struct bio *bio, struct cache_set *c);
971fc2d5988SColy Li struct bio *bch_bbio_alloc(struct cache_set *c);
972cafe5635SKent Overstreet
973fc2d5988SColy Li void __bch_submit_bbio(struct bio *bio, struct cache_set *c);
974fc2d5988SColy Li void bch_submit_bbio(struct bio *bio, struct cache_set *c,
975fc2d5988SColy Li struct bkey *k, unsigned int ptr);
976cafe5635SKent Overstreet
977fc2d5988SColy Li uint8_t bch_inc_gen(struct cache *ca, struct bucket *b);
978fc2d5988SColy Li void bch_rescale_priorities(struct cache_set *c, int sectors);
979cafe5635SKent Overstreet
980fc2d5988SColy Li bool bch_can_invalidate_bucket(struct cache *ca, struct bucket *b);
981fc2d5988SColy Li void __bch_invalidate_one_bucket(struct cache *ca, struct bucket *b);
9822531d9eeSKent Overstreet
983fc2d5988SColy Li void __bch_bucket_free(struct cache *ca, struct bucket *b);
984fc2d5988SColy Li void bch_bucket_free(struct cache_set *c, struct bkey *k);
985cafe5635SKent Overstreet
986fc2d5988SColy Li long bch_bucket_alloc(struct cache *ca, unsigned int reserve, bool wait);
987fc2d5988SColy Li int __bch_bucket_alloc_set(struct cache_set *c, unsigned int reserve,
98817e4aed8SColy Li struct bkey *k, bool wait);
989fc2d5988SColy Li int bch_bucket_alloc_set(struct cache_set *c, unsigned int reserve,
99017e4aed8SColy Li struct bkey *k, bool wait);
991fc2d5988SColy Li bool bch_alloc_sectors(struct cache_set *c, struct bkey *k,
992fc2d5988SColy Li unsigned int sectors, unsigned int write_point,
993fc2d5988SColy Li unsigned int write_prio, bool wait);
994c7b7bd07SColy Li bool bch_cached_dev_error(struct cached_dev *dc);
995cafe5635SKent Overstreet
996cafe5635SKent Overstreet __printf(2, 3)
997fc2d5988SColy Li bool bch_cache_set_error(struct cache_set *c, const char *fmt, ...);
998cafe5635SKent Overstreet
99984c529aeSAndrea Righi int bch_prio_write(struct cache *ca, bool wait);
1000fc2d5988SColy Li void bch_write_bdev_super(struct cached_dev *dc, struct closure *parent);
1001cafe5635SKent Overstreet
100272a44517SKent Overstreet extern struct workqueue_struct *bcache_wq;
10030f843e65SGuoju Fang extern struct workqueue_struct *bch_journal_wq;
1004afe78ab4SKai Krakow extern struct workqueue_struct *bch_flush_wq;
1005cafe5635SKent Overstreet extern struct mutex bch_register_lock;
1006cafe5635SKent Overstreet extern struct list_head bch_cache_sets;
1007cafe5635SKent Overstreet
1008b98dd0b0SThomas Weißschuh extern const struct kobj_type bch_cached_dev_ktype;
1009b98dd0b0SThomas Weißschuh extern const struct kobj_type bch_flash_dev_ktype;
1010b98dd0b0SThomas Weißschuh extern const struct kobj_type bch_cache_set_ktype;
1011b98dd0b0SThomas Weißschuh extern const struct kobj_type bch_cache_set_internal_ktype;
1012b98dd0b0SThomas Weißschuh extern const struct kobj_type bch_cache_ktype;
1013cafe5635SKent Overstreet
1014fc2d5988SColy Li void bch_cached_dev_release(struct kobject *kobj);
1015fc2d5988SColy Li void bch_flash_dev_release(struct kobject *kobj);
1016fc2d5988SColy Li void bch_cache_set_release(struct kobject *kobj);
1017fc2d5988SColy Li void bch_cache_release(struct kobject *kobj);
1018cafe5635SKent Overstreet
1019fc2d5988SColy Li int bch_uuid_write(struct cache_set *c);
1020fc2d5988SColy Li void bcache_write_super(struct cache_set *c);
1021cafe5635SKent Overstreet
1022cafe5635SKent Overstreet int bch_flash_dev_create(struct cache_set *c, uint64_t size);
1023cafe5635SKent Overstreet
1024fc2d5988SColy Li int bch_cached_dev_attach(struct cached_dev *dc, struct cache_set *c,
1025fc2d5988SColy Li uint8_t *set_uuid);
1026fc2d5988SColy Li void bch_cached_dev_detach(struct cached_dev *dc);
10270b13efecSColy Li int bch_cached_dev_run(struct cached_dev *dc);
1028fc2d5988SColy Li void bcache_device_stop(struct bcache_device *d);
1029cafe5635SKent Overstreet
1030fc2d5988SColy Li void bch_cache_set_unregister(struct cache_set *c);
1031fc2d5988SColy Li void bch_cache_set_stop(struct cache_set *c);
1032cafe5635SKent Overstreet
1033fc2d5988SColy Li struct cache_set *bch_cache_set_alloc(struct cache_sb *sb);
1034fc2d5988SColy Li void bch_btree_cache_free(struct cache_set *c);
1035fc2d5988SColy Li int bch_btree_cache_alloc(struct cache_set *c);
1036fc2d5988SColy Li void bch_moving_init_cache_set(struct cache_set *c);
1037fc2d5988SColy Li int bch_open_buckets_alloc(struct cache_set *c);
1038fc2d5988SColy Li void bch_open_buckets_free(struct cache_set *c);
1039cafe5635SKent Overstreet
1040119ba0f8SKent Overstreet int bch_cache_allocator_start(struct cache *ca);
1041cafe5635SKent Overstreet
1042cafe5635SKent Overstreet void bch_debug_exit(void);
104391bafdf0SDongbo Cao void bch_debug_init(void);
1044cafe5635SKent Overstreet void bch_request_exit(void);
1045cafe5635SKent Overstreet int bch_request_init(void);
10469f233ffeSKai Krakow void bch_btree_exit(void);
10479f233ffeSKai Krakow int bch_btree_init(void);
1048cafe5635SKent Overstreet
1049cafe5635SKent Overstreet #endif /* _BCACHE_H */
1050