request.c 34.6 KB
Newer Older
1
// SPDX-License-Identifier: GPL-2.0
K
Kent Overstreet 已提交
2 3 4 5 6 7 8 9 10 11 12 13
/*
 * 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"
14
#include "writeback.h"
K
Kent Overstreet 已提交
15 16 17 18

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

#include <trace/events/bcache.h>

#define CUTOFF_CACHE_ADD	95
#define CUTOFF_CACHE_READA	90

struct kmem_cache *bch_search_cache;

28
static void bch_data_insert_start(struct closure *cl);
29

30
static unsigned int cache_mode(struct cached_dev *dc)
K
Kent Overstreet 已提交
31 32 33 34
{
	return BDEV_CACHE_MODE(&dc->sb);
}

Y
Yijing Wang 已提交
35
static bool verify(struct cached_dev *dc)
K
Kent Overstreet 已提交
36 37 38 39 40 41
{
	return dc->verify;
}

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

46 47
	bio_for_each_segment(bv, bio, iter) {
		void *d = kmap(bv.bv_page) + bv.bv_offset;
48

49 50
		csum = bch_crc64_update(csum, d, bv.bv_len);
		kunmap(bv.bv_page);
K
Kent Overstreet 已提交
51 52 53 54 55 56 57
	}

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

/* Insert data into cache */

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

65 66 67 68 69 70 71 72 73 74 75
	/*
	 * 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 已提交
76

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

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

K
Kent Overstreet 已提交
90 91
	if (journal_ref)
		atomic_dec_bug(journal_ref);
K
Kent Overstreet 已提交
92

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

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

102
static int bch_keylist_realloc(struct keylist *l, unsigned int u64s,
103 104 105 106 107 108 109 110
			       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,
111
	 * bch_data_insert_keys() will insert the keys created so far
112 113 114 115 116 117 118 119
	 * 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);
}

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

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

	while (bio_sectors(bio)) {
129
		unsigned int sectors = min(bio_sectors(bio),
130
				       1U << (KEY_SIZE_BITS - 1));
131

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

135 136
		bio->bi_iter.bi_sector	+= sectors;
		bio->bi_iter.bi_size	-= sectors << 9;
137

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

K
Kent Overstreet 已提交
144
	op->insert_data_done = true;
145
	/* get in bch_data_insert() */
146 147
	bio_put(bio);
out:
148
	continue_at(cl, bch_data_insert_keys, op->wq);
149 150 151
}

static void bch_data_insert_error(struct closure *cl)
K
Kent Overstreet 已提交
152
{
K
Kent Overstreet 已提交
153
	struct data_insert_op *op = container_of(cl, struct data_insert_op, cl);
K
Kent Overstreet 已提交
154 155 156

	/*
	 * Our data write just errored, which means we've got a bunch of keys to
157
	 * insert that point to data that wasn't successfully written.
K
Kent Overstreet 已提交
158 159 160 161 162 163
	 *
	 * 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 已提交
164
	struct bkey *src = op->insert_keys.keys, *dst = op->insert_keys.keys;
K
Kent Overstreet 已提交
165

K
Kent Overstreet 已提交
166
	while (src != op->insert_keys.top) {
K
Kent Overstreet 已提交
167 168 169
		struct bkey *n = bkey_next(src);

		SET_KEY_PTRS(src, 0);
K
Kent Overstreet 已提交
170
		memmove(dst, src, bkey_bytes(src));
K
Kent Overstreet 已提交
171 172 173 174 175

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

K
Kent Overstreet 已提交
176
	op->insert_keys.top = dst;
K
Kent Overstreet 已提交
177

178
	bch_data_insert_keys(cl);
K
Kent Overstreet 已提交
179 180
}

181
static void bch_data_insert_endio(struct bio *bio)
K
Kent Overstreet 已提交
182 183
{
	struct closure *cl = bio->bi_private;
K
Kent Overstreet 已提交
184
	struct data_insert_op *op = container_of(cl, struct data_insert_op, cl);
K
Kent Overstreet 已提交
185

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

196
	bch_bbio_endio(op->c, bio, bio->bi_status, "writing data to cache");
K
Kent Overstreet 已提交
197 198
}

199
static void bch_data_insert_start(struct closure *cl)
K
Kent Overstreet 已提交
200
{
K
Kent Overstreet 已提交
201 202
	struct data_insert_op *op = container_of(cl, struct data_insert_op, cl);
	struct bio *bio = op->bio, *n;
K
Kent Overstreet 已提交
203

204 205 206
	if (op->bypass)
		return bch_data_invalidate(cl);

207 208 209
	if (atomic_sub_return(bio_sectors(bio), &op->c->sectors_to_gc) < 0)
		wake_up_gc(op->c);

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

K
Kent Overstreet 已提交
216
	do {
217
		unsigned int i;
K
Kent Overstreet 已提交
218
		struct bkey *k;
219
		struct bio_set *split = &op->c->bio_split;
K
Kent Overstreet 已提交
220 221

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

K
Kent Overstreet 已提交
229
		k = op->insert_keys.top;
K
Kent Overstreet 已提交
230
		bkey_init(k);
K
Kent Overstreet 已提交
231
		SET_KEY_INODE(k, op->inode);
232
		SET_KEY_OFFSET(k, bio->bi_iter.bi_sector);
K
Kent Overstreet 已提交
233

234 235 236
		if (!bch_alloc_sectors(op->c, k, bio_sectors(bio),
				       op->write_point, op->write_prio,
				       op->writeback))
K
Kent Overstreet 已提交
237 238
			goto err;

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

241
		n->bi_end_io	= bch_data_insert_endio;
K
Kent Overstreet 已提交
242 243
		n->bi_private	= cl;

K
Kent Overstreet 已提交
244
		if (op->writeback) {
K
Kent Overstreet 已提交
245 246 247
			SET_KEY_DIRTY(k, true);

			for (i = 0; i < KEY_PTRS(k); i++)
K
Kent Overstreet 已提交
248
				SET_GC_MARK(PTR_BUCKET(op->c, k, i),
K
Kent Overstreet 已提交
249 250 251
					    GC_MARK_DIRTY);
		}

K
Kent Overstreet 已提交
252
		SET_KEY_CSUM(k, op->csum);
K
Kent Overstreet 已提交
253 254 255
		if (KEY_CSUM(k))
			bio_csum(n, k);

K
Kent Overstreet 已提交
256
		trace_bcache_cache_insert(k);
K
Kent Overstreet 已提交
257
		bch_keylist_push(&op->insert_keys);
K
Kent Overstreet 已提交
258

M
Mike Christie 已提交
259
		bio_set_op_attrs(n, REQ_OP_WRITE, 0);
K
Kent Overstreet 已提交
260
		bch_submit_bbio(n, op->c, k, 0);
K
Kent Overstreet 已提交
261 262
	} while (n != bio);

K
Kent Overstreet 已提交
263
	op->insert_data_done = true;
264
	continue_at(cl, bch_data_insert_keys, op->wq);
265
	return;
K
Kent Overstreet 已提交
266 267
err:
	/* bch_alloc_sectors() blocks if s->writeback = true */
K
Kent Overstreet 已提交
268
	BUG_ON(op->writeback);
K
Kent Overstreet 已提交
269 270 271 272 273 274 275

	/*
	 * 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 已提交
276
	if (!op->replace) {
K
Kent Overstreet 已提交
277 278 279 280 281 282
		/*
		 * 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 已提交
283
		op->bypass = true;
284
		return bch_data_invalidate(cl);
K
Kent Overstreet 已提交
285 286 287 288 289
	} 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 已提交
290
		op->insert_data_done = true;
K
Kent Overstreet 已提交
291 292
		bio_put(bio);

K
Kent Overstreet 已提交
293
		if (!bch_keylist_empty(&op->insert_keys))
294
			continue_at(cl, bch_data_insert_keys, op->wq);
K
Kent Overstreet 已提交
295 296 297 298 299 300
		else
			closure_return(cl);
	}
}

/**
301
 * bch_data_insert - stick some data in the cache
302
 * @cl: closure pointer.
K
Kent Overstreet 已提交
303 304 305 306 307 308 309 310 311 312 313
 *
 * 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 已提交
314
 * It inserts the data in s->cache_bio; bi_sector is used for the key offset,
K
Kent Overstreet 已提交
315 316
 * and op->inode is used for the key inode.
 *
K
Kent Overstreet 已提交
317 318
 * 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 已提交
319
 */
320
void bch_data_insert(struct closure *cl)
K
Kent Overstreet 已提交
321
{
K
Kent Overstreet 已提交
322
	struct data_insert_op *op = container_of(cl, struct data_insert_op, cl);
K
Kent Overstreet 已提交
323

324 325
	trace_bcache_write(op->c, op->inode, op->bio,
			   op->writeback, op->bypass);
K
Kent Overstreet 已提交
326 327 328

	bch_keylist_init(&op->insert_keys);
	bio_get(op->bio);
329
	bch_data_insert_start(cl);
K
Kent Overstreet 已提交
330 331
}

K
Kent Overstreet 已提交
332 333
/* Congested? */

334
unsigned int bch_get_congested(struct cache_set *c)
K
Kent Overstreet 已提交
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 375 376 377
{
	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;
378 379
	unsigned int mode = cache_mode(dc);
	unsigned int sectors, congested = bch_get_congested(c);
K
Kent Overstreet 已提交
380
	struct task_struct *task = current;
381
	struct io *i;
K
Kent Overstreet 已提交
382

383
	if (test_bit(BCACHE_DEV_DETACHING, &dc->disk.flags) ||
K
Kent Overstreet 已提交
384
	    c->gc_stats.in_use > CUTOFF_CACHE_ADD ||
M
Mike Christie 已提交
385
	    (bio_op(bio) == REQ_OP_DISCARD))
K
Kent Overstreet 已提交
386 387 388 389
		goto skip;

	if (mode == CACHE_MODE_NONE ||
	    (mode == CACHE_MODE_WRITEAROUND &&
390
	     op_is_write(bio_op(bio))))
K
Kent Overstreet 已提交
391 392
		goto skip;

393 394 395 396 397 398 399 400
	/*
	 * Flag for bypass if the IO is for read-ahead or background,
	 * unless the read-ahead request is for metadata (eg, for gfs2).
	 */
	if (bio->bi_opf & (REQ_RAHEAD|REQ_BACKGROUND) &&
	    !(bio->bi_opf & REQ_META))
		goto skip;

401
	if (bio->bi_iter.bi_sector & (c->sb.block_size - 1) ||
K
Kent Overstreet 已提交
402 403 404 405 406
	    bio_sectors(bio) & (c->sb.block_size - 1)) {
		pr_debug("skipping unaligned io");
		goto skip;
	}

K
Kent Overstreet 已提交
407 408 409 410 411 412 413
	if (bypass_torture_test(dc)) {
		if ((get_random_int() & 3) == 3)
			goto skip;
		else
			goto rescale;
	}

K
Kent Overstreet 已提交
414 415 416
	if (!congested && !dc->sequential_cutoff)
		goto rescale;

417
	spin_lock(&dc->io_lock);
K
Kent Overstreet 已提交
418

419 420
	hlist_for_each_entry(i, iohash(dc, bio->bi_iter.bi_sector), hash)
		if (i->last == bio->bi_iter.bi_sector &&
421 422
		    time_before(jiffies, i->jiffies))
			goto found;
K
Kent Overstreet 已提交
423

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

426 427
	add_sequential(task);
	i->sequential = 0;
K
Kent Overstreet 已提交
428
found:
429 430
	if (i->sequential + bio->bi_iter.bi_size > i->sequential)
		i->sequential	+= bio->bi_iter.bi_size;
K
Kent Overstreet 已提交
431

432 433 434
	i->last			 = bio_end_sector(bio);
	i->jiffies		 = jiffies + msecs_to_jiffies(5000);
	task->sequential_io	 = i->sequential;
K
Kent Overstreet 已提交
435

436 437 438
	hlist_del(&i->hash);
	hlist_add_head(&i->hash, iohash(dc, i->last));
	list_move_tail(&i->lru, &dc->io_lru);
K
Kent Overstreet 已提交
439

440
	spin_unlock(&dc->io_lock);
K
Kent Overstreet 已提交
441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463

	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;
}

464
/* Cache lookup */
K
Kent Overstreet 已提交
465

K
Kent Overstreet 已提交
466 467 468 469 470 471 472
struct search {
	/* Stack frame for bio_complete */
	struct closure		cl;

	struct bbio		bio;
	struct bio		*orig_bio;
	struct bio		*cache_miss;
K
Kent Overstreet 已提交
473
	struct bcache_device	*d;
K
Kent Overstreet 已提交
474

475 476 477 478 479
	unsigned int		insert_bio_sectors;
	unsigned int		recoverable:1;
	unsigned int		write:1;
	unsigned int		read_dirty_data:1;
	unsigned int		cache_missed:1;
K
Kent Overstreet 已提交
480 481 482 483 484 485 486

	unsigned long		start_time;

	struct btree_op		op;
	struct data_insert_op	iop;
};

487
static void bch_cache_read_endio(struct bio *bio)
K
Kent Overstreet 已提交
488 489 490 491 492 493 494 495 496 497 498 499
{
	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.
	 */

500 501
	if (bio->bi_status)
		s->iop.status = bio->bi_status;
502 503
	else if (!KEY_DIRTY(&b->key) &&
		 ptr_stale(s->iop.c, &b->key, 0)) {
K
Kent Overstreet 已提交
504
		atomic_long_inc(&s->iop.c->cache_read_races);
505
		s->iop.status = BLK_STS_IOERR;
K
Kent Overstreet 已提交
506 507
	}

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

511 512 513 514
/*
 * Read from a single key, handling the initial cache miss if the key starts in
 * the middle of the bio
 */
K
Kent Overstreet 已提交
515
static int cache_lookup_fn(struct btree_op *op, struct btree *b, struct bkey *k)
516 517
{
	struct search *s = container_of(op, struct search, op);
K
Kent Overstreet 已提交
518 519
	struct bio *n, *bio = &s->bio.bio;
	struct bkey *bio_key;
520
	unsigned int ptr;
521

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

K
Kent Overstreet 已提交
525
	if (KEY_INODE(k) != s->iop.inode ||
526
	    KEY_START(k) > bio->bi_iter.bi_sector) {
527 528
		unsigned int bio_sectors = bio_sectors(bio);
		unsigned int sectors = KEY_INODE(k) == s->iop.inode
K
Kent Overstreet 已提交
529
			? min_t(uint64_t, INT_MAX,
530
				KEY_START(k) - bio->bi_iter.bi_sector)
K
Kent Overstreet 已提交
531 532
			: INT_MAX;
		int ret = s->d->cache_miss(b, s, bio, sectors);
533

K
Kent Overstreet 已提交
534 535 536 537 538 539 540 541 542
		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;
543 544 545 546 547 548

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

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

K
Kent Overstreet 已提交
549 550 551
	if (KEY_DIRTY(k))
		s->read_dirty_data = true;

K
Kent Overstreet 已提交
552 553
	n = bio_next_split(bio, min_t(uint64_t, INT_MAX,
				      KEY_OFFSET(k) - bio->bi_iter.bi_sector),
554
			   GFP_NOIO, &s->d->bio_split);
555

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

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

K
Kent Overstreet 已提交
562 563
	n->bi_end_io	= bch_cache_read_endio;
	n->bi_private	= &s->cl;
564

K
Kent Overstreet 已提交
565 566 567 568 569 570 571 572 573 574
	/*
	 * 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).
	 */
575

K
Kent Overstreet 已提交
576 577
	__bch_submit_bbio(n, b->c);
	return n == bio ? MAP_DONE : MAP_CONTINUE;
578 579 580 581
}

static void cache_lookup(struct closure *cl)
{
K
Kent Overstreet 已提交
582
	struct search *s = container_of(cl, struct search, iop.cl);
583
	struct bio *bio = &s->bio.bio;
584
	struct cached_dev *dc;
K
Kent Overstreet 已提交
585
	int ret;
586

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

K
Kent Overstreet 已提交
589 590 591
	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);
592
	if (ret == -EAGAIN) {
593
		continue_at(cl, cache_lookup, bcache_wq);
594 595
		return;
	}
596

597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617
	/*
	 * We might meet err when searching the btree, If that happens, we will
	 * get negative ret, in this scenario we should not recover data from
	 * backing device (when cache device is dirty) because we don't know
	 * whether bkeys the read request covered are all clean.
	 *
	 * And after that happened, s->iop.status is still its initial value
	 * before we submit s->bio.bio
	 */
	if (ret < 0) {
		BUG_ON(ret == -EINTR);
		if (s->d && s->d->c &&
				!UUID_FLASH_ONLY(&s->d->c->uuids[s->d->id])) {
			dc = container_of(s->d, struct cached_dev, disk);
			if (dc && atomic_read(&dc->has_dirty))
				s->recoverable = false;
		}
		if (!s->iop.status)
			s->iop.status = BLK_STS_IOERR;
	}

618 619 620 621 622
	closure_return(cl);
}

/* Common code for the make_request functions */

623
static void request_endio(struct bio *bio)
624 625 626
{
	struct closure *cl = bio->bi_private;

627
	if (bio->bi_status) {
628
		struct search *s = container_of(cl, struct search, cl);
629

630
		s->iop.status = bio->bi_status;
631 632 633 634 635 636 637 638
		/* Only cache read errors are recoverable */
		s->recoverable = false;
	}

	bio_put(bio);
	closure_put(cl);
}

639 640 641 642 643 644
static void backing_request_endio(struct bio *bio)
{
	struct closure *cl = bio->bi_private;

	if (bio->bi_status) {
		struct search *s = container_of(cl, struct search, cl);
645 646
		struct cached_dev *dc = container_of(s->d,
						     struct cached_dev, disk);
647 648 649 650 651 652 653 654 655 656
		/*
		 * If a bio has REQ_PREFLUSH for writeback mode, it is
		 * speically assembled in cached_dev_write() for a non-zero
		 * write request which has REQ_PREFLUSH. we don't set
		 * s->iop.status by this failure, the status will be decided
		 * by result of bch_data_insert() operation.
		 */
		if (unlikely(s->iop.writeback &&
			     bio->bi_opf & REQ_PREFLUSH)) {
			pr_err("Can't flush %s: returned bi_status %i",
657
				dc->backing_dev_name, bio->bi_status);
658 659 660 661 662 663
		} else {
			/* set to orig_bio->bi_status in bio_complete() */
			s->iop.status = bio->bi_status;
		}
		s->recoverable = false;
		/* should count I/O error for backing device here */
664
		bch_count_backing_io_errors(dc, bio);
665 666 667 668 669 670
	}

	bio_put(bio);
	closure_put(cl);
}

K
Kent Overstreet 已提交
671 672 673
static void bio_complete(struct search *s)
{
	if (s->orig_bio) {
674
		generic_end_io_acct(s->d->disk->queue, bio_op(s->orig_bio),
675
				    &s->d->disk->part0, s->start_time);
K
Kent Overstreet 已提交
676

K
Kent Overstreet 已提交
677
		trace_bcache_request_end(s->d, s->orig_bio);
678
		s->orig_bio->bi_status = s->iop.status;
679
		bio_endio(s->orig_bio);
K
Kent Overstreet 已提交
680 681 682 683
		s->orig_bio = NULL;
	}
}

684 685 686
static void do_bio_hook(struct search *s,
			struct bio *orig_bio,
			bio_end_io_t *end_io_fn)
K
Kent Overstreet 已提交
687 688 689
{
	struct bio *bio = &s->bio.bio;

690
	bio_init(bio, NULL, 0);
K
Kent Overstreet 已提交
691
	__bio_clone_fast(bio, orig_bio);
692 693 694 695 696 697 698
	/*
	 * bi_end_io can be set separately somewhere else, e.g. the
	 * variants in,
	 * - cache_bio->bi_end_io from cached_dev_cache_miss()
	 * - n->bi_end_io from cache_lookup_fn()
	 */
	bio->bi_end_io		= end_io_fn;
K
Kent Overstreet 已提交
699
	bio->bi_private		= &s->cl;
K
Kent Overstreet 已提交
700

701
	bio_cnt_set(bio, 3);
K
Kent Overstreet 已提交
702 703 704 705 706 707
}

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

T
Tang Junhui 已提交
708 709
	atomic_dec(&s->d->c->search_inflight);

K
Kent Overstreet 已提交
710 711
	if (s->iop.bio)
		bio_put(s->iop.bio);
K
Kent Overstreet 已提交
712

713
	bio_complete(s);
K
Kent Overstreet 已提交
714
	closure_debug_destroy(cl);
715
	mempool_free(s, &s->d->c->search);
K
Kent Overstreet 已提交
716 717
}

K
Kent Overstreet 已提交
718 719
static inline struct search *search_alloc(struct bio *bio,
					  struct bcache_device *d)
K
Kent Overstreet 已提交
720
{
721 722
	struct search *s;

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

K
Kent Overstreet 已提交
725
	closure_init(&s->cl, NULL);
726
	do_bio_hook(s, bio, request_endio);
T
Tang Junhui 已提交
727
	atomic_inc(&d->c->search_inflight);
K
Kent Overstreet 已提交
728 729

	s->orig_bio		= bio;
K
Kent Overstreet 已提交
730
	s->cache_miss		= NULL;
731
	s->cache_missed		= 0;
K
Kent Overstreet 已提交
732
	s->d			= d;
K
Kent Overstreet 已提交
733
	s->recoverable		= 1;
734
	s->write		= op_is_write(bio_op(bio));
K
Kent Overstreet 已提交
735
	s->read_dirty_data	= 0;
K
Kent Overstreet 已提交
736
	s->start_time		= jiffies;
K
Kent Overstreet 已提交
737 738 739 740 741 742

	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;
743
	s->iop.status		= 0;
K
Kent Overstreet 已提交
744
	s->iop.flags		= 0;
745
	s->iop.flush_journal	= op_is_flush(bio->bi_opf);
746
	s->iop.wq		= bcache_wq;
K
Kent Overstreet 已提交
747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763

	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 */

764
static void cached_dev_cache_miss_done(struct closure *cl)
K
Kent Overstreet 已提交
765 766 767
{
	struct search *s = container_of(cl, struct search, cl);

K
Kent Overstreet 已提交
768 769
	if (s->iop.replace_collision)
		bch_mark_cache_miss_collision(s->iop.c, s->d);
K
Kent Overstreet 已提交
770

771 772
	if (s->iop.bio)
		bio_free_pages(s->iop.bio);
K
Kent Overstreet 已提交
773 774 775 776

	cached_dev_bio_complete(cl);
}

777
static void cached_dev_read_error(struct closure *cl)
K
Kent Overstreet 已提交
778 779
{
	struct search *s = container_of(cl, struct search, cl);
780
	struct bio *bio = &s->bio.bio;
K
Kent Overstreet 已提交
781

782
	/*
783 784 785 786 787
	 * If read request hit dirty data (s->read_dirty_data is true),
	 * then recovery a failed read request from cached device may
	 * get a stale data back. So read failure recovery is only
	 * permitted when read request hit clean data in cache device,
	 * or when cache read race happened.
788
	 */
789
	if (s->recoverable && !s->read_dirty_data) {
K
Kent Overstreet 已提交
790 791
		/* Retry from the backing device: */
		trace_bcache_read_retry(s->orig_bio);
K
Kent Overstreet 已提交
792

793
		s->iop.status = 0;
794
		do_bio_hook(s, s->orig_bio, backing_request_endio);
K
Kent Overstreet 已提交
795 796 797

		/* XXX: invalidate cache */

798
		/* I/O request sent to backing device */
799
		closure_bio_submit(s->iop.c, bio, cl);
K
Kent Overstreet 已提交
800 801
	}

802
	continue_at(cl, cached_dev_cache_miss_done, NULL);
K
Kent Overstreet 已提交
803 804
}

805
static void cached_dev_read_done(struct closure *cl)
K
Kent Overstreet 已提交
806 807 808 809 810
{
	struct search *s = container_of(cl, struct search, cl);
	struct cached_dev *dc = container_of(s->d, struct cached_dev, disk);

	/*
811 812
	 * We had a cache miss; cache_bio now contains data ready to be inserted
	 * into the cache.
K
Kent Overstreet 已提交
813 814 815 816 817
	 *
	 * 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 已提交
818 819
	if (s->iop.bio) {
		bio_reset(s->iop.bio);
820 821
		s->iop.bio->bi_iter.bi_sector =
			s->cache_miss->bi_iter.bi_sector;
822
		bio_copy_dev(s->iop.bio, s->cache_miss);
823
		s->iop.bio->bi_iter.bi_size = s->insert_bio_sectors << 9;
K
Kent Overstreet 已提交
824
		bch_bio_map(s->iop.bio, NULL);
K
Kent Overstreet 已提交
825

K
Kent Overstreet 已提交
826
		bio_copy_data(s->cache_miss, s->iop.bio);
K
Kent Overstreet 已提交
827 828 829 830 831

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

Y
Yijing Wang 已提交
832
	if (verify(dc) && s->recoverable && !s->read_dirty_data)
K
Kent Overstreet 已提交
833
		bch_data_verify(dc, s->orig_bio);
K
Kent Overstreet 已提交
834 835 836

	bio_complete(s);

K
Kent Overstreet 已提交
837 838 839 840
	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 已提交
841 842
	}

843
	continue_at(cl, cached_dev_cache_miss_done, NULL);
K
Kent Overstreet 已提交
844 845
}

846
static void cached_dev_read_done_bh(struct closure *cl)
K
Kent Overstreet 已提交
847 848 849 850
{
	struct search *s = container_of(cl, struct search, cl);
	struct cached_dev *dc = container_of(s->d, struct cached_dev, disk);

K
Kent Overstreet 已提交
851
	bch_mark_cache_accounting(s->iop.c, s->d,
852
				  !s->cache_missed, s->iop.bypass);
853
	trace_bcache_read(s->orig_bio, !s->cache_missed, s->iop.bypass);
K
Kent Overstreet 已提交
854

855
	if (s->iop.status)
856
		continue_at_nobarrier(cl, cached_dev_read_error, bcache_wq);
Y
Yijing Wang 已提交
857
	else if (s->iop.bio || verify(dc))
858
		continue_at_nobarrier(cl, cached_dev_read_done, bcache_wq);
K
Kent Overstreet 已提交
859
	else
860
		continue_at_nobarrier(cl, cached_dev_bio_complete, NULL);
K
Kent Overstreet 已提交
861 862 863
}

static int cached_dev_cache_miss(struct btree *b, struct search *s,
864
				 struct bio *bio, unsigned int sectors)
K
Kent Overstreet 已提交
865
{
866
	int ret = MAP_CONTINUE;
867
	unsigned int reada = 0;
K
Kent Overstreet 已提交
868
	struct cached_dev *dc = container_of(s->d, struct cached_dev, disk);
869
	struct bio *miss, *cache_bio;
K
Kent Overstreet 已提交
870

871 872
	s->cache_missed = 1;

K
Kent Overstreet 已提交
873
	if (s->cache_miss || s->iop.bypass) {
874
		miss = bio_next_split(bio, sectors, GFP_NOIO, &s->d->bio_split);
875
		ret = miss == bio ? MAP_DONE : MAP_CONTINUE;
876 877
		goto out_submit;
	}
K
Kent Overstreet 已提交
878

J
Jens Axboe 已提交
879 880
	if (!(bio->bi_opf & REQ_RAHEAD) &&
	    !(bio->bi_opf & REQ_META) &&
K
Kent Overstreet 已提交
881
	    s->iop.c->gc_stats.in_use < CUTOFF_CACHE_READA)
882
		reada = min_t(sector_t, dc->readahead >> 9,
883
			      get_capacity(bio->bi_disk) - bio_end_sector(bio));
K
Kent Overstreet 已提交
884

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

K
Kent Overstreet 已提交
887
	s->iop.replace_key = KEY(s->iop.inode,
888
				 bio->bi_iter.bi_sector + s->insert_bio_sectors,
K
Kent Overstreet 已提交
889
				 s->insert_bio_sectors);
890

K
Kent Overstreet 已提交
891
	ret = bch_btree_insert_check_key(b, &s->op, &s->iop.replace_key);
892 893 894
	if (ret)
		return ret;

K
Kent Overstreet 已提交
895
	s->iop.replace = true;
K
Kent Overstreet 已提交
896

897
	miss = bio_next_split(bio, sectors, GFP_NOIO, &s->d->bio_split);
898 899 900

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

902
	cache_bio = bio_alloc_bioset(GFP_NOWAIT,
K
Kent Overstreet 已提交
903
			DIV_ROUND_UP(s->insert_bio_sectors, PAGE_SECTORS),
904
			&dc->disk.bio_split);
905
	if (!cache_bio)
K
Kent Overstreet 已提交
906 907
		goto out_submit;

908
	cache_bio->bi_iter.bi_sector	= miss->bi_iter.bi_sector;
909
	bio_copy_dev(cache_bio, miss);
910
	cache_bio->bi_iter.bi_size	= s->insert_bio_sectors << 9;
K
Kent Overstreet 已提交
911

912
	cache_bio->bi_end_io	= backing_request_endio;
913
	cache_bio->bi_private	= &s->cl;
K
Kent Overstreet 已提交
914

915
	bch_bio_map(cache_bio, NULL);
916
	if (bch_bio_alloc_pages(cache_bio, __GFP_NOWARN|GFP_NOIO))
K
Kent Overstreet 已提交
917 918
		goto out_put;

K
Kent Overstreet 已提交
919 920 921
	if (reada)
		bch_mark_cache_readahead(s->iop.c, s->d);

922
	s->cache_miss	= miss;
K
Kent Overstreet 已提交
923
	s->iop.bio	= cache_bio;
924
	bio_get(cache_bio);
925
	/* I/O request sent to backing device */
926
	closure_bio_submit(s->iop.c, cache_bio, &s->cl);
K
Kent Overstreet 已提交
927 928 929

	return ret;
out_put:
930
	bio_put(cache_bio);
K
Kent Overstreet 已提交
931
out_submit:
932
	miss->bi_end_io		= backing_request_endio;
933
	miss->bi_private	= &s->cl;
934
	/* I/O request sent to backing device */
935
	closure_bio_submit(s->iop.c, miss, &s->cl);
K
Kent Overstreet 已提交
936 937 938
	return ret;
}

939
static void cached_dev_read(struct cached_dev *dc, struct search *s)
K
Kent Overstreet 已提交
940 941 942
{
	struct closure *cl = &s->cl;

K
Kent Overstreet 已提交
943
	closure_call(&s->iop.cl, cache_lookup, NULL, cl);
944
	continue_at(cl, cached_dev_read_done_bh, NULL);
K
Kent Overstreet 已提交
945 946 947 948 949 950 951 952 953 954 955 956 957
}

/* 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);
}

958
static void cached_dev_write(struct cached_dev *dc, struct search *s)
K
Kent Overstreet 已提交
959 960 961
{
	struct closure *cl = &s->cl;
	struct bio *bio = &s->bio.bio;
962
	struct bkey start = KEY(dc->disk.id, bio->bi_iter.bi_sector, 0);
K
Kent Overstreet 已提交
963
	struct bkey end = KEY(dc->disk.id, bio_end_sector(bio), 0);
K
Kent Overstreet 已提交
964

K
Kent Overstreet 已提交
965
	bch_keybuf_check_overlapping(&s->iop.c->moving_gc_keys, &start, &end);
K
Kent Overstreet 已提交
966 967 968

	down_read_non_owner(&dc->writeback_lock);
	if (bch_keybuf_check_overlapping(&dc->writeback_keys, &start, &end)) {
K
Kent Overstreet 已提交
969 970 971 972
		/*
		 * We overlap with some dirty data undergoing background
		 * writeback, force this write to writeback
		 */
K
Kent Overstreet 已提交
973 974
		s->iop.bypass = false;
		s->iop.writeback = true;
K
Kent Overstreet 已提交
975 976
	}

K
Kent Overstreet 已提交
977 978 979 980 981 982 983
	/*
	 * 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 已提交
984
	if (bio_op(bio) == REQ_OP_DISCARD)
K
Kent Overstreet 已提交
985
		s->iop.bypass = true;
K
Kent Overstreet 已提交
986

K
Kent Overstreet 已提交
987
	if (should_writeback(dc, s->orig_bio,
Y
Yijing Wang 已提交
988
			     cache_mode(dc),
K
Kent Overstreet 已提交
989 990 991
			     s->iop.bypass)) {
		s->iop.bypass = false;
		s->iop.writeback = true;
K
Kent Overstreet 已提交
992 993
	}

K
Kent Overstreet 已提交
994 995 996
	if (s->iop.bypass) {
		s->iop.bio = s->orig_bio;
		bio_get(s->iop.bio);
K
Kent Overstreet 已提交
997

998 999 1000 1001 1002 1003 1004 1005
		if (bio_op(bio) == REQ_OP_DISCARD &&
		    !blk_queue_discard(bdev_get_queue(dc->bdev)))
			goto insert_data;

		/* I/O request sent to backing device */
		bio->bi_end_io = backing_request_endio;
		closure_bio_submit(s->iop.c, bio, cl);

K
Kent Overstreet 已提交
1006
	} else if (s->iop.writeback) {
1007
		bch_writeback_add(dc);
K
Kent Overstreet 已提交
1008
		s->iop.bio = bio;
K
Kent Overstreet 已提交
1009

J
Jens Axboe 已提交
1010
		if (bio->bi_opf & REQ_PREFLUSH) {
1011 1012 1013 1014 1015 1016 1017
			/*
			 * Also need to send a flush to the backing
			 * device.
			 */
			struct bio *flush;

			flush = bio_alloc_bioset(GFP_NOIO, 0,
1018
						 &dc->disk.bio_split);
1019 1020 1021 1022
			if (!flush) {
				s->iop.status = BLK_STS_RESOURCE;
				goto insert_data;
			}
1023
			bio_copy_dev(flush, bio);
1024
			flush->bi_end_io = backing_request_endio;
1025
			flush->bi_private = cl;
1026
			flush->bi_opf = REQ_OP_WRITE | REQ_PREFLUSH;
1027
			/* I/O request sent to backing device */
1028
			closure_bio_submit(s->iop.c, flush, cl);
K
Kent Overstreet 已提交
1029
		}
K
Kent Overstreet 已提交
1030
	} else {
1031
		s->iop.bio = bio_clone_fast(bio, GFP_NOIO, &dc->disk.bio_split);
1032 1033
		/* I/O request sent to backing device */
		bio->bi_end_io = backing_request_endio;
1034
		closure_bio_submit(s->iop.c, bio, cl);
K
Kent Overstreet 已提交
1035
	}
K
Kent Overstreet 已提交
1036

1037
insert_data:
K
Kent Overstreet 已提交
1038
	closure_call(&s->iop.cl, bch_data_insert, NULL, cl);
K
Kent Overstreet 已提交
1039 1040 1041
	continue_at(cl, cached_dev_write_complete, NULL);
}

1042
static void cached_dev_nodata(struct closure *cl)
K
Kent Overstreet 已提交
1043
{
1044
	struct search *s = container_of(cl, struct search, cl);
K
Kent Overstreet 已提交
1045 1046
	struct bio *bio = &s->bio.bio;

K
Kent Overstreet 已提交
1047 1048
	if (s->iop.flush_journal)
		bch_journal_meta(s->iop.c, cl);
K
Kent Overstreet 已提交
1049

K
Kent Overstreet 已提交
1050
	/* If it's a flush, we send the flush to the backing device too */
1051
	bio->bi_end_io = backing_request_endio;
1052
	closure_bio_submit(s->iop.c, bio, cl);
K
Kent Overstreet 已提交
1053 1054 1055 1056

	continue_at(cl, cached_dev_bio_complete, NULL);
}

1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071
struct detached_dev_io_private {
	struct bcache_device	*d;
	unsigned long		start_time;
	bio_end_io_t		*bi_end_io;
	void			*bi_private;
};

static void detached_dev_end_io(struct bio *bio)
{
	struct detached_dev_io_private *ddip;

	ddip = bio->bi_private;
	bio->bi_end_io = ddip->bi_end_io;
	bio->bi_private = ddip->bi_private;

1072
	generic_end_io_acct(ddip->d->disk->queue, bio_op(bio),
1073 1074
			    &ddip->d->disk->part0, ddip->start_time);

1075 1076 1077 1078 1079 1080
	if (bio->bi_status) {
		struct cached_dev *dc = container_of(ddip->d,
						     struct cached_dev, disk);
		/* should count I/O error for backing device here */
		bch_count_backing_io_errors(dc, bio);
	}
1081

1082
	kfree(ddip);
1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110
	bio->bi_end_io(bio);
}

static void detached_dev_do_request(struct bcache_device *d, struct bio *bio)
{
	struct detached_dev_io_private *ddip;
	struct cached_dev *dc = container_of(d, struct cached_dev, disk);

	/*
	 * no need to call closure_get(&dc->disk.cl),
	 * because upper layer had already opened bcache device,
	 * which would call closure_get(&dc->disk.cl)
	 */
	ddip = kzalloc(sizeof(struct detached_dev_io_private), GFP_NOIO);
	ddip->d = d;
	ddip->start_time = jiffies;
	ddip->bi_end_io = bio->bi_end_io;
	ddip->bi_private = bio->bi_private;
	bio->bi_end_io = detached_dev_end_io;
	bio->bi_private = ddip;

	if ((bio_op(bio) == REQ_OP_DISCARD) &&
	    !blk_queue_discard(bdev_get_queue(dc->bdev)))
		bio->bi_end_io(bio);
	else
		generic_make_request(bio);
}

1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148
static void quit_max_writeback_rate(struct cache_set *c,
				    struct cached_dev *this_dc)
{
	int i;
	struct bcache_device *d;
	struct cached_dev *dc;

	/*
	 * mutex bch_register_lock may compete with other parallel requesters,
	 * or attach/detach operations on other backing device. Waiting to
	 * the mutex lock may increase I/O request latency for seconds or more.
	 * To avoid such situation, if mutext_trylock() failed, only writeback
	 * rate of current cached device is set to 1, and __update_write_back()
	 * will decide writeback rate of other cached devices (remember now
	 * c->idle_counter is 0 already).
	 */
	if (mutex_trylock(&bch_register_lock)) {
		for (i = 0; i < c->devices_max_used; i++) {
			if (!c->devices[i])
				continue;

			if (UUID_FLASH_ONLY(&c->uuids[i]))
				continue;

			d = c->devices[i];
			dc = container_of(d, struct cached_dev, disk);
			/*
			 * set writeback rate to default minimum value,
			 * then let update_writeback_rate() to decide the
			 * upcoming rate.
			 */
			atomic_long_set(&dc->writeback_rate.rate, 1);
		}
		mutex_unlock(&bch_register_lock);
	} else
		atomic_long_set(&this_dc->writeback_rate.rate, 1);
}

K
Kent Overstreet 已提交
1149 1150
/* Cached devices - read & write stuff */

1151 1152
static blk_qc_t cached_dev_make_request(struct request_queue *q,
					struct bio *bio)
K
Kent Overstreet 已提交
1153 1154
{
	struct search *s;
1155
	struct bcache_device *d = bio->bi_disk->private_data;
K
Kent Overstreet 已提交
1156
	struct cached_dev *dc = container_of(d, struct cached_dev, disk);
1157
	int rw = bio_data_dir(bio);
K
Kent Overstreet 已提交
1158

1159 1160
	if (unlikely((d->c && test_bit(CACHE_SET_IO_DISABLE, &d->c->flags)) ||
		     dc->io_disable)) {
1161 1162 1163 1164 1165
		bio->bi_status = BLK_STS_IOERR;
		bio_endio(bio);
		return BLK_QC_T_NONE;
	}

1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184
	if (likely(d->c)) {
		if (atomic_read(&d->c->idle_counter))
			atomic_set(&d->c->idle_counter, 0);
		/*
		 * If at_max_writeback_rate of cache set is true and new I/O
		 * comes, quit max writeback rate of all cached devices
		 * attached to this cache set, and set at_max_writeback_rate
		 * to false.
		 */
		if (unlikely(atomic_read(&d->c->at_max_writeback_rate) == 1)) {
			atomic_set(&d->c->at_max_writeback_rate, 0);
			quit_max_writeback_rate(d->c, dc);
		}
	}

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

1186
	bio_set_dev(bio, dc->bdev);
1187
	bio->bi_iter.bi_sector += dc->sb.data_offset;
K
Kent Overstreet 已提交
1188 1189 1190

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

1193
		if (!bio->bi_iter.bi_size) {
1194 1195 1196 1197 1198 1199 1200 1201
			/*
			 * 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 已提交
1202
			s->iop.bypass = check_should_bypass(dc, bio);
K
Kent Overstreet 已提交
1203 1204

			if (rw)
1205
				cached_dev_write(dc, s);
K
Kent Overstreet 已提交
1206
			else
1207
				cached_dev_read(dc, s);
K
Kent Overstreet 已提交
1208
		}
1209
	} else
1210
		/* I/O request sent to backing device */
1211
		detached_dev_do_request(d, bio);
1212 1213

	return BLK_QC_T_NONE;
K
Kent Overstreet 已提交
1214 1215 1216 1217 1218 1219
}

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);
1220

K
Kent Overstreet 已提交
1221 1222 1223 1224 1225 1226 1227 1228 1229 1230
	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;

1231
	if (bdi_congested(q->backing_dev_info, bits))
K
Kent Overstreet 已提交
1232 1233 1234
		return 1;

	if (cached_dev_get(dc)) {
1235
		unsigned int i;
K
Kent Overstreet 已提交
1236 1237 1238 1239
		struct cache *ca;

		for_each_cache(ca, d->c, i) {
			q = bdev_get_queue(ca->bdev);
1240
			ret |= bdi_congested(q->backing_dev_info, bits);
K
Kent Overstreet 已提交
1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253
		}

		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;
1254
	g->queue->backing_dev_info->congested_fn = cached_dev_congested;
K
Kent Overstreet 已提交
1255 1256 1257 1258 1259 1260 1261
	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,
1262
				struct bio *bio, unsigned int sectors)
K
Kent Overstreet 已提交
1263
{
1264
	unsigned int bytes = min(sectors, bio_sectors(bio)) << 9;
K
Kent Overstreet 已提交
1265

1266 1267 1268
	swap(bio->bi_iter.bi_size, bytes);
	zero_fill_bio(bio);
	swap(bio->bi_iter.bi_size, bytes);
K
Kent Overstreet 已提交
1269

1270
	bio_advance(bio, bytes);
1271

1272
	if (!bio->bi_iter.bi_size)
1273
		return MAP_DONE;
K
Kent Overstreet 已提交
1274

1275
	return MAP_CONTINUE;
K
Kent Overstreet 已提交
1276 1277
}

1278 1279 1280 1281
static void flash_dev_nodata(struct closure *cl)
{
	struct search *s = container_of(cl, struct search, cl);

K
Kent Overstreet 已提交
1282 1283
	if (s->iop.flush_journal)
		bch_journal_meta(s->iop.c, cl);
1284 1285 1286 1287

	continue_at(cl, search_free, NULL);
}

1288 1289
static blk_qc_t flash_dev_make_request(struct request_queue *q,
					     struct bio *bio)
K
Kent Overstreet 已提交
1290 1291 1292
{
	struct search *s;
	struct closure *cl;
1293
	struct bcache_device *d = bio->bi_disk->private_data;
K
Kent Overstreet 已提交
1294

1295 1296 1297 1298 1299 1300
	if (unlikely(d->c && test_bit(CACHE_SET_IO_DISABLE, &d->c->flags))) {
		bio->bi_status = BLK_STS_IOERR;
		bio_endio(bio);
		return BLK_QC_T_NONE;
	}

1301
	generic_start_io_acct(q, bio_op(bio), bio_sectors(bio), &d->disk->part0);
K
Kent Overstreet 已提交
1302 1303 1304 1305 1306

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

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

1309
	if (!bio->bi_iter.bi_size) {
1310 1311 1312 1313 1314 1315 1316
		/*
		 * can't call bch_journal_meta from under
		 * generic_make_request
		 */
		continue_at_nobarrier(&s->cl,
				      flash_dev_nodata,
				      bcache_wq);
1317
		return BLK_QC_T_NONE;
1318
	} else if (bio_data_dir(bio)) {
K
Kent Overstreet 已提交
1319
		bch_keybuf_check_overlapping(&s->iop.c->moving_gc_keys,
1320
					&KEY(d->id, bio->bi_iter.bi_sector, 0),
1321
					&KEY(d->id, bio_end_sector(bio), 0));
K
Kent Overstreet 已提交
1322

M
Mike Christie 已提交
1323
		s->iop.bypass		= (bio_op(bio) == REQ_OP_DISCARD) != 0;
K
Kent Overstreet 已提交
1324 1325
		s->iop.writeback	= true;
		s->iop.bio		= bio;
K
Kent Overstreet 已提交
1326

K
Kent Overstreet 已提交
1327
		closure_call(&s->iop.cl, bch_data_insert, NULL, cl);
K
Kent Overstreet 已提交
1328
	} else {
K
Kent Overstreet 已提交
1329
		closure_call(&s->iop.cl, cache_lookup, NULL, cl);
K
Kent Overstreet 已提交
1330 1331 1332
	}

	continue_at(cl, search_free, NULL);
1333
	return BLK_QC_T_NONE;
K
Kent Overstreet 已提交
1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346
}

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;
1347
	unsigned int i;
K
Kent Overstreet 已提交
1348 1349 1350 1351
	int ret = 0;

	for_each_cache(ca, d->c, i) {
		q = bdev_get_queue(ca->bdev);
1352
		ret |= bdi_congested(q->backing_dev_info, bits);
K
Kent Overstreet 已提交
1353 1354 1355 1356 1357 1358 1359 1360 1361 1362
	}

	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;
1363
	g->queue->backing_dev_info->congested_fn = flash_dev_congested;
K
Kent Overstreet 已提交
1364 1365 1366 1367 1368 1369
	d->cache_miss				= flash_dev_cache_miss;
	d->ioctl				= flash_dev_ioctl;
}

void bch_request_exit(void)
{
1370
	kmem_cache_destroy(bch_search_cache);
K
Kent Overstreet 已提交
1371 1372 1373 1374 1375 1376 1377 1378 1379 1380
}

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

	return 0;
}