2 * Main bcache entry point - handle a read or a write request and decide what to
3 * do with it; the make_request functions are called by the block layer.
6 * Copyright 2012 Google, Inc.
13 #include "writeback.h"
15 #include <linux/module.h>
16 #include <linux/hash.h>
17 #include <linux/random.h>
19 #include <trace/events/bcache.h>
21 #define CUTOFF_CACHE_ADD 95
22 #define CUTOFF_CACHE_READA 90
24 struct kmem_cache *bch_search_cache;
26 static void bch_data_insert_start(struct closure *);
28 static unsigned cache_mode(struct cached_dev *dc, struct bio *bio)
30 return BDEV_CACHE_MODE(&dc->sb);
33 static bool verify(struct cached_dev *dc, struct bio *bio)
38 static void bio_csum(struct bio *bio, struct bkey *k)
41 struct bvec_iter iter;
44 bio_for_each_segment(bv, bio, iter) {
45 void *d = kmap(bv.bv_page) + bv.bv_offset;
46 csum = bch_crc64_update(csum, d, bv.bv_len);
50 k->ptr[KEY_PTRS(k)] = csum & (~0ULL >> 1);
53 /* Insert data into cache */
55 static void bch_data_insert_keys(struct closure *cl)
57 struct data_insert_op *op = container_of(cl, struct data_insert_op, cl);
58 atomic_t *journal_ref = NULL;
59 struct bkey *replace_key = op->replace ? &op->replace_key : NULL;
63 * If we're looping, might already be waiting on
64 * another journal write - can't wait on more than one journal write at
67 * XXX: this looks wrong
70 while (atomic_read(&s->cl.remaining) & CLOSURE_WAITING)
75 journal_ref = bch_journal(op->c, &op->insert_keys,
76 op->flush_journal ? cl : NULL);
78 ret = bch_btree_insert(op->c, &op->insert_keys,
79 journal_ref, replace_key);
81 op->replace_collision = true;
84 op->insert_data_done = true;
88 atomic_dec_bug(journal_ref);
90 if (!op->insert_data_done)
91 continue_at(cl, bch_data_insert_start, op->wq);
93 bch_keylist_free(&op->insert_keys);
97 static int bch_keylist_realloc(struct keylist *l, unsigned u64s,
100 size_t oldsize = bch_keylist_nkeys(l);
101 size_t newsize = oldsize + u64s;
104 * The journalling code doesn't handle the case where the keys to insert
105 * is bigger than an empty write: If we just return -ENOMEM here,
106 * bio_insert() and bio_invalidate() will insert the keys created so far
107 * and finish the rest when the keylist is empty.
109 if (newsize * sizeof(uint64_t) > block_bytes(c) - sizeof(struct jset))
112 return __bch_keylist_realloc(l, u64s);
115 static void bch_data_invalidate(struct closure *cl)
117 struct data_insert_op *op = container_of(cl, struct data_insert_op, cl);
118 struct bio *bio = op->bio;
120 pr_debug("invalidating %i sectors from %llu",
121 bio_sectors(bio), (uint64_t) bio->bi_iter.bi_sector);
123 while (bio_sectors(bio)) {
124 unsigned sectors = min(bio_sectors(bio),
125 1U << (KEY_SIZE_BITS - 1));
127 if (bch_keylist_realloc(&op->insert_keys, 2, op->c))
130 bio->bi_iter.bi_sector += sectors;
131 bio->bi_iter.bi_size -= sectors << 9;
133 bch_keylist_add(&op->insert_keys,
134 &KEY(op->inode, bio->bi_iter.bi_sector, sectors));
137 op->insert_data_done = true;
140 continue_at(cl, bch_data_insert_keys, op->wq);
143 static void bch_data_insert_error(struct closure *cl)
145 struct data_insert_op *op = container_of(cl, struct data_insert_op, cl);
148 * Our data write just errored, which means we've got a bunch of keys to
149 * insert that point to data that wasn't succesfully written.
151 * We don't have to insert those keys but we still have to invalidate
152 * that region of the cache - so, if we just strip off all the pointers
153 * from the keys we'll accomplish just that.
156 struct bkey *src = op->insert_keys.keys, *dst = op->insert_keys.keys;
158 while (src != op->insert_keys.top) {
159 struct bkey *n = bkey_next(src);
161 SET_KEY_PTRS(src, 0);
162 memmove(dst, src, bkey_bytes(src));
164 dst = bkey_next(dst);
168 op->insert_keys.top = dst;
170 bch_data_insert_keys(cl);
173 static void bch_data_insert_endio(struct bio *bio, int error)
175 struct closure *cl = bio->bi_private;
176 struct data_insert_op *op = container_of(cl, struct data_insert_op, cl);
179 /* TODO: We could try to recover from this. */
182 else if (!op->replace)
183 set_closure_fn(cl, bch_data_insert_error, op->wq);
185 set_closure_fn(cl, NULL, NULL);
188 bch_bbio_endio(op->c, bio, error, "writing data to cache");
191 static void bch_data_insert_start(struct closure *cl)
193 struct data_insert_op *op = container_of(cl, struct data_insert_op, cl);
194 struct bio *bio = op->bio, *n;
196 if (atomic_sub_return(bio_sectors(bio), &op->c->sectors_to_gc) < 0) {
197 set_gc_sectors(op->c);
202 return bch_data_invalidate(cl);
205 * Journal writes are marked REQ_FLUSH; if the original write was a
206 * flush, it'll wait on the journal write.
208 bio->bi_rw &= ~(REQ_FLUSH|REQ_FUA);
213 struct bio_set *split = op->c->bio_split;
215 /* 1 for the device pointer and 1 for the chksum */
216 if (bch_keylist_realloc(&op->insert_keys,
217 3 + (op->csum ? 1 : 0),
219 continue_at(cl, bch_data_insert_keys, op->wq);
221 k = op->insert_keys.top;
223 SET_KEY_INODE(k, op->inode);
224 SET_KEY_OFFSET(k, bio->bi_iter.bi_sector);
226 if (!bch_alloc_sectors(op->c, k, bio_sectors(bio),
227 op->write_point, op->write_prio,
231 n = bio_next_split(bio, KEY_SIZE(k), GFP_NOIO, split);
233 n->bi_end_io = bch_data_insert_endio;
237 SET_KEY_DIRTY(k, true);
239 for (i = 0; i < KEY_PTRS(k); i++)
240 SET_GC_MARK(PTR_BUCKET(op->c, k, i),
244 SET_KEY_CSUM(k, op->csum);
248 trace_bcache_cache_insert(k);
249 bch_keylist_push(&op->insert_keys);
251 n->bi_rw |= REQ_WRITE;
252 bch_submit_bbio(n, op->c, k, 0);
255 op->insert_data_done = true;
256 continue_at(cl, bch_data_insert_keys, op->wq);
258 /* bch_alloc_sectors() blocks if s->writeback = true */
259 BUG_ON(op->writeback);
262 * But if it's not a writeback write we'd rather just bail out if
263 * there aren't any buckets ready to write to - it might take awhile and
264 * we might be starving btree writes for gc or something.
269 * Writethrough write: We can't complete the write until we've
270 * updated the index. But we don't want to delay the write while
271 * we wait for buckets to be freed up, so just invalidate the
275 return bch_data_invalidate(cl);
278 * From a cache miss, we can just insert the keys for the data
279 * we have written or bail out if we didn't do anything.
281 op->insert_data_done = true;
284 if (!bch_keylist_empty(&op->insert_keys))
285 continue_at(cl, bch_data_insert_keys, op->wq);
292 * bch_data_insert - stick some data in the cache
294 * This is the starting point for any data to end up in a cache device; it could
295 * be from a normal write, or a writeback write, or a write to a flash only
296 * volume - it's also used by the moving garbage collector to compact data in
297 * mostly empty buckets.
299 * It first writes the data to the cache, creating a list of keys to be inserted
300 * (if the data had to be fragmented there will be multiple keys); after the
301 * data is written it calls bch_journal, and after the keys have been added to
302 * the next journal write they're inserted into the btree.
304 * It inserts the data in s->cache_bio; bi_sector is used for the key offset,
305 * and op->inode is used for the key inode.
307 * If s->bypass is true, instead of inserting the data it invalidates the
308 * region of the cache represented by s->cache_bio and op->inode.
310 void bch_data_insert(struct closure *cl)
312 struct data_insert_op *op = container_of(cl, struct data_insert_op, cl);
314 trace_bcache_write(op->bio, op->writeback, op->bypass);
316 bch_keylist_init(&op->insert_keys);
318 bch_data_insert_start(cl);
323 unsigned bch_get_congested(struct cache_set *c)
328 if (!c->congested_read_threshold_us &&
329 !c->congested_write_threshold_us)
332 i = (local_clock_us() - c->congested_last_us) / 1024;
336 i += atomic_read(&c->congested);
343 i = fract_exp_two(i, 6);
345 rand = get_random_int();
346 i -= bitmap_weight(&rand, BITS_PER_LONG);
348 return i > 0 ? i : 1;
351 static void add_sequential(struct task_struct *t)
353 ewma_add(t->sequential_io_avg,
354 t->sequential_io, 8, 0);
356 t->sequential_io = 0;
359 static struct hlist_head *iohash(struct cached_dev *dc, uint64_t k)
361 return &dc->io_hash[hash_64(k, RECENT_IO_BITS)];
364 static bool check_should_bypass(struct cached_dev *dc, struct bio *bio)
366 struct cache_set *c = dc->disk.c;
367 unsigned mode = cache_mode(dc, bio);
368 unsigned sectors, congested = bch_get_congested(c);
369 struct task_struct *task = current;
372 if (test_bit(BCACHE_DEV_DETACHING, &dc->disk.flags) ||
373 c->gc_stats.in_use > CUTOFF_CACHE_ADD ||
374 (bio->bi_rw & REQ_DISCARD))
377 if (mode == CACHE_MODE_NONE ||
378 (mode == CACHE_MODE_WRITEAROUND &&
379 (bio->bi_rw & REQ_WRITE)))
382 if (bio->bi_iter.bi_sector & (c->sb.block_size - 1) ||
383 bio_sectors(bio) & (c->sb.block_size - 1)) {
384 pr_debug("skipping unaligned io");
388 if (bypass_torture_test(dc)) {
389 if ((get_random_int() & 3) == 3)
395 if (!congested && !dc->sequential_cutoff)
399 mode == CACHE_MODE_WRITEBACK &&
400 (bio->bi_rw & REQ_WRITE) &&
401 (bio->bi_rw & REQ_SYNC))
404 spin_lock(&dc->io_lock);
406 hlist_for_each_entry(i, iohash(dc, bio->bi_iter.bi_sector), hash)
407 if (i->last == bio->bi_iter.bi_sector &&
408 time_before(jiffies, i->jiffies))
411 i = list_first_entry(&dc->io_lru, struct io, lru);
413 add_sequential(task);
416 if (i->sequential + bio->bi_iter.bi_size > i->sequential)
417 i->sequential += bio->bi_iter.bi_size;
419 i->last = bio_end_sector(bio);
420 i->jiffies = jiffies + msecs_to_jiffies(5000);
421 task->sequential_io = i->sequential;
424 hlist_add_head(&i->hash, iohash(dc, i->last));
425 list_move_tail(&i->lru, &dc->io_lru);
427 spin_unlock(&dc->io_lock);
429 sectors = max(task->sequential_io,
430 task->sequential_io_avg) >> 9;
432 if (dc->sequential_cutoff &&
433 sectors >= dc->sequential_cutoff >> 9) {
434 trace_bcache_bypass_sequential(bio);
438 if (congested && sectors >= congested) {
439 trace_bcache_bypass_congested(bio);
444 bch_rescale_priorities(c, bio_sectors(bio));
447 bch_mark_sectors_bypassed(c, dc, bio_sectors(bio));
454 /* Stack frame for bio_complete */
458 struct bio *orig_bio;
459 struct bio *cache_miss;
460 struct bcache_device *d;
462 unsigned insert_bio_sectors;
463 unsigned recoverable:1;
465 unsigned read_dirty_data:1;
467 unsigned long start_time;
470 struct data_insert_op iop;
473 static void bch_cache_read_endio(struct bio *bio, int error)
475 struct bbio *b = container_of(bio, struct bbio, bio);
476 struct closure *cl = bio->bi_private;
477 struct search *s = container_of(cl, struct search, cl);
480 * If the bucket was reused while our bio was in flight, we might have
481 * read the wrong data. Set s->error but not error so it doesn't get
482 * counted against the cache device, but we'll still reread the data
483 * from the backing device.
487 s->iop.error = error;
488 else if (!KEY_DIRTY(&b->key) &&
489 ptr_stale(s->iop.c, &b->key, 0)) {
490 atomic_long_inc(&s->iop.c->cache_read_races);
491 s->iop.error = -EINTR;
494 bch_bbio_endio(s->iop.c, bio, error, "reading from cache");
498 * Read from a single key, handling the initial cache miss if the key starts in
499 * the middle of the bio
501 static int cache_lookup_fn(struct btree_op *op, struct btree *b, struct bkey *k)
503 struct search *s = container_of(op, struct search, op);
504 struct bio *n, *bio = &s->bio.bio;
505 struct bkey *bio_key;
508 if (bkey_cmp(k, &KEY(s->iop.inode, bio->bi_iter.bi_sector, 0)) <= 0)
511 if (KEY_INODE(k) != s->iop.inode ||
512 KEY_START(k) > bio->bi_iter.bi_sector) {
513 unsigned bio_sectors = bio_sectors(bio);
514 unsigned sectors = KEY_INODE(k) == s->iop.inode
515 ? min_t(uint64_t, INT_MAX,
516 KEY_START(k) - bio->bi_iter.bi_sector)
519 int ret = s->d->cache_miss(b, s, bio, sectors);
520 if (ret != MAP_CONTINUE)
523 /* if this was a complete miss we shouldn't get here */
524 BUG_ON(bio_sectors <= sectors);
530 /* XXX: figure out best pointer - for multiple cache devices */
533 PTR_BUCKET(b->c, k, ptr)->prio = INITIAL_PRIO;
536 s->read_dirty_data = true;
538 n = bio_next_split(bio, min_t(uint64_t, INT_MAX,
539 KEY_OFFSET(k) - bio->bi_iter.bi_sector),
540 GFP_NOIO, s->d->bio_split);
542 bio_key = &container_of(n, struct bbio, bio)->key;
543 bch_bkey_copy_single_ptr(bio_key, k, ptr);
545 bch_cut_front(&KEY(s->iop.inode, n->bi_iter.bi_sector, 0), bio_key);
546 bch_cut_back(&KEY(s->iop.inode, bio_end_sector(n), 0), bio_key);
548 n->bi_end_io = bch_cache_read_endio;
549 n->bi_private = &s->cl;
552 * The bucket we're reading from might be reused while our bio
553 * is in flight, and we could then end up reading the wrong
556 * We guard against this by checking (in cache_read_endio()) if
557 * the pointer is stale again; if so, we treat it as an error
558 * and reread from the backing device (but we don't pass that
559 * error up anywhere).
562 __bch_submit_bbio(n, b->c);
563 return n == bio ? MAP_DONE : MAP_CONTINUE;
566 static void cache_lookup(struct closure *cl)
568 struct search *s = container_of(cl, struct search, iop.cl);
569 struct bio *bio = &s->bio.bio;
572 bch_btree_op_init(&s->op, -1);
574 ret = bch_btree_map_keys(&s->op, s->iop.c,
575 &KEY(s->iop.inode, bio->bi_iter.bi_sector, 0),
576 cache_lookup_fn, MAP_END_KEY);
578 continue_at(cl, cache_lookup, bcache_wq);
583 /* Common code for the make_request functions */
585 static void request_endio(struct bio *bio, int error)
587 struct closure *cl = bio->bi_private;
590 struct search *s = container_of(cl, struct search, cl);
591 s->iop.error = error;
592 /* Only cache read errors are recoverable */
593 s->recoverable = false;
600 static void bio_complete(struct search *s)
603 int cpu, rw = bio_data_dir(s->orig_bio);
604 unsigned long duration = jiffies - s->start_time;
606 cpu = part_stat_lock();
607 part_round_stats(cpu, &s->d->disk->part0);
608 part_stat_add(cpu, &s->d->disk->part0, ticks[rw], duration);
611 trace_bcache_request_end(s->d, s->orig_bio);
612 bio_endio(s->orig_bio, s->iop.error);
617 static void do_bio_hook(struct search *s, struct bio *orig_bio)
619 struct bio *bio = &s->bio.bio;
622 __bio_clone_fast(bio, orig_bio);
623 bio->bi_end_io = request_endio;
624 bio->bi_private = &s->cl;
626 atomic_set(&bio->bi_cnt, 3);
629 static void search_free(struct closure *cl)
631 struct search *s = container_of(cl, struct search, cl);
637 closure_debug_destroy(cl);
638 mempool_free(s, s->d->c->search);
641 static inline struct search *search_alloc(struct bio *bio,
642 struct bcache_device *d)
646 s = mempool_alloc(d->c->search, GFP_NOIO);
648 closure_init(&s->cl, NULL);
652 s->cache_miss = NULL;
655 s->write = (bio->bi_rw & REQ_WRITE) != 0;
656 s->read_dirty_data = 0;
657 s->start_time = jiffies;
661 s->iop.inode = d->id;
662 s->iop.write_point = hash_long((unsigned long) current, 16);
663 s->iop.write_prio = 0;
666 s->iop.flush_journal = (bio->bi_rw & (REQ_FLUSH|REQ_FUA)) != 0;
667 s->iop.wq = bcache_wq;
674 static void cached_dev_bio_complete(struct closure *cl)
676 struct search *s = container_of(cl, struct search, cl);
677 struct cached_dev *dc = container_of(s->d, struct cached_dev, disk);
685 static void cached_dev_cache_miss_done(struct closure *cl)
687 struct search *s = container_of(cl, struct search, cl);
689 if (s->iop.replace_collision)
690 bch_mark_cache_miss_collision(s->iop.c, s->d);
696 bio_for_each_segment_all(bv, s->iop.bio, i)
697 __free_page(bv->bv_page);
700 cached_dev_bio_complete(cl);
703 static void cached_dev_read_error(struct closure *cl)
705 struct search *s = container_of(cl, struct search, cl);
706 struct bio *bio = &s->bio.bio;
708 if (s->recoverable) {
709 /* Retry from the backing device: */
710 trace_bcache_read_retry(s->orig_bio);
713 do_bio_hook(s, s->orig_bio);
715 /* XXX: invalidate cache */
717 closure_bio_submit(bio, cl, s->d);
720 continue_at(cl, cached_dev_cache_miss_done, NULL);
723 static void cached_dev_read_done(struct closure *cl)
725 struct search *s = container_of(cl, struct search, cl);
726 struct cached_dev *dc = container_of(s->d, struct cached_dev, disk);
729 * We had a cache miss; cache_bio now contains data ready to be inserted
732 * First, we copy the data we just read from cache_bio's bounce buffers
733 * to the buffers the original bio pointed to:
737 bio_reset(s->iop.bio);
738 s->iop.bio->bi_iter.bi_sector = s->cache_miss->bi_iter.bi_sector;
739 s->iop.bio->bi_bdev = s->cache_miss->bi_bdev;
740 s->iop.bio->bi_iter.bi_size = s->insert_bio_sectors << 9;
741 bch_bio_map(s->iop.bio, NULL);
743 bio_copy_data(s->cache_miss, s->iop.bio);
745 bio_put(s->cache_miss);
746 s->cache_miss = NULL;
749 if (verify(dc, &s->bio.bio) && s->recoverable && !s->read_dirty_data)
750 bch_data_verify(dc, s->orig_bio);
755 !test_bit(CACHE_SET_STOPPING, &s->iop.c->flags)) {
756 BUG_ON(!s->iop.replace);
757 closure_call(&s->iop.cl, bch_data_insert, NULL, cl);
760 continue_at(cl, cached_dev_cache_miss_done, NULL);
763 static void cached_dev_read_done_bh(struct closure *cl)
765 struct search *s = container_of(cl, struct search, cl);
766 struct cached_dev *dc = container_of(s->d, struct cached_dev, disk);
768 bch_mark_cache_accounting(s->iop.c, s->d,
769 !s->cache_miss, s->iop.bypass);
770 trace_bcache_read(s->orig_bio, !s->cache_miss, s->iop.bypass);
773 continue_at_nobarrier(cl, cached_dev_read_error, bcache_wq);
774 else if (s->iop.bio || verify(dc, &s->bio.bio))
775 continue_at_nobarrier(cl, cached_dev_read_done, bcache_wq);
777 continue_at_nobarrier(cl, cached_dev_bio_complete, NULL);
780 static int cached_dev_cache_miss(struct btree *b, struct search *s,
781 struct bio *bio, unsigned sectors)
783 int ret = MAP_CONTINUE;
785 struct cached_dev *dc = container_of(s->d, struct cached_dev, disk);
786 struct bio *miss, *cache_bio;
788 if (s->cache_miss || s->iop.bypass) {
789 miss = bio_next_split(bio, sectors, GFP_NOIO, s->d->bio_split);
790 ret = miss == bio ? MAP_DONE : MAP_CONTINUE;
794 if (!(bio->bi_rw & REQ_RAHEAD) &&
795 !(bio->bi_rw & REQ_META) &&
796 s->iop.c->gc_stats.in_use < CUTOFF_CACHE_READA)
797 reada = min_t(sector_t, dc->readahead >> 9,
798 bdev_sectors(bio->bi_bdev) - bio_end_sector(bio));
800 s->insert_bio_sectors = min(sectors, bio_sectors(bio) + reada);
802 s->iop.replace_key = KEY(s->iop.inode,
803 bio->bi_iter.bi_sector + s->insert_bio_sectors,
804 s->insert_bio_sectors);
806 ret = bch_btree_insert_check_key(b, &s->op, &s->iop.replace_key);
810 s->iop.replace = true;
812 miss = bio_next_split(bio, sectors, GFP_NOIO, s->d->bio_split);
814 /* btree_search_recurse()'s btree iterator is no good anymore */
815 ret = miss == bio ? MAP_DONE : -EINTR;
817 cache_bio = bio_alloc_bioset(GFP_NOWAIT,
818 DIV_ROUND_UP(s->insert_bio_sectors, PAGE_SECTORS),
823 cache_bio->bi_iter.bi_sector = miss->bi_iter.bi_sector;
824 cache_bio->bi_bdev = miss->bi_bdev;
825 cache_bio->bi_iter.bi_size = s->insert_bio_sectors << 9;
827 cache_bio->bi_end_io = request_endio;
828 cache_bio->bi_private = &s->cl;
830 bch_bio_map(cache_bio, NULL);
831 if (bio_alloc_pages(cache_bio, __GFP_NOWARN|GFP_NOIO))
835 bch_mark_cache_readahead(s->iop.c, s->d);
837 s->cache_miss = miss;
838 s->iop.bio = cache_bio;
840 closure_bio_submit(cache_bio, &s->cl, s->d);
846 miss->bi_end_io = request_endio;
847 miss->bi_private = &s->cl;
848 closure_bio_submit(miss, &s->cl, s->d);
852 static void cached_dev_read(struct cached_dev *dc, struct search *s)
854 struct closure *cl = &s->cl;
856 closure_call(&s->iop.cl, cache_lookup, NULL, cl);
857 continue_at(cl, cached_dev_read_done_bh, NULL);
862 static void cached_dev_write_complete(struct closure *cl)
864 struct search *s = container_of(cl, struct search, cl);
865 struct cached_dev *dc = container_of(s->d, struct cached_dev, disk);
867 up_read_non_owner(&dc->writeback_lock);
868 cached_dev_bio_complete(cl);
871 static void cached_dev_write(struct cached_dev *dc, struct search *s)
873 struct closure *cl = &s->cl;
874 struct bio *bio = &s->bio.bio;
875 struct bkey start = KEY(dc->disk.id, bio->bi_iter.bi_sector, 0);
876 struct bkey end = KEY(dc->disk.id, bio_end_sector(bio), 0);
878 bch_keybuf_check_overlapping(&s->iop.c->moving_gc_keys, &start, &end);
880 down_read_non_owner(&dc->writeback_lock);
881 if (bch_keybuf_check_overlapping(&dc->writeback_keys, &start, &end)) {
883 * We overlap with some dirty data undergoing background
884 * writeback, force this write to writeback
886 s->iop.bypass = false;
887 s->iop.writeback = true;
891 * Discards aren't _required_ to do anything, so skipping if
892 * check_overlapping returned true is ok
894 * But check_overlapping drops dirty keys for which io hasn't started,
895 * so we still want to call it.
897 if (bio->bi_rw & REQ_DISCARD)
898 s->iop.bypass = true;
900 if (should_writeback(dc, s->orig_bio,
903 s->iop.bypass = false;
904 s->iop.writeback = true;
908 s->iop.bio = s->orig_bio;
911 if (!(bio->bi_rw & REQ_DISCARD) ||
912 blk_queue_discard(bdev_get_queue(dc->bdev)))
913 closure_bio_submit(bio, cl, s->d);
914 } else if (s->iop.writeback) {
915 bch_writeback_add(dc);
918 if (bio->bi_rw & REQ_FLUSH) {
919 /* Also need to send a flush to the backing device */
920 struct bio *flush = bio_alloc_bioset(GFP_NOIO, 0,
923 flush->bi_rw = WRITE_FLUSH;
924 flush->bi_bdev = bio->bi_bdev;
925 flush->bi_end_io = request_endio;
926 flush->bi_private = cl;
928 closure_bio_submit(flush, cl, s->d);
931 s->iop.bio = bio_clone_fast(bio, GFP_NOIO, dc->disk.bio_split);
933 closure_bio_submit(bio, cl, s->d);
936 closure_call(&s->iop.cl, bch_data_insert, NULL, cl);
937 continue_at(cl, cached_dev_write_complete, NULL);
940 static void cached_dev_nodata(struct closure *cl)
942 struct search *s = container_of(cl, struct search, cl);
943 struct bio *bio = &s->bio.bio;
945 if (s->iop.flush_journal)
946 bch_journal_meta(s->iop.c, cl);
948 /* If it's a flush, we send the flush to the backing device too */
949 closure_bio_submit(bio, cl, s->d);
951 continue_at(cl, cached_dev_bio_complete, NULL);
954 /* Cached devices - read & write stuff */
956 static void cached_dev_make_request(struct request_queue *q, struct bio *bio)
959 struct bcache_device *d = bio->bi_bdev->bd_disk->private_data;
960 struct cached_dev *dc = container_of(d, struct cached_dev, disk);
961 int cpu, rw = bio_data_dir(bio);
963 cpu = part_stat_lock();
964 part_stat_inc(cpu, &d->disk->part0, ios[rw]);
965 part_stat_add(cpu, &d->disk->part0, sectors[rw], bio_sectors(bio));
968 bio->bi_bdev = dc->bdev;
969 bio->bi_iter.bi_sector += dc->sb.data_offset;
971 if (cached_dev_get(dc)) {
972 s = search_alloc(bio, d);
973 trace_bcache_request_start(s->d, bio);
975 if (!bio->bi_iter.bi_size) {
977 * can't call bch_journal_meta from under
978 * generic_make_request
980 continue_at_nobarrier(&s->cl,
984 s->iop.bypass = check_should_bypass(dc, bio);
987 cached_dev_write(dc, s);
989 cached_dev_read(dc, s);
992 if ((bio->bi_rw & REQ_DISCARD) &&
993 !blk_queue_discard(bdev_get_queue(dc->bdev)))
996 bch_generic_make_request(bio, &d->bio_split_hook);
1000 static int cached_dev_ioctl(struct bcache_device *d, fmode_t mode,
1001 unsigned int cmd, unsigned long arg)
1003 struct cached_dev *dc = container_of(d, struct cached_dev, disk);
1004 return __blkdev_driver_ioctl(dc->bdev, mode, cmd, arg);
1007 static int cached_dev_congested(void *data, int bits)
1009 struct bcache_device *d = data;
1010 struct cached_dev *dc = container_of(d, struct cached_dev, disk);
1011 struct request_queue *q = bdev_get_queue(dc->bdev);
1014 if (bdi_congested(&q->backing_dev_info, bits))
1017 if (cached_dev_get(dc)) {
1021 for_each_cache(ca, d->c, i) {
1022 q = bdev_get_queue(ca->bdev);
1023 ret |= bdi_congested(&q->backing_dev_info, bits);
1032 void bch_cached_dev_request_init(struct cached_dev *dc)
1034 struct gendisk *g = dc->disk.disk;
1036 g->queue->make_request_fn = cached_dev_make_request;
1037 g->queue->backing_dev_info.congested_fn = cached_dev_congested;
1038 dc->disk.cache_miss = cached_dev_cache_miss;
1039 dc->disk.ioctl = cached_dev_ioctl;
1042 /* Flash backed devices */
1044 static int flash_dev_cache_miss(struct btree *b, struct search *s,
1045 struct bio *bio, unsigned sectors)
1047 unsigned bytes = min(sectors, bio_sectors(bio)) << 9;
1049 swap(bio->bi_iter.bi_size, bytes);
1051 swap(bio->bi_iter.bi_size, bytes);
1053 bio_advance(bio, bytes);
1055 if (!bio->bi_iter.bi_size)
1058 return MAP_CONTINUE;
1061 static void flash_dev_nodata(struct closure *cl)
1063 struct search *s = container_of(cl, struct search, cl);
1065 if (s->iop.flush_journal)
1066 bch_journal_meta(s->iop.c, cl);
1068 continue_at(cl, search_free, NULL);
1071 static void flash_dev_make_request(struct request_queue *q, struct bio *bio)
1075 struct bcache_device *d = bio->bi_bdev->bd_disk->private_data;
1076 int cpu, rw = bio_data_dir(bio);
1078 cpu = part_stat_lock();
1079 part_stat_inc(cpu, &d->disk->part0, ios[rw]);
1080 part_stat_add(cpu, &d->disk->part0, sectors[rw], bio_sectors(bio));
1083 s = search_alloc(bio, d);
1087 trace_bcache_request_start(s->d, bio);
1089 if (!bio->bi_iter.bi_size) {
1091 * can't call bch_journal_meta from under
1092 * generic_make_request
1094 continue_at_nobarrier(&s->cl,
1098 bch_keybuf_check_overlapping(&s->iop.c->moving_gc_keys,
1099 &KEY(d->id, bio->bi_iter.bi_sector, 0),
1100 &KEY(d->id, bio_end_sector(bio), 0));
1102 s->iop.bypass = (bio->bi_rw & REQ_DISCARD) != 0;
1103 s->iop.writeback = true;
1106 closure_call(&s->iop.cl, bch_data_insert, NULL, cl);
1108 closure_call(&s->iop.cl, cache_lookup, NULL, cl);
1111 continue_at(cl, search_free, NULL);
1114 static int flash_dev_ioctl(struct bcache_device *d, fmode_t mode,
1115 unsigned int cmd, unsigned long arg)
1120 static int flash_dev_congested(void *data, int bits)
1122 struct bcache_device *d = data;
1123 struct request_queue *q;
1128 for_each_cache(ca, d->c, i) {
1129 q = bdev_get_queue(ca->bdev);
1130 ret |= bdi_congested(&q->backing_dev_info, bits);
1136 void bch_flash_dev_request_init(struct bcache_device *d)
1138 struct gendisk *g = d->disk;
1140 g->queue->make_request_fn = flash_dev_make_request;
1141 g->queue->backing_dev_info.congested_fn = flash_dev_congested;
1142 d->cache_miss = flash_dev_cache_miss;
1143 d->ioctl = flash_dev_ioctl;
1146 void bch_request_exit(void)
1148 if (bch_search_cache)
1149 kmem_cache_destroy(bch_search_cache);
1152 int __init bch_request_init(void)
1154 bch_search_cache = KMEM_CACHE(search, 0);
1155 if (!bch_search_cache)