dm-cache-target.c 94.5 KB
Newer Older
J
Joe Thornber 已提交
1 2 3 4 5 6 7 8
/*
 * Copyright (C) 2012 Red Hat. All rights reserved.
 *
 * This file is released under the GPL.
 */

#include "dm.h"
#include "dm-bio-prison.h"
9
#include "dm-bio-record.h"
J
Joe Thornber 已提交
10 11 12 13
#include "dm-cache-metadata.h"

#include <linux/dm-io.h>
#include <linux/dm-kcopyd.h>
14
#include <linux/jiffies.h>
J
Joe Thornber 已提交
15 16 17 18 19 20 21 22 23 24 25 26 27
#include <linux/init.h>
#include <linux/mempool.h>
#include <linux/module.h>
#include <linux/slab.h>
#include <linux/vmalloc.h>

#define DM_MSG_PREFIX "cache"

DECLARE_DM_KCOPYD_THROTTLE_WITH_MODULE_PARM(cache_copy_throttle,
	"A percentage of time allocated for copying to and/or from cache");

/*----------------------------------------------------------------*/

J
Joe Thornber 已提交
28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100
#define IOT_RESOLUTION 4

struct io_tracker {
	spinlock_t lock;

	/*
	 * Sectors of in-flight IO.
	 */
	sector_t in_flight;

	/*
	 * The time, in jiffies, when this device became idle (if it is
	 * indeed idle).
	 */
	unsigned long idle_time;
	unsigned long last_update_time;
};

static void iot_init(struct io_tracker *iot)
{
	spin_lock_init(&iot->lock);
	iot->in_flight = 0ul;
	iot->idle_time = 0ul;
	iot->last_update_time = jiffies;
}

static bool __iot_idle_for(struct io_tracker *iot, unsigned long jifs)
{
	if (iot->in_flight)
		return false;

	return time_after(jiffies, iot->idle_time + jifs);
}

static bool iot_idle_for(struct io_tracker *iot, unsigned long jifs)
{
	bool r;
	unsigned long flags;

	spin_lock_irqsave(&iot->lock, flags);
	r = __iot_idle_for(iot, jifs);
	spin_unlock_irqrestore(&iot->lock, flags);

	return r;
}

static void iot_io_begin(struct io_tracker *iot, sector_t len)
{
	unsigned long flags;

	spin_lock_irqsave(&iot->lock, flags);
	iot->in_flight += len;
	spin_unlock_irqrestore(&iot->lock, flags);
}

static void __iot_io_end(struct io_tracker *iot, sector_t len)
{
	iot->in_flight -= len;
	if (!iot->in_flight)
		iot->idle_time = jiffies;
}

static void iot_io_end(struct io_tracker *iot, sector_t len)
{
	unsigned long flags;

	spin_lock_irqsave(&iot->lock, flags);
	__iot_io_end(iot, len);
	spin_unlock_irqrestore(&iot->lock, flags);
}

/*----------------------------------------------------------------*/

J
Joe Thornber 已提交
101 102 103 104 105 106 107 108 109 110 111 112 113
/*
 * Glossary:
 *
 * oblock: index of an origin block
 * cblock: index of a cache block
 * promotion: movement of a block from origin to cache
 * demotion: movement of a block from cache to origin
 * migration: movement of a block between the origin and cache device,
 *	      either direction
 */

/*----------------------------------------------------------------*/

114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141
/*
 * There are a couple of places where we let a bio run, but want to do some
 * work before calling its endio function.  We do this by temporarily
 * changing the endio fn.
 */
struct dm_hook_info {
	bio_end_io_t *bi_end_io;
	void *bi_private;
};

static void dm_hook_bio(struct dm_hook_info *h, struct bio *bio,
			bio_end_io_t *bi_end_io, void *bi_private)
{
	h->bi_end_io = bio->bi_end_io;
	h->bi_private = bio->bi_private;

	bio->bi_end_io = bi_end_io;
	bio->bi_private = bi_private;
}

static void dm_unhook_bio(struct dm_hook_info *h, struct bio *bio)
{
	bio->bi_end_io = h->bi_end_io;
	bio->bi_private = h->bi_private;
}

/*----------------------------------------------------------------*/

J
Joe Thornber 已提交
142 143 144 145 146
#define MIGRATION_POOL_SIZE 128
#define COMMIT_PERIOD HZ
#define MIGRATION_COUNT_WINDOW 10

/*
147 148
 * The block size of the device holding cache data must be
 * between 32KB and 1GB.
J
Joe Thornber 已提交
149 150
 */
#define DATA_DEV_BLOCK_SIZE_MIN_SECTORS (32 * 1024 >> SECTOR_SHIFT)
151
#define DATA_DEV_BLOCK_SIZE_MAX_SECTORS (1024 * 1024 * 1024 >> SECTOR_SHIFT)
J
Joe Thornber 已提交
152

J
Joe Thornber 已提交
153
enum cache_metadata_mode {
J
Joe Thornber 已提交
154 155
	CM_WRITE,		/* metadata may be changed */
	CM_READ_ONLY,		/* metadata may not be changed */
156
	CM_FAIL
J
Joe Thornber 已提交
157 158
};

J
Joe Thornber 已提交
159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181
enum cache_io_mode {
	/*
	 * Data is written to cached blocks only.  These blocks are marked
	 * dirty.  If you lose the cache device you will lose data.
	 * Potential performance increase for both reads and writes.
	 */
	CM_IO_WRITEBACK,

	/*
	 * Data is written to both cache and origin.  Blocks are never
	 * dirty.  Potential performance benfit for reads only.
	 */
	CM_IO_WRITETHROUGH,

	/*
	 * A degraded mode useful for various cache coherency situations
	 * (eg, rolling back snapshots).  Reads and writes always go to the
	 * origin.  If a write goes to a cached oblock, then the cache
	 * block is invalidated.
	 */
	CM_IO_PASSTHROUGH
};

J
Joe Thornber 已提交
182
struct cache_features {
J
Joe Thornber 已提交
183 184
	enum cache_metadata_mode mode;
	enum cache_io_mode io_mode;
J
Joe Thornber 已提交
185 186 187 188 189 190 191 192 193 194 195 196 197 198 199
};

struct cache_stats {
	atomic_t read_hit;
	atomic_t read_miss;
	atomic_t write_hit;
	atomic_t write_miss;
	atomic_t demotion;
	atomic_t promotion;
	atomic_t copies_avoided;
	atomic_t cache_cell_clash;
	atomic_t commit_count;
	atomic_t discard_count;
};

200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218
/*
 * Defines a range of cblocks, begin to (end - 1) are in the range.  end is
 * the one-past-the-end value.
 */
struct cblock_range {
	dm_cblock_t begin;
	dm_cblock_t end;
};

struct invalidation_request {
	struct list_head list;
	struct cblock_range *cblocks;

	atomic_t complete;
	int err;

	wait_queue_head_t result_wait;
};

J
Joe Thornber 已提交
219 220 221 222
struct cache {
	struct dm_target *ti;
	struct dm_target_callbacks callbacks;

223 224
	struct dm_cache_metadata *cmd;

J
Joe Thornber 已提交
225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257
	/*
	 * Metadata is written to this device.
	 */
	struct dm_dev *metadata_dev;

	/*
	 * The slower of the two data devices.  Typically a spindle.
	 */
	struct dm_dev *origin_dev;

	/*
	 * The faster of the two data devices.  Typically an SSD.
	 */
	struct dm_dev *cache_dev;

	/*
	 * Size of the origin device in _complete_ blocks and native sectors.
	 */
	dm_oblock_t origin_blocks;
	sector_t origin_sectors;

	/*
	 * Size of the cache device in blocks.
	 */
	dm_cblock_t cache_size;

	/*
	 * Fields for converting from sectors to blocks.
	 */
	uint32_t sectors_per_block;
	int sectors_per_block_shift;

	spinlock_t lock;
J
Joe Thornber 已提交
258
	struct list_head deferred_cells;
J
Joe Thornber 已提交
259 260
	struct bio_list deferred_bios;
	struct bio_list deferred_flush_bios;
261
	struct bio_list deferred_writethrough_bios;
J
Joe Thornber 已提交
262 263 264 265 266
	struct list_head quiesced_migrations;
	struct list_head completed_migrations;
	struct list_head need_commit_migrations;
	sector_t migration_threshold;
	wait_queue_head_t migration_wait;
267 268 269 270 271 272 273
	atomic_t nr_allocated_migrations;

	/*
	 * The number of in flight migrations that are performing
	 * background io. eg, promotion, writeback.
	 */
	atomic_t nr_io_migrations;
J
Joe Thornber 已提交
274

275
	wait_queue_head_t quiescing_wait;
276
	atomic_t quiescing;
277 278
	atomic_t quiescing_ack;

J
Joe Thornber 已提交
279 280 281
	/*
	 * cache_size entries, dirty if set
	 */
282
	atomic_t nr_dirty;
J
Joe Thornber 已提交
283 284 285 286 287
	unsigned long *dirty_bitset;

	/*
	 * origin_blocks entries, discarded if set.
	 */
288
	dm_dblock_t discard_nr_blocks;
J
Joe Thornber 已提交
289
	unsigned long *discard_bitset;
290
	uint32_t discard_block_size; /* a power of 2 times sectors per block */
291 292 293 294 295 296 297

	/*
	 * Rather than reconstructing the table line for the status we just
	 * save it and regurgitate.
	 */
	unsigned nr_ctr_args;
	const char **ctr_args;
J
Joe Thornber 已提交
298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315

	struct dm_kcopyd_client *copier;
	struct workqueue_struct *wq;
	struct work_struct worker;

	struct delayed_work waker;
	unsigned long last_commit_jiffies;

	struct dm_bio_prison *prison;
	struct dm_deferred_set *all_io_ds;

	mempool_t *migration_pool;

	struct dm_cache_policy *policy;
	unsigned policy_nr_args;

	bool need_tick_bio:1;
	bool sized:1;
316
	bool invalidate:1;
J
Joe Thornber 已提交
317 318 319 320 321
	bool commit_requested:1;
	bool loaded_mappings:1;
	bool loaded_discards:1;

	/*
322
	 * Cache features such as write-through.
J
Joe Thornber 已提交
323
	 */
324 325 326
	struct cache_features features;

	struct cache_stats stats;
327 328 329 330 331 332

	/*
	 * Invalidation fields.
	 */
	spinlock_t invalidation_lock;
	struct list_head invalidation_requests;
333 334

	struct io_tracker origin_tracker;
J
Joe Thornber 已提交
335 336 337 338 339 340
};

struct per_bio_data {
	bool tick:1;
	unsigned req_nr:2;
	struct dm_deferred_entry *all_io_entry;
341
	struct dm_hook_info hook_info;
342
	sector_t len;
343

344 345 346
	/*
	 * writethrough fields.  These MUST remain at the end of this
	 * structure and the 'cache' member must be the first as it
J
Joe Thornber 已提交
347
	 * is used to determine the offset of the writethrough fields.
348
	 */
349 350
	struct cache *cache;
	dm_cblock_t cblock;
351
	struct dm_bio_details bio_details;
J
Joe Thornber 已提交
352 353 354 355 356 357 358 359 360 361 362 363
};

struct dm_cache_migration {
	struct list_head list;
	struct cache *cache;

	unsigned long start_jiffies;
	dm_oblock_t old_oblock;
	dm_oblock_t new_oblock;
	dm_cblock_t cblock;

	bool err:1;
J
Joe Thornber 已提交
364
	bool discard:1;
J
Joe Thornber 已提交
365 366 367
	bool writeback:1;
	bool demote:1;
	bool promote:1;
368
	bool requeue_holder:1;
369
	bool invalidate:1;
J
Joe Thornber 已提交
370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385

	struct dm_bio_prison_cell *old_ocell;
	struct dm_bio_prison_cell *new_ocell;
};

/*
 * Processing a bio in the worker thread may require these memory
 * allocations.  We prealloc to avoid deadlocks (the same worker thread
 * frees them back to the mempool).
 */
struct prealloc {
	struct dm_cache_migration *mg;
	struct dm_bio_prison_cell *cell1;
	struct dm_bio_prison_cell *cell2;
};

386 387
static enum cache_metadata_mode get_cache_mode(struct cache *cache);

J
Joe Thornber 已提交
388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405
static void wake_worker(struct cache *cache)
{
	queue_work(cache->wq, &cache->worker);
}

/*----------------------------------------------------------------*/

static struct dm_bio_prison_cell *alloc_prison_cell(struct cache *cache)
{
	/* FIXME: change to use a local slab. */
	return dm_bio_prison_alloc_cell(cache->prison, GFP_NOWAIT);
}

static void free_prison_cell(struct cache *cache, struct dm_bio_prison_cell *cell)
{
	dm_bio_prison_free_cell(cache->prison, cell);
}

406 407 408 409 410 411 412 413 414 415 416 417 418 419 420
static struct dm_cache_migration *alloc_migration(struct cache *cache)
{
	struct dm_cache_migration *mg;

	mg = mempool_alloc(cache->migration_pool, GFP_NOWAIT);
	if (mg) {
		mg->cache = cache;
		atomic_inc(&mg->cache->nr_allocated_migrations);
	}

	return mg;
}

static void free_migration(struct dm_cache_migration *mg)
{
421
	struct cache *cache = mg->cache;
422

423 424 425 426 427
	if (atomic_dec_and_test(&cache->nr_allocated_migrations))
		wake_up(&cache->migration_wait);

	mempool_free(mg, cache->migration_pool);
	wake_worker(cache);
428 429
}

J
Joe Thornber 已提交
430 431 432
static int prealloc_data_structs(struct cache *cache, struct prealloc *p)
{
	if (!p->mg) {
433
		p->mg = alloc_migration(cache);
J
Joe Thornber 已提交
434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461
		if (!p->mg)
			return -ENOMEM;
	}

	if (!p->cell1) {
		p->cell1 = alloc_prison_cell(cache);
		if (!p->cell1)
			return -ENOMEM;
	}

	if (!p->cell2) {
		p->cell2 = alloc_prison_cell(cache);
		if (!p->cell2)
			return -ENOMEM;
	}

	return 0;
}

static void prealloc_free_structs(struct cache *cache, struct prealloc *p)
{
	if (p->cell2)
		free_prison_cell(cache, p->cell2);

	if (p->cell1)
		free_prison_cell(cache, p->cell1);

	if (p->mg)
462
		free_migration(p->mg);
J
Joe Thornber 已提交
463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513
}

static struct dm_cache_migration *prealloc_get_migration(struct prealloc *p)
{
	struct dm_cache_migration *mg = p->mg;

	BUG_ON(!mg);
	p->mg = NULL;

	return mg;
}

/*
 * You must have a cell within the prealloc struct to return.  If not this
 * function will BUG() rather than returning NULL.
 */
static struct dm_bio_prison_cell *prealloc_get_cell(struct prealloc *p)
{
	struct dm_bio_prison_cell *r = NULL;

	if (p->cell1) {
		r = p->cell1;
		p->cell1 = NULL;

	} else if (p->cell2) {
		r = p->cell2;
		p->cell2 = NULL;
	} else
		BUG();

	return r;
}

/*
 * You can't have more than two cells in a prealloc struct.  BUG() will be
 * called if you try and overfill.
 */
static void prealloc_put_cell(struct prealloc *p, struct dm_bio_prison_cell *cell)
{
	if (!p->cell2)
		p->cell2 = cell;

	else if (!p->cell1)
		p->cell1 = cell;

	else
		BUG();
}

/*----------------------------------------------------------------*/

J
Joe Thornber 已提交
514
static void build_key(dm_oblock_t begin, dm_oblock_t end, struct dm_cell_key *key)
J
Joe Thornber 已提交
515 516 517
{
	key->virtual = 0;
	key->dev = 0;
J
Joe Thornber 已提交
518 519
	key->block_begin = from_oblock(begin);
	key->block_end = from_oblock(end);
J
Joe Thornber 已提交
520 521 522 523 524 525 526 527 528
}

/*
 * The caller hands in a preallocated cell, and a free function for it.
 * The cell will be freed if there's an error, or if it wasn't used because
 * a cell with that key already exists.
 */
typedef void (*cell_free_fn)(void *context, struct dm_bio_prison_cell *cell);

J
Joe Thornber 已提交
529 530 531 532
static int bio_detain_range(struct cache *cache, dm_oblock_t oblock_begin, dm_oblock_t oblock_end,
			    struct bio *bio, struct dm_bio_prison_cell *cell_prealloc,
			    cell_free_fn free_fn, void *free_context,
			    struct dm_bio_prison_cell **cell_result)
J
Joe Thornber 已提交
533 534 535 536
{
	int r;
	struct dm_cell_key key;

J
Joe Thornber 已提交
537
	build_key(oblock_begin, oblock_end, &key);
J
Joe Thornber 已提交
538 539 540 541 542 543 544
	r = dm_bio_detain(cache->prison, &key, bio, cell_prealloc, cell_result);
	if (r)
		free_fn(free_context, cell_prealloc);

	return r;
}

J
Joe Thornber 已提交
545 546 547 548 549 550 551 552 553 554
static int bio_detain(struct cache *cache, dm_oblock_t oblock,
		      struct bio *bio, struct dm_bio_prison_cell *cell_prealloc,
		      cell_free_fn free_fn, void *free_context,
		      struct dm_bio_prison_cell **cell_result)
{
	dm_oblock_t end = to_oblock(from_oblock(oblock) + 1ULL);
	return bio_detain_range(cache, oblock, end, bio,
				cell_prealloc, free_fn, free_context, cell_result);
}

J
Joe Thornber 已提交
555 556 557 558 559 560 561 562 563 564 565
static int get_cell(struct cache *cache,
		    dm_oblock_t oblock,
		    struct prealloc *structs,
		    struct dm_bio_prison_cell **cell_result)
{
	int r;
	struct dm_cell_key key;
	struct dm_bio_prison_cell *cell_prealloc;

	cell_prealloc = prealloc_get_cell(structs);

J
Joe Thornber 已提交
566
	build_key(oblock, to_oblock(from_oblock(oblock) + 1ULL), &key);
J
Joe Thornber 已提交
567 568 569 570 571 572 573
	r = dm_get_cell(cache->prison, &key, cell_prealloc, cell_result);
	if (r)
		prealloc_put_cell(structs, cell_prealloc);

	return r;
}

J
Joe Thornber 已提交
574
/*----------------------------------------------------------------*/
J
Joe Thornber 已提交
575 576 577 578 579 580 581 582 583

static bool is_dirty(struct cache *cache, dm_cblock_t b)
{
	return test_bit(from_cblock(b), cache->dirty_bitset);
}

static void set_dirty(struct cache *cache, dm_oblock_t oblock, dm_cblock_t cblock)
{
	if (!test_and_set_bit(from_cblock(cblock), cache->dirty_bitset)) {
584
		atomic_inc(&cache->nr_dirty);
J
Joe Thornber 已提交
585 586 587 588 589 590 591 592
		policy_set_dirty(cache->policy, oblock);
	}
}

static void clear_dirty(struct cache *cache, dm_oblock_t oblock, dm_cblock_t cblock)
{
	if (test_and_clear_bit(from_cblock(cblock), cache->dirty_bitset)) {
		policy_clear_dirty(cache->policy, oblock);
593
		if (atomic_dec_return(&cache->nr_dirty) == 0)
J
Joe Thornber 已提交
594 595 596 597 598
			dm_table_event(cache->ti->table);
	}
}

/*----------------------------------------------------------------*/
J
Joe Thornber 已提交
599

J
Joe Thornber 已提交
600 601 602 603 604
static bool block_size_is_power_of_two(struct cache *cache)
{
	return cache->sectors_per_block_shift >= 0;
}

605 606 607 608
/* gcc on ARM generates spurious references to __udivdi3 and __umoddi3 */
#if defined(CONFIG_ARM) && __GNUC__ == 4 && __GNUC_MINOR__ <= 6
__always_inline
#endif
609 610 611 612 613 614 615
static dm_block_t block_div(dm_block_t b, uint32_t n)
{
	do_div(b, n);

	return b;
}

J
Joe Thornber 已提交
616
static dm_block_t oblocks_per_dblock(struct cache *cache)
617
{
J
Joe Thornber 已提交
618
	dm_block_t oblocks = cache->discard_block_size;
619

J
Joe Thornber 已提交
620 621
	if (block_size_is_power_of_two(cache))
		oblocks >>= cache->sectors_per_block_shift;
622
	else
J
Joe Thornber 已提交
623
		oblocks = block_div(oblocks, cache->sectors_per_block);
624

J
Joe Thornber 已提交
625 626 627 628 629 630 631 632
	return oblocks;
}

static dm_dblock_t oblock_to_dblock(struct cache *cache, dm_oblock_t oblock)
{
	return to_dblock(block_div(from_oblock(oblock),
				   oblocks_per_dblock(cache)));
}
633

J
Joe Thornber 已提交
634 635 636
static dm_oblock_t dblock_to_oblock(struct cache *cache, dm_dblock_t dblock)
{
	return to_oblock(from_dblock(dblock) * oblocks_per_dblock(cache));
637 638 639
}

static void set_discard(struct cache *cache, dm_dblock_t b)
J
Joe Thornber 已提交
640 641 642
{
	unsigned long flags;

J
Joe Thornber 已提交
643
	BUG_ON(from_dblock(b) >= from_dblock(cache->discard_nr_blocks));
J
Joe Thornber 已提交
644 645 646
	atomic_inc(&cache->stats.discard_count);

	spin_lock_irqsave(&cache->lock, flags);
647
	set_bit(from_dblock(b), cache->discard_bitset);
J
Joe Thornber 已提交
648 649 650
	spin_unlock_irqrestore(&cache->lock, flags);
}

651
static void clear_discard(struct cache *cache, dm_dblock_t b)
J
Joe Thornber 已提交
652 653 654 655
{
	unsigned long flags;

	spin_lock_irqsave(&cache->lock, flags);
656
	clear_bit(from_dblock(b), cache->discard_bitset);
J
Joe Thornber 已提交
657 658 659
	spin_unlock_irqrestore(&cache->lock, flags);
}

660
static bool is_discarded(struct cache *cache, dm_dblock_t b)
J
Joe Thornber 已提交
661 662 663 664 665
{
	int r;
	unsigned long flags;

	spin_lock_irqsave(&cache->lock, flags);
666
	r = test_bit(from_dblock(b), cache->discard_bitset);
J
Joe Thornber 已提交
667 668 669 670 671 672 673 674 675 676 677
	spin_unlock_irqrestore(&cache->lock, flags);

	return r;
}

static bool is_discarded_oblock(struct cache *cache, dm_oblock_t b)
{
	int r;
	unsigned long flags;

	spin_lock_irqsave(&cache->lock, flags);
678 679
	r = test_bit(from_dblock(oblock_to_dblock(cache, b)),
		     cache->discard_bitset);
J
Joe Thornber 已提交
680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701
	spin_unlock_irqrestore(&cache->lock, flags);

	return r;
}

/*----------------------------------------------------------------*/

static void load_stats(struct cache *cache)
{
	struct dm_cache_statistics stats;

	dm_cache_metadata_get_stats(cache->cmd, &stats);
	atomic_set(&cache->stats.read_hit, stats.read_hits);
	atomic_set(&cache->stats.read_miss, stats.read_misses);
	atomic_set(&cache->stats.write_hit, stats.write_hits);
	atomic_set(&cache->stats.write_miss, stats.write_misses);
}

static void save_stats(struct cache *cache)
{
	struct dm_cache_statistics stats;

702 703 704
	if (get_cache_mode(cache) >= CM_READ_ONLY)
		return;

J
Joe Thornber 已提交
705 706 707 708 709 710 711 712 713 714 715
	stats.read_hits = atomic_read(&cache->stats.read_hit);
	stats.read_misses = atomic_read(&cache->stats.read_miss);
	stats.write_hits = atomic_read(&cache->stats.write_hit);
	stats.write_misses = atomic_read(&cache->stats.write_miss);

	dm_cache_metadata_set_stats(cache->cmd, &stats);
}

/*----------------------------------------------------------------
 * Per bio data
 *--------------------------------------------------------------*/
716 717 718 719 720 721 722

/*
 * If using writeback, leave out struct per_bio_data's writethrough fields.
 */
#define PB_DATA_SIZE_WB (offsetof(struct per_bio_data, cache))
#define PB_DATA_SIZE_WT (sizeof(struct per_bio_data))

J
Joe Thornber 已提交
723 724 725 726 727 728 729 730 731 732 733 734 735 736 737
static bool writethrough_mode(struct cache_features *f)
{
	return f->io_mode == CM_IO_WRITETHROUGH;
}

static bool writeback_mode(struct cache_features *f)
{
	return f->io_mode == CM_IO_WRITEBACK;
}

static bool passthrough_mode(struct cache_features *f)
{
	return f->io_mode == CM_IO_PASSTHROUGH;
}

738 739
static size_t get_per_bio_data_size(struct cache *cache)
{
J
Joe Thornber 已提交
740
	return writethrough_mode(&cache->features) ? PB_DATA_SIZE_WT : PB_DATA_SIZE_WB;
741 742 743
}

static struct per_bio_data *get_per_bio_data(struct bio *bio, size_t data_size)
J
Joe Thornber 已提交
744
{
745
	struct per_bio_data *pb = dm_per_bio_data(bio, data_size);
J
Joe Thornber 已提交
746 747 748 749
	BUG_ON(!pb);
	return pb;
}

750
static struct per_bio_data *init_per_bio_data(struct bio *bio, size_t data_size)
J
Joe Thornber 已提交
751
{
752
	struct per_bio_data *pb = get_per_bio_data(bio, data_size);
J
Joe Thornber 已提交
753 754 755 756

	pb->tick = false;
	pb->req_nr = dm_bio_get_target_bio_nr(bio);
	pb->all_io_entry = NULL;
757
	pb->len = 0;
J
Joe Thornber 已提交
758 759 760 761 762 763 764 765 766 767 768 769 770 771 772

	return pb;
}

/*----------------------------------------------------------------
 * Remapping
 *--------------------------------------------------------------*/
static void remap_to_origin(struct cache *cache, struct bio *bio)
{
	bio->bi_bdev = cache->origin_dev->bdev;
}

static void remap_to_cache(struct cache *cache, struct bio *bio,
			   dm_cblock_t cblock)
{
773
	sector_t bi_sector = bio->bi_iter.bi_sector;
774
	sector_t block = from_cblock(cblock);
J
Joe Thornber 已提交
775 776 777

	bio->bi_bdev = cache->cache_dev->bdev;
	if (!block_size_is_power_of_two(cache))
778
		bio->bi_iter.bi_sector =
779
			(block * cache->sectors_per_block) +
780
			sector_div(bi_sector, cache->sectors_per_block);
J
Joe Thornber 已提交
781
	else
782
		bio->bi_iter.bi_sector =
783
			(block << cache->sectors_per_block_shift) |
784
			(bi_sector & (cache->sectors_per_block - 1));
J
Joe Thornber 已提交
785 786 787 788 789
}

static void check_if_tick_bio_needed(struct cache *cache, struct bio *bio)
{
	unsigned long flags;
790 791
	size_t pb_data_size = get_per_bio_data_size(cache);
	struct per_bio_data *pb = get_per_bio_data(bio, pb_data_size);
J
Joe Thornber 已提交
792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807

	spin_lock_irqsave(&cache->lock, flags);
	if (cache->need_tick_bio &&
	    !(bio->bi_rw & (REQ_FUA | REQ_FLUSH | REQ_DISCARD))) {
		pb->tick = true;
		cache->need_tick_bio = false;
	}
	spin_unlock_irqrestore(&cache->lock, flags);
}

static void remap_to_origin_clear_discard(struct cache *cache, struct bio *bio,
				  dm_oblock_t oblock)
{
	check_if_tick_bio_needed(cache, bio);
	remap_to_origin(cache, bio);
	if (bio_data_dir(bio) == WRITE)
808
		clear_discard(cache, oblock_to_dblock(cache, oblock));
J
Joe Thornber 已提交
809 810 811 812 813
}

static void remap_to_cache_dirty(struct cache *cache, struct bio *bio,
				 dm_oblock_t oblock, dm_cblock_t cblock)
{
814
	check_if_tick_bio_needed(cache, bio);
J
Joe Thornber 已提交
815 816 817
	remap_to_cache(cache, bio, cblock);
	if (bio_data_dir(bio) == WRITE) {
		set_dirty(cache, oblock, cblock);
818
		clear_discard(cache, oblock_to_dblock(cache, oblock));
J
Joe Thornber 已提交
819 820 821 822 823
	}
}

static dm_oblock_t get_bio_block(struct cache *cache, struct bio *bio)
{
824
	sector_t block_nr = bio->bi_iter.bi_sector;
J
Joe Thornber 已提交
825 826 827 828 829 830 831 832 833 834 835 836 837 838

	if (!block_size_is_power_of_two(cache))
		(void) sector_div(block_nr, cache->sectors_per_block);
	else
		block_nr >>= cache->sectors_per_block_shift;

	return to_oblock(block_nr);
}

static int bio_triggers_commit(struct cache *cache, struct bio *bio)
{
	return bio->bi_rw & (REQ_FLUSH | REQ_FUA);
}

839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854
/*
 * You must increment the deferred set whilst the prison cell is held.  To
 * encourage this, we ask for 'cell' to be passed in.
 */
static void inc_ds(struct cache *cache, struct bio *bio,
		   struct dm_bio_prison_cell *cell)
{
	size_t pb_data_size = get_per_bio_data_size(cache);
	struct per_bio_data *pb = get_per_bio_data(bio, pb_data_size);

	BUG_ON(!cell);
	BUG_ON(pb->all_io_entry);

	pb->all_io_entry = dm_deferred_entry_inc(cache->all_io_ds);
}

855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885
static bool accountable_bio(struct cache *cache, struct bio *bio)
{
	return ((bio->bi_bdev == cache->origin_dev->bdev) &&
		!(bio->bi_rw & REQ_DISCARD));
}

static void accounted_begin(struct cache *cache, struct bio *bio)
{
	size_t pb_data_size = get_per_bio_data_size(cache);
	struct per_bio_data *pb = get_per_bio_data(bio, pb_data_size);

	if (accountable_bio(cache, bio)) {
		pb->len = bio_sectors(bio);
		iot_io_begin(&cache->origin_tracker, pb->len);
	}
}

static void accounted_complete(struct cache *cache, struct bio *bio)
{
	size_t pb_data_size = get_per_bio_data_size(cache);
	struct per_bio_data *pb = get_per_bio_data(bio, pb_data_size);

	iot_io_end(&cache->origin_tracker, pb->len);
}

static void accounted_request(struct cache *cache, struct bio *bio)
{
	accounted_begin(cache, bio);
	generic_make_request(bio);
}

J
Joe Thornber 已提交
886 887 888 889 890
static void issue(struct cache *cache, struct bio *bio)
{
	unsigned long flags;

	if (!bio_triggers_commit(cache, bio)) {
891
		accounted_request(cache, bio);
J
Joe Thornber 已提交
892 893 894 895 896 897 898 899 900 901 902 903 904
		return;
	}

	/*
	 * Batch together any bios that trigger commits and then issue a
	 * single commit for them in do_worker().
	 */
	spin_lock_irqsave(&cache->lock, flags);
	cache->commit_requested = true;
	bio_list_add(&cache->deferred_flush_bios, bio);
	spin_unlock_irqrestore(&cache->lock, flags);
}

905 906 907 908 909 910
static void inc_and_issue(struct cache *cache, struct bio *bio, struct dm_bio_prison_cell *cell)
{
	inc_ds(cache, bio, cell);
	issue(cache, bio);
}

911 912 913 914 915 916 917 918 919 920 921 922 923
static void defer_writethrough_bio(struct cache *cache, struct bio *bio)
{
	unsigned long flags;

	spin_lock_irqsave(&cache->lock, flags);
	bio_list_add(&cache->deferred_writethrough_bios, bio);
	spin_unlock_irqrestore(&cache->lock, flags);

	wake_worker(cache);
}

static void writethrough_endio(struct bio *bio, int err)
{
924
	struct per_bio_data *pb = get_per_bio_data(bio, PB_DATA_SIZE_WT);
925 926

	dm_unhook_bio(&pb->hook_info, bio);
927 928 929 930 931 932

	if (err) {
		bio_endio(bio, err);
		return;
	}

933
	dm_bio_restore(&pb->bio_details, bio);
934 935 936 937
	remap_to_cache(pb->cache, bio, pb->cblock);

	/*
	 * We can't issue this bio directly, since we're in interrupt
J
Joe Thornber 已提交
938
	 * context.  So it gets put on a bio list for processing by the
939 940 941 942 943 944 945 946 947 948 949 950 951 952
	 * worker thread.
	 */
	defer_writethrough_bio(pb->cache, bio);
}

/*
 * When running in writethrough mode we need to send writes to clean blocks
 * to both the cache and origin devices.  In future we'd like to clone the
 * bio and send them in parallel, but for now we're doing them in
 * series as this is easier.
 */
static void remap_to_origin_then_cache(struct cache *cache, struct bio *bio,
				       dm_oblock_t oblock, dm_cblock_t cblock)
{
953
	struct per_bio_data *pb = get_per_bio_data(bio, PB_DATA_SIZE_WT);
954 955 956

	pb->cache = cache;
	pb->cblock = cblock;
957
	dm_hook_bio(&pb->hook_info, bio, writethrough_endio, NULL);
958
	dm_bio_record(&pb->bio_details, bio);
959 960 961 962

	remap_to_origin_clear_discard(pb->cache, bio, oblock);
}

963 964 965 966 967 968 969 970
/*----------------------------------------------------------------
 * Failure modes
 *--------------------------------------------------------------*/
static enum cache_metadata_mode get_cache_mode(struct cache *cache)
{
	return cache->features.mode;
}

971 972 973 974 975
static const char *cache_device_name(struct cache *cache)
{
	return dm_device_name(dm_table_get_md(cache->ti->table));
}

976 977 978 979 980 981 982 983 984
static void notify_mode_switch(struct cache *cache, enum cache_metadata_mode mode)
{
	const char *descs[] = {
		"write",
		"read-only",
		"fail"
	};

	dm_table_event(cache->ti->table);
985 986
	DMINFO("%s: switching cache to %s mode",
	       cache_device_name(cache), descs[(int)mode]);
987 988 989 990 991 992 993 994
}

static void set_cache_mode(struct cache *cache, enum cache_metadata_mode new_mode)
{
	bool needs_check = dm_cache_metadata_needs_check(cache->cmd);
	enum cache_metadata_mode old_mode = get_cache_mode(cache);

	if (new_mode == CM_WRITE && needs_check) {
995 996
		DMERR("%s: unable to switch cache to write mode until repaired.",
		      cache_device_name(cache));
997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025
		if (old_mode != new_mode)
			new_mode = old_mode;
		else
			new_mode = CM_READ_ONLY;
	}

	/* Never move out of fail mode */
	if (old_mode == CM_FAIL)
		new_mode = CM_FAIL;

	switch (new_mode) {
	case CM_FAIL:
	case CM_READ_ONLY:
		dm_cache_metadata_set_read_only(cache->cmd);
		break;

	case CM_WRITE:
		dm_cache_metadata_set_read_write(cache->cmd);
		break;
	}

	cache->features.mode = new_mode;

	if (new_mode != old_mode)
		notify_mode_switch(cache, new_mode);
}

static void abort_transaction(struct cache *cache)
{
1026 1027
	const char *dev_name = cache_device_name(cache);

1028 1029 1030 1031
	if (get_cache_mode(cache) >= CM_READ_ONLY)
		return;

	if (dm_cache_metadata_set_needs_check(cache->cmd)) {
1032
		DMERR("%s: failed to set 'needs_check' flag in metadata", dev_name);
1033 1034 1035
		set_cache_mode(cache, CM_FAIL);
	}

1036
	DMERR_LIMIT("%s: aborting current metadata transaction", dev_name);
1037
	if (dm_cache_metadata_abort(cache->cmd)) {
1038
		DMERR("%s: failed to abort metadata transaction", dev_name);
1039 1040 1041 1042 1043 1044
		set_cache_mode(cache, CM_FAIL);
	}
}

static void metadata_operation_failed(struct cache *cache, const char *op, int r)
{
1045 1046
	DMERR_LIMIT("%s: metadata operation '%s' failed: error = %d",
		    cache_device_name(cache), op, r);
1047 1048 1049 1050
	abort_transaction(cache);
	set_cache_mode(cache, CM_READ_ONLY);
}

J
Joe Thornber 已提交
1051 1052 1053 1054 1055 1056
/*----------------------------------------------------------------
 * Migration processing
 *
 * Migration covers moving data from the origin device to the cache, or
 * vice versa.
 *--------------------------------------------------------------*/
1057
static void inc_io_migrations(struct cache *cache)
J
Joe Thornber 已提交
1058
{
1059
	atomic_inc(&cache->nr_io_migrations);
J
Joe Thornber 已提交
1060 1061
}

1062
static void dec_io_migrations(struct cache *cache)
J
Joe Thornber 已提交
1063
{
1064
	atomic_dec(&cache->nr_io_migrations);
J
Joe Thornber 已提交
1065 1066
}

J
Joe Thornber 已提交
1067 1068
static void __cell_release(struct cache *cache, struct dm_bio_prison_cell *cell,
			   bool holder, struct bio_list *bios)
J
Joe Thornber 已提交
1069 1070
{
	(holder ? dm_cell_release : dm_cell_release_no_holder)
J
Joe Thornber 已提交
1071
		(cache->prison, cell, bios);
J
Joe Thornber 已提交
1072 1073 1074
	free_prison_cell(cache, cell);
}

J
Joe Thornber 已提交
1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093
static bool discard_or_flush(struct bio *bio)
{
	return bio->bi_rw & (REQ_FLUSH | REQ_FUA | REQ_DISCARD);
}

static void __cell_defer(struct cache *cache, struct dm_bio_prison_cell *cell)
{
	if (discard_or_flush(cell->holder))
		/*
		 * We have to handle these bios
		 * individually.
		 */
		__cell_release(cache, cell, true, &cache->deferred_bios);

	else
		list_add_tail(&cell->user_list, &cache->deferred_cells);
}

static void cell_defer(struct cache *cache, struct dm_bio_prison_cell *cell, bool holder)
J
Joe Thornber 已提交
1094 1095 1096
{
	unsigned long flags;

J
Joe Thornber 已提交
1097 1098 1099 1100 1101 1102 1103 1104 1105
	if (!holder && dm_cell_promote_or_release(cache->prison, cell)) {
		/*
		 * There was no prisoner to promote to holder, the
		 * cell has been released.
		 */
		free_prison_cell(cache, cell);
		return;
	}

J
Joe Thornber 已提交
1106
	spin_lock_irqsave(&cache->lock, flags);
J
Joe Thornber 已提交
1107
	__cell_defer(cache, cell);
J
Joe Thornber 已提交
1108 1109 1110 1111 1112
	spin_unlock_irqrestore(&cache->lock, flags);

	wake_worker(cache);
}

J
Joe Thornber 已提交
1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123
static void cell_error_with_code(struct cache *cache, struct dm_bio_prison_cell *cell, int err)
{
	dm_cell_error(cache->prison, cell, err);
	dm_bio_prison_free_cell(cache->prison, cell);
}

static void cell_requeue(struct cache *cache, struct dm_bio_prison_cell *cell)
{
	cell_error_with_code(cache, cell, DM_ENDIO_REQUEUE);
}

1124
static void free_io_migration(struct dm_cache_migration *mg)
J
Joe Thornber 已提交
1125
{
1126
	dec_io_migrations(mg->cache);
J
Joe Thornber 已提交
1127 1128 1129 1130 1131 1132
	free_migration(mg);
}

static void migration_failure(struct dm_cache_migration *mg)
{
	struct cache *cache = mg->cache;
1133
	const char *dev_name = cache_device_name(cache);
J
Joe Thornber 已提交
1134 1135

	if (mg->writeback) {
1136
		DMERR_LIMIT("%s: writeback failed; couldn't copy block", dev_name);
J
Joe Thornber 已提交
1137 1138 1139 1140
		set_dirty(cache, mg->old_oblock, mg->cblock);
		cell_defer(cache, mg->old_ocell, false);

	} else if (mg->demote) {
1141
		DMERR_LIMIT("%s: demotion failed; couldn't copy block", dev_name);
J
Joe Thornber 已提交
1142 1143
		policy_force_mapping(cache->policy, mg->new_oblock, mg->old_oblock);

1144
		cell_defer(cache, mg->old_ocell, mg->promote ? false : true);
J
Joe Thornber 已提交
1145
		if (mg->promote)
1146
			cell_defer(cache, mg->new_ocell, true);
J
Joe Thornber 已提交
1147
	} else {
1148
		DMERR_LIMIT("%s: promotion failed; couldn't copy block", dev_name);
J
Joe Thornber 已提交
1149
		policy_remove_mapping(cache->policy, mg->new_oblock);
1150
		cell_defer(cache, mg->new_ocell, true);
J
Joe Thornber 已提交
1151 1152
	}

1153
	free_io_migration(mg);
J
Joe Thornber 已提交
1154 1155 1156 1157
}

static void migration_success_pre_commit(struct dm_cache_migration *mg)
{
1158
	int r;
J
Joe Thornber 已提交
1159 1160 1161 1162 1163
	unsigned long flags;
	struct cache *cache = mg->cache;

	if (mg->writeback) {
		clear_dirty(cache, mg->old_oblock, mg->cblock);
1164
		cell_defer(cache, mg->old_ocell, false);
1165
		free_io_migration(mg);
J
Joe Thornber 已提交
1166 1167 1168
		return;

	} else if (mg->demote) {
1169 1170
		r = dm_cache_remove_mapping(cache->cmd, mg->cblock);
		if (r) {
1171 1172
			DMERR_LIMIT("%s: demotion failed; couldn't update on disk metadata",
				    cache_device_name(cache));
1173
			metadata_operation_failed(cache, "dm_cache_remove_mapping", r);
J
Joe Thornber 已提交
1174 1175 1176 1177
			policy_force_mapping(cache->policy, mg->new_oblock,
					     mg->old_oblock);
			if (mg->promote)
				cell_defer(cache, mg->new_ocell, true);
1178
			free_io_migration(mg);
J
Joe Thornber 已提交
1179 1180 1181
			return;
		}
	} else {
1182 1183
		r = dm_cache_insert_mapping(cache->cmd, mg->cblock, mg->new_oblock);
		if (r) {
1184 1185
			DMERR_LIMIT("%s: promotion failed; couldn't update on disk metadata",
				    cache_device_name(cache));
1186
			metadata_operation_failed(cache, "dm_cache_insert_mapping", r);
J
Joe Thornber 已提交
1187
			policy_remove_mapping(cache->policy, mg->new_oblock);
1188
			free_io_migration(mg);
J
Joe Thornber 已提交
1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204
			return;
		}
	}

	spin_lock_irqsave(&cache->lock, flags);
	list_add_tail(&mg->list, &cache->need_commit_migrations);
	cache->commit_requested = true;
	spin_unlock_irqrestore(&cache->lock, flags);
}

static void migration_success_post_commit(struct dm_cache_migration *mg)
{
	unsigned long flags;
	struct cache *cache = mg->cache;

	if (mg->writeback) {
1205 1206
		DMWARN_LIMIT("%s: writeback unexpectedly triggered commit",
			     cache_device_name(cache));
J
Joe Thornber 已提交
1207 1208 1209
		return;

	} else if (mg->demote) {
1210
		cell_defer(cache, mg->old_ocell, mg->promote ? false : true);
J
Joe Thornber 已提交
1211 1212 1213 1214 1215 1216 1217 1218

		if (mg->promote) {
			mg->demote = false;

			spin_lock_irqsave(&cache->lock, flags);
			list_add_tail(&mg->list, &cache->quiesced_migrations);
			spin_unlock_irqrestore(&cache->lock, flags);

1219 1220 1221
		} else {
			if (mg->invalidate)
				policy_remove_mapping(cache->policy, mg->old_oblock);
1222
			free_io_migration(mg);
1223
		}
J
Joe Thornber 已提交
1224 1225

	} else {
1226 1227
		if (mg->requeue_holder) {
			clear_dirty(cache, mg->new_oblock, mg->cblock);
1228
			cell_defer(cache, mg->new_ocell, true);
1229 1230 1231 1232 1233
		} else {
			/*
			 * The block was promoted via an overwrite, so it's dirty.
			 */
			set_dirty(cache, mg->new_oblock, mg->cblock);
1234 1235 1236
			bio_endio(mg->new_ocell->holder, 0);
			cell_defer(cache, mg->new_ocell, false);
		}
1237
		free_io_migration(mg);
J
Joe Thornber 已提交
1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256
	}
}

static void copy_complete(int read_err, unsigned long write_err, void *context)
{
	unsigned long flags;
	struct dm_cache_migration *mg = (struct dm_cache_migration *) context;
	struct cache *cache = mg->cache;

	if (read_err || write_err)
		mg->err = true;

	spin_lock_irqsave(&cache->lock, flags);
	list_add_tail(&mg->list, &cache->completed_migrations);
	spin_unlock_irqrestore(&cache->lock, flags);

	wake_worker(cache);
}

J
Joe Thornber 已提交
1257
static void issue_copy(struct dm_cache_migration *mg)
J
Joe Thornber 已提交
1258 1259 1260 1261
{
	int r;
	struct dm_io_region o_region, c_region;
	struct cache *cache = mg->cache;
1262
	sector_t cblock = from_cblock(mg->cblock);
J
Joe Thornber 已提交
1263 1264 1265 1266 1267

	o_region.bdev = cache->origin_dev->bdev;
	o_region.count = cache->sectors_per_block;

	c_region.bdev = cache->cache_dev->bdev;
1268
	c_region.sector = cblock * cache->sectors_per_block;
J
Joe Thornber 已提交
1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280
	c_region.count = cache->sectors_per_block;

	if (mg->writeback || mg->demote) {
		/* demote */
		o_region.sector = from_oblock(mg->old_oblock) * cache->sectors_per_block;
		r = dm_kcopyd_copy(cache->copier, &c_region, 1, &o_region, 0, copy_complete, mg);
	} else {
		/* promote */
		o_region.sector = from_oblock(mg->new_oblock) * cache->sectors_per_block;
		r = dm_kcopyd_copy(cache->copier, &o_region, 1, &c_region, 0, copy_complete, mg);
	}

1281
	if (r < 0) {
1282
		DMERR_LIMIT("%s: issuing migration failed", cache_device_name(cache));
J
Joe Thornber 已提交
1283
		migration_failure(mg);
1284
	}
J
Joe Thornber 已提交
1285 1286
}

1287 1288 1289 1290 1291 1292 1293 1294
static void overwrite_endio(struct bio *bio, int err)
{
	struct dm_cache_migration *mg = bio->bi_private;
	struct cache *cache = mg->cache;
	size_t pb_data_size = get_per_bio_data_size(cache);
	struct per_bio_data *pb = get_per_bio_data(bio, pb_data_size);
	unsigned long flags;

1295 1296
	dm_unhook_bio(&pb->hook_info, bio);

1297 1298 1299
	if (err)
		mg->err = true;

1300 1301
	mg->requeue_holder = false;

1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315
	spin_lock_irqsave(&cache->lock, flags);
	list_add_tail(&mg->list, &cache->completed_migrations);
	spin_unlock_irqrestore(&cache->lock, flags);

	wake_worker(cache);
}

static void issue_overwrite(struct dm_cache_migration *mg, struct bio *bio)
{
	size_t pb_data_size = get_per_bio_data_size(mg->cache);
	struct per_bio_data *pb = get_per_bio_data(bio, pb_data_size);

	dm_hook_bio(&pb->hook_info, bio, overwrite_endio, mg);
	remap_to_cache_dirty(mg->cache, bio, mg->new_oblock, mg->cblock);
1316 1317 1318 1319 1320

	/*
	 * No need to inc_ds() here, since the cell will be held for the
	 * duration of the io.
	 */
1321
	accounted_request(mg->cache, bio);
1322 1323 1324 1325 1326
}

static bool bio_writes_complete_block(struct cache *cache, struct bio *bio)
{
	return (bio_data_dir(bio) == WRITE) &&
1327
		(bio->bi_iter.bi_size == (cache->sectors_per_block << SECTOR_SHIFT));
1328 1329
}

J
Joe Thornber 已提交
1330 1331 1332 1333 1334 1335
static void avoid_copy(struct dm_cache_migration *mg)
{
	atomic_inc(&mg->cache->stats.copies_avoided);
	migration_success_pre_commit(mg);
}

J
Joe Thornber 已提交
1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366
static void calc_discard_block_range(struct cache *cache, struct bio *bio,
				     dm_dblock_t *b, dm_dblock_t *e)
{
	sector_t sb = bio->bi_iter.bi_sector;
	sector_t se = bio_end_sector(bio);

	*b = to_dblock(dm_sector_div_up(sb, cache->discard_block_size));

	if (se - sb < cache->discard_block_size)
		*e = *b;
	else
		*e = to_dblock(block_div(se, cache->discard_block_size));
}

static void issue_discard(struct dm_cache_migration *mg)
{
	dm_dblock_t b, e;
	struct bio *bio = mg->new_ocell->holder;

	calc_discard_block_range(mg->cache, bio, &b, &e);
	while (b != e) {
		set_discard(mg->cache, b);
		b = to_dblock(from_dblock(b) + 1);
	}

	bio_endio(bio, 0);
	cell_defer(mg->cache, mg->new_ocell, false);
	free_migration(mg);
}

static void issue_copy_or_discard(struct dm_cache_migration *mg)
J
Joe Thornber 已提交
1367 1368 1369 1370
{
	bool avoid;
	struct cache *cache = mg->cache;

J
Joe Thornber 已提交
1371 1372 1373 1374 1375
	if (mg->discard) {
		issue_discard(mg);
		return;
	}

J
Joe Thornber 已提交
1376 1377 1378
	if (mg->writeback || mg->demote)
		avoid = !is_dirty(cache, mg->cblock) ||
			is_discarded_oblock(cache, mg->old_oblock);
1379 1380 1381
	else {
		struct bio *bio = mg->new_ocell->holder;

J
Joe Thornber 已提交
1382 1383
		avoid = is_discarded_oblock(cache, mg->new_oblock);

1384 1385
		if (writeback_mode(&cache->features) &&
		    !avoid && bio_writes_complete_block(cache, bio)) {
1386 1387 1388 1389 1390
			issue_overwrite(mg, bio);
			return;
		}
	}

J
Joe Thornber 已提交
1391
	avoid ? avoid_copy(mg) : issue_copy(mg);
J
Joe Thornber 已提交
1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456
}

static void complete_migration(struct dm_cache_migration *mg)
{
	if (mg->err)
		migration_failure(mg);
	else
		migration_success_pre_commit(mg);
}

static void process_migrations(struct cache *cache, struct list_head *head,
			       void (*fn)(struct dm_cache_migration *))
{
	unsigned long flags;
	struct list_head list;
	struct dm_cache_migration *mg, *tmp;

	INIT_LIST_HEAD(&list);
	spin_lock_irqsave(&cache->lock, flags);
	list_splice_init(head, &list);
	spin_unlock_irqrestore(&cache->lock, flags);

	list_for_each_entry_safe(mg, tmp, &list, list)
		fn(mg);
}

static void __queue_quiesced_migration(struct dm_cache_migration *mg)
{
	list_add_tail(&mg->list, &mg->cache->quiesced_migrations);
}

static void queue_quiesced_migration(struct dm_cache_migration *mg)
{
	unsigned long flags;
	struct cache *cache = mg->cache;

	spin_lock_irqsave(&cache->lock, flags);
	__queue_quiesced_migration(mg);
	spin_unlock_irqrestore(&cache->lock, flags);

	wake_worker(cache);
}

static void queue_quiesced_migrations(struct cache *cache, struct list_head *work)
{
	unsigned long flags;
	struct dm_cache_migration *mg, *tmp;

	spin_lock_irqsave(&cache->lock, flags);
	list_for_each_entry_safe(mg, tmp, work, list)
		__queue_quiesced_migration(mg);
	spin_unlock_irqrestore(&cache->lock, flags);

	wake_worker(cache);
}

static void check_for_quiesced_migrations(struct cache *cache,
					  struct per_bio_data *pb)
{
	struct list_head work;

	if (!pb->all_io_entry)
		return;

	INIT_LIST_HEAD(&work);
1457
	dm_deferred_entry_dec(pb->all_io_entry, &work);
J
Joe Thornber 已提交
1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475

	if (!list_empty(&work))
		queue_quiesced_migrations(cache, &work);
}

static void quiesce_migration(struct dm_cache_migration *mg)
{
	if (!dm_deferred_set_add_work(mg->cache->all_io_ds, &mg->list))
		queue_quiesced_migration(mg);
}

static void promote(struct cache *cache, struct prealloc *structs,
		    dm_oblock_t oblock, dm_cblock_t cblock,
		    struct dm_bio_prison_cell *cell)
{
	struct dm_cache_migration *mg = prealloc_get_migration(structs);

	mg->err = false;
J
Joe Thornber 已提交
1476
	mg->discard = false;
J
Joe Thornber 已提交
1477 1478 1479
	mg->writeback = false;
	mg->demote = false;
	mg->promote = true;
1480
	mg->requeue_holder = true;
1481
	mg->invalidate = false;
J
Joe Thornber 已提交
1482 1483 1484 1485 1486 1487 1488
	mg->cache = cache;
	mg->new_oblock = oblock;
	mg->cblock = cblock;
	mg->old_ocell = NULL;
	mg->new_ocell = cell;
	mg->start_jiffies = jiffies;

1489
	inc_io_migrations(cache);
J
Joe Thornber 已提交
1490 1491 1492 1493 1494 1495 1496 1497 1498 1499
	quiesce_migration(mg);
}

static void writeback(struct cache *cache, struct prealloc *structs,
		      dm_oblock_t oblock, dm_cblock_t cblock,
		      struct dm_bio_prison_cell *cell)
{
	struct dm_cache_migration *mg = prealloc_get_migration(structs);

	mg->err = false;
J
Joe Thornber 已提交
1500
	mg->discard = false;
J
Joe Thornber 已提交
1501 1502 1503
	mg->writeback = true;
	mg->demote = false;
	mg->promote = false;
1504
	mg->requeue_holder = true;
1505
	mg->invalidate = false;
J
Joe Thornber 已提交
1506 1507 1508 1509 1510 1511 1512
	mg->cache = cache;
	mg->old_oblock = oblock;
	mg->cblock = cblock;
	mg->old_ocell = cell;
	mg->new_ocell = NULL;
	mg->start_jiffies = jiffies;

1513
	inc_io_migrations(cache);
J
Joe Thornber 已提交
1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525
	quiesce_migration(mg);
}

static void demote_then_promote(struct cache *cache, struct prealloc *structs,
				dm_oblock_t old_oblock, dm_oblock_t new_oblock,
				dm_cblock_t cblock,
				struct dm_bio_prison_cell *old_ocell,
				struct dm_bio_prison_cell *new_ocell)
{
	struct dm_cache_migration *mg = prealloc_get_migration(structs);

	mg->err = false;
J
Joe Thornber 已提交
1526
	mg->discard = false;
J
Joe Thornber 已提交
1527 1528 1529
	mg->writeback = false;
	mg->demote = true;
	mg->promote = true;
1530
	mg->requeue_holder = true;
1531
	mg->invalidate = false;
J
Joe Thornber 已提交
1532 1533 1534 1535 1536 1537 1538 1539
	mg->cache = cache;
	mg->old_oblock = old_oblock;
	mg->new_oblock = new_oblock;
	mg->cblock = cblock;
	mg->old_ocell = old_ocell;
	mg->new_ocell = new_ocell;
	mg->start_jiffies = jiffies;

1540
	inc_io_migrations(cache);
J
Joe Thornber 已提交
1541 1542 1543
	quiesce_migration(mg);
}

J
Joe Thornber 已提交
1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554
/*
 * Invalidate a cache entry.  No writeback occurs; any changes in the cache
 * block are thrown away.
 */
static void invalidate(struct cache *cache, struct prealloc *structs,
		       dm_oblock_t oblock, dm_cblock_t cblock,
		       struct dm_bio_prison_cell *cell)
{
	struct dm_cache_migration *mg = prealloc_get_migration(structs);

	mg->err = false;
J
Joe Thornber 已提交
1555
	mg->discard = false;
J
Joe Thornber 已提交
1556 1557 1558 1559
	mg->writeback = false;
	mg->demote = true;
	mg->promote = false;
	mg->requeue_holder = true;
1560
	mg->invalidate = true;
J
Joe Thornber 已提交
1561 1562 1563 1564 1565 1566 1567
	mg->cache = cache;
	mg->old_oblock = oblock;
	mg->cblock = cblock;
	mg->old_ocell = cell;
	mg->new_ocell = NULL;
	mg->start_jiffies = jiffies;

1568
	inc_io_migrations(cache);
J
Joe Thornber 已提交
1569 1570 1571
	quiesce_migration(mg);
}

J
Joe Thornber 已提交
1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591
static void discard(struct cache *cache, struct prealloc *structs,
		    struct dm_bio_prison_cell *cell)
{
	struct dm_cache_migration *mg = prealloc_get_migration(structs);

	mg->err = false;
	mg->discard = true;
	mg->writeback = false;
	mg->demote = false;
	mg->promote = false;
	mg->requeue_holder = false;
	mg->invalidate = false;
	mg->cache = cache;
	mg->old_ocell = NULL;
	mg->new_ocell = cell;
	mg->start_jiffies = jiffies;

	quiesce_migration(mg);
}

J
Joe Thornber 已提交
1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607
/*----------------------------------------------------------------
 * bio processing
 *--------------------------------------------------------------*/
static void defer_bio(struct cache *cache, struct bio *bio)
{
	unsigned long flags;

	spin_lock_irqsave(&cache->lock, flags);
	bio_list_add(&cache->deferred_bios, bio);
	spin_unlock_irqrestore(&cache->lock, flags);

	wake_worker(cache);
}

static void process_flush_bio(struct cache *cache, struct bio *bio)
{
1608 1609
	size_t pb_data_size = get_per_bio_data_size(cache);
	struct per_bio_data *pb = get_per_bio_data(bio, pb_data_size);
J
Joe Thornber 已提交
1610

1611
	BUG_ON(bio->bi_iter.bi_size);
J
Joe Thornber 已提交
1612 1613 1614 1615 1616
	if (!pb->req_nr)
		remap_to_origin(cache, bio);
	else
		remap_to_cache(cache, bio, 0);

1617 1618 1619 1620 1621
	/*
	 * REQ_FLUSH is not directed at any particular block so we don't
	 * need to inc_ds().  REQ_FUA's are split into a write + REQ_FLUSH
	 * by dm-core.
	 */
J
Joe Thornber 已提交
1622 1623 1624
	issue(cache, bio);
}

J
Joe Thornber 已提交
1625 1626
static void process_discard_bio(struct cache *cache, struct prealloc *structs,
				struct bio *bio)
J
Joe Thornber 已提交
1627
{
J
Joe Thornber 已提交
1628 1629 1630
	int r;
	dm_dblock_t b, e;
	struct dm_bio_prison_cell *cell_prealloc, *new_ocell;
J
Joe Thornber 已提交
1631

J
Joe Thornber 已提交
1632 1633 1634 1635 1636
	calc_discard_block_range(cache, bio, &b, &e);
	if (b == e) {
		bio_endio(bio, 0);
		return;
	}
J
Joe Thornber 已提交
1637

J
Joe Thornber 已提交
1638 1639 1640 1641 1642 1643
	cell_prealloc = prealloc_get_cell(structs);
	r = bio_detain_range(cache, dblock_to_oblock(cache, b), dblock_to_oblock(cache, e), bio, cell_prealloc,
			     (cell_free_fn) prealloc_put_cell,
			     structs, &new_ocell);
	if (r > 0)
		return;
J
Joe Thornber 已提交
1644

J
Joe Thornber 已提交
1645
	discard(cache, structs, new_ocell);
J
Joe Thornber 已提交
1646 1647 1648 1649
}

static bool spare_migration_bandwidth(struct cache *cache)
{
1650
	sector_t current_volume = (atomic_read(&cache->nr_io_migrations) + 1) *
J
Joe Thornber 已提交
1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666
		cache->sectors_per_block;
	return current_volume < cache->migration_threshold;
}

static void inc_hit_counter(struct cache *cache, struct bio *bio)
{
	atomic_inc(bio_data_dir(bio) == READ ?
		   &cache->stats.read_hit : &cache->stats.write_hit);
}

static void inc_miss_counter(struct cache *cache, struct bio *bio)
{
	atomic_inc(bio_data_dir(bio) == READ ?
		   &cache->stats.read_miss : &cache->stats.write_miss);
}

1667 1668
/*----------------------------------------------------------------*/

J
Joe Thornber 已提交
1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 1708 1709 1710 1711 1712 1713 1714 1715 1716 1717 1718 1719 1720 1721 1722 1723 1724 1725 1726 1727 1728 1729 1730 1731 1732 1733 1734 1735 1736 1737 1738 1739 1740 1741 1742 1743 1744 1745 1746 1747 1748 1749 1750 1751 1752 1753 1754 1755 1756 1757 1758 1759 1760 1761 1762 1763 1764 1765 1766 1767 1768 1769
struct inc_detail {
	struct cache *cache;
	struct bio_list bios_for_issue;
	struct bio_list unhandled_bios;
	bool any_writes;
};

static void inc_fn(void *context, struct dm_bio_prison_cell *cell)
{
	struct bio *bio;
	struct inc_detail *detail = context;
	struct cache *cache = detail->cache;

	inc_ds(cache, cell->holder, cell);
	if (bio_data_dir(cell->holder) == WRITE)
		detail->any_writes = true;

	while ((bio = bio_list_pop(&cell->bios))) {
		if (discard_or_flush(bio)) {
			bio_list_add(&detail->unhandled_bios, bio);
			continue;
		}

		if (bio_data_dir(bio) == WRITE)
			detail->any_writes = true;

		bio_list_add(&detail->bios_for_issue, bio);
		inc_ds(cache, bio, cell);
	}
}

// FIXME: refactor these two
static void remap_cell_to_origin_clear_discard(struct cache *cache,
					       struct dm_bio_prison_cell *cell,
					       dm_oblock_t oblock, bool issue_holder)
{
	struct bio *bio;
	unsigned long flags;
	struct inc_detail detail;

	detail.cache = cache;
	bio_list_init(&detail.bios_for_issue);
	bio_list_init(&detail.unhandled_bios);
	detail.any_writes = false;

	spin_lock_irqsave(&cache->lock, flags);
	dm_cell_visit_release(cache->prison, inc_fn, &detail, cell);
	bio_list_merge(&cache->deferred_bios, &detail.unhandled_bios);
	spin_unlock_irqrestore(&cache->lock, flags);

	remap_to_origin(cache, cell->holder);
	if (issue_holder)
		issue(cache, cell->holder);
	else
		accounted_begin(cache, cell->holder);

	if (detail.any_writes)
		clear_discard(cache, oblock_to_dblock(cache, oblock));

	while ((bio = bio_list_pop(&detail.bios_for_issue))) {
		remap_to_origin(cache, bio);
		issue(cache, bio);
	}
}

static void remap_cell_to_cache_dirty(struct cache *cache, struct dm_bio_prison_cell *cell,
				      dm_oblock_t oblock, dm_cblock_t cblock, bool issue_holder)
{
	struct bio *bio;
	unsigned long flags;
	struct inc_detail detail;

	detail.cache = cache;
	bio_list_init(&detail.bios_for_issue);
	bio_list_init(&detail.unhandled_bios);
	detail.any_writes = false;

	spin_lock_irqsave(&cache->lock, flags);
	dm_cell_visit_release(cache->prison, inc_fn, &detail, cell);
	bio_list_merge(&cache->deferred_bios, &detail.unhandled_bios);
	spin_unlock_irqrestore(&cache->lock, flags);

	remap_to_cache(cache, cell->holder, cblock);
	if (issue_holder)
		issue(cache, cell->holder);
	else
		accounted_begin(cache, cell->holder);

	if (detail.any_writes) {
		set_dirty(cache, oblock, cblock);
		clear_discard(cache, oblock_to_dblock(cache, oblock));
	}

	while ((bio = bio_list_pop(&detail.bios_for_issue))) {
		remap_to_cache(cache, bio, cblock);
		issue(cache, bio);
	}
}

/*----------------------------------------------------------------*/

1770 1771 1772 1773 1774 1775 1776 1777 1778 1779 1780 1781 1782 1783 1784 1785 1786 1787 1788 1789 1790 1791 1792 1793
struct old_oblock_lock {
	struct policy_locker locker;
	struct cache *cache;
	struct prealloc *structs;
	struct dm_bio_prison_cell *cell;
};

static int null_locker(struct policy_locker *locker, dm_oblock_t b)
{
	/* This should never be called */
	BUG();
	return 0;
}

static int cell_locker(struct policy_locker *locker, dm_oblock_t b)
{
	struct old_oblock_lock *l = container_of(locker, struct old_oblock_lock, locker);
	struct dm_bio_prison_cell *cell_prealloc = prealloc_get_cell(l->structs);

	return bio_detain(l->cache, b, NULL, cell_prealloc,
			  (cell_free_fn) prealloc_put_cell,
			  l->structs, &l->cell);
}

J
Joe Thornber 已提交
1794 1795
static void process_cell(struct cache *cache, struct prealloc *structs,
			 struct dm_bio_prison_cell *new_ocell)
J
Joe Thornber 已提交
1796 1797 1798
{
	int r;
	bool release_cell = true;
J
Joe Thornber 已提交
1799
	struct bio *bio = new_ocell->holder;
J
Joe Thornber 已提交
1800 1801
	dm_oblock_t block = get_bio_block(cache, bio);
	struct policy_result lookup_result;
J
Joe Thornber 已提交
1802
	bool passthrough = passthrough_mode(&cache->features);
1803
	bool fast_promotion, can_migrate;
1804
	struct old_oblock_lock ool;
J
Joe Thornber 已提交
1805

1806 1807
	fast_promotion = is_discarded_oblock(cache, block) || bio_writes_complete_block(cache, bio);
	can_migrate = !passthrough && (fast_promotion || spare_migration_bandwidth(cache));
1808

1809 1810 1811 1812
	ool.locker.fn = cell_locker;
	ool.cache = cache;
	ool.structs = structs;
	ool.cell = NULL;
1813
	r = policy_map(cache->policy, block, true, can_migrate, fast_promotion,
1814
		       bio, &ool.locker, &lookup_result);
J
Joe Thornber 已提交
1815 1816 1817 1818 1819 1820 1821

	if (r == -EWOULDBLOCK)
		/* migration has been denied */
		lookup_result.op = POLICY_MISS;

	switch (lookup_result.op) {
	case POLICY_HIT:
J
Joe Thornber 已提交
1822 1823
		if (passthrough) {
			inc_miss_counter(cache, bio);
J
Joe Thornber 已提交
1824

J
Joe Thornber 已提交
1825 1826 1827 1828 1829 1830 1831 1832 1833 1834 1835 1836 1837 1838
			/*
			 * Passthrough always maps to the origin,
			 * invalidating any cache blocks that are written
			 * to.
			 */

			if (bio_data_dir(bio) == WRITE) {
				atomic_inc(&cache->stats.demotion);
				invalidate(cache, structs, block, lookup_result.cblock, new_ocell);
				release_cell = false;

			} else {
				/* FIXME: factor out issue_origin() */
				remap_to_origin_clear_discard(cache, bio, block);
1839
				inc_and_issue(cache, bio, new_ocell);
J
Joe Thornber 已提交
1840 1841 1842 1843 1844 1845 1846 1847
			}
		} else {
			inc_hit_counter(cache, bio);

			if (bio_data_dir(bio) == WRITE &&
			    writethrough_mode(&cache->features) &&
			    !is_dirty(cache, lookup_result.cblock)) {
				remap_to_origin_then_cache(cache, bio, block, lookup_result.cblock);
1848 1849
				inc_and_issue(cache, bio, new_ocell);

J
Joe Thornber 已提交
1850 1851 1852
			} else {
				remap_cell_to_cache_dirty(cache, new_ocell, block, lookup_result.cblock, true);
				release_cell = false;
1853
			}
J
Joe Thornber 已提交
1854
		}
J
Joe Thornber 已提交
1855 1856 1857 1858 1859

		break;

	case POLICY_MISS:
		inc_miss_counter(cache, bio);
J
Joe Thornber 已提交
1860 1861
		remap_cell_to_origin_clear_discard(cache, new_ocell, block, true);
		release_cell = false;
J
Joe Thornber 已提交
1862 1863 1864 1865 1866 1867 1868 1869 1870 1871 1872 1873 1874
		break;

	case POLICY_NEW:
		atomic_inc(&cache->stats.promotion);
		promote(cache, structs, block, lookup_result.cblock, new_ocell);
		release_cell = false;
		break;

	case POLICY_REPLACE:
		atomic_inc(&cache->stats.demotion);
		atomic_inc(&cache->stats.promotion);
		demote_then_promote(cache, structs, lookup_result.old_oblock,
				    block, lookup_result.cblock,
1875
				    ool.cell, new_ocell);
J
Joe Thornber 已提交
1876 1877 1878 1879
		release_cell = false;
		break;

	default:
1880 1881
		DMERR_LIMIT("%s: %s: erroring bio, unknown policy op: %u",
			    cache_device_name(cache), __func__,
J
Joe Thornber 已提交
1882 1883 1884 1885 1886 1887 1888 1889
			    (unsigned) lookup_result.op);
		bio_io_error(bio);
	}

	if (release_cell)
		cell_defer(cache, new_ocell, false);
}

J
Joe Thornber 已提交
1890 1891 1892 1893 1894 1895 1896 1897 1898 1899 1900 1901 1902 1903 1904 1905 1906 1907 1908 1909
static void process_bio(struct cache *cache, struct prealloc *structs,
			struct bio *bio)
{
	int r;
	dm_oblock_t block = get_bio_block(cache, bio);
	struct dm_bio_prison_cell *cell_prealloc, *new_ocell;

	/*
	 * Check to see if that block is currently migrating.
	 */
	cell_prealloc = prealloc_get_cell(structs);
	r = bio_detain(cache, block, bio, cell_prealloc,
		       (cell_free_fn) prealloc_put_cell,
		       structs, &new_ocell);
	if (r > 0)
		return;

	process_cell(cache, structs, new_ocell);
}

J
Joe Thornber 已提交
1910 1911
static int need_commit_due_to_time(struct cache *cache)
{
J
Joe Thornber 已提交
1912 1913
	return jiffies < cache->last_commit_jiffies ||
	       jiffies > cache->last_commit_jiffies + COMMIT_PERIOD;
J
Joe Thornber 已提交
1914 1915
}

1916 1917 1918 1919 1920 1921 1922 1923 1924 1925 1926 1927 1928 1929 1930 1931 1932 1933
/*
 * A non-zero return indicates read_only or fail_io mode.
 */
static int commit(struct cache *cache, bool clean_shutdown)
{
	int r;

	if (get_cache_mode(cache) >= CM_READ_ONLY)
		return -EINVAL;

	atomic_inc(&cache->stats.commit_count);
	r = dm_cache_commit(cache->cmd, clean_shutdown);
	if (r)
		metadata_operation_failed(cache, "dm_cache_commit", r);

	return r;
}

J
Joe Thornber 已提交
1934 1935
static int commit_if_needed(struct cache *cache)
{
1936 1937 1938 1939
	int r = 0;

	if ((cache->commit_requested || need_commit_due_to_time(cache)) &&
	    dm_cache_changed_this_transaction(cache->cmd)) {
1940
		r = commit(cache, false);
J
Joe Thornber 已提交
1941
		cache->commit_requested = false;
1942
		cache->last_commit_jiffies = jiffies;
J
Joe Thornber 已提交
1943 1944
	}

1945
	return r;
J
Joe Thornber 已提交
1946 1947 1948 1949 1950 1951 1952 1953 1954 1955 1956 1957 1958 1959 1960 1961 1962 1963 1964 1965 1966 1967 1968 1969 1970 1971 1972 1973 1974 1975 1976 1977 1978 1979 1980
}

static void process_deferred_bios(struct cache *cache)
{
	unsigned long flags;
	struct bio_list bios;
	struct bio *bio;
	struct prealloc structs;

	memset(&structs, 0, sizeof(structs));
	bio_list_init(&bios);

	spin_lock_irqsave(&cache->lock, flags);
	bio_list_merge(&bios, &cache->deferred_bios);
	bio_list_init(&cache->deferred_bios);
	spin_unlock_irqrestore(&cache->lock, flags);

	while (!bio_list_empty(&bios)) {
		/*
		 * If we've got no free migration structs, and processing
		 * this bio might require one, we pause until there are some
		 * prepared mappings to process.
		 */
		if (prealloc_data_structs(cache, &structs)) {
			spin_lock_irqsave(&cache->lock, flags);
			bio_list_merge(&cache->deferred_bios, &bios);
			spin_unlock_irqrestore(&cache->lock, flags);
			break;
		}

		bio = bio_list_pop(&bios);

		if (bio->bi_rw & REQ_FLUSH)
			process_flush_bio(cache, bio);
		else if (bio->bi_rw & REQ_DISCARD)
J
Joe Thornber 已提交
1981
			process_discard_bio(cache, &structs, bio);
J
Joe Thornber 已提交
1982 1983 1984 1985 1986 1987 1988
		else
			process_bio(cache, &structs, bio);
	}

	prealloc_free_structs(cache, &structs);
}

J
Joe Thornber 已提交
1989 1990 1991 1992 1993 1994 1995 1996 1997 1998 1999 2000 2001 2002 2003 2004 2005 2006 2007 2008 2009 2010 2011 2012 2013 2014 2015 2016 2017 2018 2019 2020 2021 2022
static void process_deferred_cells(struct cache *cache)
{
	unsigned long flags;
	struct dm_bio_prison_cell *cell, *tmp;
	struct list_head cells;
	struct prealloc structs;

	memset(&structs, 0, sizeof(structs));

	INIT_LIST_HEAD(&cells);

	spin_lock_irqsave(&cache->lock, flags);
	list_splice_init(&cache->deferred_cells, &cells);
	spin_unlock_irqrestore(&cache->lock, flags);

	list_for_each_entry_safe(cell, tmp, &cells, user_list) {
		/*
		 * If we've got no free migration structs, and processing
		 * this bio might require one, we pause until there are some
		 * prepared mappings to process.
		 */
		if (prealloc_data_structs(cache, &structs)) {
			spin_lock_irqsave(&cache->lock, flags);
			list_splice(&cells, &cache->deferred_cells);
			spin_unlock_irqrestore(&cache->lock, flags);
			break;
		}

		process_cell(cache, &structs, cell);
	}

	prealloc_free_structs(cache, &structs);
}

J
Joe Thornber 已提交
2023 2024 2025 2026 2027 2028 2029 2030 2031 2032 2033 2034 2035
static void process_deferred_flush_bios(struct cache *cache, bool submit_bios)
{
	unsigned long flags;
	struct bio_list bios;
	struct bio *bio;

	bio_list_init(&bios);

	spin_lock_irqsave(&cache->lock, flags);
	bio_list_merge(&bios, &cache->deferred_flush_bios);
	bio_list_init(&cache->deferred_flush_bios);
	spin_unlock_irqrestore(&cache->lock, flags);

2036 2037 2038
	/*
	 * These bios have already been through inc_ds()
	 */
J
Joe Thornber 已提交
2039
	while ((bio = bio_list_pop(&bios)))
2040
		submit_bios ? accounted_request(cache, bio) : bio_io_error(bio);
J
Joe Thornber 已提交
2041 2042
}

2043 2044 2045 2046 2047 2048 2049 2050 2051 2052 2053 2054 2055
static void process_deferred_writethrough_bios(struct cache *cache)
{
	unsigned long flags;
	struct bio_list bios;
	struct bio *bio;

	bio_list_init(&bios);

	spin_lock_irqsave(&cache->lock, flags);
	bio_list_merge(&bios, &cache->deferred_writethrough_bios);
	bio_list_init(&cache->deferred_writethrough_bios);
	spin_unlock_irqrestore(&cache->lock, flags);

2056 2057 2058
	/*
	 * These bios have already been through inc_ds()
	 */
2059
	while ((bio = bio_list_pop(&bios)))
2060
		accounted_request(cache, bio);
2061 2062
}

J
Joe Thornber 已提交
2063 2064 2065 2066 2067 2068 2069
static void writeback_some_dirty_blocks(struct cache *cache)
{
	int r = 0;
	dm_oblock_t oblock;
	dm_cblock_t cblock;
	struct prealloc structs;
	struct dm_bio_prison_cell *old_ocell;
2070
	bool busy = !iot_idle_for(&cache->origin_tracker, HZ);
J
Joe Thornber 已提交
2071 2072 2073 2074 2075 2076 2077

	memset(&structs, 0, sizeof(structs));

	while (spare_migration_bandwidth(cache)) {
		if (prealloc_data_structs(cache, &structs))
			break;

2078
		r = policy_writeback_work(cache->policy, &oblock, &cblock, busy);
J
Joe Thornber 已提交
2079 2080 2081 2082 2083 2084 2085 2086 2087 2088 2089 2090 2091 2092 2093
		if (r)
			break;

		r = get_cell(cache, oblock, &structs, &old_ocell);
		if (r) {
			policy_set_dirty(cache->policy, oblock);
			break;
		}

		writeback(cache, &structs, oblock, cblock, old_ocell);
	}

	prealloc_free_structs(cache, &structs);
}

2094 2095 2096 2097 2098 2099 2100 2101 2102 2103 2104 2105 2106 2107 2108
/*----------------------------------------------------------------
 * Invalidations.
 * Dropping something from the cache *without* writing back.
 *--------------------------------------------------------------*/

static void process_invalidation_request(struct cache *cache, struct invalidation_request *req)
{
	int r = 0;
	uint64_t begin = from_cblock(req->cblocks->begin);
	uint64_t end = from_cblock(req->cblocks->end);

	while (begin != end) {
		r = policy_remove_cblock(cache->policy, to_cblock(begin));
		if (!r) {
			r = dm_cache_remove_mapping(cache->cmd, to_cblock(begin));
2109 2110
			if (r) {
				metadata_operation_failed(cache, "dm_cache_remove_mapping", r);
2111
				break;
2112
			}
2113 2114 2115 2116 2117 2118

		} else if (r == -ENODATA) {
			/* harmless, already unmapped */
			r = 0;

		} else {
2119
			DMERR("%s: policy_remove_cblock failed", cache_device_name(cache));
2120 2121 2122 2123 2124 2125 2126 2127 2128 2129 2130 2131 2132 2133 2134 2135 2136 2137 2138 2139 2140 2141 2142 2143 2144 2145 2146 2147
			break;
		}

		begin++;
        }

	cache->commit_requested = true;

	req->err = r;
	atomic_set(&req->complete, 1);

	wake_up(&req->result_wait);
}

static void process_invalidation_requests(struct cache *cache)
{
	struct list_head list;
	struct invalidation_request *req, *tmp;

	INIT_LIST_HEAD(&list);
	spin_lock(&cache->invalidation_lock);
	list_splice_init(&cache->invalidation_requests, &list);
	spin_unlock(&cache->invalidation_lock);

	list_for_each_entry_safe (req, tmp, &list, list)
		process_invalidation_request(cache, req);
}

J
Joe Thornber 已提交
2148 2149 2150
/*----------------------------------------------------------------
 * Main worker loop
 *--------------------------------------------------------------*/
2151
static bool is_quiescing(struct cache *cache)
J
Joe Thornber 已提交
2152
{
2153
	return atomic_read(&cache->quiescing);
J
Joe Thornber 已提交
2154 2155
}

2156 2157 2158 2159 2160 2161 2162 2163 2164 2165 2166 2167 2168 2169
static void ack_quiescing(struct cache *cache)
{
	if (is_quiescing(cache)) {
		atomic_inc(&cache->quiescing_ack);
		wake_up(&cache->quiescing_wait);
	}
}

static void wait_for_quiescing_ack(struct cache *cache)
{
	wait_event(cache->quiescing_wait, atomic_read(&cache->quiescing_ack));
}

static void start_quiescing(struct cache *cache)
J
Joe Thornber 已提交
2170
{
2171
	atomic_inc(&cache->quiescing);
2172
	wait_for_quiescing_ack(cache);
J
Joe Thornber 已提交
2173 2174
}

2175
static void stop_quiescing(struct cache *cache)
J
Joe Thornber 已提交
2176
{
2177
	atomic_set(&cache->quiescing, 0);
2178
	atomic_set(&cache->quiescing_ack, 0);
J
Joe Thornber 已提交
2179 2180 2181 2182
}

static void wait_for_migrations(struct cache *cache)
{
2183
	wait_event(cache->migration_wait, !atomic_read(&cache->nr_allocated_migrations));
J
Joe Thornber 已提交
2184 2185 2186 2187 2188 2189 2190 2191
}

static void stop_worker(struct cache *cache)
{
	cancel_delayed_work(&cache->waker);
	flush_workqueue(cache->wq);
}

J
Joe Thornber 已提交
2192 2193 2194 2195 2196 2197 2198 2199 2200 2201 2202 2203 2204 2205 2206 2207
static void requeue_deferred_cells(struct cache *cache)
{
	unsigned long flags;
	struct list_head cells;
	struct dm_bio_prison_cell *cell, *tmp;

	INIT_LIST_HEAD(&cells);
	spin_lock_irqsave(&cache->lock, flags);
	list_splice_init(&cache->deferred_cells, &cells);
	spin_unlock_irqrestore(&cache->lock, flags);

	list_for_each_entry_safe(cell, tmp, &cells, user_list)
		cell_requeue(cache, cell);
}

static void requeue_deferred_bios(struct cache *cache)
J
Joe Thornber 已提交
2208 2209 2210 2211 2212 2213 2214 2215 2216 2217 2218 2219 2220 2221 2222 2223 2224 2225 2226 2227
{
	struct bio *bio;
	struct bio_list bios;

	bio_list_init(&bios);
	bio_list_merge(&bios, &cache->deferred_bios);
	bio_list_init(&cache->deferred_bios);

	while ((bio = bio_list_pop(&bios)))
		bio_endio(bio, DM_ENDIO_REQUEUE);
}

static int more_work(struct cache *cache)
{
	if (is_quiescing(cache))
		return !list_empty(&cache->quiesced_migrations) ||
			!list_empty(&cache->completed_migrations) ||
			!list_empty(&cache->need_commit_migrations);
	else
		return !bio_list_empty(&cache->deferred_bios) ||
J
Joe Thornber 已提交
2228
			!list_empty(&cache->deferred_cells) ||
J
Joe Thornber 已提交
2229
			!bio_list_empty(&cache->deferred_flush_bios) ||
2230
			!bio_list_empty(&cache->deferred_writethrough_bios) ||
J
Joe Thornber 已提交
2231 2232
			!list_empty(&cache->quiesced_migrations) ||
			!list_empty(&cache->completed_migrations) ||
2233 2234
			!list_empty(&cache->need_commit_migrations) ||
			cache->invalidate;
J
Joe Thornber 已提交
2235 2236 2237 2238 2239 2240 2241
}

static void do_worker(struct work_struct *ws)
{
	struct cache *cache = container_of(ws, struct cache, worker);

	do {
2242 2243 2244
		if (!is_quiescing(cache)) {
			writeback_some_dirty_blocks(cache);
			process_deferred_writethrough_bios(cache);
J
Joe Thornber 已提交
2245
			process_deferred_bios(cache);
J
Joe Thornber 已提交
2246
			process_deferred_cells(cache);
2247
			process_invalidation_requests(cache);
2248
		}
J
Joe Thornber 已提交
2249

J
Joe Thornber 已提交
2250
		process_migrations(cache, &cache->quiesced_migrations, issue_copy_or_discard);
J
Joe Thornber 已提交
2251 2252 2253 2254
		process_migrations(cache, &cache->completed_migrations, complete_migration);

		if (commit_if_needed(cache)) {
			process_deferred_flush_bios(cache, false);
2255
			process_migrations(cache, &cache->need_commit_migrations, migration_failure);
J
Joe Thornber 已提交
2256 2257 2258 2259 2260
		} else {
			process_deferred_flush_bios(cache, true);
			process_migrations(cache, &cache->need_commit_migrations,
					   migration_success_post_commit);
		}
2261 2262 2263

		ack_quiescing(cache);

J
Joe Thornber 已提交
2264 2265 2266 2267 2268 2269 2270 2271 2272 2273
	} while (more_work(cache));
}

/*
 * We want to commit periodically so that not too much
 * unwritten metadata builds up.
 */
static void do_waker(struct work_struct *ws)
{
	struct cache *cache = container_of(to_delayed_work(ws), struct cache, waker);
2274
	policy_tick(cache->policy);
J
Joe Thornber 已提交
2275 2276 2277 2278 2279 2280 2281 2282 2283 2284 2285 2286 2287 2288 2289 2290 2291 2292 2293 2294 2295 2296 2297 2298 2299 2300 2301 2302 2303 2304 2305 2306 2307 2308 2309 2310 2311 2312 2313 2314 2315 2316 2317 2318 2319 2320 2321 2322 2323 2324 2325 2326 2327 2328 2329 2330 2331 2332 2333 2334 2335 2336 2337 2338 2339 2340 2341 2342 2343 2344 2345 2346 2347 2348 2349 2350 2351 2352 2353 2354 2355 2356 2357 2358 2359 2360 2361 2362 2363 2364 2365 2366 2367 2368 2369 2370 2371 2372 2373 2374 2375 2376 2377 2378 2379 2380 2381 2382 2383 2384 2385 2386 2387 2388 2389 2390 2391 2392 2393 2394 2395 2396 2397 2398 2399 2400 2401 2402 2403 2404 2405 2406 2407 2408 2409 2410 2411 2412 2413 2414 2415 2416 2417 2418 2419 2420 2421 2422 2423 2424 2425 2426 2427 2428 2429 2430 2431 2432 2433 2434 2435 2436 2437 2438 2439 2440 2441 2442 2443 2444 2445 2446 2447 2448 2449 2450 2451 2452 2453 2454 2455 2456 2457 2458 2459 2460 2461 2462 2463 2464 2465 2466 2467 2468 2469 2470 2471 2472 2473 2474 2475 2476 2477 2478 2479 2480 2481 2482 2483 2484 2485 2486 2487 2488 2489 2490 2491 2492 2493 2494 2495 2496 2497 2498 2499 2500 2501 2502 2503 2504 2505 2506 2507
	wake_worker(cache);
	queue_delayed_work(cache->wq, &cache->waker, COMMIT_PERIOD);
}

/*----------------------------------------------------------------*/

static int is_congested(struct dm_dev *dev, int bdi_bits)
{
	struct request_queue *q = bdev_get_queue(dev->bdev);
	return bdi_congested(&q->backing_dev_info, bdi_bits);
}

static int cache_is_congested(struct dm_target_callbacks *cb, int bdi_bits)
{
	struct cache *cache = container_of(cb, struct cache, callbacks);

	return is_congested(cache->origin_dev, bdi_bits) ||
		is_congested(cache->cache_dev, bdi_bits);
}

/*----------------------------------------------------------------
 * Target methods
 *--------------------------------------------------------------*/

/*
 * This function gets called on the error paths of the constructor, so we
 * have to cope with a partially initialised struct.
 */
static void destroy(struct cache *cache)
{
	unsigned i;

	if (cache->migration_pool)
		mempool_destroy(cache->migration_pool);

	if (cache->all_io_ds)
		dm_deferred_set_destroy(cache->all_io_ds);

	if (cache->prison)
		dm_bio_prison_destroy(cache->prison);

	if (cache->wq)
		destroy_workqueue(cache->wq);

	if (cache->dirty_bitset)
		free_bitset(cache->dirty_bitset);

	if (cache->discard_bitset)
		free_bitset(cache->discard_bitset);

	if (cache->copier)
		dm_kcopyd_client_destroy(cache->copier);

	if (cache->cmd)
		dm_cache_metadata_close(cache->cmd);

	if (cache->metadata_dev)
		dm_put_device(cache->ti, cache->metadata_dev);

	if (cache->origin_dev)
		dm_put_device(cache->ti, cache->origin_dev);

	if (cache->cache_dev)
		dm_put_device(cache->ti, cache->cache_dev);

	if (cache->policy)
		dm_cache_policy_destroy(cache->policy);

	for (i = 0; i < cache->nr_ctr_args ; i++)
		kfree(cache->ctr_args[i]);
	kfree(cache->ctr_args);

	kfree(cache);
}

static void cache_dtr(struct dm_target *ti)
{
	struct cache *cache = ti->private;

	destroy(cache);
}

static sector_t get_dev_size(struct dm_dev *dev)
{
	return i_size_read(dev->bdev->bd_inode) >> SECTOR_SHIFT;
}

/*----------------------------------------------------------------*/

/*
 * Construct a cache device mapping.
 *
 * cache <metadata dev> <cache dev> <origin dev> <block size>
 *       <#feature args> [<feature arg>]*
 *       <policy> <#policy args> [<policy arg>]*
 *
 * metadata dev    : fast device holding the persistent metadata
 * cache dev	   : fast device holding cached data blocks
 * origin dev	   : slow device holding original data blocks
 * block size	   : cache unit size in sectors
 *
 * #feature args   : number of feature arguments passed
 * feature args    : writethrough.  (The default is writeback.)
 *
 * policy	   : the replacement policy to use
 * #policy args    : an even number of policy arguments corresponding
 *		     to key/value pairs passed to the policy
 * policy args	   : key/value pairs passed to the policy
 *		     E.g. 'sequential_threshold 1024'
 *		     See cache-policies.txt for details.
 *
 * Optional feature arguments are:
 *   writethrough  : write through caching that prohibits cache block
 *		     content from being different from origin block content.
 *		     Without this argument, the default behaviour is to write
 *		     back cache block contents later for performance reasons,
 *		     so they may differ from the corresponding origin blocks.
 */
struct cache_args {
	struct dm_target *ti;

	struct dm_dev *metadata_dev;

	struct dm_dev *cache_dev;
	sector_t cache_sectors;

	struct dm_dev *origin_dev;
	sector_t origin_sectors;

	uint32_t block_size;

	const char *policy_name;
	int policy_argc;
	const char **policy_argv;

	struct cache_features features;
};

static void destroy_cache_args(struct cache_args *ca)
{
	if (ca->metadata_dev)
		dm_put_device(ca->ti, ca->metadata_dev);

	if (ca->cache_dev)
		dm_put_device(ca->ti, ca->cache_dev);

	if (ca->origin_dev)
		dm_put_device(ca->ti, ca->origin_dev);

	kfree(ca);
}

static bool at_least_one_arg(struct dm_arg_set *as, char **error)
{
	if (!as->argc) {
		*error = "Insufficient args";
		return false;
	}

	return true;
}

static int parse_metadata_dev(struct cache_args *ca, struct dm_arg_set *as,
			      char **error)
{
	int r;
	sector_t metadata_dev_size;
	char b[BDEVNAME_SIZE];

	if (!at_least_one_arg(as, error))
		return -EINVAL;

	r = dm_get_device(ca->ti, dm_shift_arg(as), FMODE_READ | FMODE_WRITE,
			  &ca->metadata_dev);
	if (r) {
		*error = "Error opening metadata device";
		return r;
	}

	metadata_dev_size = get_dev_size(ca->metadata_dev);
	if (metadata_dev_size > DM_CACHE_METADATA_MAX_SECTORS_WARNING)
		DMWARN("Metadata device %s is larger than %u sectors: excess space will not be used.",
		       bdevname(ca->metadata_dev->bdev, b), THIN_METADATA_MAX_SECTORS);

	return 0;
}

static int parse_cache_dev(struct cache_args *ca, struct dm_arg_set *as,
			   char **error)
{
	int r;

	if (!at_least_one_arg(as, error))
		return -EINVAL;

	r = dm_get_device(ca->ti, dm_shift_arg(as), FMODE_READ | FMODE_WRITE,
			  &ca->cache_dev);
	if (r) {
		*error = "Error opening cache device";
		return r;
	}
	ca->cache_sectors = get_dev_size(ca->cache_dev);

	return 0;
}

static int parse_origin_dev(struct cache_args *ca, struct dm_arg_set *as,
			    char **error)
{
	int r;

	if (!at_least_one_arg(as, error))
		return -EINVAL;

	r = dm_get_device(ca->ti, dm_shift_arg(as), FMODE_READ | FMODE_WRITE,
			  &ca->origin_dev);
	if (r) {
		*error = "Error opening origin device";
		return r;
	}

	ca->origin_sectors = get_dev_size(ca->origin_dev);
	if (ca->ti->len > ca->origin_sectors) {
		*error = "Device size larger than cached device";
		return -EINVAL;
	}

	return 0;
}

static int parse_block_size(struct cache_args *ca, struct dm_arg_set *as,
			    char **error)
{
2508
	unsigned long block_size;
J
Joe Thornber 已提交
2509 2510 2511 2512

	if (!at_least_one_arg(as, error))
		return -EINVAL;

2513 2514 2515 2516
	if (kstrtoul(dm_shift_arg(as), 10, &block_size) || !block_size ||
	    block_size < DATA_DEV_BLOCK_SIZE_MIN_SECTORS ||
	    block_size > DATA_DEV_BLOCK_SIZE_MAX_SECTORS ||
	    block_size & (DATA_DEV_BLOCK_SIZE_MIN_SECTORS - 1)) {
J
Joe Thornber 已提交
2517 2518 2519 2520
		*error = "Invalid data block size";
		return -EINVAL;
	}

2521
	if (block_size > ca->cache_sectors) {
J
Joe Thornber 已提交
2522 2523 2524 2525
		*error = "Data block size is larger than the cache device";
		return -EINVAL;
	}

2526
	ca->block_size = block_size;
J
Joe Thornber 已提交
2527 2528 2529 2530 2531 2532 2533

	return 0;
}

static void init_features(struct cache_features *cf)
{
	cf->mode = CM_WRITE;
J
Joe Thornber 已提交
2534
	cf->io_mode = CM_IO_WRITEBACK;
J
Joe Thornber 已提交
2535 2536 2537 2538 2539 2540 2541 2542 2543 2544 2545 2546 2547 2548 2549 2550 2551 2552 2553 2554 2555 2556 2557 2558
}

static int parse_features(struct cache_args *ca, struct dm_arg_set *as,
			  char **error)
{
	static struct dm_arg _args[] = {
		{0, 1, "Invalid number of cache feature arguments"},
	};

	int r;
	unsigned argc;
	const char *arg;
	struct cache_features *cf = &ca->features;

	init_features(cf);

	r = dm_read_arg_group(_args, as, &argc, error);
	if (r)
		return -EINVAL;

	while (argc--) {
		arg = dm_shift_arg(as);

		if (!strcasecmp(arg, "writeback"))
J
Joe Thornber 已提交
2559
			cf->io_mode = CM_IO_WRITEBACK;
J
Joe Thornber 已提交
2560 2561

		else if (!strcasecmp(arg, "writethrough"))
J
Joe Thornber 已提交
2562 2563 2564 2565
			cf->io_mode = CM_IO_WRITETHROUGH;

		else if (!strcasecmp(arg, "passthrough"))
			cf->io_mode = CM_IO_PASSTHROUGH;
J
Joe Thornber 已提交
2566 2567 2568 2569 2570 2571 2572 2573 2574 2575 2576 2577 2578 2579 2580 2581 2582 2583 2584 2585 2586 2587 2588 2589 2590 2591 2592 2593 2594 2595 2596 2597 2598 2599 2600 2601 2602 2603 2604 2605 2606 2607 2608 2609 2610 2611 2612 2613 2614 2615 2616 2617 2618 2619 2620 2621 2622 2623 2624 2625 2626 2627 2628 2629 2630 2631 2632 2633 2634 2635 2636 2637 2638 2639

		else {
			*error = "Unrecognised cache feature requested";
			return -EINVAL;
		}
	}

	return 0;
}

static int parse_policy(struct cache_args *ca, struct dm_arg_set *as,
			char **error)
{
	static struct dm_arg _args[] = {
		{0, 1024, "Invalid number of policy arguments"},
	};

	int r;

	if (!at_least_one_arg(as, error))
		return -EINVAL;

	ca->policy_name = dm_shift_arg(as);

	r = dm_read_arg_group(_args, as, &ca->policy_argc, error);
	if (r)
		return -EINVAL;

	ca->policy_argv = (const char **)as->argv;
	dm_consume_args(as, ca->policy_argc);

	return 0;
}

static int parse_cache_args(struct cache_args *ca, int argc, char **argv,
			    char **error)
{
	int r;
	struct dm_arg_set as;

	as.argc = argc;
	as.argv = argv;

	r = parse_metadata_dev(ca, &as, error);
	if (r)
		return r;

	r = parse_cache_dev(ca, &as, error);
	if (r)
		return r;

	r = parse_origin_dev(ca, &as, error);
	if (r)
		return r;

	r = parse_block_size(ca, &as, error);
	if (r)
		return r;

	r = parse_features(ca, &as, error);
	if (r)
		return r;

	r = parse_policy(ca, &as, error);
	if (r)
		return r;

	return 0;
}

/*----------------------------------------------------------------*/

static struct kmem_cache *migration_cache;

A
Alasdair G Kergon 已提交
2640 2641
#define NOT_CORE_OPTION 1

J
Joe Thornber 已提交
2642
static int process_config_option(struct cache *cache, const char *key, const char *value)
A
Alasdair G Kergon 已提交
2643 2644 2645
{
	unsigned long tmp;

J
Joe Thornber 已提交
2646 2647
	if (!strcasecmp(key, "migration_threshold")) {
		if (kstrtoul(value, 10, &tmp))
A
Alasdair G Kergon 已提交
2648 2649 2650 2651 2652 2653 2654 2655 2656
			return -EINVAL;

		cache->migration_threshold = tmp;
		return 0;
	}

	return NOT_CORE_OPTION;
}

J
Joe Thornber 已提交
2657 2658 2659 2660 2661 2662 2663 2664 2665 2666 2667 2668 2669 2670
static int set_config_value(struct cache *cache, const char *key, const char *value)
{
	int r = process_config_option(cache, key, value);

	if (r == NOT_CORE_OPTION)
		r = policy_set_config_value(cache->policy, key, value);

	if (r)
		DMWARN("bad config value for %s: %s", key, value);

	return r;
}

static int set_config_values(struct cache *cache, int argc, const char **argv)
J
Joe Thornber 已提交
2671 2672 2673 2674 2675 2676 2677 2678 2679
{
	int r = 0;

	if (argc & 1) {
		DMWARN("Odd number of policy arguments given but they should be <key> <value> pairs.");
		return -EINVAL;
	}

	while (argc) {
J
Joe Thornber 已提交
2680 2681 2682
		r = set_config_value(cache, argv[0], argv[1]);
		if (r)
			break;
J
Joe Thornber 已提交
2683 2684 2685 2686 2687 2688 2689 2690 2691 2692 2693

		argc -= 2;
		argv += 2;
	}

	return r;
}

static int create_cache_policy(struct cache *cache, struct cache_args *ca,
			       char **error)
{
2694 2695 2696 2697 2698
	struct dm_cache_policy *p = dm_cache_policy_create(ca->policy_name,
							   cache->cache_size,
							   cache->origin_sectors,
							   cache->sectors_per_block);
	if (IS_ERR(p)) {
J
Joe Thornber 已提交
2699
		*error = "Error creating cache's policy";
2700
		return PTR_ERR(p);
J
Joe Thornber 已提交
2701
	}
2702
	cache->policy = p;
J
Joe Thornber 已提交
2703

J
Joe Thornber 已提交
2704
	return 0;
J
Joe Thornber 已提交
2705 2706
}

2707
/*
2708 2709
 * We want the discard block size to be at least the size of the cache
 * block size and have no more than 2^14 discard blocks across the origin.
2710 2711 2712 2713 2714 2715 2716 2717 2718 2719 2720 2721 2722 2723
 */
#define MAX_DISCARD_BLOCKS (1 << 14)

static bool too_many_discard_blocks(sector_t discard_block_size,
				    sector_t origin_size)
{
	(void) sector_div(origin_size, discard_block_size);

	return origin_size > MAX_DISCARD_BLOCKS;
}

static sector_t calculate_discard_block_size(sector_t cache_block_size,
					     sector_t origin_size)
{
2724
	sector_t discard_block_size = cache_block_size;
2725 2726 2727 2728 2729 2730 2731 2732

	if (origin_size)
		while (too_many_discard_blocks(discard_block_size, origin_size))
			discard_block_size *= 2;

	return discard_block_size;
}

2733 2734 2735 2736 2737 2738 2739 2740 2741 2742 2743 2744 2745
static void set_cache_size(struct cache *cache, dm_cblock_t size)
{
	dm_block_t nr_blocks = from_cblock(size);

	if (nr_blocks > (1 << 20) && cache->cache_size != size)
		DMWARN_LIMIT("You have created a cache device with a lot of individual cache blocks (%llu)\n"
			     "All these mappings can consume a lot of kernel memory, and take some time to read/write.\n"
			     "Please consider increasing the cache block size to reduce the overall cache block count.",
			     (unsigned long long) nr_blocks);

	cache->cache_size = size;
}

2746
#define DEFAULT_MIGRATION_THRESHOLD 2048
J
Joe Thornber 已提交
2747 2748 2749 2750 2751 2752 2753 2754 2755 2756 2757 2758 2759 2760 2761 2762 2763 2764 2765 2766 2767 2768 2769

static int cache_create(struct cache_args *ca, struct cache **result)
{
	int r = 0;
	char **error = &ca->ti->error;
	struct cache *cache;
	struct dm_target *ti = ca->ti;
	dm_block_t origin_blocks;
	struct dm_cache_metadata *cmd;
	bool may_format = ca->features.mode == CM_WRITE;

	cache = kzalloc(sizeof(*cache), GFP_KERNEL);
	if (!cache)
		return -ENOMEM;

	cache->ti = ca->ti;
	ti->private = cache;
	ti->num_flush_bios = 2;
	ti->flush_supported = true;

	ti->num_discard_bios = 1;
	ti->discards_supported = true;
	ti->discard_zeroes_data_unsupported = true;
2770
	ti->split_discard_bios = false;
J
Joe Thornber 已提交
2771

2772
	cache->features = ca->features;
2773
	ti->per_bio_data_size = get_per_bio_data_size(cache);
J
Joe Thornber 已提交
2774 2775 2776 2777 2778 2779 2780 2781 2782 2783 2784 2785

	cache->callbacks.congested_fn = cache_is_congested;
	dm_table_add_target_callbacks(ti->table, &cache->callbacks);

	cache->metadata_dev = ca->metadata_dev;
	cache->origin_dev = ca->origin_dev;
	cache->cache_dev = ca->cache_dev;

	ca->metadata_dev = ca->origin_dev = ca->cache_dev = NULL;

	/* FIXME: factor out this whole section */
	origin_blocks = cache->origin_sectors = ca->origin_sectors;
2786
	origin_blocks = block_div(origin_blocks, ca->block_size);
J
Joe Thornber 已提交
2787 2788 2789 2790 2791 2792 2793 2794 2795 2796 2797 2798
	cache->origin_blocks = to_oblock(origin_blocks);

	cache->sectors_per_block = ca->block_size;
	if (dm_set_target_max_io_len(ti, cache->sectors_per_block)) {
		r = -EINVAL;
		goto bad;
	}

	if (ca->block_size & (ca->block_size - 1)) {
		dm_block_t cache_size = ca->cache_sectors;

		cache->sectors_per_block_shift = -1;
2799
		cache_size = block_div(cache_size, ca->block_size);
2800
		set_cache_size(cache, to_cblock(cache_size));
J
Joe Thornber 已提交
2801 2802
	} else {
		cache->sectors_per_block_shift = __ffs(ca->block_size);
2803
		set_cache_size(cache, to_cblock(ca->cache_sectors >> cache->sectors_per_block_shift));
J
Joe Thornber 已提交
2804 2805 2806 2807 2808
	}

	r = create_cache_policy(cache, ca, error);
	if (r)
		goto bad;
J
Joe Thornber 已提交
2809

J
Joe Thornber 已提交
2810
	cache->policy_nr_args = ca->policy_argc;
J
Joe Thornber 已提交
2811 2812 2813 2814 2815 2816 2817
	cache->migration_threshold = DEFAULT_MIGRATION_THRESHOLD;

	r = set_config_values(cache, ca->policy_argc, ca->policy_argv);
	if (r) {
		*error = "Error setting cache policy's config values";
		goto bad;
	}
J
Joe Thornber 已提交
2818 2819 2820 2821 2822 2823 2824 2825 2826 2827

	cmd = dm_cache_metadata_open(cache->metadata_dev->bdev,
				     ca->block_size, may_format,
				     dm_cache_policy_get_hint_size(cache->policy));
	if (IS_ERR(cmd)) {
		*error = "Error creating metadata object";
		r = PTR_ERR(cmd);
		goto bad;
	}
	cache->cmd = cmd;
2828 2829 2830 2831 2832 2833
	set_cache_mode(cache, CM_WRITE);
	if (get_cache_mode(cache) != CM_WRITE) {
		*error = "Unable to get write access to metadata, please check/repair metadata.";
		r = -EINVAL;
		goto bad;
	}
J
Joe Thornber 已提交
2834

J
Joe Thornber 已提交
2835 2836 2837 2838 2839 2840 2841 2842 2843 2844 2845 2846 2847 2848 2849 2850
	if (passthrough_mode(&cache->features)) {
		bool all_clean;

		r = dm_cache_metadata_all_clean(cache->cmd, &all_clean);
		if (r) {
			*error = "dm_cache_metadata_all_clean() failed";
			goto bad;
		}

		if (!all_clean) {
			*error = "Cannot enter passthrough mode unless all blocks are clean";
			r = -EINVAL;
			goto bad;
		}
	}

J
Joe Thornber 已提交
2851
	spin_lock_init(&cache->lock);
J
Joe Thornber 已提交
2852
	INIT_LIST_HEAD(&cache->deferred_cells);
J
Joe Thornber 已提交
2853 2854
	bio_list_init(&cache->deferred_bios);
	bio_list_init(&cache->deferred_flush_bios);
2855
	bio_list_init(&cache->deferred_writethrough_bios);
J
Joe Thornber 已提交
2856 2857 2858
	INIT_LIST_HEAD(&cache->quiesced_migrations);
	INIT_LIST_HEAD(&cache->completed_migrations);
	INIT_LIST_HEAD(&cache->need_commit_migrations);
2859 2860
	atomic_set(&cache->nr_allocated_migrations, 0);
	atomic_set(&cache->nr_io_migrations, 0);
J
Joe Thornber 已提交
2861 2862
	init_waitqueue_head(&cache->migration_wait);

2863
	init_waitqueue_head(&cache->quiescing_wait);
2864
	atomic_set(&cache->quiescing, 0);
2865 2866
	atomic_set(&cache->quiescing_ack, 0);

2867
	r = -ENOMEM;
2868
	atomic_set(&cache->nr_dirty, 0);
J
Joe Thornber 已提交
2869 2870 2871 2872 2873 2874 2875
	cache->dirty_bitset = alloc_bitset(from_cblock(cache->cache_size));
	if (!cache->dirty_bitset) {
		*error = "could not allocate dirty bitset";
		goto bad;
	}
	clear_bitset(cache->dirty_bitset, from_cblock(cache->cache_size));

2876 2877 2878
	cache->discard_block_size =
		calculate_discard_block_size(cache->sectors_per_block,
					     cache->origin_sectors);
2879 2880
	cache->discard_nr_blocks = to_dblock(dm_sector_div_up(cache->origin_sectors,
							      cache->discard_block_size));
2881
	cache->discard_bitset = alloc_bitset(from_dblock(cache->discard_nr_blocks));
J
Joe Thornber 已提交
2882 2883 2884 2885
	if (!cache->discard_bitset) {
		*error = "could not allocate discard bitset";
		goto bad;
	}
2886
	clear_bitset(cache->discard_bitset, from_dblock(cache->discard_nr_blocks));
J
Joe Thornber 已提交
2887 2888 2889 2890 2891 2892 2893 2894 2895 2896 2897 2898 2899 2900 2901 2902 2903

	cache->copier = dm_kcopyd_client_create(&dm_kcopyd_throttle);
	if (IS_ERR(cache->copier)) {
		*error = "could not create kcopyd client";
		r = PTR_ERR(cache->copier);
		goto bad;
	}

	cache->wq = alloc_ordered_workqueue("dm-" DM_MSG_PREFIX, WQ_MEM_RECLAIM);
	if (!cache->wq) {
		*error = "could not create workqueue for metadata object";
		goto bad;
	}
	INIT_WORK(&cache->worker, do_worker);
	INIT_DELAYED_WORK(&cache->waker, do_waker);
	cache->last_commit_jiffies = jiffies;

2904
	cache->prison = dm_bio_prison_create();
J
Joe Thornber 已提交
2905 2906 2907 2908 2909 2910 2911 2912 2913 2914 2915 2916 2917 2918 2919 2920 2921 2922 2923 2924
	if (!cache->prison) {
		*error = "could not create bio prison";
		goto bad;
	}

	cache->all_io_ds = dm_deferred_set_create();
	if (!cache->all_io_ds) {
		*error = "could not create all_io deferred set";
		goto bad;
	}

	cache->migration_pool = mempool_create_slab_pool(MIGRATION_POOL_SIZE,
							 migration_cache);
	if (!cache->migration_pool) {
		*error = "Error creating cache's migration mempool";
		goto bad;
	}

	cache->need_tick_bio = true;
	cache->sized = false;
2925
	cache->invalidate = false;
J
Joe Thornber 已提交
2926 2927 2928 2929 2930 2931 2932 2933 2934 2935 2936 2937 2938
	cache->commit_requested = false;
	cache->loaded_mappings = false;
	cache->loaded_discards = false;

	load_stats(cache);

	atomic_set(&cache->stats.demotion, 0);
	atomic_set(&cache->stats.promotion, 0);
	atomic_set(&cache->stats.copies_avoided, 0);
	atomic_set(&cache->stats.cache_cell_clash, 0);
	atomic_set(&cache->stats.commit_count, 0);
	atomic_set(&cache->stats.discard_count, 0);

2939 2940 2941
	spin_lock_init(&cache->invalidation_lock);
	INIT_LIST_HEAD(&cache->invalidation_requests);

2942 2943
	iot_init(&cache->origin_tracker);

J
Joe Thornber 已提交
2944 2945 2946 2947 2948 2949 2950 2951 2952 2953 2954 2955 2956 2957 2958 2959 2960 2961 2962 2963 2964 2965 2966 2967 2968 2969 2970 2971 2972 2973 2974 2975 2976 2977 2978 2979 2980 2981 2982 2983 2984 2985 2986 2987 2988 2989 2990 2991 2992 2993
	*result = cache;
	return 0;

bad:
	destroy(cache);
	return r;
}

static int copy_ctr_args(struct cache *cache, int argc, const char **argv)
{
	unsigned i;
	const char **copy;

	copy = kcalloc(argc, sizeof(*copy), GFP_KERNEL);
	if (!copy)
		return -ENOMEM;
	for (i = 0; i < argc; i++) {
		copy[i] = kstrdup(argv[i], GFP_KERNEL);
		if (!copy[i]) {
			while (i--)
				kfree(copy[i]);
			kfree(copy);
			return -ENOMEM;
		}
	}

	cache->nr_ctr_args = argc;
	cache->ctr_args = copy;

	return 0;
}

static int cache_ctr(struct dm_target *ti, unsigned argc, char **argv)
{
	int r = -EINVAL;
	struct cache_args *ca;
	struct cache *cache = NULL;

	ca = kzalloc(sizeof(*ca), GFP_KERNEL);
	if (!ca) {
		ti->error = "Error allocating memory for cache";
		return -ENOMEM;
	}
	ca->ti = ti;

	r = parse_cache_args(ca, argc, argv, &ti->error);
	if (r)
		goto out;

	r = cache_create(ca, &cache);
2994 2995
	if (r)
		goto out;
J
Joe Thornber 已提交
2996 2997 2998 2999 3000 3001 3002 3003 3004 3005 3006 3007 3008 3009

	r = copy_ctr_args(cache, argc - 3, (const char **)argv + 3);
	if (r) {
		destroy(cache);
		goto out;
	}

	ti->private = cache;

out:
	destroy_cache_args(ca);
	return r;
}

J
Joe Thornber 已提交
3010 3011 3012
/*----------------------------------------------------------------*/

static int cache_map(struct dm_target *ti, struct bio *bio)
J
Joe Thornber 已提交
3013
{
J
Joe Thornber 已提交
3014 3015
	struct cache *cache = ti->private;

J
Joe Thornber 已提交
3016
	int r;
J
Joe Thornber 已提交
3017
	struct dm_bio_prison_cell *cell = NULL;
J
Joe Thornber 已提交
3018
	dm_oblock_t block = get_bio_block(cache, bio);
3019
	size_t pb_data_size = get_per_bio_data_size(cache);
J
Joe Thornber 已提交
3020
	bool can_migrate = false;
3021
	bool fast_promotion;
J
Joe Thornber 已提交
3022
	struct policy_result lookup_result;
3023
	struct per_bio_data *pb = init_per_bio_data(bio, pb_data_size);
3024 3025 3026
	struct old_oblock_lock ool;

	ool.locker.fn = null_locker;
J
Joe Thornber 已提交
3027

3028
	if (unlikely(from_oblock(block) >= from_oblock(cache->origin_blocks))) {
J
Joe Thornber 已提交
3029 3030 3031 3032 3033
		/*
		 * This can only occur if the io goes to a partial block at
		 * the end of the origin device.  We don't cache these.
		 * Just remap to the origin and carry on.
		 */
3034
		remap_to_origin(cache, bio);
J
Joe Thornber 已提交
3035
		accounted_begin(cache, bio);
J
Joe Thornber 已提交
3036 3037 3038
		return DM_MAPIO_REMAPPED;
	}

J
Joe Thornber 已提交
3039
	if (discard_or_flush(bio)) {
J
Joe Thornber 已提交
3040 3041 3042 3043 3044 3045 3046
		defer_bio(cache, bio);
		return DM_MAPIO_SUBMITTED;
	}

	/*
	 * Check to see if that block is currently migrating.
	 */
J
Joe Thornber 已提交
3047 3048
	cell = alloc_prison_cell(cache);
	if (!cell) {
J
Joe Thornber 已提交
3049 3050 3051 3052
		defer_bio(cache, bio);
		return DM_MAPIO_SUBMITTED;
	}

J
Joe Thornber 已提交
3053
	r = bio_detain(cache, block, bio, cell,
J
Joe Thornber 已提交
3054
		       (cell_free_fn) free_prison_cell,
J
Joe Thornber 已提交
3055
		       cache, &cell);
J
Joe Thornber 已提交
3056 3057 3058 3059 3060 3061 3062
	if (r) {
		if (r < 0)
			defer_bio(cache, bio);

		return DM_MAPIO_SUBMITTED;
	}

3063
	fast_promotion = is_discarded_oblock(cache, block) || bio_writes_complete_block(cache, bio);
J
Joe Thornber 已提交
3064

3065
	r = policy_map(cache->policy, block, false, can_migrate, fast_promotion,
3066
		       bio, &ool.locker, &lookup_result);
J
Joe Thornber 已提交
3067
	if (r == -EWOULDBLOCK) {
J
Joe Thornber 已提交
3068
		cell_defer(cache, cell, true);
J
Joe Thornber 已提交
3069 3070 3071
		return DM_MAPIO_SUBMITTED;

	} else if (r) {
3072 3073
		DMERR_LIMIT("%s: Unexpected return from cache replacement policy: %d",
			    cache_device_name(cache), r);
J
Joe Thornber 已提交
3074
		cell_defer(cache, cell, false);
J
Joe Thornber 已提交
3075 3076 3077 3078
		bio_io_error(bio);
		return DM_MAPIO_SUBMITTED;
	}

J
Joe Thornber 已提交
3079
	r = DM_MAPIO_REMAPPED;
J
Joe Thornber 已提交
3080 3081
	switch (lookup_result.op) {
	case POLICY_HIT:
J
Joe Thornber 已提交
3082 3083 3084 3085 3086 3087
		if (passthrough_mode(&cache->features)) {
			if (bio_data_dir(bio) == WRITE) {
				/*
				 * We need to invalidate this block, so
				 * defer for the worker thread.
				 */
J
Joe Thornber 已提交
3088
				cell_defer(cache, cell, true);
J
Joe Thornber 已提交
3089 3090 3091 3092 3093
				r = DM_MAPIO_SUBMITTED;

			} else {
				inc_miss_counter(cache, bio);
				remap_to_origin_clear_discard(cache, bio, block);
J
Joe Thornber 已提交
3094 3095 3096 3097 3098
				accounted_begin(cache, bio);
				inc_ds(cache, bio, cell);
				// FIXME: we want to remap hits or misses straight
				// away rather than passing over to the worker.
				cell_defer(cache, cell, false);
J
Joe Thornber 已提交
3099
			}
J
Joe Thornber 已提交
3100

J
Joe Thornber 已提交
3101 3102 3103
		} else {
			inc_hit_counter(cache, bio);
			if (bio_data_dir(bio) == WRITE && writethrough_mode(&cache->features) &&
J
Joe Thornber 已提交
3104
			    !is_dirty(cache, lookup_result.cblock)) {
J
Joe Thornber 已提交
3105
				remap_to_origin_then_cache(cache, bio, block, lookup_result.cblock);
J
Joe Thornber 已提交
3106 3107 3108 3109 3110 3111
				accounted_begin(cache, bio);
				inc_ds(cache, bio, cell);
				cell_defer(cache, cell, false);

			} else
				remap_cell_to_cache_dirty(cache, cell, block, lookup_result.cblock, false);
J
Joe Thornber 已提交
3112
		}
J
Joe Thornber 已提交
3113 3114 3115 3116 3117 3118 3119 3120 3121 3122
		break;

	case POLICY_MISS:
		inc_miss_counter(cache, bio);
		if (pb->req_nr != 0) {
			/*
			 * This is a duplicate writethrough io that is no
			 * longer needed because the block has been demoted.
			 */
			bio_endio(bio, 0);
J
Joe Thornber 已提交
3123 3124
			// FIXME: remap everything as a miss
			cell_defer(cache, cell, false);
3125 3126 3127
			r = DM_MAPIO_SUBMITTED;

		} else
J
Joe Thornber 已提交
3128
			remap_cell_to_origin_clear_discard(cache, cell, block, false);
J
Joe Thornber 已提交
3129 3130 3131
		break;

	default:
3132 3133
		DMERR_LIMIT("%s: %s: erroring bio: unknown policy op: %u",
			    cache_device_name(cache), __func__,
J
Joe Thornber 已提交
3134
			    (unsigned) lookup_result.op);
J
Joe Thornber 已提交
3135
		cell_defer(cache, cell, false);
J
Joe Thornber 已提交
3136
		bio_io_error(bio);
J
Joe Thornber 已提交
3137
		r = DM_MAPIO_SUBMITTED;
J
Joe Thornber 已提交
3138 3139
	}

J
Joe Thornber 已提交
3140
	return r;
J
Joe Thornber 已提交
3141 3142 3143 3144 3145 3146
}

static int cache_end_io(struct dm_target *ti, struct bio *bio, int error)
{
	struct cache *cache = ti->private;
	unsigned long flags;
3147 3148
	size_t pb_data_size = get_per_bio_data_size(cache);
	struct per_bio_data *pb = get_per_bio_data(bio, pb_data_size);
J
Joe Thornber 已提交
3149 3150 3151 3152 3153 3154 3155 3156 3157 3158

	if (pb->tick) {
		policy_tick(cache->policy);

		spin_lock_irqsave(&cache->lock, flags);
		cache->need_tick_bio = true;
		spin_unlock_irqrestore(&cache->lock, flags);
	}

	check_for_quiesced_migrations(cache, pb);
3159
	accounted_complete(cache, bio);
J
Joe Thornber 已提交
3160 3161 3162 3163 3164 3165 3166 3167

	return 0;
}

static int write_dirty_bitset(struct cache *cache)
{
	unsigned i, r;

3168 3169 3170
	if (get_cache_mode(cache) >= CM_READ_ONLY)
		return -EINVAL;

J
Joe Thornber 已提交
3171 3172 3173
	for (i = 0; i < from_cblock(cache->cache_size); i++) {
		r = dm_cache_set_dirty(cache->cmd, to_cblock(i),
				       is_dirty(cache, to_cblock(i)));
3174 3175
		if (r) {
			metadata_operation_failed(cache, "dm_cache_set_dirty", r);
J
Joe Thornber 已提交
3176
			return r;
3177
		}
J
Joe Thornber 已提交
3178 3179 3180 3181 3182 3183 3184 3185 3186
	}

	return 0;
}

static int write_discard_bitset(struct cache *cache)
{
	unsigned i, r;

3187 3188 3189
	if (get_cache_mode(cache) >= CM_READ_ONLY)
		return -EINVAL;

3190 3191
	r = dm_cache_discard_bitset_resize(cache->cmd, cache->discard_block_size,
					   cache->discard_nr_blocks);
J
Joe Thornber 已提交
3192
	if (r) {
3193
		DMERR("%s: could not resize on-disk discard bitset", cache_device_name(cache));
3194
		metadata_operation_failed(cache, "dm_cache_discard_bitset_resize", r);
J
Joe Thornber 已提交
3195 3196 3197
		return r;
	}

3198 3199 3200
	for (i = 0; i < from_dblock(cache->discard_nr_blocks); i++) {
		r = dm_cache_set_discard(cache->cmd, to_dblock(i),
					 is_discarded(cache, to_dblock(i)));
3201 3202
		if (r) {
			metadata_operation_failed(cache, "dm_cache_set_discard", r);
J
Joe Thornber 已提交
3203
			return r;
3204 3205 3206 3207 3208 3209 3210 3211 3212 3213 3214 3215 3216 3217 3218 3219 3220
		}
	}

	return 0;
}

static int write_hints(struct cache *cache)
{
	int r;

	if (get_cache_mode(cache) >= CM_READ_ONLY)
		return -EINVAL;

	r = dm_cache_write_hints(cache->cmd, cache->policy);
	if (r) {
		metadata_operation_failed(cache, "dm_cache_write_hints", r);
		return r;
J
Joe Thornber 已提交
3221 3222 3223 3224 3225 3226 3227 3228 3229 3230 3231 3232 3233 3234
	}

	return 0;
}

/*
 * returns true on success
 */
static bool sync_metadata(struct cache *cache)
{
	int r1, r2, r3, r4;

	r1 = write_dirty_bitset(cache);
	if (r1)
3235
		DMERR("%s: could not write dirty bitset", cache_device_name(cache));
J
Joe Thornber 已提交
3236 3237 3238

	r2 = write_discard_bitset(cache);
	if (r2)
3239
		DMERR("%s: could not write discard bitset", cache_device_name(cache));
J
Joe Thornber 已提交
3240 3241 3242

	save_stats(cache);

3243
	r3 = write_hints(cache);
J
Joe Thornber 已提交
3244
	if (r3)
3245
		DMERR("%s: could not write hints", cache_device_name(cache));
J
Joe Thornber 已提交
3246 3247 3248 3249 3250 3251

	/*
	 * If writing the above metadata failed, we still commit, but don't
	 * set the clean shutdown flag.  This will effectively force every
	 * dirty bit to be set on reload.
	 */
3252
	r4 = commit(cache, !r1 && !r2 && !r3);
J
Joe Thornber 已提交
3253
	if (r4)
3254
		DMERR("%s: could not write cache metadata", cache_device_name(cache));
J
Joe Thornber 已提交
3255 3256 3257 3258 3259 3260 3261 3262 3263 3264 3265

	return !r1 && !r2 && !r3 && !r4;
}

static void cache_postsuspend(struct dm_target *ti)
{
	struct cache *cache = ti->private;

	start_quiescing(cache);
	wait_for_migrations(cache);
	stop_worker(cache);
J
Joe Thornber 已提交
3266 3267
	requeue_deferred_bios(cache);
	requeue_deferred_cells(cache);
J
Joe Thornber 已提交
3268 3269
	stop_quiescing(cache);

3270 3271
	if (get_cache_mode(cache) == CM_WRITE)
		(void) sync_metadata(cache);
J
Joe Thornber 已提交
3272 3273 3274 3275 3276 3277 3278 3279 3280 3281 3282 3283 3284 3285 3286 3287 3288 3289 3290 3291
}

static int load_mapping(void *context, dm_oblock_t oblock, dm_cblock_t cblock,
			bool dirty, uint32_t hint, bool hint_valid)
{
	int r;
	struct cache *cache = context;

	r = policy_load_mapping(cache->policy, oblock, cblock, hint, hint_valid);
	if (r)
		return r;

	if (dirty)
		set_dirty(cache, oblock, cblock);
	else
		clear_dirty(cache, oblock, cblock);

	return 0;
}

3292 3293 3294 3295 3296 3297 3298 3299 3300 3301 3302 3303 3304 3305 3306 3307 3308 3309 3310 3311 3312 3313 3314 3315 3316 3317 3318 3319 3320 3321 3322 3323 3324 3325 3326 3327 3328 3329 3330 3331 3332 3333 3334 3335 3336 3337 3338 3339 3340 3341 3342 3343 3344 3345
/*
 * The discard block size in the on disk metadata is not
 * neccessarily the same as we're currently using.  So we have to
 * be careful to only set the discarded attribute if we know it
 * covers a complete block of the new size.
 */
struct discard_load_info {
	struct cache *cache;

	/*
	 * These blocks are sized using the on disk dblock size, rather
	 * than the current one.
	 */
	dm_block_t block_size;
	dm_block_t discard_begin, discard_end;
};

static void discard_load_info_init(struct cache *cache,
				   struct discard_load_info *li)
{
	li->cache = cache;
	li->discard_begin = li->discard_end = 0;
}

static void set_discard_range(struct discard_load_info *li)
{
	sector_t b, e;

	if (li->discard_begin == li->discard_end)
		return;

	/*
	 * Convert to sectors.
	 */
	b = li->discard_begin * li->block_size;
	e = li->discard_end * li->block_size;

	/*
	 * Then convert back to the current dblock size.
	 */
	b = dm_sector_div_up(b, li->cache->discard_block_size);
	sector_div(e, li->cache->discard_block_size);

	/*
	 * The origin may have shrunk, so we need to check we're still in
	 * bounds.
	 */
	if (e > from_dblock(li->cache->discard_nr_blocks))
		e = from_dblock(li->cache->discard_nr_blocks);

	for (; b < e; b++)
		set_discard(li->cache, to_dblock(b));
}

J
Joe Thornber 已提交
3346
static int load_discard(void *context, sector_t discard_block_size,
3347
			dm_dblock_t dblock, bool discard)
J
Joe Thornber 已提交
3348
{
3349
	struct discard_load_info *li = context;
J
Joe Thornber 已提交
3350

3351
	li->block_size = discard_block_size;
3352

3353 3354 3355 3356 3357 3358 3359 3360 3361 3362 3363 3364 3365 3366 3367 3368 3369 3370 3371
	if (discard) {
		if (from_dblock(dblock) == li->discard_end)
			/*
			 * We're already in a discard range, just extend it.
			 */
			li->discard_end = li->discard_end + 1ULL;

		else {
			/*
			 * Emit the old range and start a new one.
			 */
			set_discard_range(li);
			li->discard_begin = from_dblock(dblock);
			li->discard_end = li->discard_begin + 1ULL;
		}
	} else {
		set_discard_range(li);
		li->discard_begin = li->discard_end = 0;
	}
J
Joe Thornber 已提交
3372 3373 3374 3375

	return 0;
}

J
Joe Thornber 已提交
3376 3377 3378 3379 3380 3381 3382 3383 3384 3385 3386 3387 3388 3389 3390 3391 3392 3393
static dm_cblock_t get_cache_dev_size(struct cache *cache)
{
	sector_t size = get_dev_size(cache->cache_dev);
	(void) sector_div(size, cache->sectors_per_block);
	return to_cblock(size);
}

static bool can_resize(struct cache *cache, dm_cblock_t new_size)
{
	if (from_cblock(new_size) > from_cblock(cache->cache_size))
		return true;

	/*
	 * We can't drop a dirty block when shrinking the cache.
	 */
	while (from_cblock(new_size) < from_cblock(cache->cache_size)) {
		new_size = to_cblock(from_cblock(new_size) + 1);
		if (is_dirty(cache, new_size)) {
3394 3395
			DMERR("%s: unable to shrink cache; cache block %llu is dirty",
			      cache_device_name(cache),
J
Joe Thornber 已提交
3396 3397 3398 3399 3400 3401 3402 3403 3404 3405 3406 3407
			      (unsigned long long) from_cblock(new_size));
			return false;
		}
	}

	return true;
}

static int resize_cache_dev(struct cache *cache, dm_cblock_t new_size)
{
	int r;

3408
	r = dm_cache_resize(cache->cmd, new_size);
J
Joe Thornber 已提交
3409
	if (r) {
3410
		DMERR("%s: could not resize cache metadata", cache_device_name(cache));
3411
		metadata_operation_failed(cache, "dm_cache_resize", r);
J
Joe Thornber 已提交
3412 3413 3414
		return r;
	}

3415
	set_cache_size(cache, new_size);
J
Joe Thornber 已提交
3416 3417 3418 3419

	return 0;
}

J
Joe Thornber 已提交
3420 3421 3422 3423
static int cache_preresume(struct dm_target *ti)
{
	int r = 0;
	struct cache *cache = ti->private;
J
Joe Thornber 已提交
3424
	dm_cblock_t csize = get_cache_dev_size(cache);
J
Joe Thornber 已提交
3425 3426 3427 3428

	/*
	 * Check to see if the cache has resized.
	 */
J
Joe Thornber 已提交
3429 3430 3431
	if (!cache->sized) {
		r = resize_cache_dev(cache, csize);
		if (r)
J
Joe Thornber 已提交
3432 3433 3434
			return r;

		cache->sized = true;
J
Joe Thornber 已提交
3435 3436 3437 3438 3439 3440 3441 3442

	} else if (csize != cache->cache_size) {
		if (!can_resize(cache, csize))
			return -EINVAL;

		r = resize_cache_dev(cache, csize);
		if (r)
			return r;
J
Joe Thornber 已提交
3443 3444 3445
	}

	if (!cache->loaded_mappings) {
3446
		r = dm_cache_load_mappings(cache->cmd, cache->policy,
J
Joe Thornber 已提交
3447 3448
					   load_mapping, cache);
		if (r) {
3449
			DMERR("%s: could not load cache mappings", cache_device_name(cache));
3450
			metadata_operation_failed(cache, "dm_cache_load_mappings", r);
J
Joe Thornber 已提交
3451 3452 3453 3454 3455 3456 3457
			return r;
		}

		cache->loaded_mappings = true;
	}

	if (!cache->loaded_discards) {
3458 3459 3460 3461 3462 3463 3464 3465 3466 3467 3468
		struct discard_load_info li;

		/*
		 * The discard bitset could have been resized, or the
		 * discard block size changed.  To be safe we start by
		 * setting every dblock to not discarded.
		 */
		clear_bitset(cache->discard_bitset, from_dblock(cache->discard_nr_blocks));

		discard_load_info_init(cache, &li);
		r = dm_cache_load_discards(cache->cmd, load_discard, &li);
J
Joe Thornber 已提交
3469
		if (r) {
3470
			DMERR("%s: could not load origin discards", cache_device_name(cache));
3471
			metadata_operation_failed(cache, "dm_cache_load_discards", r);
J
Joe Thornber 已提交
3472 3473
			return r;
		}
3474
		set_discard_range(&li);
J
Joe Thornber 已提交
3475 3476 3477 3478 3479 3480 3481 3482 3483 3484 3485 3486 3487 3488 3489 3490 3491 3492

		cache->loaded_discards = true;
	}

	return r;
}

static void cache_resume(struct dm_target *ti)
{
	struct cache *cache = ti->private;

	cache->need_tick_bio = true;
	do_waker(&cache->waker.work);
}

/*
 * Status format:
 *
3493 3494
 * <metadata block size> <#used metadata blocks>/<#total metadata blocks>
 * <cache block size> <#used cache blocks>/<#total cache blocks>
J
Joe Thornber 已提交
3495
 * <#read hits> <#read misses> <#write hits> <#write misses>
3496
 * <#demotions> <#promotions> <#dirty>
J
Joe Thornber 已提交
3497 3498
 * <#features> <features>*
 * <#core args> <core args>
3499
 * <policy name> <#policy args> <policy args>* <cache metadata mode>
J
Joe Thornber 已提交
3500 3501 3502 3503 3504 3505 3506 3507 3508 3509 3510 3511 3512 3513 3514
 */
static void cache_status(struct dm_target *ti, status_type_t type,
			 unsigned status_flags, char *result, unsigned maxlen)
{
	int r = 0;
	unsigned i;
	ssize_t sz = 0;
	dm_block_t nr_free_blocks_metadata = 0;
	dm_block_t nr_blocks_metadata = 0;
	char buf[BDEVNAME_SIZE];
	struct cache *cache = ti->private;
	dm_cblock_t residency;

	switch (type) {
	case STATUSTYPE_INFO:
3515 3516 3517
		if (get_cache_mode(cache) == CM_FAIL) {
			DMEMIT("Fail");
			break;
J
Joe Thornber 已提交
3518 3519
		}

3520 3521 3522 3523
		/* Commit to ensure statistics aren't out-of-date */
		if (!(status_flags & DM_STATUS_NOFLUSH_FLAG) && !dm_suspended(ti))
			(void) commit(cache, false);

3524
		r = dm_cache_get_free_metadata_block_count(cache->cmd, &nr_free_blocks_metadata);
J
Joe Thornber 已提交
3525
		if (r) {
3526 3527
			DMERR("%s: dm_cache_get_free_metadata_block_count returned %d",
			      cache_device_name(cache), r);
J
Joe Thornber 已提交
3528 3529 3530 3531 3532
			goto err;
		}

		r = dm_cache_get_metadata_dev_size(cache->cmd, &nr_blocks_metadata);
		if (r) {
3533 3534
			DMERR("%s: dm_cache_get_metadata_dev_size returned %d",
			      cache_device_name(cache), r);
J
Joe Thornber 已提交
3535 3536 3537 3538 3539
			goto err;
		}

		residency = policy_residency(cache->policy);

3540
		DMEMIT("%u %llu/%llu %u %llu/%llu %u %u %u %u %u %u %lu ",
3541
		       (unsigned)DM_CACHE_METADATA_BLOCK_SIZE,
J
Joe Thornber 已提交
3542 3543
		       (unsigned long long)(nr_blocks_metadata - nr_free_blocks_metadata),
		       (unsigned long long)nr_blocks_metadata,
3544 3545 3546
		       cache->sectors_per_block,
		       (unsigned long long) from_cblock(residency),
		       (unsigned long long) from_cblock(cache->cache_size),
J
Joe Thornber 已提交
3547 3548 3549 3550 3551 3552
		       (unsigned) atomic_read(&cache->stats.read_hit),
		       (unsigned) atomic_read(&cache->stats.read_miss),
		       (unsigned) atomic_read(&cache->stats.write_hit),
		       (unsigned) atomic_read(&cache->stats.write_miss),
		       (unsigned) atomic_read(&cache->stats.demotion),
		       (unsigned) atomic_read(&cache->stats.promotion),
3553
		       (unsigned long) atomic_read(&cache->nr_dirty));
J
Joe Thornber 已提交
3554

J
Joe Thornber 已提交
3555
		if (writethrough_mode(&cache->features))
J
Joe Thornber 已提交
3556
			DMEMIT("1 writethrough ");
J
Joe Thornber 已提交
3557 3558 3559 3560 3561 3562 3563 3564

		else if (passthrough_mode(&cache->features))
			DMEMIT("1 passthrough ");

		else if (writeback_mode(&cache->features))
			DMEMIT("1 writeback ");

		else {
3565 3566
			DMERR("%s: internal error: unknown io mode: %d",
			      cache_device_name(cache), (int) cache->features.io_mode);
J
Joe Thornber 已提交
3567 3568
			goto err;
		}
J
Joe Thornber 已提交
3569 3570

		DMEMIT("2 migration_threshold %llu ", (unsigned long long) cache->migration_threshold);
3571 3572

		DMEMIT("%s ", dm_cache_policy_get_name(cache->policy));
J
Joe Thornber 已提交
3573
		if (sz < maxlen) {
3574
			r = policy_emit_config_values(cache->policy, result, maxlen, &sz);
J
Joe Thornber 已提交
3575
			if (r)
3576 3577
				DMERR("%s: policy_emit_config_values returned %d",
				      cache_device_name(cache), r);
J
Joe Thornber 已提交
3578 3579
		}

3580 3581 3582 3583 3584
		if (get_cache_mode(cache) == CM_READ_ONLY)
			DMEMIT("ro ");
		else
			DMEMIT("rw ");

J
Joe Thornber 已提交
3585 3586 3587 3588 3589 3590 3591 3592 3593 3594 3595 3596 3597 3598 3599 3600 3601 3602 3603 3604 3605 3606 3607
		break;

	case STATUSTYPE_TABLE:
		format_dev_t(buf, cache->metadata_dev->bdev->bd_dev);
		DMEMIT("%s ", buf);
		format_dev_t(buf, cache->cache_dev->bdev->bd_dev);
		DMEMIT("%s ", buf);
		format_dev_t(buf, cache->origin_dev->bdev->bd_dev);
		DMEMIT("%s", buf);

		for (i = 0; i < cache->nr_ctr_args - 1; i++)
			DMEMIT(" %s", cache->ctr_args[i]);
		if (cache->nr_ctr_args)
			DMEMIT(" %s", cache->ctr_args[cache->nr_ctr_args - 1]);
	}

	return;

err:
	DMEMIT("Error");
}

/*
3608 3609 3610 3611 3612 3613 3614 3615 3616 3617 3618 3619 3620 3621 3622 3623 3624 3625 3626 3627 3628 3629 3630 3631 3632 3633 3634 3635 3636 3637 3638 3639 3640 3641 3642 3643 3644 3645
 * A cache block range can take two forms:
 *
 * i) A single cblock, eg. '3456'
 * ii) A begin and end cblock with dots between, eg. 123-234
 */
static int parse_cblock_range(struct cache *cache, const char *str,
			      struct cblock_range *result)
{
	char dummy;
	uint64_t b, e;
	int r;

	/*
	 * Try and parse form (ii) first.
	 */
	r = sscanf(str, "%llu-%llu%c", &b, &e, &dummy);
	if (r < 0)
		return r;

	if (r == 2) {
		result->begin = to_cblock(b);
		result->end = to_cblock(e);
		return 0;
	}

	/*
	 * That didn't work, try form (i).
	 */
	r = sscanf(str, "%llu%c", &b, &dummy);
	if (r < 0)
		return r;

	if (r == 1) {
		result->begin = to_cblock(b);
		result->end = to_cblock(from_cblock(result->begin) + 1u);
		return 0;
	}

3646
	DMERR("%s: invalid cblock range '%s'", cache_device_name(cache), str);
3647 3648 3649 3650 3651 3652 3653 3654 3655 3656
	return -EINVAL;
}

static int validate_cblock_range(struct cache *cache, struct cblock_range *range)
{
	uint64_t b = from_cblock(range->begin);
	uint64_t e = from_cblock(range->end);
	uint64_t n = from_cblock(cache->cache_size);

	if (b >= n) {
3657 3658
		DMERR("%s: begin cblock out of range: %llu >= %llu",
		      cache_device_name(cache), b, n);
3659 3660 3661 3662
		return -EINVAL;
	}

	if (e > n) {
3663 3664
		DMERR("%s: end cblock out of range: %llu > %llu",
		      cache_device_name(cache), e, n);
3665 3666 3667 3668
		return -EINVAL;
	}

	if (b >= e) {
3669 3670
		DMERR("%s: invalid cblock range: %llu >= %llu",
		      cache_device_name(cache), b, e);
3671 3672 3673 3674 3675 3676 3677 3678 3679 3680 3681 3682 3683 3684 3685 3686 3687 3688 3689 3690 3691 3692 3693 3694 3695 3696 3697 3698 3699 3700 3701 3702 3703
		return -EINVAL;
	}

	return 0;
}

static int request_invalidation(struct cache *cache, struct cblock_range *range)
{
	struct invalidation_request req;

	INIT_LIST_HEAD(&req.list);
	req.cblocks = range;
	atomic_set(&req.complete, 0);
	req.err = 0;
	init_waitqueue_head(&req.result_wait);

	spin_lock(&cache->invalidation_lock);
	list_add(&req.list, &cache->invalidation_requests);
	spin_unlock(&cache->invalidation_lock);
	wake_worker(cache);

	wait_event(req.result_wait, atomic_read(&req.complete));
	return req.err;
}

static int process_invalidate_cblocks_message(struct cache *cache, unsigned count,
					      const char **cblock_ranges)
{
	int r = 0;
	unsigned i;
	struct cblock_range range;

	if (!passthrough_mode(&cache->features)) {
3704 3705
		DMERR("%s: cache has to be in passthrough mode for invalidation",
		      cache_device_name(cache));
3706 3707 3708 3709 3710 3711 3712 3713 3714 3715 3716 3717 3718 3719 3720 3721 3722 3723 3724 3725 3726 3727 3728 3729 3730 3731 3732 3733
		return -EPERM;
	}

	for (i = 0; i < count; i++) {
		r = parse_cblock_range(cache, cblock_ranges[i], &range);
		if (r)
			break;

		r = validate_cblock_range(cache, &range);
		if (r)
			break;

		/*
		 * Pass begin and end origin blocks to the worker and wake it.
		 */
		r = request_invalidation(cache, &range);
		if (r)
			break;
	}

	return r;
}

/*
 * Supports
 *	"<key> <value>"
 * and
 *     "invalidate_cblocks [(<begin>)|(<begin>-<end>)]*
J
Joe Thornber 已提交
3734 3735 3736 3737 3738 3739 3740
 *
 * The key migration_threshold is supported by the cache target core.
 */
static int cache_message(struct dm_target *ti, unsigned argc, char **argv)
{
	struct cache *cache = ti->private;

3741 3742 3743
	if (!argc)
		return -EINVAL;

3744
	if (get_cache_mode(cache) >= CM_READ_ONLY) {
3745 3746
		DMERR("%s: unable to service cache target messages in READ_ONLY or FAIL mode",
		      cache_device_name(cache));
3747 3748 3749
		return -EOPNOTSUPP;
	}

3750
	if (!strcasecmp(argv[0], "invalidate_cblocks"))
3751 3752
		return process_invalidate_cblocks_message(cache, argc - 1, (const char **) argv + 1);

J
Joe Thornber 已提交
3753 3754 3755
	if (argc != 2)
		return -EINVAL;

J
Joe Thornber 已提交
3756
	return set_config_value(cache, argv[0], argv[1]);
J
Joe Thornber 已提交
3757 3758 3759 3760 3761 3762 3763 3764 3765 3766 3767 3768 3769 3770 3771 3772 3773 3774 3775 3776 3777 3778 3779 3780 3781 3782 3783 3784 3785 3786 3787 3788 3789 3790 3791 3792 3793 3794 3795 3796
}

static int cache_iterate_devices(struct dm_target *ti,
				 iterate_devices_callout_fn fn, void *data)
{
	int r = 0;
	struct cache *cache = ti->private;

	r = fn(ti, cache->cache_dev, 0, get_dev_size(cache->cache_dev), data);
	if (!r)
		r = fn(ti, cache->origin_dev, 0, ti->len, data);

	return r;
}

/*
 * We assume I/O is going to the origin (which is the volume
 * more likely to have restrictions e.g. by being striped).
 * (Looking up the exact location of the data would be expensive
 * and could always be out of date by the time the bio is submitted.)
 */
static int cache_bvec_merge(struct dm_target *ti,
			    struct bvec_merge_data *bvm,
			    struct bio_vec *biovec, int max_size)
{
	struct cache *cache = ti->private;
	struct request_queue *q = bdev_get_queue(cache->origin_dev->bdev);

	if (!q->merge_bvec_fn)
		return max_size;

	bvm->bi_bdev = cache->origin_dev->bdev;
	return min(max_size, q->merge_bvec_fn(q, bvm, biovec));
}

static void set_discard_limits(struct cache *cache, struct queue_limits *limits)
{
	/*
	 * FIXME: these limits may be incompatible with the cache device
	 */
J
Joe Thornber 已提交
3797 3798
	limits->max_discard_sectors = min_t(sector_t, cache->discard_block_size * 1024,
					    cache->origin_sectors);
3799
	limits->discard_granularity = cache->discard_block_size << SECTOR_SHIFT;
J
Joe Thornber 已提交
3800 3801 3802 3803 3804
}

static void cache_io_hints(struct dm_target *ti, struct queue_limits *limits)
{
	struct cache *cache = ti->private;
3805
	uint64_t io_opt_sectors = limits->io_opt >> SECTOR_SHIFT;
J
Joe Thornber 已提交
3806

3807 3808 3809 3810 3811 3812
	/*
	 * If the system-determined stacked limits are compatible with the
	 * cache's blocksize (io_opt is a factor) do not override them.
	 */
	if (io_opt_sectors < cache->sectors_per_block ||
	    do_div(io_opt_sectors, cache->sectors_per_block)) {
3813
		blk_limits_io_min(limits, cache->sectors_per_block << SECTOR_SHIFT);
3814 3815
		blk_limits_io_opt(limits, cache->sectors_per_block << SECTOR_SHIFT);
	}
J
Joe Thornber 已提交
3816 3817 3818 3819 3820 3821 3822
	set_discard_limits(cache, limits);
}

/*----------------------------------------------------------------*/

static struct target_type cache_target = {
	.name = "cache",
3823
	.version = {1, 7, 0},
J
Joe Thornber 已提交
3824 3825 3826 3827 3828 3829 3830 3831 3832 3833 3834 3835 3836 3837 3838 3839 3840 3841 3842 3843 3844 3845 3846 3847 3848 3849 3850 3851 3852 3853 3854 3855 3856 3857 3858 3859 3860 3861 3862 3863 3864 3865 3866 3867 3868 3869
	.module = THIS_MODULE,
	.ctr = cache_ctr,
	.dtr = cache_dtr,
	.map = cache_map,
	.end_io = cache_end_io,
	.postsuspend = cache_postsuspend,
	.preresume = cache_preresume,
	.resume = cache_resume,
	.status = cache_status,
	.message = cache_message,
	.iterate_devices = cache_iterate_devices,
	.merge = cache_bvec_merge,
	.io_hints = cache_io_hints,
};

static int __init dm_cache_init(void)
{
	int r;

	r = dm_register_target(&cache_target);
	if (r) {
		DMERR("cache target registration failed: %d", r);
		return r;
	}

	migration_cache = KMEM_CACHE(dm_cache_migration, 0);
	if (!migration_cache) {
		dm_unregister_target(&cache_target);
		return -ENOMEM;
	}

	return 0;
}

static void __exit dm_cache_exit(void)
{
	dm_unregister_target(&cache_target);
	kmem_cache_destroy(migration_cache);
}

module_init(dm_cache_init);
module_exit(dm_cache_exit);

MODULE_DESCRIPTION(DM_NAME " cache target");
MODULE_AUTHOR("Joe Thornber <ejt@redhat.com>");
MODULE_LICENSE("GPL");