blob: 01b1b7e23cf2c1118b1fe6cd05490b29a5a4aced [file] [log] [blame]
Kent Overstreetcafe5632013-03-23 16:11:31 -07001/*
2 * Copyright (C) 2010 Kent Overstreet <kent.overstreet@gmail.com>
3 *
4 * Uses a block device as cache for other block devices; optimized for SSDs.
5 * All allocation is done in buckets, which should match the erase block size
6 * of the device.
7 *
8 * Buckets containing cached data are kept on a heap sorted by priority;
9 * bucket priority is increased on cache hit, and periodically all the buckets
10 * on the heap have their priority scaled down. This currently is just used as
11 * an LRU but in the future should allow for more intelligent heuristics.
12 *
13 * Buckets have an 8 bit counter; freeing is accomplished by incrementing the
14 * counter. Garbage collection is used to remove stale pointers.
15 *
16 * Indexing is done via a btree; nodes are not necessarily fully sorted, rather
17 * as keys are inserted we only sort the pages that have not yet been written.
18 * When garbage collection is run, we resort the entire node.
19 *
20 * All configuration is done via sysfs; see Documentation/bcache.txt.
21 */
22
23#include "bcache.h"
24#include "btree.h"
25#include "debug.h"
Kent Overstreet65d45232013-12-20 17:22:05 -080026#include "extents.h"
Kent Overstreetcafe5632013-03-23 16:11:31 -070027
28#include <linux/slab.h>
29#include <linux/bitops.h>
Kent Overstreet72a44512013-10-24 17:19:26 -070030#include <linux/freezer.h>
Kent Overstreetcafe5632013-03-23 16:11:31 -070031#include <linux/hash.h>
Kent Overstreet72a44512013-10-24 17:19:26 -070032#include <linux/kthread.h>
Geert Uytterhoevencd953ed2013-03-27 18:56:28 +010033#include <linux/prefetch.h>
Kent Overstreetcafe5632013-03-23 16:11:31 -070034#include <linux/random.h>
35#include <linux/rcupdate.h>
36#include <trace/events/bcache.h>
37
38/*
39 * Todo:
40 * register_bcache: Return errors out to userspace correctly
41 *
42 * Writeback: don't undirty key until after a cache flush
43 *
44 * Create an iterator for key pointers
45 *
46 * On btree write error, mark bucket such that it won't be freed from the cache
47 *
48 * Journalling:
49 * Check for bad keys in replay
50 * Propagate barriers
51 * Refcount journal entries in journal_replay
52 *
53 * Garbage collection:
54 * Finish incremental gc
55 * Gc should free old UUIDs, data for invalid UUIDs
56 *
57 * Provide a way to list backing device UUIDs we have data cached for, and
58 * probably how long it's been since we've seen them, and a way to invalidate
59 * dirty data for devices that will never be attached again
60 *
61 * Keep 1 min/5 min/15 min statistics of how busy a block device has been, so
62 * that based on that and how much dirty data we have we can keep writeback
63 * from being starved
64 *
65 * Add a tracepoint or somesuch to watch for writeback starvation
66 *
67 * When btree depth > 1 and splitting an interior node, we have to make sure
68 * alloc_bucket() cannot fail. This should be true but is not completely
69 * obvious.
70 *
Kent Overstreetcafe5632013-03-23 16:11:31 -070071 * Plugging?
72 *
73 * If data write is less than hard sector size of ssd, round up offset in open
74 * bucket to the next whole sector
75 *
Kent Overstreetcafe5632013-03-23 16:11:31 -070076 * Superblock needs to be fleshed out for multiple cache devices
77 *
78 * Add a sysfs tunable for the number of writeback IOs in flight
79 *
80 * Add a sysfs tunable for the number of open data buckets
81 *
82 * IO tracking: Can we track when one process is doing io on behalf of another?
83 * IO tracking: Don't use just an average, weigh more recent stuff higher
84 *
85 * Test module load/unload
86 */
87
Kent Overstreetcafe5632013-03-23 16:11:31 -070088#define MAX_NEED_GC 64
89#define MAX_SAVE_PRIO 72
90
91#define PTR_DIRTY_BIT (((uint64_t) 1 << 36))
92
93#define PTR_HASH(c, k) \
94 (((k)->ptr[0] >> c->bucket_bits) | PTR_GEN(k, 0))
95
Kent Overstreetcafe5632013-03-23 16:11:31 -070096static struct workqueue_struct *btree_io_wq;
97
Kent Overstreetdf8e8972013-07-24 17:37:59 -070098#define insert_lock(s, b) ((b)->level <= (s)->lock)
99
100/*
101 * These macros are for recursing down the btree - they handle the details of
102 * locking and looking up nodes in the cache for you. They're best treated as
103 * mere syntax when reading code that uses them.
104 *
105 * op->lock determines whether we take a read or a write lock at a given depth.
106 * If you've got a read lock and find that you need a write lock (i.e. you're
107 * going to have to split), set op->lock and return -EINTR; btree_root() will
108 * call you again and you'll have the correct lock.
109 */
110
111/**
112 * btree - recurse down the btree on a specified key
113 * @fn: function to call, which will be passed the child node
114 * @key: key to recurse on
115 * @b: parent btree node
116 * @op: pointer to struct btree_op
117 */
118#define btree(fn, key, b, op, ...) \
119({ \
120 int _r, l = (b)->level - 1; \
121 bool _w = l <= (op)->lock; \
122 struct btree *_child = bch_btree_node_get((b)->c, key, l, _w); \
123 if (!IS_ERR(_child)) { \
124 _child->parent = (b); \
125 _r = bch_btree_ ## fn(_child, op, ##__VA_ARGS__); \
126 rw_unlock(_w, _child); \
127 } else \
128 _r = PTR_ERR(_child); \
129 _r; \
130})
131
132/**
133 * btree_root - call a function on the root of the btree
134 * @fn: function to call, which will be passed the child node
135 * @c: cache set
136 * @op: pointer to struct btree_op
137 */
138#define btree_root(fn, c, op, ...) \
139({ \
140 int _r = -EINTR; \
141 do { \
142 struct btree *_b = (c)->root; \
143 bool _w = insert_lock(op, _b); \
144 rw_lock(_w, _b, _b->level); \
145 if (_b == (c)->root && \
146 _w == insert_lock(op, _b)) { \
147 _b->parent = NULL; \
148 _r = bch_btree_ ## fn(_b, op, ##__VA_ARGS__); \
149 } \
150 rw_unlock(_w, _b); \
Kent Overstreet78365412013-12-17 01:29:34 -0800151 if (_r == -EINTR) \
152 schedule(); \
Kent Overstreetdf8e8972013-07-24 17:37:59 -0700153 bch_cannibalize_unlock(c); \
154 if (_r == -ENOSPC) { \
155 wait_event((c)->try_wait, \
156 !(c)->try_harder); \
157 _r = -EINTR; \
158 } \
159 } while (_r == -EINTR); \
160 \
Kent Overstreet78365412013-12-17 01:29:34 -0800161 finish_wait(&(c)->bucket_wait, &(op)->wait); \
Kent Overstreetdf8e8972013-07-24 17:37:59 -0700162 _r; \
163})
164
Kent Overstreeta85e9682013-12-20 17:28:16 -0800165static inline struct bset *write_block(struct btree *b)
166{
167 return ((void *) btree_bset_first(b)) + b->written * block_bytes(b->c);
168}
169
Kent Overstreet2a285682014-03-04 16:42:42 -0800170static void bch_btree_init_next(struct btree *b)
171{
172 /* If not a leaf node, always sort */
173 if (b->level && b->keys.nsets)
174 bch_btree_sort(&b->keys, &b->c->sort);
175 else
176 bch_btree_sort_lazy(&b->keys, &b->c->sort);
177
178 if (b->written < btree_blocks(b))
179 bch_bset_init_next(&b->keys, write_block(b),
180 bset_magic(&b->c->sb));
181
182}
183
Kent Overstreetcafe5632013-03-23 16:11:31 -0700184/* Btree key manipulation */
185
Kent Overstreet3a3b6a42013-07-24 16:46:42 -0700186void bkey_put(struct cache_set *c, struct bkey *k)
Kent Overstreete7c590e2013-09-10 18:39:16 -0700187{
188 unsigned i;
189
190 for (i = 0; i < KEY_PTRS(k); i++)
191 if (ptr_available(c, k, i))
192 atomic_dec_bug(&PTR_BUCKET(c, k, i)->pin);
193}
194
Kent Overstreetcafe5632013-03-23 16:11:31 -0700195/* Btree IO */
196
197static uint64_t btree_csum_set(struct btree *b, struct bset *i)
198{
199 uint64_t crc = b->key.ptr[0];
Kent Overstreetfafff812013-12-17 21:56:21 -0800200 void *data = (void *) i + 8, *end = bset_bkey_last(i);
Kent Overstreetcafe5632013-03-23 16:11:31 -0700201
Kent Overstreet169ef1c2013-03-28 12:50:55 -0600202 crc = bch_crc64_update(crc, data, end - data);
Kent Overstreetc19ed232013-03-26 13:49:02 -0700203 return crc ^ 0xffffffffffffffffULL;
Kent Overstreetcafe5632013-03-23 16:11:31 -0700204}
205
Kent Overstreet78b77bf2013-12-17 22:49:08 -0800206void bch_btree_node_read_done(struct btree *b)
Kent Overstreetcafe5632013-03-23 16:11:31 -0700207{
Kent Overstreetcafe5632013-03-23 16:11:31 -0700208 const char *err = "bad btree header";
Kent Overstreetee811282013-12-17 23:49:49 -0800209 struct bset *i = btree_bset_first(b);
Kent Overstreet57943512013-04-25 13:58:35 -0700210 struct btree_iter *iter;
Kent Overstreetcafe5632013-03-23 16:11:31 -0700211
Kent Overstreet57943512013-04-25 13:58:35 -0700212 iter = mempool_alloc(b->c->fill_iter, GFP_NOWAIT);
213 iter->size = b->c->sb.bucket_size / b->c->sb.block_size;
Kent Overstreetcafe5632013-03-23 16:11:31 -0700214 iter->used = 0;
215
Kent Overstreet280481d2013-10-24 16:36:03 -0700216#ifdef CONFIG_BCACHE_DEBUG
Kent Overstreetc052dd92013-11-11 17:35:24 -0800217 iter->b = &b->keys;
Kent Overstreet280481d2013-10-24 16:36:03 -0700218#endif
219
Kent Overstreet57943512013-04-25 13:58:35 -0700220 if (!i->seq)
Kent Overstreetcafe5632013-03-23 16:11:31 -0700221 goto err;
222
223 for (;
Kent Overstreeta85e9682013-12-20 17:28:16 -0800224 b->written < btree_blocks(b) && i->seq == b->keys.set[0].data->seq;
Kent Overstreetcafe5632013-03-23 16:11:31 -0700225 i = write_block(b)) {
226 err = "unsupported bset version";
227 if (i->version > BCACHE_BSET_VERSION)
228 goto err;
229
230 err = "bad btree header";
Kent Overstreetee811282013-12-17 23:49:49 -0800231 if (b->written + set_blocks(i, block_bytes(b->c)) >
232 btree_blocks(b))
Kent Overstreetcafe5632013-03-23 16:11:31 -0700233 goto err;
234
235 err = "bad magic";
Kent Overstreet81ab4192013-10-31 15:46:42 -0700236 if (i->magic != bset_magic(&b->c->sb))
Kent Overstreetcafe5632013-03-23 16:11:31 -0700237 goto err;
238
239 err = "bad checksum";
240 switch (i->version) {
241 case 0:
242 if (i->csum != csum_set(i))
243 goto err;
244 break;
245 case BCACHE_BSET_VERSION:
246 if (i->csum != btree_csum_set(b, i))
247 goto err;
248 break;
249 }
250
251 err = "empty set";
Kent Overstreeta85e9682013-12-20 17:28:16 -0800252 if (i != b->keys.set[0].data && !i->keys)
Kent Overstreetcafe5632013-03-23 16:11:31 -0700253 goto err;
254
Kent Overstreetfafff812013-12-17 21:56:21 -0800255 bch_btree_iter_push(iter, i->start, bset_bkey_last(i));
Kent Overstreetcafe5632013-03-23 16:11:31 -0700256
Kent Overstreetee811282013-12-17 23:49:49 -0800257 b->written += set_blocks(i, block_bytes(b->c));
Kent Overstreetcafe5632013-03-23 16:11:31 -0700258 }
259
260 err = "corrupted btree";
261 for (i = write_block(b);
Kent Overstreeta85e9682013-12-20 17:28:16 -0800262 bset_sector_offset(&b->keys, i) < KEY_SIZE(&b->key);
Kent Overstreetcafe5632013-03-23 16:11:31 -0700263 i = ((void *) i) + block_bytes(b->c))
Kent Overstreeta85e9682013-12-20 17:28:16 -0800264 if (i->seq == b->keys.set[0].data->seq)
Kent Overstreetcafe5632013-03-23 16:11:31 -0700265 goto err;
266
Kent Overstreeta85e9682013-12-20 17:28:16 -0800267 bch_btree_sort_and_fix_extents(&b->keys, iter, &b->c->sort);
Kent Overstreetcafe5632013-03-23 16:11:31 -0700268
Kent Overstreeta85e9682013-12-20 17:28:16 -0800269 i = b->keys.set[0].data;
Kent Overstreetcafe5632013-03-23 16:11:31 -0700270 err = "short btree key";
Kent Overstreeta85e9682013-12-20 17:28:16 -0800271 if (b->keys.set[0].size &&
272 bkey_cmp(&b->key, &b->keys.set[0].end) < 0)
Kent Overstreetcafe5632013-03-23 16:11:31 -0700273 goto err;
274
275 if (b->written < btree_blocks(b))
Kent Overstreeta85e9682013-12-20 17:28:16 -0800276 bch_bset_init_next(&b->keys, write_block(b),
277 bset_magic(&b->c->sb));
Kent Overstreetcafe5632013-03-23 16:11:31 -0700278out:
Kent Overstreet57943512013-04-25 13:58:35 -0700279 mempool_free(iter, b->c->fill_iter);
280 return;
Kent Overstreetcafe5632013-03-23 16:11:31 -0700281err:
282 set_btree_node_io_error(b);
Kent Overstreet88b9f8c2013-12-17 21:46:35 -0800283 bch_cache_set_error(b->c, "%s at bucket %zu, block %u, %u keys",
Kent Overstreetcafe5632013-03-23 16:11:31 -0700284 err, PTR_BUCKET_NR(b->c, &b->key, 0),
Kent Overstreet88b9f8c2013-12-17 21:46:35 -0800285 bset_block_offset(b, i), i->keys);
Kent Overstreetcafe5632013-03-23 16:11:31 -0700286 goto out;
287}
288
Kent Overstreet57943512013-04-25 13:58:35 -0700289static void btree_node_read_endio(struct bio *bio, int error)
Kent Overstreetcafe5632013-03-23 16:11:31 -0700290{
Kent Overstreet57943512013-04-25 13:58:35 -0700291 struct closure *cl = bio->bi_private;
292 closure_put(cl);
293}
Kent Overstreetcafe5632013-03-23 16:11:31 -0700294
Kent Overstreet78b77bf2013-12-17 22:49:08 -0800295static void bch_btree_node_read(struct btree *b)
Kent Overstreet57943512013-04-25 13:58:35 -0700296{
297 uint64_t start_time = local_clock();
298 struct closure cl;
299 struct bio *bio;
Kent Overstreetcafe5632013-03-23 16:11:31 -0700300
Kent Overstreetc37511b2013-04-26 15:39:55 -0700301 trace_bcache_btree_read(b);
302
Kent Overstreet57943512013-04-25 13:58:35 -0700303 closure_init_stack(&cl);
Kent Overstreetcafe5632013-03-23 16:11:31 -0700304
Kent Overstreet57943512013-04-25 13:58:35 -0700305 bio = bch_bbio_alloc(b->c);
306 bio->bi_rw = REQ_META|READ_SYNC;
Kent Overstreet4f024f32013-10-11 15:44:27 -0700307 bio->bi_iter.bi_size = KEY_SIZE(&b->key) << 9;
Kent Overstreet57943512013-04-25 13:58:35 -0700308 bio->bi_end_io = btree_node_read_endio;
309 bio->bi_private = &cl;
310
Kent Overstreeta85e9682013-12-20 17:28:16 -0800311 bch_bio_map(bio, b->keys.set[0].data);
Kent Overstreet57943512013-04-25 13:58:35 -0700312
Kent Overstreet57943512013-04-25 13:58:35 -0700313 bch_submit_bbio(bio, b->c, &b->key, 0);
314 closure_sync(&cl);
315
316 if (!test_bit(BIO_UPTODATE, &bio->bi_flags))
317 set_btree_node_io_error(b);
318
319 bch_bbio_free(bio, b->c);
320
321 if (btree_node_io_error(b))
322 goto err;
323
324 bch_btree_node_read_done(b);
Kent Overstreet57943512013-04-25 13:58:35 -0700325 bch_time_stats_update(&b->c->btree_read_time, start_time);
Kent Overstreet57943512013-04-25 13:58:35 -0700326
327 return;
328err:
Geert Uytterhoeven61cbd252013-09-23 23:17:30 -0700329 bch_cache_set_error(b->c, "io error reading bucket %zu",
Kent Overstreet57943512013-04-25 13:58:35 -0700330 PTR_BUCKET_NR(b->c, &b->key, 0));
Kent Overstreetcafe5632013-03-23 16:11:31 -0700331}
332
333static void btree_complete_write(struct btree *b, struct btree_write *w)
334{
335 if (w->prio_blocked &&
336 !atomic_sub_return(w->prio_blocked, &b->c->prio_blocked))
Kent Overstreet119ba0f2013-04-24 19:01:12 -0700337 wake_up_allocators(b->c);
Kent Overstreetcafe5632013-03-23 16:11:31 -0700338
339 if (w->journal) {
340 atomic_dec_bug(w->journal);
341 __closure_wake_up(&b->c->journal.wait);
342 }
343
Kent Overstreetcafe5632013-03-23 16:11:31 -0700344 w->prio_blocked = 0;
345 w->journal = NULL;
Kent Overstreetcafe5632013-03-23 16:11:31 -0700346}
347
Kent Overstreetcb7a5832013-12-16 15:27:25 -0800348static void btree_node_write_unlock(struct closure *cl)
349{
350 struct btree *b = container_of(cl, struct btree, io);
351
352 up(&b->io_mutex);
353}
354
Kent Overstreet57943512013-04-25 13:58:35 -0700355static void __btree_node_write_done(struct closure *cl)
Kent Overstreetcafe5632013-03-23 16:11:31 -0700356{
Kent Overstreetcb7a5832013-12-16 15:27:25 -0800357 struct btree *b = container_of(cl, struct btree, io);
Kent Overstreetcafe5632013-03-23 16:11:31 -0700358 struct btree_write *w = btree_prev_write(b);
359
360 bch_bbio_free(b->bio, b->c);
361 b->bio = NULL;
362 btree_complete_write(b, w);
363
364 if (btree_node_dirty(b))
365 queue_delayed_work(btree_io_wq, &b->work,
366 msecs_to_jiffies(30000));
367
Kent Overstreetcb7a5832013-12-16 15:27:25 -0800368 closure_return_with_destructor(cl, btree_node_write_unlock);
Kent Overstreetcafe5632013-03-23 16:11:31 -0700369}
370
Kent Overstreet57943512013-04-25 13:58:35 -0700371static void btree_node_write_done(struct closure *cl)
Kent Overstreetcafe5632013-03-23 16:11:31 -0700372{
Kent Overstreetcb7a5832013-12-16 15:27:25 -0800373 struct btree *b = container_of(cl, struct btree, io);
Kent Overstreetcafe5632013-03-23 16:11:31 -0700374 struct bio_vec *bv;
375 int n;
376
Kent Overstreet79886132013-11-23 17:19:00 -0800377 bio_for_each_segment_all(bv, b->bio, n)
Kent Overstreetcafe5632013-03-23 16:11:31 -0700378 __free_page(bv->bv_page);
379
Kent Overstreet57943512013-04-25 13:58:35 -0700380 __btree_node_write_done(cl);
Kent Overstreetcafe5632013-03-23 16:11:31 -0700381}
382
Kent Overstreet57943512013-04-25 13:58:35 -0700383static void btree_node_write_endio(struct bio *bio, int error)
384{
385 struct closure *cl = bio->bi_private;
Kent Overstreetcb7a5832013-12-16 15:27:25 -0800386 struct btree *b = container_of(cl, struct btree, io);
Kent Overstreet57943512013-04-25 13:58:35 -0700387
388 if (error)
389 set_btree_node_io_error(b);
390
391 bch_bbio_count_io_errors(b->c, bio, error, "writing btree");
392 closure_put(cl);
393}
394
395static void do_btree_node_write(struct btree *b)
Kent Overstreetcafe5632013-03-23 16:11:31 -0700396{
Kent Overstreetcb7a5832013-12-16 15:27:25 -0800397 struct closure *cl = &b->io;
Kent Overstreetee811282013-12-17 23:49:49 -0800398 struct bset *i = btree_bset_last(b);
Kent Overstreetcafe5632013-03-23 16:11:31 -0700399 BKEY_PADDED(key) k;
400
401 i->version = BCACHE_BSET_VERSION;
402 i->csum = btree_csum_set(b, i);
403
Kent Overstreet57943512013-04-25 13:58:35 -0700404 BUG_ON(b->bio);
405 b->bio = bch_bbio_alloc(b->c);
406
407 b->bio->bi_end_io = btree_node_write_endio;
Kent Overstreetfaadf0c2013-11-01 18:03:08 -0700408 b->bio->bi_private = cl;
Kent Overstreete49c7c32013-06-26 17:25:38 -0700409 b->bio->bi_rw = REQ_META|WRITE_SYNC|REQ_FUA;
Kent Overstreetee811282013-12-17 23:49:49 -0800410 b->bio->bi_iter.bi_size = roundup(set_bytes(i), block_bytes(b->c));
Kent Overstreet169ef1c2013-03-28 12:50:55 -0600411 bch_bio_map(b->bio, i);
Kent Overstreetcafe5632013-03-23 16:11:31 -0700412
Kent Overstreete49c7c32013-06-26 17:25:38 -0700413 /*
414 * If we're appending to a leaf node, we don't technically need FUA -
415 * this write just needs to be persisted before the next journal write,
416 * which will be marked FLUSH|FUA.
417 *
418 * Similarly if we're writing a new btree root - the pointer is going to
419 * be in the next journal entry.
420 *
421 * But if we're writing a new btree node (that isn't a root) or
422 * appending to a non leaf btree node, we need either FUA or a flush
423 * when we write the parent with the new pointer. FUA is cheaper than a
424 * flush, and writes appending to leaf nodes aren't blocking anything so
425 * just make all btree node writes FUA to keep things sane.
426 */
427
Kent Overstreetcafe5632013-03-23 16:11:31 -0700428 bkey_copy(&k.key, &b->key);
Kent Overstreetee811282013-12-17 23:49:49 -0800429 SET_PTR_OFFSET(&k.key, 0, PTR_OFFSET(&k.key, 0) +
Kent Overstreeta85e9682013-12-20 17:28:16 -0800430 bset_sector_offset(&b->keys, i));
Kent Overstreetcafe5632013-03-23 16:11:31 -0700431
Kent Overstreet8e51e412013-06-06 18:15:57 -0700432 if (!bio_alloc_pages(b->bio, GFP_NOIO)) {
Kent Overstreetcafe5632013-03-23 16:11:31 -0700433 int j;
434 struct bio_vec *bv;
435 void *base = (void *) ((unsigned long) i & ~(PAGE_SIZE - 1));
436
Kent Overstreet79886132013-11-23 17:19:00 -0800437 bio_for_each_segment_all(bv, b->bio, j)
Kent Overstreetcafe5632013-03-23 16:11:31 -0700438 memcpy(page_address(bv->bv_page),
439 base + j * PAGE_SIZE, PAGE_SIZE);
440
Kent Overstreetcafe5632013-03-23 16:11:31 -0700441 bch_submit_bbio(b->bio, b->c, &k.key, 0);
442
Kent Overstreet57943512013-04-25 13:58:35 -0700443 continue_at(cl, btree_node_write_done, NULL);
Kent Overstreetcafe5632013-03-23 16:11:31 -0700444 } else {
445 b->bio->bi_vcnt = 0;
Kent Overstreet169ef1c2013-03-28 12:50:55 -0600446 bch_bio_map(b->bio, i);
Kent Overstreetcafe5632013-03-23 16:11:31 -0700447
Kent Overstreetcafe5632013-03-23 16:11:31 -0700448 bch_submit_bbio(b->bio, b->c, &k.key, 0);
449
450 closure_sync(cl);
Kent Overstreetcb7a5832013-12-16 15:27:25 -0800451 continue_at_nobarrier(cl, __btree_node_write_done, NULL);
Kent Overstreetcafe5632013-03-23 16:11:31 -0700452 }
453}
454
Kent Overstreet2a285682014-03-04 16:42:42 -0800455void __bch_btree_node_write(struct btree *b, struct closure *parent)
Kent Overstreetcafe5632013-03-23 16:11:31 -0700456{
Kent Overstreetee811282013-12-17 23:49:49 -0800457 struct bset *i = btree_bset_last(b);
Kent Overstreetcafe5632013-03-23 16:11:31 -0700458
Kent Overstreet2a285682014-03-04 16:42:42 -0800459 lockdep_assert_held(&b->write_lock);
460
Kent Overstreetc37511b2013-04-26 15:39:55 -0700461 trace_bcache_btree_write(b);
462
Kent Overstreetcafe5632013-03-23 16:11:31 -0700463 BUG_ON(current->bio_list);
Kent Overstreet57943512013-04-25 13:58:35 -0700464 BUG_ON(b->written >= btree_blocks(b));
465 BUG_ON(b->written && !i->keys);
Kent Overstreetee811282013-12-17 23:49:49 -0800466 BUG_ON(btree_bset_first(b)->seq != i->seq);
Kent Overstreetdc9d98d2013-12-17 23:47:33 -0800467 bch_check_keys(&b->keys, "writing");
Kent Overstreetcafe5632013-03-23 16:11:31 -0700468
Kent Overstreetcafe5632013-03-23 16:11:31 -0700469 cancel_delayed_work(&b->work);
470
Kent Overstreet57943512013-04-25 13:58:35 -0700471 /* If caller isn't waiting for write, parent refcount is cache set */
Kent Overstreetcb7a5832013-12-16 15:27:25 -0800472 down(&b->io_mutex);
473 closure_init(&b->io, parent ?: &b->c->cl);
Kent Overstreet57943512013-04-25 13:58:35 -0700474
Kent Overstreetcafe5632013-03-23 16:11:31 -0700475 clear_bit(BTREE_NODE_dirty, &b->flags);
476 change_bit(BTREE_NODE_write_idx, &b->flags);
477
Kent Overstreet57943512013-04-25 13:58:35 -0700478 do_btree_node_write(b);
Kent Overstreetcafe5632013-03-23 16:11:31 -0700479
Kent Overstreetee811282013-12-17 23:49:49 -0800480 atomic_long_add(set_blocks(i, block_bytes(b->c)) * b->c->sb.block_size,
Kent Overstreetcafe5632013-03-23 16:11:31 -0700481 &PTR_CACHE(b->c, &b->key, 0)->btree_sectors_written);
482
Kent Overstreeta85e9682013-12-20 17:28:16 -0800483 b->written += set_blocks(i, block_bytes(b->c));
Kent Overstreet2a285682014-03-04 16:42:42 -0800484}
Kent Overstreeta85e9682013-12-20 17:28:16 -0800485
Kent Overstreet2a285682014-03-04 16:42:42 -0800486void bch_btree_node_write(struct btree *b, struct closure *parent)
487{
488 unsigned nsets = b->keys.nsets;
489
490 lockdep_assert_held(&b->lock);
491
492 __bch_btree_node_write(b, parent);
Kent Overstreetcafe5632013-03-23 16:11:31 -0700493
Kent Overstreet78b77bf2013-12-17 22:49:08 -0800494 /*
495 * do verify if there was more than one set initially (i.e. we did a
496 * sort) and we sorted down to a single set:
497 */
Kent Overstreet2a285682014-03-04 16:42:42 -0800498 if (nsets && !b->keys.nsets)
Kent Overstreet78b77bf2013-12-17 22:49:08 -0800499 bch_btree_verify(b);
500
Kent Overstreet2a285682014-03-04 16:42:42 -0800501 bch_btree_init_next(b);
Kent Overstreetcafe5632013-03-23 16:11:31 -0700502}
503
Kent Overstreetf269af52013-07-23 20:48:29 -0700504static void bch_btree_node_write_sync(struct btree *b)
505{
506 struct closure cl;
507
508 closure_init_stack(&cl);
Kent Overstreet2a285682014-03-04 16:42:42 -0800509
510 mutex_lock(&b->write_lock);
Kent Overstreetf269af52013-07-23 20:48:29 -0700511 bch_btree_node_write(b, &cl);
Kent Overstreet2a285682014-03-04 16:42:42 -0800512 mutex_unlock(&b->write_lock);
513
Kent Overstreetf269af52013-07-23 20:48:29 -0700514 closure_sync(&cl);
515}
516
Kent Overstreet57943512013-04-25 13:58:35 -0700517static void btree_node_write_work(struct work_struct *w)
Kent Overstreetcafe5632013-03-23 16:11:31 -0700518{
519 struct btree *b = container_of(to_delayed_work(w), struct btree, work);
520
Kent Overstreet2a285682014-03-04 16:42:42 -0800521 mutex_lock(&b->write_lock);
Kent Overstreetcafe5632013-03-23 16:11:31 -0700522 if (btree_node_dirty(b))
Kent Overstreet2a285682014-03-04 16:42:42 -0800523 __bch_btree_node_write(b, NULL);
524 mutex_unlock(&b->write_lock);
Kent Overstreetcafe5632013-03-23 16:11:31 -0700525}
526
Kent Overstreetc18536a2013-07-24 17:44:17 -0700527static void bch_btree_leaf_dirty(struct btree *b, atomic_t *journal_ref)
Kent Overstreetcafe5632013-03-23 16:11:31 -0700528{
Kent Overstreetee811282013-12-17 23:49:49 -0800529 struct bset *i = btree_bset_last(b);
Kent Overstreetcafe5632013-03-23 16:11:31 -0700530 struct btree_write *w = btree_current_write(b);
531
Kent Overstreet2a285682014-03-04 16:42:42 -0800532 lockdep_assert_held(&b->write_lock);
533
Kent Overstreet57943512013-04-25 13:58:35 -0700534 BUG_ON(!b->written);
535 BUG_ON(!i->keys);
Kent Overstreetcafe5632013-03-23 16:11:31 -0700536
Kent Overstreet57943512013-04-25 13:58:35 -0700537 if (!btree_node_dirty(b))
538 queue_delayed_work(btree_io_wq, &b->work, 30 * HZ);
Kent Overstreetcafe5632013-03-23 16:11:31 -0700539
Kent Overstreet57943512013-04-25 13:58:35 -0700540 set_btree_node_dirty(b);
Kent Overstreetcafe5632013-03-23 16:11:31 -0700541
Kent Overstreetc18536a2013-07-24 17:44:17 -0700542 if (journal_ref) {
Kent Overstreetcafe5632013-03-23 16:11:31 -0700543 if (w->journal &&
Kent Overstreetc18536a2013-07-24 17:44:17 -0700544 journal_pin_cmp(b->c, w->journal, journal_ref)) {
Kent Overstreetcafe5632013-03-23 16:11:31 -0700545 atomic_dec_bug(w->journal);
546 w->journal = NULL;
547 }
548
549 if (!w->journal) {
Kent Overstreetc18536a2013-07-24 17:44:17 -0700550 w->journal = journal_ref;
Kent Overstreetcafe5632013-03-23 16:11:31 -0700551 atomic_inc(w->journal);
552 }
553 }
554
Kent Overstreetcafe5632013-03-23 16:11:31 -0700555 /* Force write if set is too big */
Kent Overstreet57943512013-04-25 13:58:35 -0700556 if (set_bytes(i) > PAGE_SIZE - 48 &&
557 !current->bio_list)
558 bch_btree_node_write(b, NULL);
Kent Overstreetcafe5632013-03-23 16:11:31 -0700559}
560
561/*
562 * Btree in memory cache - allocation/freeing
563 * mca -> memory cache
564 */
565
Kent Overstreetcafe5632013-03-23 16:11:31 -0700566#define mca_reserve(c) (((c->root && c->root->level) \
567 ? c->root->level : 1) * 8 + 16)
568#define mca_can_free(c) \
569 max_t(int, 0, c->bucket_cache_used - mca_reserve(c))
570
571static void mca_data_free(struct btree *b)
572{
Kent Overstreetcb7a5832013-12-16 15:27:25 -0800573 BUG_ON(b->io_mutex.count != 1);
Kent Overstreetcafe5632013-03-23 16:11:31 -0700574
Kent Overstreeta85e9682013-12-20 17:28:16 -0800575 bch_btree_keys_free(&b->keys);
Kent Overstreetcafe5632013-03-23 16:11:31 -0700576
Kent Overstreetcafe5632013-03-23 16:11:31 -0700577 b->c->bucket_cache_used--;
Kent Overstreetee811282013-12-17 23:49:49 -0800578 list_move(&b->list, &b->c->btree_cache_freed);
Kent Overstreetcafe5632013-03-23 16:11:31 -0700579}
580
581static void mca_bucket_free(struct btree *b)
582{
583 BUG_ON(btree_node_dirty(b));
584
585 b->key.ptr[0] = 0;
586 hlist_del_init_rcu(&b->hash);
587 list_move(&b->list, &b->c->btree_cache_freeable);
588}
589
590static unsigned btree_order(struct bkey *k)
591{
592 return ilog2(KEY_SIZE(k) / PAGE_SECTORS ?: 1);
593}
594
595static void mca_data_alloc(struct btree *b, struct bkey *k, gfp_t gfp)
596{
Kent Overstreeta85e9682013-12-20 17:28:16 -0800597 if (!bch_btree_keys_alloc(&b->keys,
Kent Overstreetee811282013-12-17 23:49:49 -0800598 max_t(unsigned,
599 ilog2(b->c->btree_pages),
600 btree_order(k)),
601 gfp)) {
602 b->c->bucket_cache_used++;
603 list_move(&b->list, &b->c->btree_cache);
604 } else {
605 list_move(&b->list, &b->c->btree_cache_freed);
606 }
Kent Overstreetcafe5632013-03-23 16:11:31 -0700607}
608
609static struct btree *mca_bucket_alloc(struct cache_set *c,
610 struct bkey *k, gfp_t gfp)
611{
612 struct btree *b = kzalloc(sizeof(struct btree), gfp);
613 if (!b)
614 return NULL;
615
616 init_rwsem(&b->lock);
617 lockdep_set_novalidate_class(&b->lock);
Kent Overstreet2a285682014-03-04 16:42:42 -0800618 mutex_init(&b->write_lock);
619 lockdep_set_novalidate_class(&b->write_lock);
Kent Overstreetcafe5632013-03-23 16:11:31 -0700620 INIT_LIST_HEAD(&b->list);
Kent Overstreet57943512013-04-25 13:58:35 -0700621 INIT_DELAYED_WORK(&b->work, btree_node_write_work);
Kent Overstreetcafe5632013-03-23 16:11:31 -0700622 b->c = c;
Kent Overstreetcb7a5832013-12-16 15:27:25 -0800623 sema_init(&b->io_mutex, 1);
Kent Overstreetcafe5632013-03-23 16:11:31 -0700624
625 mca_data_alloc(b, k, gfp);
626 return b;
627}
628
Kent Overstreete8e1d462013-07-24 17:27:07 -0700629static int mca_reap(struct btree *b, unsigned min_order, bool flush)
Kent Overstreetcafe5632013-03-23 16:11:31 -0700630{
Kent Overstreete8e1d462013-07-24 17:27:07 -0700631 struct closure cl;
632
633 closure_init_stack(&cl);
Kent Overstreetcafe5632013-03-23 16:11:31 -0700634 lockdep_assert_held(&b->c->bucket_lock);
635
636 if (!down_write_trylock(&b->lock))
637 return -ENOMEM;
638
Kent Overstreeta85e9682013-12-20 17:28:16 -0800639 BUG_ON(btree_node_dirty(b) && !b->keys.set[0].data);
Kent Overstreete8e1d462013-07-24 17:27:07 -0700640
Kent Overstreeta85e9682013-12-20 17:28:16 -0800641 if (b->keys.page_order < min_order)
Kent Overstreetcb7a5832013-12-16 15:27:25 -0800642 goto out_unlock;
643
644 if (!flush) {
645 if (btree_node_dirty(b))
646 goto out_unlock;
647
648 if (down_trylock(&b->io_mutex))
649 goto out_unlock;
650 up(&b->io_mutex);
Kent Overstreetcafe5632013-03-23 16:11:31 -0700651 }
652
Kent Overstreet2a285682014-03-04 16:42:42 -0800653 mutex_lock(&b->write_lock);
Kent Overstreetf269af52013-07-23 20:48:29 -0700654 if (btree_node_dirty(b))
Kent Overstreet2a285682014-03-04 16:42:42 -0800655 __bch_btree_node_write(b, &cl);
656 mutex_unlock(&b->write_lock);
657
658 closure_sync(&cl);
Kent Overstreetcafe5632013-03-23 16:11:31 -0700659
Kent Overstreete8e1d462013-07-24 17:27:07 -0700660 /* wait for any in flight btree write */
Kent Overstreetcb7a5832013-12-16 15:27:25 -0800661 down(&b->io_mutex);
662 up(&b->io_mutex);
Kent Overstreete8e1d462013-07-24 17:27:07 -0700663
Kent Overstreetcafe5632013-03-23 16:11:31 -0700664 return 0;
Kent Overstreetcb7a5832013-12-16 15:27:25 -0800665out_unlock:
666 rw_unlock(true, b);
667 return -ENOMEM;
Kent Overstreetcafe5632013-03-23 16:11:31 -0700668}
669
Dave Chinner7dc19d52013-08-28 10:18:11 +1000670static unsigned long bch_mca_scan(struct shrinker *shrink,
671 struct shrink_control *sc)
Kent Overstreetcafe5632013-03-23 16:11:31 -0700672{
673 struct cache_set *c = container_of(shrink, struct cache_set, shrink);
674 struct btree *b, *t;
675 unsigned long i, nr = sc->nr_to_scan;
Dave Chinner7dc19d52013-08-28 10:18:11 +1000676 unsigned long freed = 0;
Kent Overstreetcafe5632013-03-23 16:11:31 -0700677
678 if (c->shrinker_disabled)
Dave Chinner7dc19d52013-08-28 10:18:11 +1000679 return SHRINK_STOP;
Kent Overstreetcafe5632013-03-23 16:11:31 -0700680
681 if (c->try_harder)
Dave Chinner7dc19d52013-08-28 10:18:11 +1000682 return SHRINK_STOP;
Kent Overstreetcafe5632013-03-23 16:11:31 -0700683
684 /* Return -1 if we can't do anything right now */
Kent Overstreeta698e082013-09-23 23:17:34 -0700685 if (sc->gfp_mask & __GFP_IO)
Kent Overstreetcafe5632013-03-23 16:11:31 -0700686 mutex_lock(&c->bucket_lock);
687 else if (!mutex_trylock(&c->bucket_lock))
688 return -1;
689
Kent Overstreet36c9ea92013-06-03 13:04:56 -0700690 /*
691 * It's _really_ critical that we don't free too many btree nodes - we
692 * have to always leave ourselves a reserve. The reserve is how we
693 * guarantee that allocating memory for a new btree node can always
694 * succeed, so that inserting keys into the btree can always succeed and
695 * IO can always make forward progress:
696 */
Kent Overstreetcafe5632013-03-23 16:11:31 -0700697 nr /= c->btree_pages;
698 nr = min_t(unsigned long, nr, mca_can_free(c));
699
700 i = 0;
701 list_for_each_entry_safe(b, t, &c->btree_cache_freeable, list) {
Dave Chinner7dc19d52013-08-28 10:18:11 +1000702 if (freed >= nr)
Kent Overstreetcafe5632013-03-23 16:11:31 -0700703 break;
704
705 if (++i > 3 &&
Kent Overstreete8e1d462013-07-24 17:27:07 -0700706 !mca_reap(b, 0, false)) {
Kent Overstreetcafe5632013-03-23 16:11:31 -0700707 mca_data_free(b);
708 rw_unlock(true, b);
Dave Chinner7dc19d52013-08-28 10:18:11 +1000709 freed++;
Kent Overstreetcafe5632013-03-23 16:11:31 -0700710 }
711 }
712
Dave Chinner7dc19d52013-08-28 10:18:11 +1000713 for (i = 0; (nr--) && i < c->bucket_cache_used; i++) {
Kent Overstreetb0f32a52013-12-10 13:24:26 -0800714 if (list_empty(&c->btree_cache))
715 goto out;
716
Kent Overstreetcafe5632013-03-23 16:11:31 -0700717 b = list_first_entry(&c->btree_cache, struct btree, list);
718 list_rotate_left(&c->btree_cache);
719
720 if (!b->accessed &&
Kent Overstreete8e1d462013-07-24 17:27:07 -0700721 !mca_reap(b, 0, false)) {
Kent Overstreetcafe5632013-03-23 16:11:31 -0700722 mca_bucket_free(b);
723 mca_data_free(b);
724 rw_unlock(true, b);
Dave Chinner7dc19d52013-08-28 10:18:11 +1000725 freed++;
Kent Overstreetcafe5632013-03-23 16:11:31 -0700726 } else
727 b->accessed = 0;
728 }
729out:
Kent Overstreetcafe5632013-03-23 16:11:31 -0700730 mutex_unlock(&c->bucket_lock);
Dave Chinner7dc19d52013-08-28 10:18:11 +1000731 return freed;
732}
733
734static unsigned long bch_mca_count(struct shrinker *shrink,
735 struct shrink_control *sc)
736{
737 struct cache_set *c = container_of(shrink, struct cache_set, shrink);
738
739 if (c->shrinker_disabled)
740 return 0;
741
742 if (c->try_harder)
743 return 0;
744
745 return mca_can_free(c) * c->btree_pages;
Kent Overstreetcafe5632013-03-23 16:11:31 -0700746}
747
748void bch_btree_cache_free(struct cache_set *c)
749{
750 struct btree *b;
751 struct closure cl;
752 closure_init_stack(&cl);
753
754 if (c->shrink.list.next)
755 unregister_shrinker(&c->shrink);
756
757 mutex_lock(&c->bucket_lock);
758
759#ifdef CONFIG_BCACHE_DEBUG
760 if (c->verify_data)
761 list_move(&c->verify_data->list, &c->btree_cache);
Kent Overstreet78b77bf2013-12-17 22:49:08 -0800762
763 free_pages((unsigned long) c->verify_ondisk, ilog2(bucket_pages(c)));
Kent Overstreetcafe5632013-03-23 16:11:31 -0700764#endif
765
766 list_splice(&c->btree_cache_freeable,
767 &c->btree_cache);
768
769 while (!list_empty(&c->btree_cache)) {
770 b = list_first_entry(&c->btree_cache, struct btree, list);
771
772 if (btree_node_dirty(b))
773 btree_complete_write(b, btree_current_write(b));
774 clear_bit(BTREE_NODE_dirty, &b->flags);
775
776 mca_data_free(b);
777 }
778
779 while (!list_empty(&c->btree_cache_freed)) {
780 b = list_first_entry(&c->btree_cache_freed,
781 struct btree, list);
782 list_del(&b->list);
783 cancel_delayed_work_sync(&b->work);
784 kfree(b);
785 }
786
787 mutex_unlock(&c->bucket_lock);
788}
789
790int bch_btree_cache_alloc(struct cache_set *c)
791{
792 unsigned i;
793
Kent Overstreetcafe5632013-03-23 16:11:31 -0700794 for (i = 0; i < mca_reserve(c); i++)
Kent Overstreet72a44512013-10-24 17:19:26 -0700795 if (!mca_bucket_alloc(c, &ZERO_KEY, GFP_KERNEL))
796 return -ENOMEM;
Kent Overstreetcafe5632013-03-23 16:11:31 -0700797
798 list_splice_init(&c->btree_cache,
799 &c->btree_cache_freeable);
800
801#ifdef CONFIG_BCACHE_DEBUG
802 mutex_init(&c->verify_lock);
803
Kent Overstreet78b77bf2013-12-17 22:49:08 -0800804 c->verify_ondisk = (void *)
805 __get_free_pages(GFP_KERNEL, ilog2(bucket_pages(c)));
806
Kent Overstreetcafe5632013-03-23 16:11:31 -0700807 c->verify_data = mca_bucket_alloc(c, &ZERO_KEY, GFP_KERNEL);
808
809 if (c->verify_data &&
Kent Overstreeta85e9682013-12-20 17:28:16 -0800810 c->verify_data->keys.set->data)
Kent Overstreetcafe5632013-03-23 16:11:31 -0700811 list_del_init(&c->verify_data->list);
812 else
813 c->verify_data = NULL;
814#endif
815
Dave Chinner7dc19d52013-08-28 10:18:11 +1000816 c->shrink.count_objects = bch_mca_count;
817 c->shrink.scan_objects = bch_mca_scan;
Kent Overstreetcafe5632013-03-23 16:11:31 -0700818 c->shrink.seeks = 4;
819 c->shrink.batch = c->btree_pages * 2;
820 register_shrinker(&c->shrink);
821
822 return 0;
823}
824
825/* Btree in memory cache - hash table */
826
827static struct hlist_head *mca_hash(struct cache_set *c, struct bkey *k)
828{
829 return &c->bucket_hash[hash_32(PTR_HASH(c, k), BUCKET_HASH_BITS)];
830}
831
832static struct btree *mca_find(struct cache_set *c, struct bkey *k)
833{
834 struct btree *b;
835
836 rcu_read_lock();
837 hlist_for_each_entry_rcu(b, mca_hash(c, k), hash)
838 if (PTR_HASH(c, &b->key) == PTR_HASH(c, k))
839 goto out;
840 b = NULL;
841out:
842 rcu_read_unlock();
843 return b;
844}
845
Kent Overstreete8e1d462013-07-24 17:27:07 -0700846static struct btree *mca_cannibalize(struct cache_set *c, struct bkey *k)
Kent Overstreetcafe5632013-03-23 16:11:31 -0700847{
Kent Overstreete8e1d462013-07-24 17:27:07 -0700848 struct btree *b;
Kent Overstreetcafe5632013-03-23 16:11:31 -0700849
Kent Overstreetc37511b2013-04-26 15:39:55 -0700850 trace_bcache_btree_cache_cannibalize(c);
851
Kent Overstreete8e1d462013-07-24 17:27:07 -0700852 if (!c->try_harder) {
853 c->try_harder = current;
854 c->try_harder_start = local_clock();
855 } else if (c->try_harder != current)
856 return ERR_PTR(-ENOSPC);
Kent Overstreetcafe5632013-03-23 16:11:31 -0700857
Kent Overstreete8e1d462013-07-24 17:27:07 -0700858 list_for_each_entry_reverse(b, &c->btree_cache, list)
859 if (!mca_reap(b, btree_order(k), false))
860 return b;
Kent Overstreetcafe5632013-03-23 16:11:31 -0700861
Kent Overstreete8e1d462013-07-24 17:27:07 -0700862 list_for_each_entry_reverse(b, &c->btree_cache, list)
863 if (!mca_reap(b, btree_order(k), true))
864 return b;
Kent Overstreetcafe5632013-03-23 16:11:31 -0700865
Kent Overstreete8e1d462013-07-24 17:27:07 -0700866 return ERR_PTR(-ENOMEM);
Kent Overstreetcafe5632013-03-23 16:11:31 -0700867}
868
869/*
870 * We can only have one thread cannibalizing other cached btree nodes at a time,
871 * or we'll deadlock. We use an open coded mutex to ensure that, which a
872 * cannibalize_bucket() will take. This means every time we unlock the root of
873 * the btree, we need to release this lock if we have it held.
874 */
Kent Overstreetdf8e8972013-07-24 17:37:59 -0700875static void bch_cannibalize_unlock(struct cache_set *c)
Kent Overstreetcafe5632013-03-23 16:11:31 -0700876{
Kent Overstreete8e1d462013-07-24 17:27:07 -0700877 if (c->try_harder == current) {
Kent Overstreet169ef1c2013-03-28 12:50:55 -0600878 bch_time_stats_update(&c->try_harder_time, c->try_harder_start);
Kent Overstreetcafe5632013-03-23 16:11:31 -0700879 c->try_harder = NULL;
Kent Overstreete8e1d462013-07-24 17:27:07 -0700880 wake_up(&c->try_wait);
Kent Overstreetcafe5632013-03-23 16:11:31 -0700881 }
882}
883
Kent Overstreete8e1d462013-07-24 17:27:07 -0700884static struct btree *mca_alloc(struct cache_set *c, struct bkey *k, int level)
Kent Overstreetcafe5632013-03-23 16:11:31 -0700885{
886 struct btree *b;
887
Kent Overstreete8e1d462013-07-24 17:27:07 -0700888 BUG_ON(current->bio_list);
889
Kent Overstreetcafe5632013-03-23 16:11:31 -0700890 lockdep_assert_held(&c->bucket_lock);
891
892 if (mca_find(c, k))
893 return NULL;
894
895 /* btree_free() doesn't free memory; it sticks the node on the end of
896 * the list. Check if there's any freed nodes there:
897 */
898 list_for_each_entry(b, &c->btree_cache_freeable, list)
Kent Overstreete8e1d462013-07-24 17:27:07 -0700899 if (!mca_reap(b, btree_order(k), false))
Kent Overstreetcafe5632013-03-23 16:11:31 -0700900 goto out;
901
902 /* We never free struct btree itself, just the memory that holds the on
903 * disk node. Check the freed list before allocating a new one:
904 */
905 list_for_each_entry(b, &c->btree_cache_freed, list)
Kent Overstreete8e1d462013-07-24 17:27:07 -0700906 if (!mca_reap(b, 0, false)) {
Kent Overstreetcafe5632013-03-23 16:11:31 -0700907 mca_data_alloc(b, k, __GFP_NOWARN|GFP_NOIO);
Kent Overstreeta85e9682013-12-20 17:28:16 -0800908 if (!b->keys.set[0].data)
Kent Overstreetcafe5632013-03-23 16:11:31 -0700909 goto err;
910 else
911 goto out;
912 }
913
914 b = mca_bucket_alloc(c, k, __GFP_NOWARN|GFP_NOIO);
915 if (!b)
916 goto err;
917
918 BUG_ON(!down_write_trylock(&b->lock));
Kent Overstreeta85e9682013-12-20 17:28:16 -0800919 if (!b->keys.set->data)
Kent Overstreetcafe5632013-03-23 16:11:31 -0700920 goto err;
921out:
Kent Overstreetcb7a5832013-12-16 15:27:25 -0800922 BUG_ON(b->io_mutex.count != 1);
Kent Overstreetcafe5632013-03-23 16:11:31 -0700923
924 bkey_copy(&b->key, k);
925 list_move(&b->list, &c->btree_cache);
926 hlist_del_init_rcu(&b->hash);
927 hlist_add_head_rcu(&b->hash, mca_hash(c, k));
928
929 lock_set_subclass(&b->lock.dep_map, level + 1, _THIS_IP_);
Kent Overstreetd6fd3b12013-07-24 17:20:19 -0700930 b->parent = (void *) ~0UL;
Kent Overstreeta85e9682013-12-20 17:28:16 -0800931 b->flags = 0;
932 b->written = 0;
933 b->level = level;
Kent Overstreetcafe5632013-03-23 16:11:31 -0700934
Kent Overstreet65d45232013-12-20 17:22:05 -0800935 if (!b->level)
Kent Overstreeta85e9682013-12-20 17:28:16 -0800936 bch_btree_keys_init(&b->keys, &bch_extent_keys_ops,
937 &b->c->expensive_debug_checks);
Kent Overstreet65d45232013-12-20 17:22:05 -0800938 else
Kent Overstreeta85e9682013-12-20 17:28:16 -0800939 bch_btree_keys_init(&b->keys, &bch_btree_keys_ops,
940 &b->c->expensive_debug_checks);
Kent Overstreetcafe5632013-03-23 16:11:31 -0700941
942 return b;
943err:
944 if (b)
945 rw_unlock(true, b);
946
Kent Overstreete8e1d462013-07-24 17:27:07 -0700947 b = mca_cannibalize(c, k);
Kent Overstreetcafe5632013-03-23 16:11:31 -0700948 if (!IS_ERR(b))
949 goto out;
950
951 return b;
952}
953
954/**
955 * bch_btree_node_get - find a btree node in the cache and lock it, reading it
956 * in from disk if necessary.
957 *
Kent Overstreetb54d6932013-07-24 18:04:18 -0700958 * If IO is necessary and running under generic_make_request, returns -EAGAIN.
Kent Overstreetcafe5632013-03-23 16:11:31 -0700959 *
960 * The btree node will have either a read or a write lock held, depending on
961 * level and op->lock.
962 */
963struct btree *bch_btree_node_get(struct cache_set *c, struct bkey *k,
Kent Overstreete8e1d462013-07-24 17:27:07 -0700964 int level, bool write)
Kent Overstreetcafe5632013-03-23 16:11:31 -0700965{
966 int i = 0;
Kent Overstreetcafe5632013-03-23 16:11:31 -0700967 struct btree *b;
968
969 BUG_ON(level < 0);
970retry:
971 b = mca_find(c, k);
972
973 if (!b) {
Kent Overstreet57943512013-04-25 13:58:35 -0700974 if (current->bio_list)
975 return ERR_PTR(-EAGAIN);
976
Kent Overstreetcafe5632013-03-23 16:11:31 -0700977 mutex_lock(&c->bucket_lock);
Kent Overstreete8e1d462013-07-24 17:27:07 -0700978 b = mca_alloc(c, k, level);
Kent Overstreetcafe5632013-03-23 16:11:31 -0700979 mutex_unlock(&c->bucket_lock);
980
981 if (!b)
982 goto retry;
983 if (IS_ERR(b))
984 return b;
985
Kent Overstreet57943512013-04-25 13:58:35 -0700986 bch_btree_node_read(b);
Kent Overstreetcafe5632013-03-23 16:11:31 -0700987
988 if (!write)
989 downgrade_write(&b->lock);
990 } else {
991 rw_lock(write, b, level);
992 if (PTR_HASH(c, &b->key) != PTR_HASH(c, k)) {
993 rw_unlock(write, b);
994 goto retry;
995 }
996 BUG_ON(b->level != level);
997 }
998
999 b->accessed = 1;
1000
Kent Overstreeta85e9682013-12-20 17:28:16 -08001001 for (; i <= b->keys.nsets && b->keys.set[i].size; i++) {
1002 prefetch(b->keys.set[i].tree);
1003 prefetch(b->keys.set[i].data);
Kent Overstreetcafe5632013-03-23 16:11:31 -07001004 }
1005
Kent Overstreeta85e9682013-12-20 17:28:16 -08001006 for (; i <= b->keys.nsets; i++)
1007 prefetch(b->keys.set[i].data);
Kent Overstreetcafe5632013-03-23 16:11:31 -07001008
Kent Overstreet57943512013-04-25 13:58:35 -07001009 if (btree_node_io_error(b)) {
Kent Overstreetcafe5632013-03-23 16:11:31 -07001010 rw_unlock(write, b);
Kent Overstreet57943512013-04-25 13:58:35 -07001011 return ERR_PTR(-EIO);
1012 }
1013
1014 BUG_ON(!b->written);
Kent Overstreetcafe5632013-03-23 16:11:31 -07001015
1016 return b;
1017}
1018
1019static void btree_node_prefetch(struct cache_set *c, struct bkey *k, int level)
1020{
1021 struct btree *b;
1022
1023 mutex_lock(&c->bucket_lock);
Kent Overstreete8e1d462013-07-24 17:27:07 -07001024 b = mca_alloc(c, k, level);
Kent Overstreetcafe5632013-03-23 16:11:31 -07001025 mutex_unlock(&c->bucket_lock);
1026
1027 if (!IS_ERR_OR_NULL(b)) {
Kent Overstreet57943512013-04-25 13:58:35 -07001028 bch_btree_node_read(b);
Kent Overstreetcafe5632013-03-23 16:11:31 -07001029 rw_unlock(true, b);
1030 }
1031}
1032
1033/* Btree alloc */
1034
Kent Overstreete8e1d462013-07-24 17:27:07 -07001035static void btree_node_free(struct btree *b)
Kent Overstreetcafe5632013-03-23 16:11:31 -07001036{
Kent Overstreetc37511b2013-04-26 15:39:55 -07001037 trace_bcache_btree_node_free(b);
1038
Kent Overstreetcafe5632013-03-23 16:11:31 -07001039 BUG_ON(b == b->c->root);
Kent Overstreetcafe5632013-03-23 16:11:31 -07001040
Kent Overstreet2a285682014-03-04 16:42:42 -08001041 mutex_lock(&b->write_lock);
1042
Kent Overstreetcafe5632013-03-23 16:11:31 -07001043 if (btree_node_dirty(b))
1044 btree_complete_write(b, btree_current_write(b));
1045 clear_bit(BTREE_NODE_dirty, &b->flags);
1046
Kent Overstreet2a285682014-03-04 16:42:42 -08001047 mutex_unlock(&b->write_lock);
1048
Kent Overstreetcafe5632013-03-23 16:11:31 -07001049 cancel_delayed_work(&b->work);
1050
1051 mutex_lock(&b->c->bucket_lock);
Kent Overstreetcafe5632013-03-23 16:11:31 -07001052 bch_bucket_free(b->c, &b->key);
1053 mca_bucket_free(b);
1054 mutex_unlock(&b->c->bucket_lock);
1055}
1056
Kent Overstreetbc9389e2013-09-10 19:07:35 -07001057struct btree *bch_btree_node_alloc(struct cache_set *c, int level, bool wait)
Kent Overstreetcafe5632013-03-23 16:11:31 -07001058{
1059 BKEY_PADDED(key) k;
1060 struct btree *b = ERR_PTR(-EAGAIN);
1061
1062 mutex_lock(&c->bucket_lock);
1063retry:
Kent Overstreet78365412013-12-17 01:29:34 -08001064 if (__bch_bucket_alloc_set(c, RESERVE_BTREE, &k.key, 1, wait))
Kent Overstreetcafe5632013-03-23 16:11:31 -07001065 goto err;
1066
Kent Overstreet3a3b6a42013-07-24 16:46:42 -07001067 bkey_put(c, &k.key);
Kent Overstreetcafe5632013-03-23 16:11:31 -07001068 SET_KEY_SIZE(&k.key, c->btree_pages * PAGE_SECTORS);
1069
Kent Overstreete8e1d462013-07-24 17:27:07 -07001070 b = mca_alloc(c, &k.key, level);
Kent Overstreetcafe5632013-03-23 16:11:31 -07001071 if (IS_ERR(b))
1072 goto err_free;
1073
1074 if (!b) {
Kent Overstreetb1a67b02013-03-25 11:46:44 -07001075 cache_bug(c,
1076 "Tried to allocate bucket that was in btree cache");
Kent Overstreetcafe5632013-03-23 16:11:31 -07001077 goto retry;
1078 }
1079
Kent Overstreetcafe5632013-03-23 16:11:31 -07001080 b->accessed = 1;
Kent Overstreeta85e9682013-12-20 17:28:16 -08001081 bch_bset_init_next(&b->keys, b->keys.set->data, bset_magic(&b->c->sb));
Kent Overstreetcafe5632013-03-23 16:11:31 -07001082
1083 mutex_unlock(&c->bucket_lock);
Kent Overstreetc37511b2013-04-26 15:39:55 -07001084
1085 trace_bcache_btree_node_alloc(b);
Kent Overstreetcafe5632013-03-23 16:11:31 -07001086 return b;
1087err_free:
1088 bch_bucket_free(c, &k.key);
Kent Overstreetcafe5632013-03-23 16:11:31 -07001089err:
1090 mutex_unlock(&c->bucket_lock);
Kent Overstreetc37511b2013-04-26 15:39:55 -07001091
1092 trace_bcache_btree_node_alloc_fail(b);
Kent Overstreetcafe5632013-03-23 16:11:31 -07001093 return b;
1094}
1095
Kent Overstreetbc9389e2013-09-10 19:07:35 -07001096static struct btree *btree_node_alloc_replacement(struct btree *b, bool wait)
Kent Overstreetcafe5632013-03-23 16:11:31 -07001097{
Kent Overstreetbc9389e2013-09-10 19:07:35 -07001098 struct btree *n = bch_btree_node_alloc(b->c, b->level, wait);
Kent Overstreet67539e82013-09-10 22:53:34 -07001099 if (!IS_ERR_OR_NULL(n)) {
Kent Overstreet2a285682014-03-04 16:42:42 -08001100 mutex_lock(&n->write_lock);
Kent Overstreet89ebb4a2013-11-11 18:38:51 -08001101 bch_btree_sort_into(&b->keys, &n->keys, &b->c->sort);
Kent Overstreet67539e82013-09-10 22:53:34 -07001102 bkey_copy_key(&n->key, &b->key);
Kent Overstreet2a285682014-03-04 16:42:42 -08001103 mutex_unlock(&n->write_lock);
Kent Overstreet67539e82013-09-10 22:53:34 -07001104 }
Kent Overstreetcafe5632013-03-23 16:11:31 -07001105
1106 return n;
1107}
1108
Kent Overstreet8835c122013-07-24 23:18:05 -07001109static void make_btree_freeing_key(struct btree *b, struct bkey *k)
1110{
1111 unsigned i;
1112
Kent Overstreet05335cf2014-03-17 18:22:34 -07001113 mutex_lock(&b->c->bucket_lock);
1114
1115 atomic_inc(&b->c->prio_blocked);
1116
Kent Overstreet8835c122013-07-24 23:18:05 -07001117 bkey_copy(k, &b->key);
1118 bkey_copy_key(k, &ZERO_KEY);
1119
Kent Overstreet05335cf2014-03-17 18:22:34 -07001120 for (i = 0; i < KEY_PTRS(k); i++)
1121 SET_PTR_GEN(k, i,
1122 bch_inc_gen(PTR_CACHE(b->c, &b->key, i),
1123 PTR_BUCKET(b->c, &b->key, i)));
Kent Overstreet8835c122013-07-24 23:18:05 -07001124
Kent Overstreet05335cf2014-03-17 18:22:34 -07001125 mutex_unlock(&b->c->bucket_lock);
Kent Overstreet8835c122013-07-24 23:18:05 -07001126}
1127
Kent Overstreet78365412013-12-17 01:29:34 -08001128static int btree_check_reserve(struct btree *b, struct btree_op *op)
1129{
1130 struct cache_set *c = b->c;
1131 struct cache *ca;
1132 unsigned i, reserve = c->root->level * 2 + 1;
1133 int ret = 0;
1134
1135 mutex_lock(&c->bucket_lock);
1136
1137 for_each_cache(ca, c, i)
1138 if (fifo_used(&ca->free[RESERVE_BTREE]) < reserve) {
1139 if (op)
1140 prepare_to_wait(&c->bucket_wait, &op->wait,
1141 TASK_UNINTERRUPTIBLE);
1142 ret = -EINTR;
1143 break;
1144 }
1145
1146 mutex_unlock(&c->bucket_lock);
1147 return ret;
1148}
1149
Kent Overstreetcafe5632013-03-23 16:11:31 -07001150/* Garbage collection */
1151
Kent Overstreet487dded2014-03-17 15:13:26 -07001152static uint8_t __bch_btree_mark_key(struct cache_set *c, int level,
1153 struct bkey *k)
Kent Overstreetcafe5632013-03-23 16:11:31 -07001154{
1155 uint8_t stale = 0;
1156 unsigned i;
1157 struct bucket *g;
1158
1159 /*
1160 * ptr_invalid() can't return true for the keys that mark btree nodes as
1161 * freed, but since ptr_bad() returns true we'll never actually use them
1162 * for anything and thus we don't want mark their pointers here
1163 */
1164 if (!bkey_cmp(k, &ZERO_KEY))
1165 return stale;
1166
1167 for (i = 0; i < KEY_PTRS(k); i++) {
1168 if (!ptr_available(c, k, i))
1169 continue;
1170
1171 g = PTR_BUCKET(c, k, i);
1172
1173 if (gen_after(g->gc_gen, PTR_GEN(k, i)))
1174 g->gc_gen = PTR_GEN(k, i);
1175
1176 if (ptr_stale(c, k, i)) {
1177 stale = max(stale, ptr_stale(c, k, i));
1178 continue;
1179 }
1180
1181 cache_bug_on(GC_MARK(g) &&
1182 (GC_MARK(g) == GC_MARK_METADATA) != (level != 0),
1183 c, "inconsistent ptrs: mark = %llu, level = %i",
1184 GC_MARK(g), level);
1185
1186 if (level)
1187 SET_GC_MARK(g, GC_MARK_METADATA);
1188 else if (KEY_DIRTY(k))
1189 SET_GC_MARK(g, GC_MARK_DIRTY);
Kent Overstreet4fe6a812014-03-13 13:46:29 -07001190 else if (!GC_MARK(g))
1191 SET_GC_MARK(g, GC_MARK_RECLAIMABLE);
Kent Overstreetcafe5632013-03-23 16:11:31 -07001192
1193 /* guard against overflow */
1194 SET_GC_SECTORS_USED(g, min_t(unsigned,
1195 GC_SECTORS_USED(g) + KEY_SIZE(k),
Darrick J. Wong94717442014-01-28 16:57:39 -08001196 MAX_GC_SECTORS_USED));
Kent Overstreetcafe5632013-03-23 16:11:31 -07001197
1198 BUG_ON(!GC_SECTORS_USED(g));
1199 }
1200
1201 return stale;
1202}
1203
1204#define btree_mark_key(b, k) __bch_btree_mark_key(b->c, b->level, k)
1205
Kent Overstreet487dded2014-03-17 15:13:26 -07001206void bch_initial_mark_key(struct cache_set *c, int level, struct bkey *k)
1207{
1208 unsigned i;
1209
1210 for (i = 0; i < KEY_PTRS(k); i++)
1211 if (ptr_available(c, k, i) &&
1212 !ptr_stale(c, k, i)) {
1213 struct bucket *b = PTR_BUCKET(c, k, i);
1214
1215 b->gen = PTR_GEN(k, i);
1216
1217 if (level && bkey_cmp(k, &ZERO_KEY))
1218 b->prio = BTREE_PRIO;
1219 else if (!level && b->prio == BTREE_PRIO)
1220 b->prio = INITIAL_PRIO;
1221 }
1222
1223 __bch_btree_mark_key(c, level, k);
1224}
1225
Kent Overstreeta1f03582013-09-10 19:07:00 -07001226static bool btree_gc_mark_node(struct btree *b, struct gc_stat *gc)
Kent Overstreetcafe5632013-03-23 16:11:31 -07001227{
1228 uint8_t stale = 0;
Kent Overstreeta1f03582013-09-10 19:07:00 -07001229 unsigned keys = 0, good_keys = 0;
Kent Overstreetcafe5632013-03-23 16:11:31 -07001230 struct bkey *k;
1231 struct btree_iter iter;
1232 struct bset_tree *t;
1233
1234 gc->nodes++;
1235
Kent Overstreetc052dd92013-11-11 17:35:24 -08001236 for_each_key_filter(&b->keys, k, &iter, bch_ptr_invalid) {
Kent Overstreetcafe5632013-03-23 16:11:31 -07001237 stale = max(stale, btree_mark_key(b, k));
Kent Overstreeta1f03582013-09-10 19:07:00 -07001238 keys++;
Kent Overstreetcafe5632013-03-23 16:11:31 -07001239
Kent Overstreeta85e9682013-12-20 17:28:16 -08001240 if (bch_ptr_bad(&b->keys, k))
Kent Overstreetcafe5632013-03-23 16:11:31 -07001241 continue;
1242
Kent Overstreetcafe5632013-03-23 16:11:31 -07001243 gc->key_bytes += bkey_u64s(k);
1244 gc->nkeys++;
Kent Overstreeta1f03582013-09-10 19:07:00 -07001245 good_keys++;
Kent Overstreetcafe5632013-03-23 16:11:31 -07001246
1247 gc->data += KEY_SIZE(k);
Kent Overstreetcafe5632013-03-23 16:11:31 -07001248 }
1249
Kent Overstreeta85e9682013-12-20 17:28:16 -08001250 for (t = b->keys.set; t <= &b->keys.set[b->keys.nsets]; t++)
Kent Overstreetcafe5632013-03-23 16:11:31 -07001251 btree_bug_on(t->size &&
Kent Overstreeta85e9682013-12-20 17:28:16 -08001252 bset_written(&b->keys, t) &&
Kent Overstreetcafe5632013-03-23 16:11:31 -07001253 bkey_cmp(&b->key, &t->end) < 0,
1254 b, "found short btree key in gc");
1255
Kent Overstreeta1f03582013-09-10 19:07:00 -07001256 if (b->c->gc_always_rewrite)
1257 return true;
1258
1259 if (stale > 10)
1260 return true;
1261
1262 if ((keys - good_keys) * 2 > keys)
1263 return true;
1264
1265 return false;
Kent Overstreetcafe5632013-03-23 16:11:31 -07001266}
1267
Kent Overstreeta1f03582013-09-10 19:07:00 -07001268#define GC_MERGE_NODES 4U
Kent Overstreetcafe5632013-03-23 16:11:31 -07001269
1270struct gc_merge_info {
1271 struct btree *b;
Kent Overstreetcafe5632013-03-23 16:11:31 -07001272 unsigned keys;
1273};
1274
Kent Overstreeta1f03582013-09-10 19:07:00 -07001275static int bch_btree_insert_node(struct btree *, struct btree_op *,
1276 struct keylist *, atomic_t *, struct bkey *);
Kent Overstreetb54d6932013-07-24 18:04:18 -07001277
Kent Overstreeta1f03582013-09-10 19:07:00 -07001278static int btree_gc_coalesce(struct btree *b, struct btree_op *op,
1279 struct keylist *keylist, struct gc_stat *gc,
1280 struct gc_merge_info *r)
1281{
1282 unsigned i, nodes = 0, keys = 0, blocks;
1283 struct btree *new_nodes[GC_MERGE_NODES];
1284 struct closure cl;
1285 struct bkey *k;
1286
1287 memset(new_nodes, 0, sizeof(new_nodes));
Kent Overstreetb54d6932013-07-24 18:04:18 -07001288 closure_init_stack(&cl);
Kent Overstreetcafe5632013-03-23 16:11:31 -07001289
Kent Overstreeta1f03582013-09-10 19:07:00 -07001290 while (nodes < GC_MERGE_NODES && !IS_ERR_OR_NULL(r[nodes].b))
Kent Overstreetcafe5632013-03-23 16:11:31 -07001291 keys += r[nodes++].keys;
1292
1293 blocks = btree_default_blocks(b->c) * 2 / 3;
1294
1295 if (nodes < 2 ||
Kent Overstreeta85e9682013-12-20 17:28:16 -08001296 __set_blocks(b->keys.set[0].data, keys,
Kent Overstreetee811282013-12-17 23:49:49 -08001297 block_bytes(b->c)) > blocks * (nodes - 1))
Kent Overstreeta1f03582013-09-10 19:07:00 -07001298 return 0;
Kent Overstreetcafe5632013-03-23 16:11:31 -07001299
Kent Overstreeta1f03582013-09-10 19:07:00 -07001300 for (i = 0; i < nodes; i++) {
Kent Overstreetbc9389e2013-09-10 19:07:35 -07001301 new_nodes[i] = btree_node_alloc_replacement(r[i].b, false);
Kent Overstreeta1f03582013-09-10 19:07:00 -07001302 if (IS_ERR_OR_NULL(new_nodes[i]))
1303 goto out_nocoalesce;
Kent Overstreetcafe5632013-03-23 16:11:31 -07001304 }
1305
Kent Overstreet2a285682014-03-04 16:42:42 -08001306 for (i = 0; i < nodes; i++)
1307 mutex_lock(&new_nodes[i]->write_lock);
1308
Kent Overstreetcafe5632013-03-23 16:11:31 -07001309 for (i = nodes - 1; i > 0; --i) {
Kent Overstreetee811282013-12-17 23:49:49 -08001310 struct bset *n1 = btree_bset_first(new_nodes[i]);
1311 struct bset *n2 = btree_bset_first(new_nodes[i - 1]);
Kent Overstreetcafe5632013-03-23 16:11:31 -07001312 struct bkey *k, *last = NULL;
1313
1314 keys = 0;
1315
Kent Overstreeta1f03582013-09-10 19:07:00 -07001316 if (i > 1) {
Kent Overstreetcafe5632013-03-23 16:11:31 -07001317 for (k = n2->start;
Kent Overstreetfafff812013-12-17 21:56:21 -08001318 k < bset_bkey_last(n2);
Kent Overstreetcafe5632013-03-23 16:11:31 -07001319 k = bkey_next(k)) {
1320 if (__set_blocks(n1, n1->keys + keys +
Kent Overstreetee811282013-12-17 23:49:49 -08001321 bkey_u64s(k),
1322 block_bytes(b->c)) > blocks)
Kent Overstreetcafe5632013-03-23 16:11:31 -07001323 break;
1324
1325 last = k;
1326 keys += bkey_u64s(k);
1327 }
Kent Overstreeta1f03582013-09-10 19:07:00 -07001328 } else {
1329 /*
1330 * Last node we're not getting rid of - we're getting
1331 * rid of the node at r[0]. Have to try and fit all of
1332 * the remaining keys into this node; we can't ensure
1333 * they will always fit due to rounding and variable
1334 * length keys (shouldn't be possible in practice,
1335 * though)
1336 */
1337 if (__set_blocks(n1, n1->keys + n2->keys,
Kent Overstreetee811282013-12-17 23:49:49 -08001338 block_bytes(b->c)) >
1339 btree_blocks(new_nodes[i]))
Kent Overstreeta1f03582013-09-10 19:07:00 -07001340 goto out_nocoalesce;
1341
1342 keys = n2->keys;
1343 /* Take the key of the node we're getting rid of */
1344 last = &r->b->key;
1345 }
Kent Overstreetcafe5632013-03-23 16:11:31 -07001346
Kent Overstreetee811282013-12-17 23:49:49 -08001347 BUG_ON(__set_blocks(n1, n1->keys + keys, block_bytes(b->c)) >
1348 btree_blocks(new_nodes[i]));
Kent Overstreetcafe5632013-03-23 16:11:31 -07001349
Kent Overstreeta1f03582013-09-10 19:07:00 -07001350 if (last)
1351 bkey_copy_key(&new_nodes[i]->key, last);
Kent Overstreetcafe5632013-03-23 16:11:31 -07001352
Kent Overstreetfafff812013-12-17 21:56:21 -08001353 memcpy(bset_bkey_last(n1),
Kent Overstreetcafe5632013-03-23 16:11:31 -07001354 n2->start,
Kent Overstreetfafff812013-12-17 21:56:21 -08001355 (void *) bset_bkey_idx(n2, keys) - (void *) n2->start);
Kent Overstreetcafe5632013-03-23 16:11:31 -07001356
1357 n1->keys += keys;
Kent Overstreeta1f03582013-09-10 19:07:00 -07001358 r[i].keys = n1->keys;
Kent Overstreetcafe5632013-03-23 16:11:31 -07001359
1360 memmove(n2->start,
Kent Overstreetfafff812013-12-17 21:56:21 -08001361 bset_bkey_idx(n2, keys),
1362 (void *) bset_bkey_last(n2) -
1363 (void *) bset_bkey_idx(n2, keys));
Kent Overstreetcafe5632013-03-23 16:11:31 -07001364
1365 n2->keys -= keys;
1366
Kent Overstreet085d2a32013-11-11 18:20:51 -08001367 if (__bch_keylist_realloc(keylist,
1368 bkey_u64s(&new_nodes[i]->key)))
Kent Overstreeta1f03582013-09-10 19:07:00 -07001369 goto out_nocoalesce;
1370
1371 bch_btree_node_write(new_nodes[i], &cl);
1372 bch_keylist_add(keylist, &new_nodes[i]->key);
Kent Overstreetcafe5632013-03-23 16:11:31 -07001373 }
1374
Kent Overstreet2a285682014-03-04 16:42:42 -08001375 for (i = 0; i < nodes; i++)
1376 mutex_unlock(&new_nodes[i]->write_lock);
1377
Kent Overstreet05335cf2014-03-17 18:22:34 -07001378 closure_sync(&cl);
1379
1380 /* We emptied out this node */
1381 BUG_ON(btree_bset_first(new_nodes[0])->keys);
1382 btree_node_free(new_nodes[0]);
1383 rw_unlock(true, new_nodes[0]);
1384
Kent Overstreeta1f03582013-09-10 19:07:00 -07001385 for (i = 0; i < nodes; i++) {
Kent Overstreet085d2a32013-11-11 18:20:51 -08001386 if (__bch_keylist_realloc(keylist, bkey_u64s(&r[i].b->key)))
Kent Overstreeta1f03582013-09-10 19:07:00 -07001387 goto out_nocoalesce;
1388
1389 make_btree_freeing_key(r[i].b, keylist->top);
1390 bch_keylist_push(keylist);
1391 }
1392
Kent Overstreet05335cf2014-03-17 18:22:34 -07001393 bch_btree_insert_node(b, op, keylist, NULL, NULL);
1394 BUG_ON(!bch_keylist_empty(keylist));
Kent Overstreeta1f03582013-09-10 19:07:00 -07001395
1396 for (i = 0; i < nodes; i++) {
1397 btree_node_free(r[i].b);
1398 rw_unlock(true, r[i].b);
1399
1400 r[i].b = new_nodes[i];
1401 }
1402
Kent Overstreeta1f03582013-09-10 19:07:00 -07001403 memmove(r, r + 1, sizeof(r[0]) * (nodes - 1));
1404 r[nodes - 1].b = ERR_PTR(-EINTR);
Kent Overstreetcafe5632013-03-23 16:11:31 -07001405
Kent Overstreetc37511b2013-04-26 15:39:55 -07001406 trace_bcache_btree_gc_coalesce(nodes);
Kent Overstreetcafe5632013-03-23 16:11:31 -07001407 gc->nodes--;
Kent Overstreetcafe5632013-03-23 16:11:31 -07001408
Kent Overstreeta1f03582013-09-10 19:07:00 -07001409 /* Invalidated our iterator */
1410 return -EINTR;
1411
1412out_nocoalesce:
1413 closure_sync(&cl);
1414
1415 while ((k = bch_keylist_pop(keylist)))
1416 if (!bkey_cmp(k, &ZERO_KEY))
1417 atomic_dec(&b->c->prio_blocked);
1418
1419 for (i = 0; i < nodes; i++)
1420 if (!IS_ERR_OR_NULL(new_nodes[i])) {
1421 btree_node_free(new_nodes[i]);
1422 rw_unlock(true, new_nodes[i]);
1423 }
1424 return 0;
1425}
1426
1427static unsigned btree_gc_count_keys(struct btree *b)
1428{
1429 struct bkey *k;
1430 struct btree_iter iter;
1431 unsigned ret = 0;
1432
Kent Overstreetc052dd92013-11-11 17:35:24 -08001433 for_each_key_filter(&b->keys, k, &iter, bch_ptr_bad)
Kent Overstreeta1f03582013-09-10 19:07:00 -07001434 ret += bkey_u64s(k);
1435
1436 return ret;
Kent Overstreetcafe5632013-03-23 16:11:31 -07001437}
1438
1439static int btree_gc_recurse(struct btree *b, struct btree_op *op,
1440 struct closure *writes, struct gc_stat *gc)
1441{
Kent Overstreeta1f03582013-09-10 19:07:00 -07001442 int ret = 0;
1443 bool should_rewrite;
1444 struct btree *n;
1445 struct bkey *k;
1446 struct keylist keys;
1447 struct btree_iter iter;
Kent Overstreetcafe5632013-03-23 16:11:31 -07001448 struct gc_merge_info r[GC_MERGE_NODES];
Kent Overstreet2a285682014-03-04 16:42:42 -08001449 struct gc_merge_info *i, *last = r + ARRAY_SIZE(r) - 1;
Kent Overstreetcafe5632013-03-23 16:11:31 -07001450
Kent Overstreeta1f03582013-09-10 19:07:00 -07001451 bch_keylist_init(&keys);
Kent Overstreetc052dd92013-11-11 17:35:24 -08001452 bch_btree_iter_init(&b->keys, &iter, &b->c->gc_done);
Kent Overstreetcafe5632013-03-23 16:11:31 -07001453
Kent Overstreet2a285682014-03-04 16:42:42 -08001454 for (i = r; i < r + ARRAY_SIZE(r); i++)
1455 i->b = ERR_PTR(-EINTR);
Kent Overstreetcafe5632013-03-23 16:11:31 -07001456
Kent Overstreeta1f03582013-09-10 19:07:00 -07001457 while (1) {
Kent Overstreeta85e9682013-12-20 17:28:16 -08001458 k = bch_btree_iter_next_filter(&iter, &b->keys, bch_ptr_bad);
Kent Overstreeta1f03582013-09-10 19:07:00 -07001459 if (k) {
1460 r->b = bch_btree_node_get(b->c, k, b->level - 1, true);
1461 if (IS_ERR(r->b)) {
1462 ret = PTR_ERR(r->b);
1463 break;
1464 }
1465
1466 r->keys = btree_gc_count_keys(r->b);
1467
1468 ret = btree_gc_coalesce(b, op, &keys, gc, r);
1469 if (ret)
1470 break;
Kent Overstreetcafe5632013-03-23 16:11:31 -07001471 }
1472
Kent Overstreeta1f03582013-09-10 19:07:00 -07001473 if (!last->b)
Kent Overstreetcafe5632013-03-23 16:11:31 -07001474 break;
Kent Overstreeta1f03582013-09-10 19:07:00 -07001475
1476 if (!IS_ERR(last->b)) {
1477 should_rewrite = btree_gc_mark_node(last->b, gc);
Kent Overstreet78365412013-12-17 01:29:34 -08001478 if (should_rewrite &&
1479 !btree_check_reserve(b, NULL)) {
Kent Overstreetbc9389e2013-09-10 19:07:35 -07001480 n = btree_node_alloc_replacement(last->b,
1481 false);
Kent Overstreeta1f03582013-09-10 19:07:00 -07001482
1483 if (!IS_ERR_OR_NULL(n)) {
1484 bch_btree_node_write_sync(n);
Kent Overstreet2a285682014-03-04 16:42:42 -08001485
Kent Overstreeta1f03582013-09-10 19:07:00 -07001486 bch_keylist_add(&keys, &n->key);
1487
1488 make_btree_freeing_key(last->b,
1489 keys.top);
1490 bch_keylist_push(&keys);
1491
Kent Overstreeta1f03582013-09-10 19:07:00 -07001492 bch_btree_insert_node(b, op, &keys,
1493 NULL, NULL);
1494 BUG_ON(!bch_keylist_empty(&keys));
1495
Kent Overstreet05335cf2014-03-17 18:22:34 -07001496 btree_node_free(last->b);
Kent Overstreeta1f03582013-09-10 19:07:00 -07001497 rw_unlock(true, last->b);
1498 last->b = n;
1499
1500 /* Invalidated our iterator */
1501 ret = -EINTR;
1502 break;
1503 }
1504 }
1505
1506 if (last->b->level) {
1507 ret = btree_gc_recurse(last->b, op, writes, gc);
1508 if (ret)
1509 break;
1510 }
1511
1512 bkey_copy_key(&b->c->gc_done, &last->b->key);
1513
1514 /*
1515 * Must flush leaf nodes before gc ends, since replace
1516 * operations aren't journalled
1517 */
Kent Overstreet2a285682014-03-04 16:42:42 -08001518 mutex_lock(&last->b->write_lock);
Kent Overstreeta1f03582013-09-10 19:07:00 -07001519 if (btree_node_dirty(last->b))
1520 bch_btree_node_write(last->b, writes);
Kent Overstreet2a285682014-03-04 16:42:42 -08001521 mutex_unlock(&last->b->write_lock);
Kent Overstreeta1f03582013-09-10 19:07:00 -07001522 rw_unlock(true, last->b);
Kent Overstreetcafe5632013-03-23 16:11:31 -07001523 }
1524
Kent Overstreeta1f03582013-09-10 19:07:00 -07001525 memmove(r + 1, r, sizeof(r[0]) * (GC_MERGE_NODES - 1));
1526 r->b = NULL;
Kent Overstreetcafe5632013-03-23 16:11:31 -07001527
Kent Overstreetcafe5632013-03-23 16:11:31 -07001528 if (need_resched()) {
1529 ret = -EAGAIN;
1530 break;
1531 }
Kent Overstreetcafe5632013-03-23 16:11:31 -07001532 }
1533
Kent Overstreet2a285682014-03-04 16:42:42 -08001534 for (i = r; i < r + ARRAY_SIZE(r); i++)
1535 if (!IS_ERR_OR_NULL(i->b)) {
1536 mutex_lock(&i->b->write_lock);
1537 if (btree_node_dirty(i->b))
1538 bch_btree_node_write(i->b, writes);
1539 mutex_unlock(&i->b->write_lock);
1540 rw_unlock(true, i->b);
Kent Overstreeta1f03582013-09-10 19:07:00 -07001541 }
Kent Overstreetcafe5632013-03-23 16:11:31 -07001542
Kent Overstreeta1f03582013-09-10 19:07:00 -07001543 bch_keylist_free(&keys);
Kent Overstreetcafe5632013-03-23 16:11:31 -07001544
1545 return ret;
1546}
1547
1548static int bch_btree_gc_root(struct btree *b, struct btree_op *op,
1549 struct closure *writes, struct gc_stat *gc)
1550{
1551 struct btree *n = NULL;
Kent Overstreeta1f03582013-09-10 19:07:00 -07001552 int ret = 0;
1553 bool should_rewrite;
Kent Overstreetcafe5632013-03-23 16:11:31 -07001554
Kent Overstreeta1f03582013-09-10 19:07:00 -07001555 should_rewrite = btree_gc_mark_node(b, gc);
1556 if (should_rewrite) {
Kent Overstreetbc9389e2013-09-10 19:07:35 -07001557 n = btree_node_alloc_replacement(b, false);
Kent Overstreetcafe5632013-03-23 16:11:31 -07001558
Kent Overstreeta1f03582013-09-10 19:07:00 -07001559 if (!IS_ERR_OR_NULL(n)) {
1560 bch_btree_node_write_sync(n);
Kent Overstreet2a285682014-03-04 16:42:42 -08001561
Kent Overstreeta1f03582013-09-10 19:07:00 -07001562 bch_btree_set_root(n);
1563 btree_node_free(b);
1564 rw_unlock(true, n);
Kent Overstreetcafe5632013-03-23 16:11:31 -07001565
Kent Overstreeta1f03582013-09-10 19:07:00 -07001566 return -EINTR;
1567 }
Kent Overstreetcafe5632013-03-23 16:11:31 -07001568 }
1569
Kent Overstreet487dded2014-03-17 15:13:26 -07001570 __bch_btree_mark_key(b->c, b->level + 1, &b->key);
1571
Kent Overstreeta1f03582013-09-10 19:07:00 -07001572 if (b->level) {
1573 ret = btree_gc_recurse(b, op, writes, gc);
1574 if (ret)
1575 return ret;
1576 }
1577
1578 bkey_copy_key(&b->c->gc_done, &b->key);
1579
Kent Overstreetcafe5632013-03-23 16:11:31 -07001580 return ret;
1581}
1582
1583static void btree_gc_start(struct cache_set *c)
1584{
1585 struct cache *ca;
1586 struct bucket *b;
Kent Overstreetcafe5632013-03-23 16:11:31 -07001587 unsigned i;
1588
1589 if (!c->gc_mark_valid)
1590 return;
1591
1592 mutex_lock(&c->bucket_lock);
1593
1594 c->gc_mark_valid = 0;
1595 c->gc_done = ZERO_KEY;
1596
1597 for_each_cache(ca, c, i)
1598 for_each_bucket(b, ca) {
1599 b->gc_gen = b->gen;
Kent Overstreet29ebf462013-07-11 19:43:21 -07001600 if (!atomic_read(&b->pin)) {
Kent Overstreet4fe6a812014-03-13 13:46:29 -07001601 SET_GC_MARK(b, 0);
Kent Overstreet29ebf462013-07-11 19:43:21 -07001602 SET_GC_SECTORS_USED(b, 0);
1603 }
Kent Overstreetcafe5632013-03-23 16:11:31 -07001604 }
1605
Kent Overstreetcafe5632013-03-23 16:11:31 -07001606 mutex_unlock(&c->bucket_lock);
1607}
1608
1609size_t bch_btree_gc_finish(struct cache_set *c)
1610{
1611 size_t available = 0;
1612 struct bucket *b;
1613 struct cache *ca;
Kent Overstreetcafe5632013-03-23 16:11:31 -07001614 unsigned i;
1615
1616 mutex_lock(&c->bucket_lock);
1617
1618 set_gc_sectors(c);
1619 c->gc_mark_valid = 1;
1620 c->need_gc = 0;
1621
Kent Overstreetcafe5632013-03-23 16:11:31 -07001622 for (i = 0; i < KEY_PTRS(&c->uuid_bucket); i++)
1623 SET_GC_MARK(PTR_BUCKET(c, &c->uuid_bucket, i),
1624 GC_MARK_METADATA);
1625
Nicholas Swensonbf0a6282013-11-26 19:14:23 -08001626 /* don't reclaim buckets to which writeback keys point */
1627 rcu_read_lock();
1628 for (i = 0; i < c->nr_uuids; i++) {
1629 struct bcache_device *d = c->devices[i];
1630 struct cached_dev *dc;
1631 struct keybuf_key *w, *n;
1632 unsigned j;
1633
1634 if (!d || UUID_FLASH_ONLY(&c->uuids[i]))
1635 continue;
1636 dc = container_of(d, struct cached_dev, disk);
1637
1638 spin_lock(&dc->writeback_keys.lock);
1639 rbtree_postorder_for_each_entry_safe(w, n,
1640 &dc->writeback_keys.keys, node)
1641 for (j = 0; j < KEY_PTRS(&w->key); j++)
1642 SET_GC_MARK(PTR_BUCKET(c, &w->key, j),
1643 GC_MARK_DIRTY);
1644 spin_unlock(&dc->writeback_keys.lock);
1645 }
1646 rcu_read_unlock();
1647
Kent Overstreetcafe5632013-03-23 16:11:31 -07001648 for_each_cache(ca, c, i) {
1649 uint64_t *i;
1650
1651 ca->invalidate_needs_gc = 0;
1652
1653 for (i = ca->sb.d; i < ca->sb.d + ca->sb.keys; i++)
1654 SET_GC_MARK(ca->buckets + *i, GC_MARK_METADATA);
1655
1656 for (i = ca->prio_buckets;
1657 i < ca->prio_buckets + prio_buckets(ca) * 2; i++)
1658 SET_GC_MARK(ca->buckets + *i, GC_MARK_METADATA);
1659
1660 for_each_bucket(b, ca) {
1661 b->last_gc = b->gc_gen;
1662 c->need_gc = max(c->need_gc, bucket_gc_gen(b));
1663
Kent Overstreet4fe6a812014-03-13 13:46:29 -07001664 if (atomic_read(&b->pin))
1665 continue;
1666
1667 BUG_ON(!GC_MARK(b) && GC_SECTORS_USED(b));
1668
1669 if (!GC_MARK(b) || GC_MARK(b) == GC_MARK_RECLAIMABLE)
Kent Overstreetcafe5632013-03-23 16:11:31 -07001670 available++;
Kent Overstreet4fe6a812014-03-13 13:46:29 -07001671
1672 if (!GC_MARK(b))
1673 bch_bucket_add_unused(ca, b);
Kent Overstreetcafe5632013-03-23 16:11:31 -07001674 }
1675 }
1676
Kent Overstreetcafe5632013-03-23 16:11:31 -07001677 mutex_unlock(&c->bucket_lock);
1678 return available;
1679}
1680
Kent Overstreet72a44512013-10-24 17:19:26 -07001681static void bch_btree_gc(struct cache_set *c)
Kent Overstreetcafe5632013-03-23 16:11:31 -07001682{
Kent Overstreetcafe5632013-03-23 16:11:31 -07001683 int ret;
1684 unsigned long available;
1685 struct gc_stat stats;
1686 struct closure writes;
1687 struct btree_op op;
Kent Overstreetcafe5632013-03-23 16:11:31 -07001688 uint64_t start_time = local_clock();
Kent Overstreet57943512013-04-25 13:58:35 -07001689
Kent Overstreetc37511b2013-04-26 15:39:55 -07001690 trace_bcache_gc_start(c);
Kent Overstreetcafe5632013-03-23 16:11:31 -07001691
1692 memset(&stats, 0, sizeof(struct gc_stat));
1693 closure_init_stack(&writes);
Kent Overstreetb54d6932013-07-24 18:04:18 -07001694 bch_btree_op_init(&op, SHRT_MAX);
Kent Overstreetcafe5632013-03-23 16:11:31 -07001695
1696 btree_gc_start(c);
1697
Kent Overstreeta1f03582013-09-10 19:07:00 -07001698 do {
1699 ret = btree_root(gc_root, c, &op, &writes, &stats);
1700 closure_sync(&writes);
Kent Overstreet57943512013-04-25 13:58:35 -07001701
Kent Overstreeta1f03582013-09-10 19:07:00 -07001702 if (ret && ret != -EAGAIN)
1703 pr_warn("gc failed!");
1704 } while (ret);
Kent Overstreetcafe5632013-03-23 16:11:31 -07001705
1706 available = bch_btree_gc_finish(c);
Kent Overstreet57943512013-04-25 13:58:35 -07001707 wake_up_allocators(c);
1708
Kent Overstreet169ef1c2013-03-28 12:50:55 -06001709 bch_time_stats_update(&c->btree_gc_time, start_time);
Kent Overstreetcafe5632013-03-23 16:11:31 -07001710
1711 stats.key_bytes *= sizeof(uint64_t);
Kent Overstreetcafe5632013-03-23 16:11:31 -07001712 stats.data <<= 9;
1713 stats.in_use = (c->nbuckets - available) * 100 / c->nbuckets;
1714 memcpy(&c->gc_stats, &stats, sizeof(struct gc_stat));
Kent Overstreetcafe5632013-03-23 16:11:31 -07001715
Kent Overstreetc37511b2013-04-26 15:39:55 -07001716 trace_bcache_gc_end(c);
Kent Overstreetcafe5632013-03-23 16:11:31 -07001717
Kent Overstreet72a44512013-10-24 17:19:26 -07001718 bch_moving_gc(c);
Kent Overstreetcafe5632013-03-23 16:11:31 -07001719}
1720
Kent Overstreet72a44512013-10-24 17:19:26 -07001721static int bch_gc_thread(void *arg)
Kent Overstreetcafe5632013-03-23 16:11:31 -07001722{
Kent Overstreet72a44512013-10-24 17:19:26 -07001723 struct cache_set *c = arg;
Kent Overstreeta1f03582013-09-10 19:07:00 -07001724 struct cache *ca;
1725 unsigned i;
Kent Overstreet72a44512013-10-24 17:19:26 -07001726
1727 while (1) {
Kent Overstreeta1f03582013-09-10 19:07:00 -07001728again:
Kent Overstreet72a44512013-10-24 17:19:26 -07001729 bch_btree_gc(c);
1730
1731 set_current_state(TASK_INTERRUPTIBLE);
1732 if (kthread_should_stop())
1733 break;
1734
Kent Overstreeta1f03582013-09-10 19:07:00 -07001735 mutex_lock(&c->bucket_lock);
1736
1737 for_each_cache(ca, c, i)
1738 if (ca->invalidate_needs_gc) {
1739 mutex_unlock(&c->bucket_lock);
1740 set_current_state(TASK_RUNNING);
1741 goto again;
1742 }
1743
1744 mutex_unlock(&c->bucket_lock);
1745
Kent Overstreet72a44512013-10-24 17:19:26 -07001746 try_to_freeze();
1747 schedule();
1748 }
1749
1750 return 0;
1751}
1752
1753int bch_gc_thread_start(struct cache_set *c)
1754{
1755 c->gc_thread = kthread_create(bch_gc_thread, c, "bcache_gc");
1756 if (IS_ERR(c->gc_thread))
1757 return PTR_ERR(c->gc_thread);
1758
1759 set_task_state(c->gc_thread, TASK_INTERRUPTIBLE);
1760 return 0;
Kent Overstreetcafe5632013-03-23 16:11:31 -07001761}
1762
1763/* Initial partial gc */
1764
Kent Overstreet487dded2014-03-17 15:13:26 -07001765static int bch_btree_check_recurse(struct btree *b, struct btree_op *op)
Kent Overstreetcafe5632013-03-23 16:11:31 -07001766{
Kent Overstreet50310162013-09-10 17:18:59 -07001767 int ret = 0;
Kent Overstreet50310162013-09-10 17:18:59 -07001768 struct bkey *k, *p = NULL;
Kent Overstreetcafe5632013-03-23 16:11:31 -07001769 struct btree_iter iter;
1770
Kent Overstreet487dded2014-03-17 15:13:26 -07001771 for_each_key_filter(&b->keys, k, &iter, bch_ptr_invalid)
1772 bch_initial_mark_key(b->c, b->level, k);
Kent Overstreetcafe5632013-03-23 16:11:31 -07001773
Kent Overstreet487dded2014-03-17 15:13:26 -07001774 bch_initial_mark_key(b->c, b->level + 1, &b->key);
Kent Overstreetcafe5632013-03-23 16:11:31 -07001775
1776 if (b->level) {
Kent Overstreetc052dd92013-11-11 17:35:24 -08001777 bch_btree_iter_init(&b->keys, &iter, NULL);
Kent Overstreetcafe5632013-03-23 16:11:31 -07001778
Kent Overstreet50310162013-09-10 17:18:59 -07001779 do {
Kent Overstreeta85e9682013-12-20 17:28:16 -08001780 k = bch_btree_iter_next_filter(&iter, &b->keys,
1781 bch_ptr_bad);
Kent Overstreet50310162013-09-10 17:18:59 -07001782 if (k)
1783 btree_node_prefetch(b->c, k, b->level - 1);
1784
Kent Overstreetcafe5632013-03-23 16:11:31 -07001785 if (p)
Kent Overstreet487dded2014-03-17 15:13:26 -07001786 ret = btree(check_recurse, p, b, op);
Kent Overstreetcafe5632013-03-23 16:11:31 -07001787
Kent Overstreet50310162013-09-10 17:18:59 -07001788 p = k;
1789 } while (p && !ret);
Kent Overstreetcafe5632013-03-23 16:11:31 -07001790 }
1791
Kent Overstreet487dded2014-03-17 15:13:26 -07001792 return ret;
Kent Overstreetcafe5632013-03-23 16:11:31 -07001793}
1794
Kent Overstreetc18536a2013-07-24 17:44:17 -07001795int bch_btree_check(struct cache_set *c)
Kent Overstreetcafe5632013-03-23 16:11:31 -07001796{
Kent Overstreetc18536a2013-07-24 17:44:17 -07001797 struct btree_op op;
Kent Overstreetcafe5632013-03-23 16:11:31 -07001798
Kent Overstreetb54d6932013-07-24 18:04:18 -07001799 bch_btree_op_init(&op, SHRT_MAX);
Kent Overstreetcafe5632013-03-23 16:11:31 -07001800
Kent Overstreet487dded2014-03-17 15:13:26 -07001801 return btree_root(check_recurse, c, &op);
Kent Overstreetcafe5632013-03-23 16:11:31 -07001802}
1803
1804/* Btree insertion */
1805
Kent Overstreet829a60b2013-11-11 17:02:31 -08001806static bool btree_insert_key(struct btree *b, struct bkey *k,
1807 struct bkey *replace_key)
Kent Overstreetcafe5632013-03-23 16:11:31 -07001808{
Kent Overstreet829a60b2013-11-11 17:02:31 -08001809 unsigned status;
Kent Overstreetcafe5632013-03-23 16:11:31 -07001810
1811 BUG_ON(bkey_cmp(k, &b->key) > 0);
Kent Overstreetcafe5632013-03-23 16:11:31 -07001812
Kent Overstreet829a60b2013-11-11 17:02:31 -08001813 status = bch_btree_insert_key(&b->keys, k, replace_key);
1814 if (status != BTREE_INSERT_STATUS_NO_INSERT) {
1815 bch_check_keys(&b->keys, "%u for %s", status,
1816 replace_key ? "replace" : "insert");
Kent Overstreetcafe5632013-03-23 16:11:31 -07001817
Kent Overstreet829a60b2013-11-11 17:02:31 -08001818 trace_bcache_btree_insert_key(b, k, replace_key != NULL,
1819 status);
1820 return true;
1821 } else
1822 return false;
Kent Overstreetcafe5632013-03-23 16:11:31 -07001823}
1824
Kent Overstreet59158fd2013-11-11 19:03:54 -08001825static size_t insert_u64s_remaining(struct btree *b)
1826{
Kent Overstreet35723242014-01-10 18:53:02 -08001827 long ret = bch_btree_keys_u64s_remaining(&b->keys);
Kent Overstreet59158fd2013-11-11 19:03:54 -08001828
1829 /*
1830 * Might land in the middle of an existing extent and have to split it
1831 */
1832 if (b->keys.ops->is_extents)
1833 ret -= KEY_MAX_U64S;
1834
1835 return max(ret, 0L);
1836}
1837
Kent Overstreet26c949f2013-09-10 18:41:15 -07001838static bool bch_btree_insert_keys(struct btree *b, struct btree_op *op,
Kent Overstreet1b207d82013-09-10 18:52:54 -07001839 struct keylist *insert_keys,
1840 struct bkey *replace_key)
Kent Overstreetcafe5632013-03-23 16:11:31 -07001841{
1842 bool ret = false;
Kent Overstreetdc9d98d2013-12-17 23:47:33 -08001843 int oldsize = bch_count_data(&b->keys);
Kent Overstreetcafe5632013-03-23 16:11:31 -07001844
Kent Overstreet26c949f2013-09-10 18:41:15 -07001845 while (!bch_keylist_empty(insert_keys)) {
Kent Overstreetc2f95ae2013-07-24 17:24:25 -07001846 struct bkey *k = insert_keys->keys;
Kent Overstreet26c949f2013-09-10 18:41:15 -07001847
Kent Overstreet59158fd2013-11-11 19:03:54 -08001848 if (bkey_u64s(k) > insert_u64s_remaining(b))
Kent Overstreet403b6cd2013-07-24 17:22:44 -07001849 break;
1850
1851 if (bkey_cmp(k, &b->key) <= 0) {
Kent Overstreet3a3b6a42013-07-24 16:46:42 -07001852 if (!b->level)
1853 bkey_put(b->c, k);
Kent Overstreet26c949f2013-09-10 18:41:15 -07001854
Kent Overstreet829a60b2013-11-11 17:02:31 -08001855 ret |= btree_insert_key(b, k, replace_key);
Kent Overstreet26c949f2013-09-10 18:41:15 -07001856 bch_keylist_pop_front(insert_keys);
1857 } else if (bkey_cmp(&START_KEY(k), &b->key) < 0) {
Kent Overstreet26c949f2013-09-10 18:41:15 -07001858 BKEY_PADDED(key) temp;
Kent Overstreetc2f95ae2013-07-24 17:24:25 -07001859 bkey_copy(&temp.key, insert_keys->keys);
Kent Overstreet26c949f2013-09-10 18:41:15 -07001860
1861 bch_cut_back(&b->key, &temp.key);
Kent Overstreetc2f95ae2013-07-24 17:24:25 -07001862 bch_cut_front(&b->key, insert_keys->keys);
Kent Overstreet26c949f2013-09-10 18:41:15 -07001863
Kent Overstreet829a60b2013-11-11 17:02:31 -08001864 ret |= btree_insert_key(b, &temp.key, replace_key);
Kent Overstreet26c949f2013-09-10 18:41:15 -07001865 break;
1866 } else {
1867 break;
1868 }
Kent Overstreetcafe5632013-03-23 16:11:31 -07001869 }
1870
Kent Overstreet829a60b2013-11-11 17:02:31 -08001871 if (!ret)
1872 op->insert_collision = true;
1873
Kent Overstreet403b6cd2013-07-24 17:22:44 -07001874 BUG_ON(!bch_keylist_empty(insert_keys) && b->level);
1875
Kent Overstreetdc9d98d2013-12-17 23:47:33 -08001876 BUG_ON(bch_count_data(&b->keys) < oldsize);
Kent Overstreetcafe5632013-03-23 16:11:31 -07001877 return ret;
1878}
1879
Kent Overstreet26c949f2013-09-10 18:41:15 -07001880static int btree_split(struct btree *b, struct btree_op *op,
1881 struct keylist *insert_keys,
Kent Overstreet1b207d82013-09-10 18:52:54 -07001882 struct bkey *replace_key)
Kent Overstreetcafe5632013-03-23 16:11:31 -07001883{
Kent Overstreetd6fd3b12013-07-24 17:20:19 -07001884 bool split;
Kent Overstreetcafe5632013-03-23 16:11:31 -07001885 struct btree *n1, *n2 = NULL, *n3 = NULL;
1886 uint64_t start_time = local_clock();
Kent Overstreetb54d6932013-07-24 18:04:18 -07001887 struct closure cl;
Kent Overstreet17e21a92013-07-26 12:32:38 -07001888 struct keylist parent_keys;
Kent Overstreetb54d6932013-07-24 18:04:18 -07001889
1890 closure_init_stack(&cl);
Kent Overstreet17e21a92013-07-26 12:32:38 -07001891 bch_keylist_init(&parent_keys);
Kent Overstreetcafe5632013-03-23 16:11:31 -07001892
Kent Overstreet78365412013-12-17 01:29:34 -08001893 if (!b->level &&
1894 btree_check_reserve(b, op))
1895 return -EINTR;
1896
Kent Overstreetbc9389e2013-09-10 19:07:35 -07001897 n1 = btree_node_alloc_replacement(b, true);
Kent Overstreetcafe5632013-03-23 16:11:31 -07001898 if (IS_ERR(n1))
1899 goto err;
1900
Kent Overstreetee811282013-12-17 23:49:49 -08001901 split = set_blocks(btree_bset_first(n1),
1902 block_bytes(n1->c)) > (btree_blocks(b) * 4) / 5;
Kent Overstreetcafe5632013-03-23 16:11:31 -07001903
Kent Overstreetcafe5632013-03-23 16:11:31 -07001904 if (split) {
1905 unsigned keys = 0;
1906
Kent Overstreetee811282013-12-17 23:49:49 -08001907 trace_bcache_btree_node_split(b, btree_bset_first(n1)->keys);
Kent Overstreetc37511b2013-04-26 15:39:55 -07001908
Kent Overstreetbc9389e2013-09-10 19:07:35 -07001909 n2 = bch_btree_node_alloc(b->c, b->level, true);
Kent Overstreetcafe5632013-03-23 16:11:31 -07001910 if (IS_ERR(n2))
1911 goto err_free1;
1912
Kent Overstreetd6fd3b12013-07-24 17:20:19 -07001913 if (!b->parent) {
Kent Overstreetbc9389e2013-09-10 19:07:35 -07001914 n3 = bch_btree_node_alloc(b->c, b->level + 1, true);
Kent Overstreetcafe5632013-03-23 16:11:31 -07001915 if (IS_ERR(n3))
1916 goto err_free2;
1917 }
1918
Kent Overstreet2a285682014-03-04 16:42:42 -08001919 mutex_lock(&n1->write_lock);
1920 mutex_lock(&n2->write_lock);
1921
Kent Overstreet1b207d82013-09-10 18:52:54 -07001922 bch_btree_insert_keys(n1, op, insert_keys, replace_key);
Kent Overstreetcafe5632013-03-23 16:11:31 -07001923
Kent Overstreetd6fd3b12013-07-24 17:20:19 -07001924 /*
1925 * Has to be a linear search because we don't have an auxiliary
Kent Overstreetcafe5632013-03-23 16:11:31 -07001926 * search tree yet
1927 */
1928
Kent Overstreetee811282013-12-17 23:49:49 -08001929 while (keys < (btree_bset_first(n1)->keys * 3) / 5)
1930 keys += bkey_u64s(bset_bkey_idx(btree_bset_first(n1),
Kent Overstreetfafff812013-12-17 21:56:21 -08001931 keys));
Kent Overstreetcafe5632013-03-23 16:11:31 -07001932
Kent Overstreetfafff812013-12-17 21:56:21 -08001933 bkey_copy_key(&n1->key,
Kent Overstreetee811282013-12-17 23:49:49 -08001934 bset_bkey_idx(btree_bset_first(n1), keys));
1935 keys += bkey_u64s(bset_bkey_idx(btree_bset_first(n1), keys));
Kent Overstreetcafe5632013-03-23 16:11:31 -07001936
Kent Overstreetee811282013-12-17 23:49:49 -08001937 btree_bset_first(n2)->keys = btree_bset_first(n1)->keys - keys;
1938 btree_bset_first(n1)->keys = keys;
Kent Overstreetcafe5632013-03-23 16:11:31 -07001939
Kent Overstreetee811282013-12-17 23:49:49 -08001940 memcpy(btree_bset_first(n2)->start,
1941 bset_bkey_last(btree_bset_first(n1)),
1942 btree_bset_first(n2)->keys * sizeof(uint64_t));
Kent Overstreetcafe5632013-03-23 16:11:31 -07001943
1944 bkey_copy_key(&n2->key, &b->key);
1945
Kent Overstreet17e21a92013-07-26 12:32:38 -07001946 bch_keylist_add(&parent_keys, &n2->key);
Kent Overstreetb54d6932013-07-24 18:04:18 -07001947 bch_btree_node_write(n2, &cl);
Kent Overstreet2a285682014-03-04 16:42:42 -08001948 mutex_unlock(&n2->write_lock);
Kent Overstreetcafe5632013-03-23 16:11:31 -07001949 rw_unlock(true, n2);
Kent Overstreetc37511b2013-04-26 15:39:55 -07001950 } else {
Kent Overstreetee811282013-12-17 23:49:49 -08001951 trace_bcache_btree_node_compact(b, btree_bset_first(n1)->keys);
Kent Overstreetc37511b2013-04-26 15:39:55 -07001952
Kent Overstreet2a285682014-03-04 16:42:42 -08001953 mutex_lock(&n1->write_lock);
Kent Overstreet1b207d82013-09-10 18:52:54 -07001954 bch_btree_insert_keys(n1, op, insert_keys, replace_key);
Kent Overstreetc37511b2013-04-26 15:39:55 -07001955 }
Kent Overstreetcafe5632013-03-23 16:11:31 -07001956
Kent Overstreet17e21a92013-07-26 12:32:38 -07001957 bch_keylist_add(&parent_keys, &n1->key);
Kent Overstreetb54d6932013-07-24 18:04:18 -07001958 bch_btree_node_write(n1, &cl);
Kent Overstreet2a285682014-03-04 16:42:42 -08001959 mutex_unlock(&n1->write_lock);
Kent Overstreetcafe5632013-03-23 16:11:31 -07001960
1961 if (n3) {
Kent Overstreetd6fd3b12013-07-24 17:20:19 -07001962 /* Depth increases, make a new root */
Kent Overstreet2a285682014-03-04 16:42:42 -08001963 mutex_lock(&n3->write_lock);
Kent Overstreetcafe5632013-03-23 16:11:31 -07001964 bkey_copy_key(&n3->key, &MAX_KEY);
Kent Overstreet17e21a92013-07-26 12:32:38 -07001965 bch_btree_insert_keys(n3, op, &parent_keys, NULL);
Kent Overstreetb54d6932013-07-24 18:04:18 -07001966 bch_btree_node_write(n3, &cl);
Kent Overstreet2a285682014-03-04 16:42:42 -08001967 mutex_unlock(&n3->write_lock);
Kent Overstreetcafe5632013-03-23 16:11:31 -07001968
Kent Overstreetb54d6932013-07-24 18:04:18 -07001969 closure_sync(&cl);
Kent Overstreetcafe5632013-03-23 16:11:31 -07001970 bch_btree_set_root(n3);
1971 rw_unlock(true, n3);
Kent Overstreetd6fd3b12013-07-24 17:20:19 -07001972 } else if (!b->parent) {
1973 /* Root filled up but didn't need to be split */
Kent Overstreetb54d6932013-07-24 18:04:18 -07001974 closure_sync(&cl);
Kent Overstreetcafe5632013-03-23 16:11:31 -07001975 bch_btree_set_root(n1);
1976 } else {
Kent Overstreet17e21a92013-07-26 12:32:38 -07001977 /* Split a non root node */
Kent Overstreetb54d6932013-07-24 18:04:18 -07001978 closure_sync(&cl);
Kent Overstreet17e21a92013-07-26 12:32:38 -07001979 make_btree_freeing_key(b, parent_keys.top);
1980 bch_keylist_push(&parent_keys);
1981
Kent Overstreet17e21a92013-07-26 12:32:38 -07001982 bch_btree_insert_node(b->parent, op, &parent_keys, NULL, NULL);
1983 BUG_ON(!bch_keylist_empty(&parent_keys));
Kent Overstreetcafe5632013-03-23 16:11:31 -07001984 }
1985
Kent Overstreet05335cf2014-03-17 18:22:34 -07001986 btree_node_free(b);
Kent Overstreetcafe5632013-03-23 16:11:31 -07001987 rw_unlock(true, n1);
Kent Overstreetcafe5632013-03-23 16:11:31 -07001988
Kent Overstreet169ef1c2013-03-28 12:50:55 -06001989 bch_time_stats_update(&b->c->btree_split_time, start_time);
Kent Overstreetcafe5632013-03-23 16:11:31 -07001990
1991 return 0;
1992err_free2:
Kent Overstreet5f5837d2013-12-16 16:38:49 -08001993 bkey_put(b->c, &n2->key);
Kent Overstreete8e1d462013-07-24 17:27:07 -07001994 btree_node_free(n2);
Kent Overstreetcafe5632013-03-23 16:11:31 -07001995 rw_unlock(true, n2);
1996err_free1:
Kent Overstreet5f5837d2013-12-16 16:38:49 -08001997 bkey_put(b->c, &n1->key);
Kent Overstreete8e1d462013-07-24 17:27:07 -07001998 btree_node_free(n1);
Kent Overstreetcafe5632013-03-23 16:11:31 -07001999 rw_unlock(true, n1);
2000err:
Kent Overstreet5f5837d2013-12-16 16:38:49 -08002001 WARN(1, "bcache: btree split failed");
2002
Kent Overstreetcafe5632013-03-23 16:11:31 -07002003 if (n3 == ERR_PTR(-EAGAIN) ||
2004 n2 == ERR_PTR(-EAGAIN) ||
2005 n1 == ERR_PTR(-EAGAIN))
2006 return -EAGAIN;
2007
Kent Overstreetcafe5632013-03-23 16:11:31 -07002008 return -ENOMEM;
2009}
2010
Kent Overstreet26c949f2013-09-10 18:41:15 -07002011static int bch_btree_insert_node(struct btree *b, struct btree_op *op,
Kent Overstreetc18536a2013-07-24 17:44:17 -07002012 struct keylist *insert_keys,
Kent Overstreet1b207d82013-09-10 18:52:54 -07002013 atomic_t *journal_ref,
2014 struct bkey *replace_key)
Kent Overstreet26c949f2013-09-10 18:41:15 -07002015{
Kent Overstreet2a285682014-03-04 16:42:42 -08002016 struct closure cl;
2017
Kent Overstreet17e21a92013-07-26 12:32:38 -07002018 BUG_ON(b->level && replace_key);
Kent Overstreet26c949f2013-09-10 18:41:15 -07002019
Kent Overstreet2a285682014-03-04 16:42:42 -08002020 closure_init_stack(&cl);
2021
2022 mutex_lock(&b->write_lock);
2023
2024 if (write_block(b) != btree_bset_last(b) &&
2025 b->keys.last_set_unwritten)
2026 bch_btree_init_next(b); /* just wrote a set */
2027
Kent Overstreet59158fd2013-11-11 19:03:54 -08002028 if (bch_keylist_nkeys(insert_keys) > insert_u64s_remaining(b)) {
Kent Overstreet2a285682014-03-04 16:42:42 -08002029 mutex_unlock(&b->write_lock);
2030 goto split;
2031 }
Kent Overstreet3b3e9e52013-12-07 03:57:58 -08002032
Kent Overstreet2a285682014-03-04 16:42:42 -08002033 BUG_ON(write_block(b) != btree_bset_last(b));
2034
2035 if (bch_btree_insert_keys(b, op, insert_keys, replace_key)) {
2036 if (!b->level)
2037 bch_btree_leaf_dirty(b, journal_ref);
2038 else
2039 bch_btree_node_write(b, &cl);
2040 }
2041
2042 mutex_unlock(&b->write_lock);
2043
2044 /* wait for btree node write if necessary, after unlock */
2045 closure_sync(&cl);
2046
2047 return 0;
2048split:
2049 if (current->bio_list) {
2050 op->lock = b->c->root->level + 1;
2051 return -EAGAIN;
2052 } else if (op->lock <= b->c->root->level) {
2053 op->lock = b->c->root->level + 1;
2054 return -EINTR;
Kent Overstreet17e21a92013-07-26 12:32:38 -07002055 } else {
Kent Overstreet2a285682014-03-04 16:42:42 -08002056 /* Invalidated all iterators */
2057 int ret = btree_split(b, op, insert_keys, replace_key);
Kent Overstreet26c949f2013-09-10 18:41:15 -07002058
Kent Overstreet2a285682014-03-04 16:42:42 -08002059 if (bch_keylist_empty(insert_keys))
2060 return 0;
2061 else if (!ret)
2062 return -EINTR;
2063 return ret;
Kent Overstreet17e21a92013-07-26 12:32:38 -07002064 }
Kent Overstreet26c949f2013-09-10 18:41:15 -07002065}
2066
Kent Overstreete7c590e2013-09-10 18:39:16 -07002067int bch_btree_insert_check_key(struct btree *b, struct btree_op *op,
2068 struct bkey *check_key)
2069{
2070 int ret = -EINTR;
2071 uint64_t btree_ptr = b->key.ptr[0];
2072 unsigned long seq = b->seq;
2073 struct keylist insert;
2074 bool upgrade = op->lock == -1;
2075
2076 bch_keylist_init(&insert);
2077
2078 if (upgrade) {
2079 rw_unlock(false, b);
2080 rw_lock(true, b, b->level);
2081
2082 if (b->key.ptr[0] != btree_ptr ||
2083 b->seq != seq + 1)
2084 goto out;
2085 }
2086
2087 SET_KEY_PTRS(check_key, 1);
2088 get_random_bytes(&check_key->ptr[0], sizeof(uint64_t));
2089
2090 SET_PTR_DEV(check_key, 0, PTR_CHECK_DEV);
2091
2092 bch_keylist_add(&insert, check_key);
2093
Kent Overstreet1b207d82013-09-10 18:52:54 -07002094 ret = bch_btree_insert_node(b, op, &insert, NULL, NULL);
Kent Overstreete7c590e2013-09-10 18:39:16 -07002095
2096 BUG_ON(!ret && !bch_keylist_empty(&insert));
2097out:
2098 if (upgrade)
2099 downgrade_write(&b->lock);
2100 return ret;
2101}
2102
Kent Overstreetcc7b8812013-07-24 18:07:22 -07002103struct btree_insert_op {
2104 struct btree_op op;
2105 struct keylist *keys;
2106 atomic_t *journal_ref;
2107 struct bkey *replace_key;
2108};
2109
Wei Yongjun08239ca2013-11-28 10:31:35 +08002110static int btree_insert_fn(struct btree_op *b_op, struct btree *b)
Kent Overstreetcafe5632013-03-23 16:11:31 -07002111{
Kent Overstreetcc7b8812013-07-24 18:07:22 -07002112 struct btree_insert_op *op = container_of(b_op,
2113 struct btree_insert_op, op);
Kent Overstreet403b6cd2013-07-24 17:22:44 -07002114
Kent Overstreetcc7b8812013-07-24 18:07:22 -07002115 int ret = bch_btree_insert_node(b, &op->op, op->keys,
2116 op->journal_ref, op->replace_key);
2117 if (ret && !bch_keylist_empty(op->keys))
2118 return ret;
2119 else
2120 return MAP_DONE;
Kent Overstreetcafe5632013-03-23 16:11:31 -07002121}
2122
Kent Overstreetcc7b8812013-07-24 18:07:22 -07002123int bch_btree_insert(struct cache_set *c, struct keylist *keys,
2124 atomic_t *journal_ref, struct bkey *replace_key)
Kent Overstreetcafe5632013-03-23 16:11:31 -07002125{
Kent Overstreetcc7b8812013-07-24 18:07:22 -07002126 struct btree_insert_op op;
Kent Overstreetcafe5632013-03-23 16:11:31 -07002127 int ret = 0;
Kent Overstreetcafe5632013-03-23 16:11:31 -07002128
Kent Overstreetcc7b8812013-07-24 18:07:22 -07002129 BUG_ON(current->bio_list);
Kent Overstreet4f3d4012013-09-10 18:46:36 -07002130 BUG_ON(bch_keylist_empty(keys));
Kent Overstreetcafe5632013-03-23 16:11:31 -07002131
Kent Overstreetcc7b8812013-07-24 18:07:22 -07002132 bch_btree_op_init(&op.op, 0);
2133 op.keys = keys;
2134 op.journal_ref = journal_ref;
2135 op.replace_key = replace_key;
Kent Overstreetcafe5632013-03-23 16:11:31 -07002136
Kent Overstreetcc7b8812013-07-24 18:07:22 -07002137 while (!ret && !bch_keylist_empty(keys)) {
2138 op.op.lock = 0;
2139 ret = bch_btree_map_leaf_nodes(&op.op, c,
2140 &START_KEY(keys->keys),
2141 btree_insert_fn);
Kent Overstreetcafe5632013-03-23 16:11:31 -07002142 }
2143
Kent Overstreetcc7b8812013-07-24 18:07:22 -07002144 if (ret) {
2145 struct bkey *k;
2146
2147 pr_err("error %i", ret);
2148
2149 while ((k = bch_keylist_pop(keys)))
Kent Overstreet3a3b6a42013-07-24 16:46:42 -07002150 bkey_put(c, k);
Kent Overstreetcc7b8812013-07-24 18:07:22 -07002151 } else if (op.op.insert_collision)
2152 ret = -ESRCH;
Kent Overstreet6054c6d2013-07-24 18:06:22 -07002153
Kent Overstreetcafe5632013-03-23 16:11:31 -07002154 return ret;
2155}
2156
2157void bch_btree_set_root(struct btree *b)
2158{
2159 unsigned i;
Kent Overstreete49c7c32013-06-26 17:25:38 -07002160 struct closure cl;
2161
2162 closure_init_stack(&cl);
Kent Overstreetcafe5632013-03-23 16:11:31 -07002163
Kent Overstreetc37511b2013-04-26 15:39:55 -07002164 trace_bcache_btree_set_root(b);
2165
Kent Overstreetcafe5632013-03-23 16:11:31 -07002166 BUG_ON(!b->written);
2167
2168 for (i = 0; i < KEY_PTRS(&b->key); i++)
2169 BUG_ON(PTR_BUCKET(b->c, &b->key, i)->prio != BTREE_PRIO);
2170
2171 mutex_lock(&b->c->bucket_lock);
2172 list_del_init(&b->list);
2173 mutex_unlock(&b->c->bucket_lock);
2174
2175 b->c->root = b;
Kent Overstreetcafe5632013-03-23 16:11:31 -07002176
Kent Overstreete49c7c32013-06-26 17:25:38 -07002177 bch_journal_meta(b->c, &cl);
2178 closure_sync(&cl);
Kent Overstreetcafe5632013-03-23 16:11:31 -07002179}
2180
Kent Overstreet48dad8b2013-09-10 18:48:51 -07002181/* Map across nodes or keys */
2182
2183static int bch_btree_map_nodes_recurse(struct btree *b, struct btree_op *op,
2184 struct bkey *from,
2185 btree_map_nodes_fn *fn, int flags)
2186{
2187 int ret = MAP_CONTINUE;
2188
2189 if (b->level) {
2190 struct bkey *k;
2191 struct btree_iter iter;
2192
Kent Overstreetc052dd92013-11-11 17:35:24 -08002193 bch_btree_iter_init(&b->keys, &iter, from);
Kent Overstreet48dad8b2013-09-10 18:48:51 -07002194
Kent Overstreeta85e9682013-12-20 17:28:16 -08002195 while ((k = bch_btree_iter_next_filter(&iter, &b->keys,
Kent Overstreet48dad8b2013-09-10 18:48:51 -07002196 bch_ptr_bad))) {
2197 ret = btree(map_nodes_recurse, k, b,
2198 op, from, fn, flags);
2199 from = NULL;
2200
2201 if (ret != MAP_CONTINUE)
2202 return ret;
2203 }
2204 }
2205
2206 if (!b->level || flags == MAP_ALL_NODES)
2207 ret = fn(op, b);
2208
2209 return ret;
2210}
2211
2212int __bch_btree_map_nodes(struct btree_op *op, struct cache_set *c,
2213 struct bkey *from, btree_map_nodes_fn *fn, int flags)
2214{
Kent Overstreetb54d6932013-07-24 18:04:18 -07002215 return btree_root(map_nodes_recurse, c, op, from, fn, flags);
Kent Overstreet48dad8b2013-09-10 18:48:51 -07002216}
2217
2218static int bch_btree_map_keys_recurse(struct btree *b, struct btree_op *op,
2219 struct bkey *from, btree_map_keys_fn *fn,
2220 int flags)
2221{
2222 int ret = MAP_CONTINUE;
2223 struct bkey *k;
2224 struct btree_iter iter;
2225
Kent Overstreetc052dd92013-11-11 17:35:24 -08002226 bch_btree_iter_init(&b->keys, &iter, from);
Kent Overstreet48dad8b2013-09-10 18:48:51 -07002227
Kent Overstreeta85e9682013-12-20 17:28:16 -08002228 while ((k = bch_btree_iter_next_filter(&iter, &b->keys, bch_ptr_bad))) {
Kent Overstreet48dad8b2013-09-10 18:48:51 -07002229 ret = !b->level
2230 ? fn(op, b, k)
2231 : btree(map_keys_recurse, k, b, op, from, fn, flags);
2232 from = NULL;
2233
2234 if (ret != MAP_CONTINUE)
2235 return ret;
2236 }
2237
2238 if (!b->level && (flags & MAP_END_KEY))
2239 ret = fn(op, b, &KEY(KEY_INODE(&b->key),
2240 KEY_OFFSET(&b->key), 0));
2241
2242 return ret;
2243}
2244
2245int bch_btree_map_keys(struct btree_op *op, struct cache_set *c,
2246 struct bkey *from, btree_map_keys_fn *fn, int flags)
2247{
Kent Overstreetb54d6932013-07-24 18:04:18 -07002248 return btree_root(map_keys_recurse, c, op, from, fn, flags);
Kent Overstreet48dad8b2013-09-10 18:48:51 -07002249}
2250
Kent Overstreetcafe5632013-03-23 16:11:31 -07002251/* Keybuf code */
2252
2253static inline int keybuf_cmp(struct keybuf_key *l, struct keybuf_key *r)
2254{
2255 /* Overlapping keys compare equal */
2256 if (bkey_cmp(&l->key, &START_KEY(&r->key)) <= 0)
2257 return -1;
2258 if (bkey_cmp(&START_KEY(&l->key), &r->key) >= 0)
2259 return 1;
2260 return 0;
2261}
2262
2263static inline int keybuf_nonoverlapping_cmp(struct keybuf_key *l,
2264 struct keybuf_key *r)
2265{
2266 return clamp_t(int64_t, bkey_cmp(&l->key, &r->key), -1, 1);
2267}
2268
Kent Overstreet48dad8b2013-09-10 18:48:51 -07002269struct refill {
2270 struct btree_op op;
Kent Overstreet48a915a2013-10-31 15:43:22 -07002271 unsigned nr_found;
Kent Overstreet48dad8b2013-09-10 18:48:51 -07002272 struct keybuf *buf;
2273 struct bkey *end;
2274 keybuf_pred_fn *pred;
2275};
2276
2277static int refill_keybuf_fn(struct btree_op *op, struct btree *b,
2278 struct bkey *k)
Kent Overstreetcafe5632013-03-23 16:11:31 -07002279{
Kent Overstreet48dad8b2013-09-10 18:48:51 -07002280 struct refill *refill = container_of(op, struct refill, op);
2281 struct keybuf *buf = refill->buf;
2282 int ret = MAP_CONTINUE;
Kent Overstreetcafe5632013-03-23 16:11:31 -07002283
Kent Overstreet48dad8b2013-09-10 18:48:51 -07002284 if (bkey_cmp(k, refill->end) >= 0) {
2285 ret = MAP_DONE;
2286 goto out;
Kent Overstreetcafe5632013-03-23 16:11:31 -07002287 }
2288
Kent Overstreet48dad8b2013-09-10 18:48:51 -07002289 if (!KEY_SIZE(k)) /* end key */
2290 goto out;
2291
2292 if (refill->pred(buf, k)) {
2293 struct keybuf_key *w;
2294
2295 spin_lock(&buf->lock);
2296
2297 w = array_alloc(&buf->freelist);
2298 if (!w) {
2299 spin_unlock(&buf->lock);
2300 return MAP_DONE;
2301 }
2302
2303 w->private = NULL;
2304 bkey_copy(&w->key, k);
2305
2306 if (RB_INSERT(&buf->keys, w, node, keybuf_cmp))
2307 array_free(&buf->freelist, w);
Kent Overstreet48a915a2013-10-31 15:43:22 -07002308 else
2309 refill->nr_found++;
Kent Overstreet48dad8b2013-09-10 18:48:51 -07002310
2311 if (array_freelist_empty(&buf->freelist))
2312 ret = MAP_DONE;
2313
2314 spin_unlock(&buf->lock);
2315 }
2316out:
2317 buf->last_scanned = *k;
2318 return ret;
Kent Overstreetcafe5632013-03-23 16:11:31 -07002319}
2320
2321void bch_refill_keybuf(struct cache_set *c, struct keybuf *buf,
Kent Overstreet72c27062013-06-05 06:24:39 -07002322 struct bkey *end, keybuf_pred_fn *pred)
Kent Overstreetcafe5632013-03-23 16:11:31 -07002323{
2324 struct bkey start = buf->last_scanned;
Kent Overstreet48dad8b2013-09-10 18:48:51 -07002325 struct refill refill;
Kent Overstreetcafe5632013-03-23 16:11:31 -07002326
2327 cond_resched();
2328
Kent Overstreetb54d6932013-07-24 18:04:18 -07002329 bch_btree_op_init(&refill.op, -1);
Kent Overstreet48a915a2013-10-31 15:43:22 -07002330 refill.nr_found = 0;
2331 refill.buf = buf;
2332 refill.end = end;
2333 refill.pred = pred;
Kent Overstreet48dad8b2013-09-10 18:48:51 -07002334
2335 bch_btree_map_keys(&refill.op, c, &buf->last_scanned,
2336 refill_keybuf_fn, MAP_END_KEY);
Kent Overstreetcafe5632013-03-23 16:11:31 -07002337
Kent Overstreet48a915a2013-10-31 15:43:22 -07002338 trace_bcache_keyscan(refill.nr_found,
2339 KEY_INODE(&start), KEY_OFFSET(&start),
2340 KEY_INODE(&buf->last_scanned),
2341 KEY_OFFSET(&buf->last_scanned));
Kent Overstreetcafe5632013-03-23 16:11:31 -07002342
2343 spin_lock(&buf->lock);
2344
2345 if (!RB_EMPTY_ROOT(&buf->keys)) {
2346 struct keybuf_key *w;
2347 w = RB_FIRST(&buf->keys, struct keybuf_key, node);
2348 buf->start = START_KEY(&w->key);
2349
2350 w = RB_LAST(&buf->keys, struct keybuf_key, node);
2351 buf->end = w->key;
2352 } else {
2353 buf->start = MAX_KEY;
2354 buf->end = MAX_KEY;
2355 }
2356
2357 spin_unlock(&buf->lock);
2358}
2359
2360static void __bch_keybuf_del(struct keybuf *buf, struct keybuf_key *w)
2361{
2362 rb_erase(&w->node, &buf->keys);
2363 array_free(&buf->freelist, w);
2364}
2365
2366void bch_keybuf_del(struct keybuf *buf, struct keybuf_key *w)
2367{
2368 spin_lock(&buf->lock);
2369 __bch_keybuf_del(buf, w);
2370 spin_unlock(&buf->lock);
2371}
2372
2373bool bch_keybuf_check_overlapping(struct keybuf *buf, struct bkey *start,
2374 struct bkey *end)
2375{
2376 bool ret = false;
2377 struct keybuf_key *p, *w, s;
2378 s.key = *start;
2379
2380 if (bkey_cmp(end, &buf->start) <= 0 ||
2381 bkey_cmp(start, &buf->end) >= 0)
2382 return false;
2383
2384 spin_lock(&buf->lock);
2385 w = RB_GREATER(&buf->keys, s, node, keybuf_nonoverlapping_cmp);
2386
2387 while (w && bkey_cmp(&START_KEY(&w->key), end) < 0) {
2388 p = w;
2389 w = RB_NEXT(w, node);
2390
2391 if (p->private)
2392 ret = true;
2393 else
2394 __bch_keybuf_del(buf, p);
2395 }
2396
2397 spin_unlock(&buf->lock);
2398 return ret;
2399}
2400
2401struct keybuf_key *bch_keybuf_next(struct keybuf *buf)
2402{
2403 struct keybuf_key *w;
2404 spin_lock(&buf->lock);
2405
2406 w = RB_FIRST(&buf->keys, struct keybuf_key, node);
2407
2408 while (w && w->private)
2409 w = RB_NEXT(w, node);
2410
2411 if (w)
2412 w->private = ERR_PTR(-EINTR);
2413
2414 spin_unlock(&buf->lock);
2415 return w;
2416}
2417
2418struct keybuf_key *bch_keybuf_next_rescan(struct cache_set *c,
Kent Overstreet48dad8b2013-09-10 18:48:51 -07002419 struct keybuf *buf,
2420 struct bkey *end,
2421 keybuf_pred_fn *pred)
Kent Overstreetcafe5632013-03-23 16:11:31 -07002422{
2423 struct keybuf_key *ret;
2424
2425 while (1) {
2426 ret = bch_keybuf_next(buf);
2427 if (ret)
2428 break;
2429
2430 if (bkey_cmp(&buf->last_scanned, end) >= 0) {
2431 pr_debug("scan finished");
2432 break;
2433 }
2434
Kent Overstreet72c27062013-06-05 06:24:39 -07002435 bch_refill_keybuf(c, buf, end, pred);
Kent Overstreetcafe5632013-03-23 16:11:31 -07002436 }
2437
2438 return ret;
2439}
2440
Kent Overstreet72c27062013-06-05 06:24:39 -07002441void bch_keybuf_init(struct keybuf *buf)
Kent Overstreetcafe5632013-03-23 16:11:31 -07002442{
Kent Overstreetcafe5632013-03-23 16:11:31 -07002443 buf->last_scanned = MAX_KEY;
2444 buf->keys = RB_ROOT;
2445
2446 spin_lock_init(&buf->lock);
2447 array_allocator_init(&buf->freelist);
2448}
2449
2450void bch_btree_exit(void)
2451{
2452 if (btree_io_wq)
2453 destroy_workqueue(btree_io_wq);
Kent Overstreetcafe5632013-03-23 16:11:31 -07002454}
2455
2456int __init bch_btree_init(void)
2457{
Kent Overstreet72a44512013-10-24 17:19:26 -07002458 btree_io_wq = create_singlethread_workqueue("bch_btree_io");
2459 if (!btree_io_wq)
Kent Overstreetcafe5632013-03-23 16:11:31 -07002460 return -ENOMEM;
2461
2462 return 0;
2463}