request.c 28.1 KB
Newer Older
K
Kent Overstreet 已提交
1 2 3 4 5 6 7 8 9 10 11 12
/*
 * Main bcache entry point - handle a read or a write request and decide what to
 * do with it; the make_request functions are called by the block layer.
 *
 * Copyright 2010, 2011 Kent Overstreet <kent.overstreet@gmail.com>
 * Copyright 2012 Google, Inc.
 */

#include "bcache.h"
#include "btree.h"
#include "debug.h"
#include "request.h"
13
#include "writeback.h"
K
Kent Overstreet 已提交
14 15 16 17

#include <linux/module.h>
#include <linux/hash.h>
#include <linux/random.h>
18
#include <linux/backing-dev.h>
K
Kent Overstreet 已提交
19 20 21 22 23 24 25 26

#include <trace/events/bcache.h>

#define CUTOFF_CACHE_ADD	95
#define CUTOFF_CACHE_READA	90

struct kmem_cache *bch_search_cache;

27 28
static void bch_data_insert_start(struct closure *);

K
Kent Overstreet 已提交
29 30 31 32 33 34 35 36 37 38 39 40
static unsigned cache_mode(struct cached_dev *dc, struct bio *bio)
{
	return BDEV_CACHE_MODE(&dc->sb);
}

static bool verify(struct cached_dev *dc, struct bio *bio)
{
	return dc->verify;
}

static void bio_csum(struct bio *bio, struct bkey *k)
{
41 42
	struct bio_vec bv;
	struct bvec_iter iter;
K
Kent Overstreet 已提交
43 44
	uint64_t csum = 0;

45 46 47 48
	bio_for_each_segment(bv, bio, iter) {
		void *d = kmap(bv.bv_page) + bv.bv_offset;
		csum = bch_crc64_update(csum, d, bv.bv_len);
		kunmap(bv.bv_page);
K
Kent Overstreet 已提交
49 50 51 52 53 54 55
	}

	k->ptr[KEY_PTRS(k)] = csum & (~0ULL >> 1);
}

/* Insert data into cache */

56
static void bch_data_insert_keys(struct closure *cl)
K
Kent Overstreet 已提交
57
{
K
Kent Overstreet 已提交
58
	struct data_insert_op *op = container_of(cl, struct data_insert_op, cl);
K
Kent Overstreet 已提交
59
	atomic_t *journal_ref = NULL;
K
Kent Overstreet 已提交
60
	struct bkey *replace_key = op->replace ? &op->replace_key : NULL;
61
	int ret;
K
Kent Overstreet 已提交
62

63 64 65 66 67 68 69 70 71 72 73
	/*
	 * If we're looping, might already be waiting on
	 * another journal write - can't wait on more than one journal write at
	 * a time
	 *
	 * XXX: this looks wrong
	 */
#if 0
	while (atomic_read(&s->cl.remaining) & CLOSURE_WAITING)
		closure_sync(&s->cl);
#endif
K
Kent Overstreet 已提交
74

K
Kent Overstreet 已提交
75 76 77
	if (!op->replace)
		journal_ref = bch_journal(op->c, &op->insert_keys,
					  op->flush_journal ? cl : NULL);
K
Kent Overstreet 已提交
78

K
Kent Overstreet 已提交
79
	ret = bch_btree_insert(op->c, &op->insert_keys,
80 81
			       journal_ref, replace_key);
	if (ret == -ESRCH) {
K
Kent Overstreet 已提交
82
		op->replace_collision = true;
83
	} else if (ret) {
84
		op->status		= BLK_STS_RESOURCE;
K
Kent Overstreet 已提交
85
		op->insert_data_done	= true;
86
	}
K
Kent Overstreet 已提交
87

K
Kent Overstreet 已提交
88 89
	if (journal_ref)
		atomic_dec_bug(journal_ref);
K
Kent Overstreet 已提交
90

91
	if (!op->insert_data_done) {
92
		continue_at(cl, bch_data_insert_start, op->wq);
93 94
		return;
	}
K
Kent Overstreet 已提交
95

K
Kent Overstreet 已提交
96
	bch_keylist_free(&op->insert_keys);
97
	closure_return(cl);
K
Kent Overstreet 已提交
98 99
}

100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117
static int bch_keylist_realloc(struct keylist *l, unsigned u64s,
			       struct cache_set *c)
{
	size_t oldsize = bch_keylist_nkeys(l);
	size_t newsize = oldsize + u64s;

	/*
	 * The journalling code doesn't handle the case where the keys to insert
	 * is bigger than an empty write: If we just return -ENOMEM here,
	 * bio_insert() and bio_invalidate() will insert the keys created so far
	 * and finish the rest when the keylist is empty.
	 */
	if (newsize * sizeof(uint64_t) > block_bytes(c) - sizeof(struct jset))
		return -ENOMEM;

	return __bch_keylist_realloc(l, u64s);
}

118 119
static void bch_data_invalidate(struct closure *cl)
{
K
Kent Overstreet 已提交
120 121
	struct data_insert_op *op = container_of(cl, struct data_insert_op, cl);
	struct bio *bio = op->bio;
122 123

	pr_debug("invalidating %i sectors from %llu",
124
		 bio_sectors(bio), (uint64_t) bio->bi_iter.bi_sector);
125 126

	while (bio_sectors(bio)) {
127 128
		unsigned sectors = min(bio_sectors(bio),
				       1U << (KEY_SIZE_BITS - 1));
129

130
		if (bch_keylist_realloc(&op->insert_keys, 2, op->c))
131 132
			goto out;

133 134
		bio->bi_iter.bi_sector	+= sectors;
		bio->bi_iter.bi_size	-= sectors << 9;
135

K
Kent Overstreet 已提交
136
		bch_keylist_add(&op->insert_keys,
137
				&KEY(op->inode, bio->bi_iter.bi_sector, sectors));
138 139
	}

K
Kent Overstreet 已提交
140
	op->insert_data_done = true;
141 142
	bio_put(bio);
out:
143
	continue_at(cl, bch_data_insert_keys, op->wq);
144 145 146
}

static void bch_data_insert_error(struct closure *cl)
K
Kent Overstreet 已提交
147
{
K
Kent Overstreet 已提交
148
	struct data_insert_op *op = container_of(cl, struct data_insert_op, cl);
K
Kent Overstreet 已提交
149 150 151 152 153 154 155 156 157 158

	/*
	 * Our data write just errored, which means we've got a bunch of keys to
	 * insert that point to data that wasn't succesfully written.
	 *
	 * We don't have to insert those keys but we still have to invalidate
	 * that region of the cache - so, if we just strip off all the pointers
	 * from the keys we'll accomplish just that.
	 */

K
Kent Overstreet 已提交
159
	struct bkey *src = op->insert_keys.keys, *dst = op->insert_keys.keys;
K
Kent Overstreet 已提交
160

K
Kent Overstreet 已提交
161
	while (src != op->insert_keys.top) {
K
Kent Overstreet 已提交
162 163 164
		struct bkey *n = bkey_next(src);

		SET_KEY_PTRS(src, 0);
K
Kent Overstreet 已提交
165
		memmove(dst, src, bkey_bytes(src));
K
Kent Overstreet 已提交
166 167 168 169 170

		dst = bkey_next(dst);
		src = n;
	}

K
Kent Overstreet 已提交
171
	op->insert_keys.top = dst;
K
Kent Overstreet 已提交
172

173
	bch_data_insert_keys(cl);
K
Kent Overstreet 已提交
174 175
}

176
static void bch_data_insert_endio(struct bio *bio)
K
Kent Overstreet 已提交
177 178
{
	struct closure *cl = bio->bi_private;
K
Kent Overstreet 已提交
179
	struct data_insert_op *op = container_of(cl, struct data_insert_op, cl);
K
Kent Overstreet 已提交
180

181
	if (bio->bi_status) {
K
Kent Overstreet 已提交
182
		/* TODO: We could try to recover from this. */
K
Kent Overstreet 已提交
183
		if (op->writeback)
184
			op->status = bio->bi_status;
K
Kent Overstreet 已提交
185
		else if (!op->replace)
186
			set_closure_fn(cl, bch_data_insert_error, op->wq);
K
Kent Overstreet 已提交
187 188 189 190
		else
			set_closure_fn(cl, NULL, NULL);
	}

191
	bch_bbio_endio(op->c, bio, bio->bi_status, "writing data to cache");
K
Kent Overstreet 已提交
192 193
}

194
static void bch_data_insert_start(struct closure *cl)
K
Kent Overstreet 已提交
195
{
K
Kent Overstreet 已提交
196 197
	struct data_insert_op *op = container_of(cl, struct data_insert_op, cl);
	struct bio *bio = op->bio, *n;
K
Kent Overstreet 已提交
198

199 200 201
	if (op->bypass)
		return bch_data_invalidate(cl);

202 203 204
	if (atomic_sub_return(bio_sectors(bio), &op->c->sectors_to_gc) < 0)
		wake_up_gc(op->c);

205
	/*
206
	 * Journal writes are marked REQ_PREFLUSH; if the original write was a
207 208
	 * flush, it'll wait on the journal write.
	 */
J
Jens Axboe 已提交
209
	bio->bi_opf &= ~(REQ_PREFLUSH|REQ_FUA);
210

K
Kent Overstreet 已提交
211 212 213
	do {
		unsigned i;
		struct bkey *k;
K
Kent Overstreet 已提交
214
		struct bio_set *split = op->c->bio_split;
K
Kent Overstreet 已提交
215 216

		/* 1 for the device pointer and 1 for the chksum */
K
Kent Overstreet 已提交
217
		if (bch_keylist_realloc(&op->insert_keys,
218
					3 + (op->csum ? 1 : 0),
219
					op->c)) {
220
			continue_at(cl, bch_data_insert_keys, op->wq);
221 222
			return;
		}
K
Kent Overstreet 已提交
223

K
Kent Overstreet 已提交
224
		k = op->insert_keys.top;
K
Kent Overstreet 已提交
225
		bkey_init(k);
K
Kent Overstreet 已提交
226
		SET_KEY_INODE(k, op->inode);
227
		SET_KEY_OFFSET(k, bio->bi_iter.bi_sector);
K
Kent Overstreet 已提交
228

229 230 231
		if (!bch_alloc_sectors(op->c, k, bio_sectors(bio),
				       op->write_point, op->write_prio,
				       op->writeback))
K
Kent Overstreet 已提交
232 233
			goto err;

K
Kent Overstreet 已提交
234
		n = bio_next_split(bio, KEY_SIZE(k), GFP_NOIO, split);
K
Kent Overstreet 已提交
235

236
		n->bi_end_io	= bch_data_insert_endio;
K
Kent Overstreet 已提交
237 238
		n->bi_private	= cl;

K
Kent Overstreet 已提交
239
		if (op->writeback) {
K
Kent Overstreet 已提交
240 241 242
			SET_KEY_DIRTY(k, true);

			for (i = 0; i < KEY_PTRS(k); i++)
K
Kent Overstreet 已提交
243
				SET_GC_MARK(PTR_BUCKET(op->c, k, i),
K
Kent Overstreet 已提交
244 245 246
					    GC_MARK_DIRTY);
		}

K
Kent Overstreet 已提交
247
		SET_KEY_CSUM(k, op->csum);
K
Kent Overstreet 已提交
248 249 250
		if (KEY_CSUM(k))
			bio_csum(n, k);

K
Kent Overstreet 已提交
251
		trace_bcache_cache_insert(k);
K
Kent Overstreet 已提交
252
		bch_keylist_push(&op->insert_keys);
K
Kent Overstreet 已提交
253

M
Mike Christie 已提交
254
		bio_set_op_attrs(n, REQ_OP_WRITE, 0);
K
Kent Overstreet 已提交
255
		bch_submit_bbio(n, op->c, k, 0);
K
Kent Overstreet 已提交
256 257
	} while (n != bio);

K
Kent Overstreet 已提交
258
	op->insert_data_done = true;
259
	continue_at(cl, bch_data_insert_keys, op->wq);
260
	return;
K
Kent Overstreet 已提交
261 262
err:
	/* bch_alloc_sectors() blocks if s->writeback = true */
K
Kent Overstreet 已提交
263
	BUG_ON(op->writeback);
K
Kent Overstreet 已提交
264 265 266 267 268 269 270

	/*
	 * But if it's not a writeback write we'd rather just bail out if
	 * there aren't any buckets ready to write to - it might take awhile and
	 * we might be starving btree writes for gc or something.
	 */

K
Kent Overstreet 已提交
271
	if (!op->replace) {
K
Kent Overstreet 已提交
272 273 274 275 276 277
		/*
		 * Writethrough write: We can't complete the write until we've
		 * updated the index. But we don't want to delay the write while
		 * we wait for buckets to be freed up, so just invalidate the
		 * rest of the write.
		 */
K
Kent Overstreet 已提交
278
		op->bypass = true;
279
		return bch_data_invalidate(cl);
K
Kent Overstreet 已提交
280 281 282 283 284
	} else {
		/*
		 * From a cache miss, we can just insert the keys for the data
		 * we have written or bail out if we didn't do anything.
		 */
K
Kent Overstreet 已提交
285
		op->insert_data_done = true;
K
Kent Overstreet 已提交
286 287
		bio_put(bio);

K
Kent Overstreet 已提交
288
		if (!bch_keylist_empty(&op->insert_keys))
289
			continue_at(cl, bch_data_insert_keys, op->wq);
K
Kent Overstreet 已提交
290 291 292 293 294 295
		else
			closure_return(cl);
	}
}

/**
296
 * bch_data_insert - stick some data in the cache
K
Kent Overstreet 已提交
297 298 299 300 301 302 303 304 305 306 307
 *
 * This is the starting point for any data to end up in a cache device; it could
 * be from a normal write, or a writeback write, or a write to a flash only
 * volume - it's also used by the moving garbage collector to compact data in
 * mostly empty buckets.
 *
 * It first writes the data to the cache, creating a list of keys to be inserted
 * (if the data had to be fragmented there will be multiple keys); after the
 * data is written it calls bch_journal, and after the keys have been added to
 * the next journal write they're inserted into the btree.
 *
K
Kent Overstreet 已提交
308
 * It inserts the data in s->cache_bio; bi_sector is used for the key offset,
K
Kent Overstreet 已提交
309 310
 * and op->inode is used for the key inode.
 *
K
Kent Overstreet 已提交
311 312
 * If s->bypass is true, instead of inserting the data it invalidates the
 * region of the cache represented by s->cache_bio and op->inode.
K
Kent Overstreet 已提交
313
 */
314
void bch_data_insert(struct closure *cl)
K
Kent Overstreet 已提交
315
{
K
Kent Overstreet 已提交
316
	struct data_insert_op *op = container_of(cl, struct data_insert_op, cl);
K
Kent Overstreet 已提交
317

318 319
	trace_bcache_write(op->c, op->inode, op->bio,
			   op->writeback, op->bypass);
K
Kent Overstreet 已提交
320 321 322

	bch_keylist_init(&op->insert_keys);
	bio_get(op->bio);
323
	bch_data_insert_start(cl);
K
Kent Overstreet 已提交
324 325
}

K
Kent Overstreet 已提交
326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374
/* Congested? */

unsigned bch_get_congested(struct cache_set *c)
{
	int i;
	long rand;

	if (!c->congested_read_threshold_us &&
	    !c->congested_write_threshold_us)
		return 0;

	i = (local_clock_us() - c->congested_last_us) / 1024;
	if (i < 0)
		return 0;

	i += atomic_read(&c->congested);
	if (i >= 0)
		return 0;

	i += CONGESTED_MAX;

	if (i > 0)
		i = fract_exp_two(i, 6);

	rand = get_random_int();
	i -= bitmap_weight(&rand, BITS_PER_LONG);

	return i > 0 ? i : 1;
}

static void add_sequential(struct task_struct *t)
{
	ewma_add(t->sequential_io_avg,
		 t->sequential_io, 8, 0);

	t->sequential_io = 0;
}

static struct hlist_head *iohash(struct cached_dev *dc, uint64_t k)
{
	return &dc->io_hash[hash_64(k, RECENT_IO_BITS)];
}

static bool check_should_bypass(struct cached_dev *dc, struct bio *bio)
{
	struct cache_set *c = dc->disk.c;
	unsigned mode = cache_mode(dc, bio);
	unsigned sectors, congested = bch_get_congested(c);
	struct task_struct *task = current;
375
	struct io *i;
K
Kent Overstreet 已提交
376

377
	if (test_bit(BCACHE_DEV_DETACHING, &dc->disk.flags) ||
K
Kent Overstreet 已提交
378
	    c->gc_stats.in_use > CUTOFF_CACHE_ADD ||
M
Mike Christie 已提交
379
	    (bio_op(bio) == REQ_OP_DISCARD))
K
Kent Overstreet 已提交
380 381 382 383
		goto skip;

	if (mode == CACHE_MODE_NONE ||
	    (mode == CACHE_MODE_WRITEAROUND &&
384
	     op_is_write(bio_op(bio))))
K
Kent Overstreet 已提交
385 386
		goto skip;

387
	if (bio->bi_iter.bi_sector & (c->sb.block_size - 1) ||
K
Kent Overstreet 已提交
388 389 390 391 392
	    bio_sectors(bio) & (c->sb.block_size - 1)) {
		pr_debug("skipping unaligned io");
		goto skip;
	}

K
Kent Overstreet 已提交
393 394 395 396 397 398 399
	if (bypass_torture_test(dc)) {
		if ((get_random_int() & 3) == 3)
			goto skip;
		else
			goto rescale;
	}

K
Kent Overstreet 已提交
400 401 402
	if (!congested && !dc->sequential_cutoff)
		goto rescale;

403
	spin_lock(&dc->io_lock);
K
Kent Overstreet 已提交
404

405 406
	hlist_for_each_entry(i, iohash(dc, bio->bi_iter.bi_sector), hash)
		if (i->last == bio->bi_iter.bi_sector &&
407 408
		    time_before(jiffies, i->jiffies))
			goto found;
K
Kent Overstreet 已提交
409

410
	i = list_first_entry(&dc->io_lru, struct io, lru);
K
Kent Overstreet 已提交
411

412 413
	add_sequential(task);
	i->sequential = 0;
K
Kent Overstreet 已提交
414
found:
415 416
	if (i->sequential + bio->bi_iter.bi_size > i->sequential)
		i->sequential	+= bio->bi_iter.bi_size;
K
Kent Overstreet 已提交
417

418 419 420
	i->last			 = bio_end_sector(bio);
	i->jiffies		 = jiffies + msecs_to_jiffies(5000);
	task->sequential_io	 = i->sequential;
K
Kent Overstreet 已提交
421

422 423 424
	hlist_del(&i->hash);
	hlist_add_head(&i->hash, iohash(dc, i->last));
	list_move_tail(&i->lru, &dc->io_lru);
K
Kent Overstreet 已提交
425

426
	spin_unlock(&dc->io_lock);
K
Kent Overstreet 已提交
427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449

	sectors = max(task->sequential_io,
		      task->sequential_io_avg) >> 9;

	if (dc->sequential_cutoff &&
	    sectors >= dc->sequential_cutoff >> 9) {
		trace_bcache_bypass_sequential(bio);
		goto skip;
	}

	if (congested && sectors >= congested) {
		trace_bcache_bypass_congested(bio);
		goto skip;
	}

rescale:
	bch_rescale_priorities(c, bio_sectors(bio));
	return false;
skip:
	bch_mark_sectors_bypassed(c, dc, bio_sectors(bio));
	return true;
}

450
/* Cache lookup */
K
Kent Overstreet 已提交
451

K
Kent Overstreet 已提交
452 453 454 455 456 457 458
struct search {
	/* Stack frame for bio_complete */
	struct closure		cl;

	struct bbio		bio;
	struct bio		*orig_bio;
	struct bio		*cache_miss;
K
Kent Overstreet 已提交
459
	struct bcache_device	*d;
K
Kent Overstreet 已提交
460 461 462 463

	unsigned		insert_bio_sectors;
	unsigned		recoverable:1;
	unsigned		write:1;
K
Kent Overstreet 已提交
464
	unsigned		read_dirty_data:1;
K
Kent Overstreet 已提交
465 466 467 468 469 470 471

	unsigned long		start_time;

	struct btree_op		op;
	struct data_insert_op	iop;
};

472
static void bch_cache_read_endio(struct bio *bio)
K
Kent Overstreet 已提交
473 474 475 476 477 478 479 480 481 482 483 484
{
	struct bbio *b = container_of(bio, struct bbio, bio);
	struct closure *cl = bio->bi_private;
	struct search *s = container_of(cl, struct search, cl);

	/*
	 * If the bucket was reused while our bio was in flight, we might have
	 * read the wrong data. Set s->error but not error so it doesn't get
	 * counted against the cache device, but we'll still reread the data
	 * from the backing device.
	 */

485 486
	if (bio->bi_status)
		s->iop.status = bio->bi_status;
487 488
	else if (!KEY_DIRTY(&b->key) &&
		 ptr_stale(s->iop.c, &b->key, 0)) {
K
Kent Overstreet 已提交
489
		atomic_long_inc(&s->iop.c->cache_read_races);
490
		s->iop.status = BLK_STS_IOERR;
K
Kent Overstreet 已提交
491 492
	}

493
	bch_bbio_endio(s->iop.c, bio, bio->bi_status, "reading from cache");
K
Kent Overstreet 已提交
494 495
}

496 497 498 499
/*
 * Read from a single key, handling the initial cache miss if the key starts in
 * the middle of the bio
 */
K
Kent Overstreet 已提交
500
static int cache_lookup_fn(struct btree_op *op, struct btree *b, struct bkey *k)
501 502
{
	struct search *s = container_of(op, struct search, op);
K
Kent Overstreet 已提交
503 504
	struct bio *n, *bio = &s->bio.bio;
	struct bkey *bio_key;
505 506
	unsigned ptr;

507
	if (bkey_cmp(k, &KEY(s->iop.inode, bio->bi_iter.bi_sector, 0)) <= 0)
K
Kent Overstreet 已提交
508 509
		return MAP_CONTINUE;

K
Kent Overstreet 已提交
510
	if (KEY_INODE(k) != s->iop.inode ||
511
	    KEY_START(k) > bio->bi_iter.bi_sector) {
K
Kent Overstreet 已提交
512
		unsigned bio_sectors = bio_sectors(bio);
K
Kent Overstreet 已提交
513
		unsigned sectors = KEY_INODE(k) == s->iop.inode
K
Kent Overstreet 已提交
514
			? min_t(uint64_t, INT_MAX,
515
				KEY_START(k) - bio->bi_iter.bi_sector)
K
Kent Overstreet 已提交
516 517 518 519 520 521 522 523 524 525 526 527
			: INT_MAX;

		int ret = s->d->cache_miss(b, s, bio, sectors);
		if (ret != MAP_CONTINUE)
			return ret;

		/* if this was a complete miss we shouldn't get here */
		BUG_ON(bio_sectors <= sectors);
	}

	if (!KEY_SIZE(k))
		return MAP_CONTINUE;
528 529 530 531 532 533

	/* XXX: figure out best pointer - for multiple cache devices */
	ptr = 0;

	PTR_BUCKET(b->c, k, ptr)->prio = INITIAL_PRIO;

K
Kent Overstreet 已提交
534 535 536
	if (KEY_DIRTY(k))
		s->read_dirty_data = true;

K
Kent Overstreet 已提交
537 538 539
	n = bio_next_split(bio, min_t(uint64_t, INT_MAX,
				      KEY_OFFSET(k) - bio->bi_iter.bi_sector),
			   GFP_NOIO, s->d->bio_split);
540

K
Kent Overstreet 已提交
541 542
	bio_key = &container_of(n, struct bbio, bio)->key;
	bch_bkey_copy_single_ptr(bio_key, k, ptr);
543

544
	bch_cut_front(&KEY(s->iop.inode, n->bi_iter.bi_sector, 0), bio_key);
K
Kent Overstreet 已提交
545
	bch_cut_back(&KEY(s->iop.inode, bio_end_sector(n), 0), bio_key);
546

K
Kent Overstreet 已提交
547 548
	n->bi_end_io	= bch_cache_read_endio;
	n->bi_private	= &s->cl;
549

K
Kent Overstreet 已提交
550 551 552 553 554 555 556 557 558 559
	/*
	 * The bucket we're reading from might be reused while our bio
	 * is in flight, and we could then end up reading the wrong
	 * data.
	 *
	 * We guard against this by checking (in cache_read_endio()) if
	 * the pointer is stale again; if so, we treat it as an error
	 * and reread from the backing device (but we don't pass that
	 * error up anywhere).
	 */
560

K
Kent Overstreet 已提交
561 562
	__bch_submit_bbio(n, b->c);
	return n == bio ? MAP_DONE : MAP_CONTINUE;
563 564 565 566
}

static void cache_lookup(struct closure *cl)
{
K
Kent Overstreet 已提交
567
	struct search *s = container_of(cl, struct search, iop.cl);
568
	struct bio *bio = &s->bio.bio;
K
Kent Overstreet 已提交
569
	int ret;
570

K
Kent Overstreet 已提交
571
	bch_btree_op_init(&s->op, -1);
572

K
Kent Overstreet 已提交
573 574 575
	ret = bch_btree_map_keys(&s->op, s->iop.c,
				 &KEY(s->iop.inode, bio->bi_iter.bi_sector, 0),
				 cache_lookup_fn, MAP_END_KEY);
576
	if (ret == -EAGAIN) {
577
		continue_at(cl, cache_lookup, bcache_wq);
578 579
		return;
	}
580 581 582 583 584 585

	closure_return(cl);
}

/* Common code for the make_request functions */

586
static void request_endio(struct bio *bio)
587 588 589
{
	struct closure *cl = bio->bi_private;

590
	if (bio->bi_status) {
591
		struct search *s = container_of(cl, struct search, cl);
592
		s->iop.status = bio->bi_status;
593 594 595 596 597 598 599 600
		/* Only cache read errors are recoverable */
		s->recoverable = false;
	}

	bio_put(bio);
	closure_put(cl);
}

K
Kent Overstreet 已提交
601 602 603
static void bio_complete(struct search *s)
{
	if (s->orig_bio) {
604
		struct request_queue *q = s->orig_bio->bi_disk->queue;
605
		generic_end_io_acct(q, bio_data_dir(s->orig_bio),
606
				    &s->d->disk->part0, s->start_time);
K
Kent Overstreet 已提交
607

K
Kent Overstreet 已提交
608
		trace_bcache_request_end(s->d, s->orig_bio);
609
		s->orig_bio->bi_status = s->iop.status;
610
		bio_endio(s->orig_bio);
K
Kent Overstreet 已提交
611 612 613 614
		s->orig_bio = NULL;
	}
}

K
Kent Overstreet 已提交
615
static void do_bio_hook(struct search *s, struct bio *orig_bio)
K
Kent Overstreet 已提交
616 617 618
{
	struct bio *bio = &s->bio.bio;

619
	bio_init(bio, NULL, 0);
K
Kent Overstreet 已提交
620
	__bio_clone_fast(bio, orig_bio);
K
Kent Overstreet 已提交
621 622
	bio->bi_end_io		= request_endio;
	bio->bi_private		= &s->cl;
K
Kent Overstreet 已提交
623

624
	bio_cnt_set(bio, 3);
K
Kent Overstreet 已提交
625 626 627 628 629 630 631
}

static void search_free(struct closure *cl)
{
	struct search *s = container_of(cl, struct search, cl);
	bio_complete(s);

K
Kent Overstreet 已提交
632 633
	if (s->iop.bio)
		bio_put(s->iop.bio);
K
Kent Overstreet 已提交
634 635 636 637 638

	closure_debug_destroy(cl);
	mempool_free(s, s->d->c->search);
}

K
Kent Overstreet 已提交
639 640
static inline struct search *search_alloc(struct bio *bio,
					  struct bcache_device *d)
K
Kent Overstreet 已提交
641
{
642 643 644
	struct search *s;

	s = mempool_alloc(d->c->search, GFP_NOIO);
K
Kent Overstreet 已提交
645

K
Kent Overstreet 已提交
646 647
	closure_init(&s->cl, NULL);
	do_bio_hook(s, bio);
K
Kent Overstreet 已提交
648 649

	s->orig_bio		= bio;
K
Kent Overstreet 已提交
650 651
	s->cache_miss		= NULL;
	s->d			= d;
K
Kent Overstreet 已提交
652
	s->recoverable		= 1;
653
	s->write		= op_is_write(bio_op(bio));
K
Kent Overstreet 已提交
654
	s->read_dirty_data	= 0;
K
Kent Overstreet 已提交
655
	s->start_time		= jiffies;
K
Kent Overstreet 已提交
656 657 658 659 660 661

	s->iop.c		= d->c;
	s->iop.bio		= NULL;
	s->iop.inode		= d->id;
	s->iop.write_point	= hash_long((unsigned long) current, 16);
	s->iop.write_prio	= 0;
662
	s->iop.status		= 0;
K
Kent Overstreet 已提交
663
	s->iop.flags		= 0;
664
	s->iop.flush_journal	= op_is_flush(bio->bi_opf);
665
	s->iop.wq		= bcache_wq;
K
Kent Overstreet 已提交
666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682

	return s;
}

/* Cached devices */

static void cached_dev_bio_complete(struct closure *cl)
{
	struct search *s = container_of(cl, struct search, cl);
	struct cached_dev *dc = container_of(s->d, struct cached_dev, disk);

	search_free(cl);
	cached_dev_put(dc);
}

/* Process reads */

683
static void cached_dev_cache_miss_done(struct closure *cl)
K
Kent Overstreet 已提交
684 685 686
{
	struct search *s = container_of(cl, struct search, cl);

K
Kent Overstreet 已提交
687 688
	if (s->iop.replace_collision)
		bch_mark_cache_miss_collision(s->iop.c, s->d);
K
Kent Overstreet 已提交
689

690 691
	if (s->iop.bio)
		bio_free_pages(s->iop.bio);
K
Kent Overstreet 已提交
692 693 694 695

	cached_dev_bio_complete(cl);
}

696
static void cached_dev_read_error(struct closure *cl)
K
Kent Overstreet 已提交
697 698
{
	struct search *s = container_of(cl, struct search, cl);
699
	struct bio *bio = &s->bio.bio;
K
Kent Overstreet 已提交
700 701

	if (s->recoverable) {
K
Kent Overstreet 已提交
702 703
		/* Retry from the backing device: */
		trace_bcache_read_retry(s->orig_bio);
K
Kent Overstreet 已提交
704

705
		s->iop.status = 0;
K
Kent Overstreet 已提交
706
		do_bio_hook(s, s->orig_bio);
K
Kent Overstreet 已提交
707 708 709

		/* XXX: invalidate cache */

710
		closure_bio_submit(bio, cl);
K
Kent Overstreet 已提交
711 712
	}

713
	continue_at(cl, cached_dev_cache_miss_done, NULL);
K
Kent Overstreet 已提交
714 715
}

716
static void cached_dev_read_done(struct closure *cl)
K
Kent Overstreet 已提交
717 718 719 720 721
{
	struct search *s = container_of(cl, struct search, cl);
	struct cached_dev *dc = container_of(s->d, struct cached_dev, disk);

	/*
722 723
	 * We had a cache miss; cache_bio now contains data ready to be inserted
	 * into the cache.
K
Kent Overstreet 已提交
724 725 726 727 728
	 *
	 * First, we copy the data we just read from cache_bio's bounce buffers
	 * to the buffers the original bio pointed to:
	 */

K
Kent Overstreet 已提交
729 730
	if (s->iop.bio) {
		bio_reset(s->iop.bio);
731
		s->iop.bio->bi_iter.bi_sector = s->cache_miss->bi_iter.bi_sector;
732
		bio_copy_dev(s->iop.bio, s->cache_miss);
733
		s->iop.bio->bi_iter.bi_size = s->insert_bio_sectors << 9;
K
Kent Overstreet 已提交
734
		bch_bio_map(s->iop.bio, NULL);
K
Kent Overstreet 已提交
735

K
Kent Overstreet 已提交
736
		bio_copy_data(s->cache_miss, s->iop.bio);
K
Kent Overstreet 已提交
737 738 739 740 741

		bio_put(s->cache_miss);
		s->cache_miss = NULL;
	}

K
Kent Overstreet 已提交
742
	if (verify(dc, &s->bio.bio) && s->recoverable && !s->read_dirty_data)
K
Kent Overstreet 已提交
743
		bch_data_verify(dc, s->orig_bio);
K
Kent Overstreet 已提交
744 745 746

	bio_complete(s);

K
Kent Overstreet 已提交
747 748 749 750
	if (s->iop.bio &&
	    !test_bit(CACHE_SET_STOPPING, &s->iop.c->flags)) {
		BUG_ON(!s->iop.replace);
		closure_call(&s->iop.cl, bch_data_insert, NULL, cl);
K
Kent Overstreet 已提交
751 752
	}

753
	continue_at(cl, cached_dev_cache_miss_done, NULL);
K
Kent Overstreet 已提交
754 755
}

756
static void cached_dev_read_done_bh(struct closure *cl)
K
Kent Overstreet 已提交
757 758 759 760
{
	struct search *s = container_of(cl, struct search, cl);
	struct cached_dev *dc = container_of(s->d, struct cached_dev, disk);

K
Kent Overstreet 已提交
761 762 763
	bch_mark_cache_accounting(s->iop.c, s->d,
				  !s->cache_miss, s->iop.bypass);
	trace_bcache_read(s->orig_bio, !s->cache_miss, s->iop.bypass);
K
Kent Overstreet 已提交
764

765
	if (s->iop.status)
766
		continue_at_nobarrier(cl, cached_dev_read_error, bcache_wq);
K
Kent Overstreet 已提交
767
	else if (s->iop.bio || verify(dc, &s->bio.bio))
768
		continue_at_nobarrier(cl, cached_dev_read_done, bcache_wq);
K
Kent Overstreet 已提交
769
	else
770
		continue_at_nobarrier(cl, cached_dev_bio_complete, NULL);
K
Kent Overstreet 已提交
771 772 773 774 775
}

static int cached_dev_cache_miss(struct btree *b, struct search *s,
				 struct bio *bio, unsigned sectors)
{
776
	int ret = MAP_CONTINUE;
777
	unsigned reada = 0;
K
Kent Overstreet 已提交
778
	struct cached_dev *dc = container_of(s->d, struct cached_dev, disk);
779
	struct bio *miss, *cache_bio;
K
Kent Overstreet 已提交
780

K
Kent Overstreet 已提交
781
	if (s->cache_miss || s->iop.bypass) {
K
Kent Overstreet 已提交
782
		miss = bio_next_split(bio, sectors, GFP_NOIO, s->d->bio_split);
783
		ret = miss == bio ? MAP_DONE : MAP_CONTINUE;
784 785
		goto out_submit;
	}
K
Kent Overstreet 已提交
786

J
Jens Axboe 已提交
787 788
	if (!(bio->bi_opf & REQ_RAHEAD) &&
	    !(bio->bi_opf & REQ_META) &&
K
Kent Overstreet 已提交
789
	    s->iop.c->gc_stats.in_use < CUTOFF_CACHE_READA)
790
		reada = min_t(sector_t, dc->readahead >> 9,
791
			      get_capacity(bio->bi_disk) - bio_end_sector(bio));
K
Kent Overstreet 已提交
792

K
Kent Overstreet 已提交
793
	s->insert_bio_sectors = min(sectors, bio_sectors(bio) + reada);
K
Kent Overstreet 已提交
794

K
Kent Overstreet 已提交
795
	s->iop.replace_key = KEY(s->iop.inode,
796
				 bio->bi_iter.bi_sector + s->insert_bio_sectors,
K
Kent Overstreet 已提交
797
				 s->insert_bio_sectors);
798

K
Kent Overstreet 已提交
799
	ret = bch_btree_insert_check_key(b, &s->op, &s->iop.replace_key);
800 801 802
	if (ret)
		return ret;

K
Kent Overstreet 已提交
803
	s->iop.replace = true;
K
Kent Overstreet 已提交
804

K
Kent Overstreet 已提交
805
	miss = bio_next_split(bio, sectors, GFP_NOIO, s->d->bio_split);
806 807 808

	/* btree_search_recurse()'s btree iterator is no good anymore */
	ret = miss == bio ? MAP_DONE : -EINTR;
K
Kent Overstreet 已提交
809

810
	cache_bio = bio_alloc_bioset(GFP_NOWAIT,
K
Kent Overstreet 已提交
811
			DIV_ROUND_UP(s->insert_bio_sectors, PAGE_SECTORS),
K
Kent Overstreet 已提交
812
			dc->disk.bio_split);
813
	if (!cache_bio)
K
Kent Overstreet 已提交
814 815
		goto out_submit;

816
	cache_bio->bi_iter.bi_sector	= miss->bi_iter.bi_sector;
817
	bio_copy_dev(cache_bio, miss);
818
	cache_bio->bi_iter.bi_size	= s->insert_bio_sectors << 9;
K
Kent Overstreet 已提交
819

820 821
	cache_bio->bi_end_io	= request_endio;
	cache_bio->bi_private	= &s->cl;
K
Kent Overstreet 已提交
822

823 824
	bch_bio_map(cache_bio, NULL);
	if (bio_alloc_pages(cache_bio, __GFP_NOWARN|GFP_NOIO))
K
Kent Overstreet 已提交
825 826
		goto out_put;

K
Kent Overstreet 已提交
827 828 829
	if (reada)
		bch_mark_cache_readahead(s->iop.c, s->d);

830
	s->cache_miss	= miss;
K
Kent Overstreet 已提交
831
	s->iop.bio	= cache_bio;
832
	bio_get(cache_bio);
833
	closure_bio_submit(cache_bio, &s->cl);
K
Kent Overstreet 已提交
834 835 836

	return ret;
out_put:
837
	bio_put(cache_bio);
K
Kent Overstreet 已提交
838
out_submit:
839 840
	miss->bi_end_io		= request_endio;
	miss->bi_private	= &s->cl;
841
	closure_bio_submit(miss, &s->cl);
K
Kent Overstreet 已提交
842 843 844
	return ret;
}

845
static void cached_dev_read(struct cached_dev *dc, struct search *s)
K
Kent Overstreet 已提交
846 847 848
{
	struct closure *cl = &s->cl;

K
Kent Overstreet 已提交
849
	closure_call(&s->iop.cl, cache_lookup, NULL, cl);
850
	continue_at(cl, cached_dev_read_done_bh, NULL);
K
Kent Overstreet 已提交
851 852 853 854 855 856 857 858 859 860 861 862 863
}

/* Process writes */

static void cached_dev_write_complete(struct closure *cl)
{
	struct search *s = container_of(cl, struct search, cl);
	struct cached_dev *dc = container_of(s->d, struct cached_dev, disk);

	up_read_non_owner(&dc->writeback_lock);
	cached_dev_bio_complete(cl);
}

864
static void cached_dev_write(struct cached_dev *dc, struct search *s)
K
Kent Overstreet 已提交
865 866 867
{
	struct closure *cl = &s->cl;
	struct bio *bio = &s->bio.bio;
868
	struct bkey start = KEY(dc->disk.id, bio->bi_iter.bi_sector, 0);
K
Kent Overstreet 已提交
869
	struct bkey end = KEY(dc->disk.id, bio_end_sector(bio), 0);
K
Kent Overstreet 已提交
870

K
Kent Overstreet 已提交
871
	bch_keybuf_check_overlapping(&s->iop.c->moving_gc_keys, &start, &end);
K
Kent Overstreet 已提交
872 873 874

	down_read_non_owner(&dc->writeback_lock);
	if (bch_keybuf_check_overlapping(&dc->writeback_keys, &start, &end)) {
K
Kent Overstreet 已提交
875 876 877 878
		/*
		 * We overlap with some dirty data undergoing background
		 * writeback, force this write to writeback
		 */
K
Kent Overstreet 已提交
879 880
		s->iop.bypass = false;
		s->iop.writeback = true;
K
Kent Overstreet 已提交
881 882
	}

K
Kent Overstreet 已提交
883 884 885 886 887 888 889
	/*
	 * Discards aren't _required_ to do anything, so skipping if
	 * check_overlapping returned true is ok
	 *
	 * But check_overlapping drops dirty keys for which io hasn't started,
	 * so we still want to call it.
	 */
M
Mike Christie 已提交
890
	if (bio_op(bio) == REQ_OP_DISCARD)
K
Kent Overstreet 已提交
891
		s->iop.bypass = true;
K
Kent Overstreet 已提交
892

K
Kent Overstreet 已提交
893 894
	if (should_writeback(dc, s->orig_bio,
			     cache_mode(dc, bio),
K
Kent Overstreet 已提交
895 896 897
			     s->iop.bypass)) {
		s->iop.bypass = false;
		s->iop.writeback = true;
K
Kent Overstreet 已提交
898 899
	}

K
Kent Overstreet 已提交
900 901 902
	if (s->iop.bypass) {
		s->iop.bio = s->orig_bio;
		bio_get(s->iop.bio);
K
Kent Overstreet 已提交
903

M
Mike Christie 已提交
904
		if ((bio_op(bio) != REQ_OP_DISCARD) ||
K
Kent Overstreet 已提交
905
		    blk_queue_discard(bdev_get_queue(dc->bdev)))
906
			closure_bio_submit(bio, cl);
K
Kent Overstreet 已提交
907
	} else if (s->iop.writeback) {
908
		bch_writeback_add(dc);
K
Kent Overstreet 已提交
909
		s->iop.bio = bio;
K
Kent Overstreet 已提交
910

J
Jens Axboe 已提交
911
		if (bio->bi_opf & REQ_PREFLUSH) {
K
Kent Overstreet 已提交
912
			/* Also need to send a flush to the backing device */
913
			struct bio *flush = bio_alloc_bioset(GFP_NOIO, 0,
914
							     dc->disk.bio_split);
K
Kent Overstreet 已提交
915

916
			bio_copy_dev(flush, bio);
917 918
			flush->bi_end_io = request_endio;
			flush->bi_private = cl;
919
			flush->bi_opf = REQ_OP_WRITE | REQ_PREFLUSH;
920

921
			closure_bio_submit(flush, cl);
K
Kent Overstreet 已提交
922
		}
K
Kent Overstreet 已提交
923
	} else {
K
Kent Overstreet 已提交
924
		s->iop.bio = bio_clone_fast(bio, GFP_NOIO, dc->disk.bio_split);
K
Kent Overstreet 已提交
925

926
		closure_bio_submit(bio, cl);
K
Kent Overstreet 已提交
927
	}
K
Kent Overstreet 已提交
928

K
Kent Overstreet 已提交
929
	closure_call(&s->iop.cl, bch_data_insert, NULL, cl);
K
Kent Overstreet 已提交
930 931 932
	continue_at(cl, cached_dev_write_complete, NULL);
}

933
static void cached_dev_nodata(struct closure *cl)
K
Kent Overstreet 已提交
934
{
935
	struct search *s = container_of(cl, struct search, cl);
K
Kent Overstreet 已提交
936 937
	struct bio *bio = &s->bio.bio;

K
Kent Overstreet 已提交
938 939
	if (s->iop.flush_journal)
		bch_journal_meta(s->iop.c, cl);
K
Kent Overstreet 已提交
940

K
Kent Overstreet 已提交
941
	/* If it's a flush, we send the flush to the backing device too */
942
	closure_bio_submit(bio, cl);
K
Kent Overstreet 已提交
943 944 945 946 947 948

	continue_at(cl, cached_dev_bio_complete, NULL);
}

/* Cached devices - read & write stuff */

949 950
static blk_qc_t cached_dev_make_request(struct request_queue *q,
					struct bio *bio)
K
Kent Overstreet 已提交
951 952
{
	struct search *s;
953
	struct bcache_device *d = bio->bi_disk->private_data;
K
Kent Overstreet 已提交
954
	struct cached_dev *dc = container_of(d, struct cached_dev, disk);
955
	int rw = bio_data_dir(bio);
K
Kent Overstreet 已提交
956

957
	generic_start_io_acct(q, rw, bio_sectors(bio), &d->disk->part0);
K
Kent Overstreet 已提交
958

959
	bio_set_dev(bio, dc->bdev);
960
	bio->bi_iter.bi_sector += dc->sb.data_offset;
K
Kent Overstreet 已提交
961 962 963

	if (cached_dev_get(dc)) {
		s = search_alloc(bio, d);
K
Kent Overstreet 已提交
964
		trace_bcache_request_start(s->d, bio);
K
Kent Overstreet 已提交
965

966
		if (!bio->bi_iter.bi_size) {
967 968 969 970 971 972 973 974
			/*
			 * can't call bch_journal_meta from under
			 * generic_make_request
			 */
			continue_at_nobarrier(&s->cl,
					      cached_dev_nodata,
					      bcache_wq);
		} else {
K
Kent Overstreet 已提交
975
			s->iop.bypass = check_should_bypass(dc, bio);
K
Kent Overstreet 已提交
976 977

			if (rw)
978
				cached_dev_write(dc, s);
K
Kent Overstreet 已提交
979
			else
980
				cached_dev_read(dc, s);
K
Kent Overstreet 已提交
981
		}
K
Kent Overstreet 已提交
982
	} else {
M
Mike Christie 已提交
983
		if ((bio_op(bio) == REQ_OP_DISCARD) &&
K
Kent Overstreet 已提交
984
		    !blk_queue_discard(bdev_get_queue(dc->bdev)))
985
			bio_endio(bio);
K
Kent Overstreet 已提交
986
		else
987
			generic_make_request(bio);
K
Kent Overstreet 已提交
988
	}
989 990

	return BLK_QC_T_NONE;
K
Kent Overstreet 已提交
991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006
}

static int cached_dev_ioctl(struct bcache_device *d, fmode_t mode,
			    unsigned int cmd, unsigned long arg)
{
	struct cached_dev *dc = container_of(d, struct cached_dev, disk);
	return __blkdev_driver_ioctl(dc->bdev, mode, cmd, arg);
}

static int cached_dev_congested(void *data, int bits)
{
	struct bcache_device *d = data;
	struct cached_dev *dc = container_of(d, struct cached_dev, disk);
	struct request_queue *q = bdev_get_queue(dc->bdev);
	int ret = 0;

1007
	if (bdi_congested(q->backing_dev_info, bits))
K
Kent Overstreet 已提交
1008 1009 1010 1011 1012 1013 1014 1015
		return 1;

	if (cached_dev_get(dc)) {
		unsigned i;
		struct cache *ca;

		for_each_cache(ca, d->c, i) {
			q = bdev_get_queue(ca->bdev);
1016
			ret |= bdi_congested(q->backing_dev_info, bits);
K
Kent Overstreet 已提交
1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029
		}

		cached_dev_put(dc);
	}

	return ret;
}

void bch_cached_dev_request_init(struct cached_dev *dc)
{
	struct gendisk *g = dc->disk.disk;

	g->queue->make_request_fn		= cached_dev_make_request;
1030
	g->queue->backing_dev_info->congested_fn = cached_dev_congested;
K
Kent Overstreet 已提交
1031 1032 1033 1034 1035 1036 1037 1038 1039
	dc->disk.cache_miss			= cached_dev_cache_miss;
	dc->disk.ioctl				= cached_dev_ioctl;
}

/* Flash backed devices */

static int flash_dev_cache_miss(struct btree *b, struct search *s,
				struct bio *bio, unsigned sectors)
{
1040
	unsigned bytes = min(sectors, bio_sectors(bio)) << 9;
K
Kent Overstreet 已提交
1041

1042 1043 1044
	swap(bio->bi_iter.bi_size, bytes);
	zero_fill_bio(bio);
	swap(bio->bi_iter.bi_size, bytes);
K
Kent Overstreet 已提交
1045

1046
	bio_advance(bio, bytes);
1047

1048
	if (!bio->bi_iter.bi_size)
1049
		return MAP_DONE;
K
Kent Overstreet 已提交
1050

1051
	return MAP_CONTINUE;
K
Kent Overstreet 已提交
1052 1053
}

1054 1055 1056 1057
static void flash_dev_nodata(struct closure *cl)
{
	struct search *s = container_of(cl, struct search, cl);

K
Kent Overstreet 已提交
1058 1059
	if (s->iop.flush_journal)
		bch_journal_meta(s->iop.c, cl);
1060 1061 1062 1063

	continue_at(cl, search_free, NULL);
}

1064 1065
static blk_qc_t flash_dev_make_request(struct request_queue *q,
					     struct bio *bio)
K
Kent Overstreet 已提交
1066 1067 1068
{
	struct search *s;
	struct closure *cl;
1069
	struct bcache_device *d = bio->bi_disk->private_data;
1070
	int rw = bio_data_dir(bio);
K
Kent Overstreet 已提交
1071

1072
	generic_start_io_acct(q, rw, bio_sectors(bio), &d->disk->part0);
K
Kent Overstreet 已提交
1073 1074 1075 1076 1077

	s = search_alloc(bio, d);
	cl = &s->cl;
	bio = &s->bio.bio;

K
Kent Overstreet 已提交
1078
	trace_bcache_request_start(s->d, bio);
K
Kent Overstreet 已提交
1079

1080
	if (!bio->bi_iter.bi_size) {
1081 1082 1083 1084 1085 1086 1087
		/*
		 * can't call bch_journal_meta from under
		 * generic_make_request
		 */
		continue_at_nobarrier(&s->cl,
				      flash_dev_nodata,
				      bcache_wq);
1088
		return BLK_QC_T_NONE;
K
Kent Overstreet 已提交
1089
	} else if (rw) {
K
Kent Overstreet 已提交
1090
		bch_keybuf_check_overlapping(&s->iop.c->moving_gc_keys,
1091
					&KEY(d->id, bio->bi_iter.bi_sector, 0),
1092
					&KEY(d->id, bio_end_sector(bio), 0));
K
Kent Overstreet 已提交
1093

M
Mike Christie 已提交
1094
		s->iop.bypass		= (bio_op(bio) == REQ_OP_DISCARD) != 0;
K
Kent Overstreet 已提交
1095 1096
		s->iop.writeback	= true;
		s->iop.bio		= bio;
K
Kent Overstreet 已提交
1097

K
Kent Overstreet 已提交
1098
		closure_call(&s->iop.cl, bch_data_insert, NULL, cl);
K
Kent Overstreet 已提交
1099
	} else {
K
Kent Overstreet 已提交
1100
		closure_call(&s->iop.cl, cache_lookup, NULL, cl);
K
Kent Overstreet 已提交
1101 1102 1103
	}

	continue_at(cl, search_free, NULL);
1104
	return BLK_QC_T_NONE;
K
Kent Overstreet 已提交
1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122
}

static int flash_dev_ioctl(struct bcache_device *d, fmode_t mode,
			   unsigned int cmd, unsigned long arg)
{
	return -ENOTTY;
}

static int flash_dev_congested(void *data, int bits)
{
	struct bcache_device *d = data;
	struct request_queue *q;
	struct cache *ca;
	unsigned i;
	int ret = 0;

	for_each_cache(ca, d->c, i) {
		q = bdev_get_queue(ca->bdev);
1123
		ret |= bdi_congested(q->backing_dev_info, bits);
K
Kent Overstreet 已提交
1124 1125 1126 1127 1128 1129 1130 1131 1132 1133
	}

	return ret;
}

void bch_flash_dev_request_init(struct bcache_device *d)
{
	struct gendisk *g = d->disk;

	g->queue->make_request_fn		= flash_dev_make_request;
1134
	g->queue->backing_dev_info->congested_fn = flash_dev_congested;
K
Kent Overstreet 已提交
1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152
	d->cache_miss				= flash_dev_cache_miss;
	d->ioctl				= flash_dev_ioctl;
}

void bch_request_exit(void)
{
	if (bch_search_cache)
		kmem_cache_destroy(bch_search_cache);
}

int __init bch_request_init(void)
{
	bch_search_cache = KMEM_CACHE(search, 0);
	if (!bch_search_cache)
		return -ENOMEM;

	return 0;
}