blob: 4b564069e08f0f5b438dd933069597d5517cbdf6 [file] [log] [blame]
Joe Thornberc6b4fcb2013-03-01 22:45:51 +00001/*
2 * Copyright (C) 2012 Red Hat. All rights reserved.
3 *
4 * This file is released under the GPL.
5 */
6
7#include "dm.h"
8#include "dm-bio-prison.h"
Darrick J. Wongb844fe62013-04-05 15:36:32 +01009#include "dm-bio-record.h"
Joe Thornberc6b4fcb2013-03-01 22:45:51 +000010#include "dm-cache-metadata.h"
11
12#include <linux/dm-io.h>
13#include <linux/dm-kcopyd.h>
14#include <linux/init.h>
15#include <linux/mempool.h>
16#include <linux/module.h>
17#include <linux/slab.h>
18#include <linux/vmalloc.h>
19
20#define DM_MSG_PREFIX "cache"
21
22DECLARE_DM_KCOPYD_THROTTLE_WITH_MODULE_PARM(cache_copy_throttle,
23 "A percentage of time allocated for copying to and/or from cache");
24
25/*----------------------------------------------------------------*/
26
27/*
28 * Glossary:
29 *
30 * oblock: index of an origin block
31 * cblock: index of a cache block
32 * promotion: movement of a block from origin to cache
33 * demotion: movement of a block from cache to origin
34 * migration: movement of a block between the origin and cache device,
35 * either direction
36 */
37
38/*----------------------------------------------------------------*/
39
40static size_t bitset_size_in_bytes(unsigned nr_entries)
41{
42 return sizeof(unsigned long) * dm_div_up(nr_entries, BITS_PER_LONG);
43}
44
45static unsigned long *alloc_bitset(unsigned nr_entries)
46{
47 size_t s = bitset_size_in_bytes(nr_entries);
48 return vzalloc(s);
49}
50
51static void clear_bitset(void *bitset, unsigned nr_entries)
52{
53 size_t s = bitset_size_in_bytes(nr_entries);
54 memset(bitset, 0, s);
55}
56
57static void free_bitset(unsigned long *bits)
58{
59 vfree(bits);
60}
61
62/*----------------------------------------------------------------*/
63
64#define PRISON_CELLS 1024
65#define MIGRATION_POOL_SIZE 128
66#define COMMIT_PERIOD HZ
67#define MIGRATION_COUNT_WINDOW 10
68
69/*
Mike Snitzer05473042013-08-16 10:54:19 -040070 * The block size of the device holding cache data must be
71 * between 32KB and 1GB.
Joe Thornberc6b4fcb2013-03-01 22:45:51 +000072 */
73#define DATA_DEV_BLOCK_SIZE_MIN_SECTORS (32 * 1024 >> SECTOR_SHIFT)
Mike Snitzer05473042013-08-16 10:54:19 -040074#define DATA_DEV_BLOCK_SIZE_MAX_SECTORS (1024 * 1024 * 1024 >> SECTOR_SHIFT)
Joe Thornberc6b4fcb2013-03-01 22:45:51 +000075
76/*
77 * FIXME: the cache is read/write for the time being.
78 */
79enum cache_mode {
80 CM_WRITE, /* metadata may be changed */
81 CM_READ_ONLY, /* metadata may not be changed */
82};
83
84struct cache_features {
85 enum cache_mode mode;
86 bool write_through:1;
87};
88
89struct cache_stats {
90 atomic_t read_hit;
91 atomic_t read_miss;
92 atomic_t write_hit;
93 atomic_t write_miss;
94 atomic_t demotion;
95 atomic_t promotion;
96 atomic_t copies_avoided;
97 atomic_t cache_cell_clash;
98 atomic_t commit_count;
99 atomic_t discard_count;
100};
101
102struct cache {
103 struct dm_target *ti;
104 struct dm_target_callbacks callbacks;
105
Mike Snitzerc9ec5d72013-08-16 10:54:21 -0400106 struct dm_cache_metadata *cmd;
107
Joe Thornberc6b4fcb2013-03-01 22:45:51 +0000108 /*
109 * Metadata is written to this device.
110 */
111 struct dm_dev *metadata_dev;
112
113 /*
114 * The slower of the two data devices. Typically a spindle.
115 */
116 struct dm_dev *origin_dev;
117
118 /*
119 * The faster of the two data devices. Typically an SSD.
120 */
121 struct dm_dev *cache_dev;
122
123 /*
Joe Thornberc6b4fcb2013-03-01 22:45:51 +0000124 * Size of the origin device in _complete_ blocks and native sectors.
125 */
126 dm_oblock_t origin_blocks;
127 sector_t origin_sectors;
128
129 /*
130 * Size of the cache device in blocks.
131 */
132 dm_cblock_t cache_size;
133
134 /*
135 * Fields for converting from sectors to blocks.
136 */
137 uint32_t sectors_per_block;
138 int sectors_per_block_shift;
139
Joe Thornberc6b4fcb2013-03-01 22:45:51 +0000140 spinlock_t lock;
141 struct bio_list deferred_bios;
142 struct bio_list deferred_flush_bios;
Joe Thornbere2e74d62013-03-20 17:21:27 +0000143 struct bio_list deferred_writethrough_bios;
Joe Thornberc6b4fcb2013-03-01 22:45:51 +0000144 struct list_head quiesced_migrations;
145 struct list_head completed_migrations;
146 struct list_head need_commit_migrations;
147 sector_t migration_threshold;
Joe Thornberc6b4fcb2013-03-01 22:45:51 +0000148 wait_queue_head_t migration_wait;
Mike Snitzerc9ec5d72013-08-16 10:54:21 -0400149 atomic_t nr_migrations;
Joe Thornberc6b4fcb2013-03-01 22:45:51 +0000150
Joe Thornber66cb1912013-10-30 17:11:58 +0000151 wait_queue_head_t quiescing_wait;
Joe Thornber238f8362013-10-30 17:29:30 +0000152 atomic_t quiescing;
Joe Thornber66cb1912013-10-30 17:11:58 +0000153 atomic_t quiescing_ack;
154
Joe Thornberc6b4fcb2013-03-01 22:45:51 +0000155 /*
156 * cache_size entries, dirty if set
157 */
158 dm_cblock_t nr_dirty;
159 unsigned long *dirty_bitset;
160
161 /*
162 * origin_blocks entries, discarded if set.
163 */
Joe Thornberc6b4fcb2013-03-01 22:45:51 +0000164 dm_dblock_t discard_nr_blocks;
165 unsigned long *discard_bitset;
Mike Snitzerc9ec5d72013-08-16 10:54:21 -0400166 uint32_t discard_block_size; /* a power of 2 times sectors per block */
167
168 /*
169 * Rather than reconstructing the table line for the status we just
170 * save it and regurgitate.
171 */
172 unsigned nr_ctr_args;
173 const char **ctr_args;
Joe Thornberc6b4fcb2013-03-01 22:45:51 +0000174
175 struct dm_kcopyd_client *copier;
176 struct workqueue_struct *wq;
177 struct work_struct worker;
178
179 struct delayed_work waker;
180 unsigned long last_commit_jiffies;
181
182 struct dm_bio_prison *prison;
183 struct dm_deferred_set *all_io_ds;
184
185 mempool_t *migration_pool;
186 struct dm_cache_migration *next_migration;
187
188 struct dm_cache_policy *policy;
189 unsigned policy_nr_args;
190
191 bool need_tick_bio:1;
192 bool sized:1;
Joe Thornberc6b4fcb2013-03-01 22:45:51 +0000193 bool commit_requested:1;
194 bool loaded_mappings:1;
195 bool loaded_discards:1;
196
Joe Thornberc6b4fcb2013-03-01 22:45:51 +0000197 /*
Mike Snitzerc9ec5d72013-08-16 10:54:21 -0400198 * Cache features such as write-through.
Joe Thornberc6b4fcb2013-03-01 22:45:51 +0000199 */
Mike Snitzerc9ec5d72013-08-16 10:54:21 -0400200 struct cache_features features;
201
202 struct cache_stats stats;
Joe Thornberc6b4fcb2013-03-01 22:45:51 +0000203};
204
205struct per_bio_data {
206 bool tick:1;
207 unsigned req_nr:2;
208 struct dm_deferred_entry *all_io_entry;
Joe Thornbere2e74d62013-03-20 17:21:27 +0000209
Mike Snitzer19b00922013-04-05 15:36:34 +0100210 /*
211 * writethrough fields. These MUST remain at the end of this
212 * structure and the 'cache' member must be the first as it
Joe Thornberaeed1422013-05-10 14:37:18 +0100213 * is used to determine the offset of the writethrough fields.
Mike Snitzer19b00922013-04-05 15:36:34 +0100214 */
Joe Thornbere2e74d62013-03-20 17:21:27 +0000215 struct cache *cache;
216 dm_cblock_t cblock;
217 bio_end_io_t *saved_bi_end_io;
Darrick J. Wongb844fe62013-04-05 15:36:32 +0100218 struct dm_bio_details bio_details;
Joe Thornberc6b4fcb2013-03-01 22:45:51 +0000219};
220
221struct dm_cache_migration {
222 struct list_head list;
223 struct cache *cache;
224
225 unsigned long start_jiffies;
226 dm_oblock_t old_oblock;
227 dm_oblock_t new_oblock;
228 dm_cblock_t cblock;
229
230 bool err:1;
231 bool writeback:1;
232 bool demote:1;
233 bool promote:1;
234
235 struct dm_bio_prison_cell *old_ocell;
236 struct dm_bio_prison_cell *new_ocell;
237};
238
239/*
240 * Processing a bio in the worker thread may require these memory
241 * allocations. We prealloc to avoid deadlocks (the same worker thread
242 * frees them back to the mempool).
243 */
244struct prealloc {
245 struct dm_cache_migration *mg;
246 struct dm_bio_prison_cell *cell1;
247 struct dm_bio_prison_cell *cell2;
248};
249
250static void wake_worker(struct cache *cache)
251{
252 queue_work(cache->wq, &cache->worker);
253}
254
255/*----------------------------------------------------------------*/
256
257static struct dm_bio_prison_cell *alloc_prison_cell(struct cache *cache)
258{
259 /* FIXME: change to use a local slab. */
260 return dm_bio_prison_alloc_cell(cache->prison, GFP_NOWAIT);
261}
262
263static void free_prison_cell(struct cache *cache, struct dm_bio_prison_cell *cell)
264{
265 dm_bio_prison_free_cell(cache->prison, cell);
266}
267
268static int prealloc_data_structs(struct cache *cache, struct prealloc *p)
269{
270 if (!p->mg) {
271 p->mg = mempool_alloc(cache->migration_pool, GFP_NOWAIT);
272 if (!p->mg)
273 return -ENOMEM;
274 }
275
276 if (!p->cell1) {
277 p->cell1 = alloc_prison_cell(cache);
278 if (!p->cell1)
279 return -ENOMEM;
280 }
281
282 if (!p->cell2) {
283 p->cell2 = alloc_prison_cell(cache);
284 if (!p->cell2)
285 return -ENOMEM;
286 }
287
288 return 0;
289}
290
291static void prealloc_free_structs(struct cache *cache, struct prealloc *p)
292{
293 if (p->cell2)
294 free_prison_cell(cache, p->cell2);
295
296 if (p->cell1)
297 free_prison_cell(cache, p->cell1);
298
299 if (p->mg)
300 mempool_free(p->mg, cache->migration_pool);
301}
302
303static struct dm_cache_migration *prealloc_get_migration(struct prealloc *p)
304{
305 struct dm_cache_migration *mg = p->mg;
306
307 BUG_ON(!mg);
308 p->mg = NULL;
309
310 return mg;
311}
312
313/*
314 * You must have a cell within the prealloc struct to return. If not this
315 * function will BUG() rather than returning NULL.
316 */
317static struct dm_bio_prison_cell *prealloc_get_cell(struct prealloc *p)
318{
319 struct dm_bio_prison_cell *r = NULL;
320
321 if (p->cell1) {
322 r = p->cell1;
323 p->cell1 = NULL;
324
325 } else if (p->cell2) {
326 r = p->cell2;
327 p->cell2 = NULL;
328 } else
329 BUG();
330
331 return r;
332}
333
334/*
335 * You can't have more than two cells in a prealloc struct. BUG() will be
336 * called if you try and overfill.
337 */
338static void prealloc_put_cell(struct prealloc *p, struct dm_bio_prison_cell *cell)
339{
340 if (!p->cell2)
341 p->cell2 = cell;
342
343 else if (!p->cell1)
344 p->cell1 = cell;
345
346 else
347 BUG();
348}
349
350/*----------------------------------------------------------------*/
351
352static void build_key(dm_oblock_t oblock, struct dm_cell_key *key)
353{
354 key->virtual = 0;
355 key->dev = 0;
356 key->block = from_oblock(oblock);
357}
358
359/*
360 * The caller hands in a preallocated cell, and a free function for it.
361 * The cell will be freed if there's an error, or if it wasn't used because
362 * a cell with that key already exists.
363 */
364typedef void (*cell_free_fn)(void *context, struct dm_bio_prison_cell *cell);
365
366static int bio_detain(struct cache *cache, dm_oblock_t oblock,
367 struct bio *bio, struct dm_bio_prison_cell *cell_prealloc,
368 cell_free_fn free_fn, void *free_context,
369 struct dm_bio_prison_cell **cell_result)
370{
371 int r;
372 struct dm_cell_key key;
373
374 build_key(oblock, &key);
375 r = dm_bio_detain(cache->prison, &key, bio, cell_prealloc, cell_result);
376 if (r)
377 free_fn(free_context, cell_prealloc);
378
379 return r;
380}
381
382static int get_cell(struct cache *cache,
383 dm_oblock_t oblock,
384 struct prealloc *structs,
385 struct dm_bio_prison_cell **cell_result)
386{
387 int r;
388 struct dm_cell_key key;
389 struct dm_bio_prison_cell *cell_prealloc;
390
391 cell_prealloc = prealloc_get_cell(structs);
392
393 build_key(oblock, &key);
394 r = dm_get_cell(cache->prison, &key, cell_prealloc, cell_result);
395 if (r)
396 prealloc_put_cell(structs, cell_prealloc);
397
398 return r;
399}
400
Joe Thornberaeed1422013-05-10 14:37:18 +0100401/*----------------------------------------------------------------*/
Joe Thornberc6b4fcb2013-03-01 22:45:51 +0000402
403static bool is_dirty(struct cache *cache, dm_cblock_t b)
404{
405 return test_bit(from_cblock(b), cache->dirty_bitset);
406}
407
408static void set_dirty(struct cache *cache, dm_oblock_t oblock, dm_cblock_t cblock)
409{
410 if (!test_and_set_bit(from_cblock(cblock), cache->dirty_bitset)) {
411 cache->nr_dirty = to_cblock(from_cblock(cache->nr_dirty) + 1);
412 policy_set_dirty(cache->policy, oblock);
413 }
414}
415
416static void clear_dirty(struct cache *cache, dm_oblock_t oblock, dm_cblock_t cblock)
417{
418 if (test_and_clear_bit(from_cblock(cblock), cache->dirty_bitset)) {
419 policy_clear_dirty(cache->policy, oblock);
420 cache->nr_dirty = to_cblock(from_cblock(cache->nr_dirty) - 1);
421 if (!from_cblock(cache->nr_dirty))
422 dm_table_event(cache->ti->table);
423 }
424}
425
426/*----------------------------------------------------------------*/
Joe Thornberaeed1422013-05-10 14:37:18 +0100427
Joe Thornberc6b4fcb2013-03-01 22:45:51 +0000428static bool block_size_is_power_of_two(struct cache *cache)
429{
430 return cache->sectors_per_block_shift >= 0;
431}
432
Mikulas Patocka43aeaa22013-07-10 23:41:17 +0100433/* gcc on ARM generates spurious references to __udivdi3 and __umoddi3 */
434#if defined(CONFIG_ARM) && __GNUC__ == 4 && __GNUC_MINOR__ <= 6
435__always_inline
436#endif
Joe Thornber414dd672013-03-20 17:21:25 +0000437static dm_block_t block_div(dm_block_t b, uint32_t n)
438{
439 do_div(b, n);
440
441 return b;
442}
443
Joe Thornberc6b4fcb2013-03-01 22:45:51 +0000444static dm_dblock_t oblock_to_dblock(struct cache *cache, dm_oblock_t oblock)
445{
Joe Thornber414dd672013-03-20 17:21:25 +0000446 uint32_t discard_blocks = cache->discard_block_size;
Joe Thornberc6b4fcb2013-03-01 22:45:51 +0000447 dm_block_t b = from_oblock(oblock);
448
449 if (!block_size_is_power_of_two(cache))
Joe Thornber414dd672013-03-20 17:21:25 +0000450 discard_blocks = discard_blocks / cache->sectors_per_block;
Joe Thornberc6b4fcb2013-03-01 22:45:51 +0000451 else
452 discard_blocks >>= cache->sectors_per_block_shift;
453
Joe Thornber414dd672013-03-20 17:21:25 +0000454 b = block_div(b, discard_blocks);
Joe Thornberc6b4fcb2013-03-01 22:45:51 +0000455
456 return to_dblock(b);
457}
458
459static void set_discard(struct cache *cache, dm_dblock_t b)
460{
461 unsigned long flags;
462
463 atomic_inc(&cache->stats.discard_count);
464
465 spin_lock_irqsave(&cache->lock, flags);
466 set_bit(from_dblock(b), cache->discard_bitset);
467 spin_unlock_irqrestore(&cache->lock, flags);
468}
469
470static void clear_discard(struct cache *cache, dm_dblock_t b)
471{
472 unsigned long flags;
473
474 spin_lock_irqsave(&cache->lock, flags);
475 clear_bit(from_dblock(b), cache->discard_bitset);
476 spin_unlock_irqrestore(&cache->lock, flags);
477}
478
479static bool is_discarded(struct cache *cache, dm_dblock_t b)
480{
481 int r;
482 unsigned long flags;
483
484 spin_lock_irqsave(&cache->lock, flags);
485 r = test_bit(from_dblock(b), cache->discard_bitset);
486 spin_unlock_irqrestore(&cache->lock, flags);
487
488 return r;
489}
490
491static bool is_discarded_oblock(struct cache *cache, dm_oblock_t b)
492{
493 int r;
494 unsigned long flags;
495
496 spin_lock_irqsave(&cache->lock, flags);
497 r = test_bit(from_dblock(oblock_to_dblock(cache, b)),
498 cache->discard_bitset);
499 spin_unlock_irqrestore(&cache->lock, flags);
500
501 return r;
502}
503
504/*----------------------------------------------------------------*/
505
506static void load_stats(struct cache *cache)
507{
508 struct dm_cache_statistics stats;
509
510 dm_cache_metadata_get_stats(cache->cmd, &stats);
511 atomic_set(&cache->stats.read_hit, stats.read_hits);
512 atomic_set(&cache->stats.read_miss, stats.read_misses);
513 atomic_set(&cache->stats.write_hit, stats.write_hits);
514 atomic_set(&cache->stats.write_miss, stats.write_misses);
515}
516
517static void save_stats(struct cache *cache)
518{
519 struct dm_cache_statistics stats;
520
521 stats.read_hits = atomic_read(&cache->stats.read_hit);
522 stats.read_misses = atomic_read(&cache->stats.read_miss);
523 stats.write_hits = atomic_read(&cache->stats.write_hit);
524 stats.write_misses = atomic_read(&cache->stats.write_miss);
525
526 dm_cache_metadata_set_stats(cache->cmd, &stats);
527}
528
529/*----------------------------------------------------------------
530 * Per bio data
531 *--------------------------------------------------------------*/
Mike Snitzer19b00922013-04-05 15:36:34 +0100532
533/*
534 * If using writeback, leave out struct per_bio_data's writethrough fields.
535 */
536#define PB_DATA_SIZE_WB (offsetof(struct per_bio_data, cache))
537#define PB_DATA_SIZE_WT (sizeof(struct per_bio_data))
538
539static size_t get_per_bio_data_size(struct cache *cache)
Joe Thornberc6b4fcb2013-03-01 22:45:51 +0000540{
Mike Snitzer19b00922013-04-05 15:36:34 +0100541 return cache->features.write_through ? PB_DATA_SIZE_WT : PB_DATA_SIZE_WB;
542}
543
544static struct per_bio_data *get_per_bio_data(struct bio *bio, size_t data_size)
545{
546 struct per_bio_data *pb = dm_per_bio_data(bio, data_size);
Joe Thornberc6b4fcb2013-03-01 22:45:51 +0000547 BUG_ON(!pb);
548 return pb;
549}
550
Mike Snitzer19b00922013-04-05 15:36:34 +0100551static struct per_bio_data *init_per_bio_data(struct bio *bio, size_t data_size)
Joe Thornberc6b4fcb2013-03-01 22:45:51 +0000552{
Mike Snitzer19b00922013-04-05 15:36:34 +0100553 struct per_bio_data *pb = get_per_bio_data(bio, data_size);
Joe Thornberc6b4fcb2013-03-01 22:45:51 +0000554
555 pb->tick = false;
556 pb->req_nr = dm_bio_get_target_bio_nr(bio);
557 pb->all_io_entry = NULL;
558
559 return pb;
560}
561
562/*----------------------------------------------------------------
563 * Remapping
564 *--------------------------------------------------------------*/
565static void remap_to_origin(struct cache *cache, struct bio *bio)
566{
567 bio->bi_bdev = cache->origin_dev->bdev;
568}
569
570static void remap_to_cache(struct cache *cache, struct bio *bio,
571 dm_cblock_t cblock)
572{
573 sector_t bi_sector = bio->bi_sector;
574
575 bio->bi_bdev = cache->cache_dev->bdev;
576 if (!block_size_is_power_of_two(cache))
577 bio->bi_sector = (from_cblock(cblock) * cache->sectors_per_block) +
578 sector_div(bi_sector, cache->sectors_per_block);
579 else
580 bio->bi_sector = (from_cblock(cblock) << cache->sectors_per_block_shift) |
581 (bi_sector & (cache->sectors_per_block - 1));
582}
583
584static void check_if_tick_bio_needed(struct cache *cache, struct bio *bio)
585{
586 unsigned long flags;
Mike Snitzer19b00922013-04-05 15:36:34 +0100587 size_t pb_data_size = get_per_bio_data_size(cache);
588 struct per_bio_data *pb = get_per_bio_data(bio, pb_data_size);
Joe Thornberc6b4fcb2013-03-01 22:45:51 +0000589
590 spin_lock_irqsave(&cache->lock, flags);
591 if (cache->need_tick_bio &&
592 !(bio->bi_rw & (REQ_FUA | REQ_FLUSH | REQ_DISCARD))) {
593 pb->tick = true;
594 cache->need_tick_bio = false;
595 }
596 spin_unlock_irqrestore(&cache->lock, flags);
597}
598
599static void remap_to_origin_clear_discard(struct cache *cache, struct bio *bio,
600 dm_oblock_t oblock)
601{
602 check_if_tick_bio_needed(cache, bio);
603 remap_to_origin(cache, bio);
604 if (bio_data_dir(bio) == WRITE)
605 clear_discard(cache, oblock_to_dblock(cache, oblock));
606}
607
608static void remap_to_cache_dirty(struct cache *cache, struct bio *bio,
609 dm_oblock_t oblock, dm_cblock_t cblock)
610{
Joe Thornberf8e5f012013-10-21 12:51:45 +0100611 check_if_tick_bio_needed(cache, bio);
Joe Thornberc6b4fcb2013-03-01 22:45:51 +0000612 remap_to_cache(cache, bio, cblock);
613 if (bio_data_dir(bio) == WRITE) {
614 set_dirty(cache, oblock, cblock);
615 clear_discard(cache, oblock_to_dblock(cache, oblock));
616 }
617}
618
619static dm_oblock_t get_bio_block(struct cache *cache, struct bio *bio)
620{
621 sector_t block_nr = bio->bi_sector;
622
623 if (!block_size_is_power_of_two(cache))
624 (void) sector_div(block_nr, cache->sectors_per_block);
625 else
626 block_nr >>= cache->sectors_per_block_shift;
627
628 return to_oblock(block_nr);
629}
630
631static int bio_triggers_commit(struct cache *cache, struct bio *bio)
632{
633 return bio->bi_rw & (REQ_FLUSH | REQ_FUA);
634}
635
636static void issue(struct cache *cache, struct bio *bio)
637{
638 unsigned long flags;
639
640 if (!bio_triggers_commit(cache, bio)) {
641 generic_make_request(bio);
642 return;
643 }
644
645 /*
646 * Batch together any bios that trigger commits and then issue a
647 * single commit for them in do_worker().
648 */
649 spin_lock_irqsave(&cache->lock, flags);
650 cache->commit_requested = true;
651 bio_list_add(&cache->deferred_flush_bios, bio);
652 spin_unlock_irqrestore(&cache->lock, flags);
653}
654
Joe Thornbere2e74d62013-03-20 17:21:27 +0000655static void defer_writethrough_bio(struct cache *cache, struct bio *bio)
656{
657 unsigned long flags;
658
659 spin_lock_irqsave(&cache->lock, flags);
660 bio_list_add(&cache->deferred_writethrough_bios, bio);
661 spin_unlock_irqrestore(&cache->lock, flags);
662
663 wake_worker(cache);
664}
665
666static void writethrough_endio(struct bio *bio, int err)
667{
Mike Snitzer19b00922013-04-05 15:36:34 +0100668 struct per_bio_data *pb = get_per_bio_data(bio, PB_DATA_SIZE_WT);
Joe Thornbere2e74d62013-03-20 17:21:27 +0000669 bio->bi_end_io = pb->saved_bi_end_io;
670
671 if (err) {
672 bio_endio(bio, err);
673 return;
674 }
675
Darrick J. Wongb844fe62013-04-05 15:36:32 +0100676 dm_bio_restore(&pb->bio_details, bio);
Joe Thornbere2e74d62013-03-20 17:21:27 +0000677 remap_to_cache(pb->cache, bio, pb->cblock);
678
679 /*
680 * We can't issue this bio directly, since we're in interrupt
Joe Thornberaeed1422013-05-10 14:37:18 +0100681 * context. So it gets put on a bio list for processing by the
Joe Thornbere2e74d62013-03-20 17:21:27 +0000682 * worker thread.
683 */
684 defer_writethrough_bio(pb->cache, bio);
685}
686
687/*
688 * When running in writethrough mode we need to send writes to clean blocks
689 * to both the cache and origin devices. In future we'd like to clone the
690 * bio and send them in parallel, but for now we're doing them in
691 * series as this is easier.
692 */
693static void remap_to_origin_then_cache(struct cache *cache, struct bio *bio,
694 dm_oblock_t oblock, dm_cblock_t cblock)
695{
Mike Snitzer19b00922013-04-05 15:36:34 +0100696 struct per_bio_data *pb = get_per_bio_data(bio, PB_DATA_SIZE_WT);
Joe Thornbere2e74d62013-03-20 17:21:27 +0000697
698 pb->cache = cache;
699 pb->cblock = cblock;
700 pb->saved_bi_end_io = bio->bi_end_io;
Darrick J. Wongb844fe62013-04-05 15:36:32 +0100701 dm_bio_record(&pb->bio_details, bio);
Joe Thornbere2e74d62013-03-20 17:21:27 +0000702 bio->bi_end_io = writethrough_endio;
703
704 remap_to_origin_clear_discard(pb->cache, bio, oblock);
705}
706
Joe Thornberc6b4fcb2013-03-01 22:45:51 +0000707/*----------------------------------------------------------------
708 * Migration processing
709 *
710 * Migration covers moving data from the origin device to the cache, or
711 * vice versa.
712 *--------------------------------------------------------------*/
713static void free_migration(struct dm_cache_migration *mg)
714{
715 mempool_free(mg, mg->cache->migration_pool);
716}
717
718static void inc_nr_migrations(struct cache *cache)
719{
720 atomic_inc(&cache->nr_migrations);
721}
722
723static void dec_nr_migrations(struct cache *cache)
724{
725 atomic_dec(&cache->nr_migrations);
726
727 /*
728 * Wake the worker in case we're suspending the target.
729 */
730 wake_up(&cache->migration_wait);
731}
732
733static void __cell_defer(struct cache *cache, struct dm_bio_prison_cell *cell,
734 bool holder)
735{
736 (holder ? dm_cell_release : dm_cell_release_no_holder)
737 (cache->prison, cell, &cache->deferred_bios);
738 free_prison_cell(cache, cell);
739}
740
741static void cell_defer(struct cache *cache, struct dm_bio_prison_cell *cell,
742 bool holder)
743{
744 unsigned long flags;
745
746 spin_lock_irqsave(&cache->lock, flags);
747 __cell_defer(cache, cell, holder);
748 spin_unlock_irqrestore(&cache->lock, flags);
749
750 wake_worker(cache);
751}
752
753static void cleanup_migration(struct dm_cache_migration *mg)
754{
Joe Thornber66cb1912013-10-30 17:11:58 +0000755 struct cache *cache = mg->cache;
Joe Thornberc6b4fcb2013-03-01 22:45:51 +0000756 free_migration(mg);
Joe Thornber66cb1912013-10-30 17:11:58 +0000757 dec_nr_migrations(cache);
Joe Thornberc6b4fcb2013-03-01 22:45:51 +0000758}
759
760static void migration_failure(struct dm_cache_migration *mg)
761{
762 struct cache *cache = mg->cache;
763
764 if (mg->writeback) {
765 DMWARN_LIMIT("writeback failed; couldn't copy block");
766 set_dirty(cache, mg->old_oblock, mg->cblock);
767 cell_defer(cache, mg->old_ocell, false);
768
769 } else if (mg->demote) {
770 DMWARN_LIMIT("demotion failed; couldn't copy block");
771 policy_force_mapping(cache->policy, mg->new_oblock, mg->old_oblock);
772
Heinz Mauelshagen80f659f2013-10-14 17:10:47 +0200773 cell_defer(cache, mg->old_ocell, mg->promote ? false : true);
Joe Thornberc6b4fcb2013-03-01 22:45:51 +0000774 if (mg->promote)
Heinz Mauelshagen80f659f2013-10-14 17:10:47 +0200775 cell_defer(cache, mg->new_ocell, true);
Joe Thornberc6b4fcb2013-03-01 22:45:51 +0000776 } else {
777 DMWARN_LIMIT("promotion failed; couldn't copy block");
778 policy_remove_mapping(cache->policy, mg->new_oblock);
Heinz Mauelshagen80f659f2013-10-14 17:10:47 +0200779 cell_defer(cache, mg->new_ocell, true);
Joe Thornberc6b4fcb2013-03-01 22:45:51 +0000780 }
781
782 cleanup_migration(mg);
783}
784
785static void migration_success_pre_commit(struct dm_cache_migration *mg)
786{
787 unsigned long flags;
788 struct cache *cache = mg->cache;
789
790 if (mg->writeback) {
791 cell_defer(cache, mg->old_ocell, false);
792 clear_dirty(cache, mg->old_oblock, mg->cblock);
793 cleanup_migration(mg);
794 return;
795
796 } else if (mg->demote) {
797 if (dm_cache_remove_mapping(cache->cmd, mg->cblock)) {
798 DMWARN_LIMIT("demotion failed; couldn't update on disk metadata");
799 policy_force_mapping(cache->policy, mg->new_oblock,
800 mg->old_oblock);
801 if (mg->promote)
802 cell_defer(cache, mg->new_ocell, true);
803 cleanup_migration(mg);
804 return;
805 }
806 } else {
807 if (dm_cache_insert_mapping(cache->cmd, mg->cblock, mg->new_oblock)) {
808 DMWARN_LIMIT("promotion failed; couldn't update on disk metadata");
809 policy_remove_mapping(cache->policy, mg->new_oblock);
810 cleanup_migration(mg);
811 return;
812 }
813 }
814
815 spin_lock_irqsave(&cache->lock, flags);
816 list_add_tail(&mg->list, &cache->need_commit_migrations);
817 cache->commit_requested = true;
818 spin_unlock_irqrestore(&cache->lock, flags);
819}
820
821static void migration_success_post_commit(struct dm_cache_migration *mg)
822{
823 unsigned long flags;
824 struct cache *cache = mg->cache;
825
826 if (mg->writeback) {
827 DMWARN("writeback unexpectedly triggered commit");
828 return;
829
830 } else if (mg->demote) {
Heinz Mauelshagen80f659f2013-10-14 17:10:47 +0200831 cell_defer(cache, mg->old_ocell, mg->promote ? false : true);
Joe Thornberc6b4fcb2013-03-01 22:45:51 +0000832
833 if (mg->promote) {
834 mg->demote = false;
835
836 spin_lock_irqsave(&cache->lock, flags);
837 list_add_tail(&mg->list, &cache->quiesced_migrations);
838 spin_unlock_irqrestore(&cache->lock, flags);
839
840 } else
841 cleanup_migration(mg);
842
843 } else {
844 cell_defer(cache, mg->new_ocell, true);
845 clear_dirty(cache, mg->new_oblock, mg->cblock);
846 cleanup_migration(mg);
847 }
848}
849
850static void copy_complete(int read_err, unsigned long write_err, void *context)
851{
852 unsigned long flags;
853 struct dm_cache_migration *mg = (struct dm_cache_migration *) context;
854 struct cache *cache = mg->cache;
855
856 if (read_err || write_err)
857 mg->err = true;
858
859 spin_lock_irqsave(&cache->lock, flags);
860 list_add_tail(&mg->list, &cache->completed_migrations);
861 spin_unlock_irqrestore(&cache->lock, flags);
862
863 wake_worker(cache);
864}
865
866static void issue_copy_real(struct dm_cache_migration *mg)
867{
868 int r;
869 struct dm_io_region o_region, c_region;
870 struct cache *cache = mg->cache;
871
872 o_region.bdev = cache->origin_dev->bdev;
873 o_region.count = cache->sectors_per_block;
874
875 c_region.bdev = cache->cache_dev->bdev;
876 c_region.sector = from_cblock(mg->cblock) * cache->sectors_per_block;
877 c_region.count = cache->sectors_per_block;
878
879 if (mg->writeback || mg->demote) {
880 /* demote */
881 o_region.sector = from_oblock(mg->old_oblock) * cache->sectors_per_block;
882 r = dm_kcopyd_copy(cache->copier, &c_region, 1, &o_region, 0, copy_complete, mg);
883 } else {
884 /* promote */
885 o_region.sector = from_oblock(mg->new_oblock) * cache->sectors_per_block;
886 r = dm_kcopyd_copy(cache->copier, &o_region, 1, &c_region, 0, copy_complete, mg);
887 }
888
Heinz Mauelshagen2c2263c2013-10-14 17:14:45 +0200889 if (r < 0) {
890 DMERR_LIMIT("issuing migration failed");
Joe Thornberc6b4fcb2013-03-01 22:45:51 +0000891 migration_failure(mg);
Heinz Mauelshagen2c2263c2013-10-14 17:14:45 +0200892 }
Joe Thornberc6b4fcb2013-03-01 22:45:51 +0000893}
894
895static void avoid_copy(struct dm_cache_migration *mg)
896{
897 atomic_inc(&mg->cache->stats.copies_avoided);
898 migration_success_pre_commit(mg);
899}
900
901static void issue_copy(struct dm_cache_migration *mg)
902{
903 bool avoid;
904 struct cache *cache = mg->cache;
905
906 if (mg->writeback || mg->demote)
907 avoid = !is_dirty(cache, mg->cblock) ||
908 is_discarded_oblock(cache, mg->old_oblock);
909 else
910 avoid = is_discarded_oblock(cache, mg->new_oblock);
911
912 avoid ? avoid_copy(mg) : issue_copy_real(mg);
913}
914
915static void complete_migration(struct dm_cache_migration *mg)
916{
917 if (mg->err)
918 migration_failure(mg);
919 else
920 migration_success_pre_commit(mg);
921}
922
923static void process_migrations(struct cache *cache, struct list_head *head,
924 void (*fn)(struct dm_cache_migration *))
925{
926 unsigned long flags;
927 struct list_head list;
928 struct dm_cache_migration *mg, *tmp;
929
930 INIT_LIST_HEAD(&list);
931 spin_lock_irqsave(&cache->lock, flags);
932 list_splice_init(head, &list);
933 spin_unlock_irqrestore(&cache->lock, flags);
934
935 list_for_each_entry_safe(mg, tmp, &list, list)
936 fn(mg);
937}
938
939static void __queue_quiesced_migration(struct dm_cache_migration *mg)
940{
941 list_add_tail(&mg->list, &mg->cache->quiesced_migrations);
942}
943
944static void queue_quiesced_migration(struct dm_cache_migration *mg)
945{
946 unsigned long flags;
947 struct cache *cache = mg->cache;
948
949 spin_lock_irqsave(&cache->lock, flags);
950 __queue_quiesced_migration(mg);
951 spin_unlock_irqrestore(&cache->lock, flags);
952
953 wake_worker(cache);
954}
955
956static void queue_quiesced_migrations(struct cache *cache, struct list_head *work)
957{
958 unsigned long flags;
959 struct dm_cache_migration *mg, *tmp;
960
961 spin_lock_irqsave(&cache->lock, flags);
962 list_for_each_entry_safe(mg, tmp, work, list)
963 __queue_quiesced_migration(mg);
964 spin_unlock_irqrestore(&cache->lock, flags);
965
966 wake_worker(cache);
967}
968
969static void check_for_quiesced_migrations(struct cache *cache,
970 struct per_bio_data *pb)
971{
972 struct list_head work;
973
974 if (!pb->all_io_entry)
975 return;
976
977 INIT_LIST_HEAD(&work);
978 if (pb->all_io_entry)
979 dm_deferred_entry_dec(pb->all_io_entry, &work);
980
981 if (!list_empty(&work))
982 queue_quiesced_migrations(cache, &work);
983}
984
985static void quiesce_migration(struct dm_cache_migration *mg)
986{
987 if (!dm_deferred_set_add_work(mg->cache->all_io_ds, &mg->list))
988 queue_quiesced_migration(mg);
989}
990
991static void promote(struct cache *cache, struct prealloc *structs,
992 dm_oblock_t oblock, dm_cblock_t cblock,
993 struct dm_bio_prison_cell *cell)
994{
995 struct dm_cache_migration *mg = prealloc_get_migration(structs);
996
997 mg->err = false;
998 mg->writeback = false;
999 mg->demote = false;
1000 mg->promote = true;
1001 mg->cache = cache;
1002 mg->new_oblock = oblock;
1003 mg->cblock = cblock;
1004 mg->old_ocell = NULL;
1005 mg->new_ocell = cell;
1006 mg->start_jiffies = jiffies;
1007
1008 inc_nr_migrations(cache);
1009 quiesce_migration(mg);
1010}
1011
1012static void writeback(struct cache *cache, struct prealloc *structs,
1013 dm_oblock_t oblock, dm_cblock_t cblock,
1014 struct dm_bio_prison_cell *cell)
1015{
1016 struct dm_cache_migration *mg = prealloc_get_migration(structs);
1017
1018 mg->err = false;
1019 mg->writeback = true;
1020 mg->demote = false;
1021 mg->promote = false;
1022 mg->cache = cache;
1023 mg->old_oblock = oblock;
1024 mg->cblock = cblock;
1025 mg->old_ocell = cell;
1026 mg->new_ocell = NULL;
1027 mg->start_jiffies = jiffies;
1028
1029 inc_nr_migrations(cache);
1030 quiesce_migration(mg);
1031}
1032
1033static void demote_then_promote(struct cache *cache, struct prealloc *structs,
1034 dm_oblock_t old_oblock, dm_oblock_t new_oblock,
1035 dm_cblock_t cblock,
1036 struct dm_bio_prison_cell *old_ocell,
1037 struct dm_bio_prison_cell *new_ocell)
1038{
1039 struct dm_cache_migration *mg = prealloc_get_migration(structs);
1040
1041 mg->err = false;
1042 mg->writeback = false;
1043 mg->demote = true;
1044 mg->promote = true;
1045 mg->cache = cache;
1046 mg->old_oblock = old_oblock;
1047 mg->new_oblock = new_oblock;
1048 mg->cblock = cblock;
1049 mg->old_ocell = old_ocell;
1050 mg->new_ocell = new_ocell;
1051 mg->start_jiffies = jiffies;
1052
1053 inc_nr_migrations(cache);
1054 quiesce_migration(mg);
1055}
1056
1057/*----------------------------------------------------------------
1058 * bio processing
1059 *--------------------------------------------------------------*/
1060static void defer_bio(struct cache *cache, struct bio *bio)
1061{
1062 unsigned long flags;
1063
1064 spin_lock_irqsave(&cache->lock, flags);
1065 bio_list_add(&cache->deferred_bios, bio);
1066 spin_unlock_irqrestore(&cache->lock, flags);
1067
1068 wake_worker(cache);
1069}
1070
1071static void process_flush_bio(struct cache *cache, struct bio *bio)
1072{
Mike Snitzer19b00922013-04-05 15:36:34 +01001073 size_t pb_data_size = get_per_bio_data_size(cache);
1074 struct per_bio_data *pb = get_per_bio_data(bio, pb_data_size);
Joe Thornberc6b4fcb2013-03-01 22:45:51 +00001075
1076 BUG_ON(bio->bi_size);
1077 if (!pb->req_nr)
1078 remap_to_origin(cache, bio);
1079 else
1080 remap_to_cache(cache, bio, 0);
1081
1082 issue(cache, bio);
1083}
1084
1085/*
1086 * People generally discard large parts of a device, eg, the whole device
1087 * when formatting. Splitting these large discards up into cache block
1088 * sized ios and then quiescing (always neccessary for discard) takes too
1089 * long.
1090 *
1091 * We keep it simple, and allow any size of discard to come in, and just
1092 * mark off blocks on the discard bitset. No passdown occurs!
1093 *
1094 * To implement passdown we need to change the bio_prison such that a cell
1095 * can have a key that spans many blocks.
1096 */
1097static void process_discard_bio(struct cache *cache, struct bio *bio)
1098{
1099 dm_block_t start_block = dm_sector_div_up(bio->bi_sector,
1100 cache->discard_block_size);
1101 dm_block_t end_block = bio->bi_sector + bio_sectors(bio);
1102 dm_block_t b;
1103
Joe Thornber414dd672013-03-20 17:21:25 +00001104 end_block = block_div(end_block, cache->discard_block_size);
Joe Thornberc6b4fcb2013-03-01 22:45:51 +00001105
1106 for (b = start_block; b < end_block; b++)
1107 set_discard(cache, to_dblock(b));
1108
1109 bio_endio(bio, 0);
1110}
1111
1112static bool spare_migration_bandwidth(struct cache *cache)
1113{
1114 sector_t current_volume = (atomic_read(&cache->nr_migrations) + 1) *
1115 cache->sectors_per_block;
1116 return current_volume < cache->migration_threshold;
1117}
1118
1119static bool is_writethrough_io(struct cache *cache, struct bio *bio,
1120 dm_cblock_t cblock)
1121{
1122 return bio_data_dir(bio) == WRITE &&
1123 cache->features.write_through && !is_dirty(cache, cblock);
1124}
1125
1126static void inc_hit_counter(struct cache *cache, struct bio *bio)
1127{
1128 atomic_inc(bio_data_dir(bio) == READ ?
1129 &cache->stats.read_hit : &cache->stats.write_hit);
1130}
1131
1132static void inc_miss_counter(struct cache *cache, struct bio *bio)
1133{
1134 atomic_inc(bio_data_dir(bio) == READ ?
1135 &cache->stats.read_miss : &cache->stats.write_miss);
1136}
1137
1138static void process_bio(struct cache *cache, struct prealloc *structs,
1139 struct bio *bio)
1140{
1141 int r;
1142 bool release_cell = true;
1143 dm_oblock_t block = get_bio_block(cache, bio);
1144 struct dm_bio_prison_cell *cell_prealloc, *old_ocell, *new_ocell;
1145 struct policy_result lookup_result;
Mike Snitzer19b00922013-04-05 15:36:34 +01001146 size_t pb_data_size = get_per_bio_data_size(cache);
1147 struct per_bio_data *pb = get_per_bio_data(bio, pb_data_size);
Joe Thornberc6b4fcb2013-03-01 22:45:51 +00001148 bool discarded_block = is_discarded_oblock(cache, block);
1149 bool can_migrate = discarded_block || spare_migration_bandwidth(cache);
1150
1151 /*
1152 * Check to see if that block is currently migrating.
1153 */
1154 cell_prealloc = prealloc_get_cell(structs);
1155 r = bio_detain(cache, block, bio, cell_prealloc,
1156 (cell_free_fn) prealloc_put_cell,
1157 structs, &new_ocell);
1158 if (r > 0)
1159 return;
1160
1161 r = policy_map(cache->policy, block, true, can_migrate, discarded_block,
1162 bio, &lookup_result);
1163
1164 if (r == -EWOULDBLOCK)
1165 /* migration has been denied */
1166 lookup_result.op = POLICY_MISS;
1167
1168 switch (lookup_result.op) {
1169 case POLICY_HIT:
1170 inc_hit_counter(cache, bio);
1171 pb->all_io_entry = dm_deferred_entry_inc(cache->all_io_ds);
1172
Joe Thornbere2e74d62013-03-20 17:21:27 +00001173 if (is_writethrough_io(cache, bio, lookup_result.cblock))
1174 remap_to_origin_then_cache(cache, bio, block, lookup_result.cblock);
1175 else
Joe Thornberc6b4fcb2013-03-01 22:45:51 +00001176 remap_to_cache_dirty(cache, bio, block, lookup_result.cblock);
1177
1178 issue(cache, bio);
1179 break;
1180
1181 case POLICY_MISS:
1182 inc_miss_counter(cache, bio);
1183 pb->all_io_entry = dm_deferred_entry_inc(cache->all_io_ds);
Joe Thornbere2e74d62013-03-20 17:21:27 +00001184 remap_to_origin_clear_discard(cache, bio, block);
1185 issue(cache, bio);
Joe Thornberc6b4fcb2013-03-01 22:45:51 +00001186 break;
1187
1188 case POLICY_NEW:
1189 atomic_inc(&cache->stats.promotion);
1190 promote(cache, structs, block, lookup_result.cblock, new_ocell);
1191 release_cell = false;
1192 break;
1193
1194 case POLICY_REPLACE:
1195 cell_prealloc = prealloc_get_cell(structs);
1196 r = bio_detain(cache, lookup_result.old_oblock, bio, cell_prealloc,
1197 (cell_free_fn) prealloc_put_cell,
1198 structs, &old_ocell);
1199 if (r > 0) {
1200 /*
1201 * We have to be careful to avoid lock inversion of
1202 * the cells. So we back off, and wait for the
1203 * old_ocell to become free.
1204 */
1205 policy_force_mapping(cache->policy, block,
1206 lookup_result.old_oblock);
1207 atomic_inc(&cache->stats.cache_cell_clash);
1208 break;
1209 }
1210 atomic_inc(&cache->stats.demotion);
1211 atomic_inc(&cache->stats.promotion);
1212
1213 demote_then_promote(cache, structs, lookup_result.old_oblock,
1214 block, lookup_result.cblock,
1215 old_ocell, new_ocell);
1216 release_cell = false;
1217 break;
1218
1219 default:
1220 DMERR_LIMIT("%s: erroring bio, unknown policy op: %u", __func__,
1221 (unsigned) lookup_result.op);
1222 bio_io_error(bio);
1223 }
1224
1225 if (release_cell)
1226 cell_defer(cache, new_ocell, false);
1227}
1228
1229static int need_commit_due_to_time(struct cache *cache)
1230{
1231 return jiffies < cache->last_commit_jiffies ||
1232 jiffies > cache->last_commit_jiffies + COMMIT_PERIOD;
1233}
1234
1235static int commit_if_needed(struct cache *cache)
1236{
Heinz Mauelshagenffcbcb62013-10-14 17:24:43 +02001237 int r = 0;
1238
1239 if ((cache->commit_requested || need_commit_due_to_time(cache)) &&
1240 dm_cache_changed_this_transaction(cache->cmd)) {
Joe Thornberc6b4fcb2013-03-01 22:45:51 +00001241 atomic_inc(&cache->stats.commit_count);
Joe Thornberc6b4fcb2013-03-01 22:45:51 +00001242 cache->commit_requested = false;
Heinz Mauelshagenffcbcb62013-10-14 17:24:43 +02001243 r = dm_cache_commit(cache->cmd, false);
1244 cache->last_commit_jiffies = jiffies;
Joe Thornberc6b4fcb2013-03-01 22:45:51 +00001245 }
1246
Heinz Mauelshagenffcbcb62013-10-14 17:24:43 +02001247 return r;
Joe Thornberc6b4fcb2013-03-01 22:45:51 +00001248}
1249
1250static void process_deferred_bios(struct cache *cache)
1251{
1252 unsigned long flags;
1253 struct bio_list bios;
1254 struct bio *bio;
1255 struct prealloc structs;
1256
1257 memset(&structs, 0, sizeof(structs));
1258 bio_list_init(&bios);
1259
1260 spin_lock_irqsave(&cache->lock, flags);
1261 bio_list_merge(&bios, &cache->deferred_bios);
1262 bio_list_init(&cache->deferred_bios);
1263 spin_unlock_irqrestore(&cache->lock, flags);
1264
1265 while (!bio_list_empty(&bios)) {
1266 /*
1267 * If we've got no free migration structs, and processing
1268 * this bio might require one, we pause until there are some
1269 * prepared mappings to process.
1270 */
1271 if (prealloc_data_structs(cache, &structs)) {
1272 spin_lock_irqsave(&cache->lock, flags);
1273 bio_list_merge(&cache->deferred_bios, &bios);
1274 spin_unlock_irqrestore(&cache->lock, flags);
1275 break;
1276 }
1277
1278 bio = bio_list_pop(&bios);
1279
1280 if (bio->bi_rw & REQ_FLUSH)
1281 process_flush_bio(cache, bio);
1282 else if (bio->bi_rw & REQ_DISCARD)
1283 process_discard_bio(cache, bio);
1284 else
1285 process_bio(cache, &structs, bio);
1286 }
1287
1288 prealloc_free_structs(cache, &structs);
1289}
1290
1291static void process_deferred_flush_bios(struct cache *cache, bool submit_bios)
1292{
1293 unsigned long flags;
1294 struct bio_list bios;
1295 struct bio *bio;
1296
1297 bio_list_init(&bios);
1298
1299 spin_lock_irqsave(&cache->lock, flags);
1300 bio_list_merge(&bios, &cache->deferred_flush_bios);
1301 bio_list_init(&cache->deferred_flush_bios);
1302 spin_unlock_irqrestore(&cache->lock, flags);
1303
1304 while ((bio = bio_list_pop(&bios)))
1305 submit_bios ? generic_make_request(bio) : bio_io_error(bio);
1306}
1307
Joe Thornbere2e74d62013-03-20 17:21:27 +00001308static void process_deferred_writethrough_bios(struct cache *cache)
1309{
1310 unsigned long flags;
1311 struct bio_list bios;
1312 struct bio *bio;
1313
1314 bio_list_init(&bios);
1315
1316 spin_lock_irqsave(&cache->lock, flags);
1317 bio_list_merge(&bios, &cache->deferred_writethrough_bios);
1318 bio_list_init(&cache->deferred_writethrough_bios);
1319 spin_unlock_irqrestore(&cache->lock, flags);
1320
1321 while ((bio = bio_list_pop(&bios)))
1322 generic_make_request(bio);
1323}
1324
Joe Thornberc6b4fcb2013-03-01 22:45:51 +00001325static void writeback_some_dirty_blocks(struct cache *cache)
1326{
1327 int r = 0;
1328 dm_oblock_t oblock;
1329 dm_cblock_t cblock;
1330 struct prealloc structs;
1331 struct dm_bio_prison_cell *old_ocell;
1332
1333 memset(&structs, 0, sizeof(structs));
1334
1335 while (spare_migration_bandwidth(cache)) {
1336 if (prealloc_data_structs(cache, &structs))
1337 break;
1338
1339 r = policy_writeback_work(cache->policy, &oblock, &cblock);
1340 if (r)
1341 break;
1342
1343 r = get_cell(cache, oblock, &structs, &old_ocell);
1344 if (r) {
1345 policy_set_dirty(cache->policy, oblock);
1346 break;
1347 }
1348
1349 writeback(cache, &structs, oblock, cblock, old_ocell);
1350 }
1351
1352 prealloc_free_structs(cache, &structs);
1353}
1354
1355/*----------------------------------------------------------------
1356 * Main worker loop
1357 *--------------------------------------------------------------*/
Joe Thornberc6b4fcb2013-03-01 22:45:51 +00001358static bool is_quiescing(struct cache *cache)
1359{
Joe Thornber238f8362013-10-30 17:29:30 +00001360 return atomic_read(&cache->quiescing);
Joe Thornberc6b4fcb2013-03-01 22:45:51 +00001361}
1362
Joe Thornber66cb1912013-10-30 17:11:58 +00001363static void ack_quiescing(struct cache *cache)
1364{
1365 if (is_quiescing(cache)) {
1366 atomic_inc(&cache->quiescing_ack);
1367 wake_up(&cache->quiescing_wait);
1368 }
1369}
1370
1371static void wait_for_quiescing_ack(struct cache *cache)
1372{
1373 wait_event(cache->quiescing_wait, atomic_read(&cache->quiescing_ack));
1374}
1375
1376static void start_quiescing(struct cache *cache)
1377{
Joe Thornber238f8362013-10-30 17:29:30 +00001378 atomic_inc(&cache->quiescing);
Joe Thornber66cb1912013-10-30 17:11:58 +00001379 wait_for_quiescing_ack(cache);
1380}
1381
1382static void stop_quiescing(struct cache *cache)
1383{
Joe Thornber238f8362013-10-30 17:29:30 +00001384 atomic_set(&cache->quiescing, 0);
Joe Thornber66cb1912013-10-30 17:11:58 +00001385 atomic_set(&cache->quiescing_ack, 0);
1386}
1387
Joe Thornberc6b4fcb2013-03-01 22:45:51 +00001388static void wait_for_migrations(struct cache *cache)
1389{
1390 wait_event(cache->migration_wait, !atomic_read(&cache->nr_migrations));
1391}
1392
1393static void stop_worker(struct cache *cache)
1394{
1395 cancel_delayed_work(&cache->waker);
1396 flush_workqueue(cache->wq);
1397}
1398
1399static void requeue_deferred_io(struct cache *cache)
1400{
1401 struct bio *bio;
1402 struct bio_list bios;
1403
1404 bio_list_init(&bios);
1405 bio_list_merge(&bios, &cache->deferred_bios);
1406 bio_list_init(&cache->deferred_bios);
1407
1408 while ((bio = bio_list_pop(&bios)))
1409 bio_endio(bio, DM_ENDIO_REQUEUE);
1410}
1411
1412static int more_work(struct cache *cache)
1413{
1414 if (is_quiescing(cache))
1415 return !list_empty(&cache->quiesced_migrations) ||
1416 !list_empty(&cache->completed_migrations) ||
1417 !list_empty(&cache->need_commit_migrations);
1418 else
1419 return !bio_list_empty(&cache->deferred_bios) ||
1420 !bio_list_empty(&cache->deferred_flush_bios) ||
Joe Thornbere2e74d62013-03-20 17:21:27 +00001421 !bio_list_empty(&cache->deferred_writethrough_bios) ||
Joe Thornberc6b4fcb2013-03-01 22:45:51 +00001422 !list_empty(&cache->quiesced_migrations) ||
1423 !list_empty(&cache->completed_migrations) ||
1424 !list_empty(&cache->need_commit_migrations);
1425}
1426
1427static void do_worker(struct work_struct *ws)
1428{
1429 struct cache *cache = container_of(ws, struct cache, worker);
1430
1431 do {
Joe Thornber66cb1912013-10-30 17:11:58 +00001432 if (!is_quiescing(cache)) {
1433 writeback_some_dirty_blocks(cache);
1434 process_deferred_writethrough_bios(cache);
Joe Thornberc6b4fcb2013-03-01 22:45:51 +00001435 process_deferred_bios(cache);
Joe Thornber66cb1912013-10-30 17:11:58 +00001436 }
Joe Thornberc6b4fcb2013-03-01 22:45:51 +00001437
1438 process_migrations(cache, &cache->quiesced_migrations, issue_copy);
1439 process_migrations(cache, &cache->completed_migrations, complete_migration);
1440
Joe Thornberc6b4fcb2013-03-01 22:45:51 +00001441 if (commit_if_needed(cache)) {
1442 process_deferred_flush_bios(cache, false);
1443
1444 /*
1445 * FIXME: rollback metadata or just go into a
1446 * failure mode and error everything
1447 */
1448 } else {
1449 process_deferred_flush_bios(cache, true);
1450 process_migrations(cache, &cache->need_commit_migrations,
1451 migration_success_post_commit);
1452 }
Joe Thornber66cb1912013-10-30 17:11:58 +00001453
1454 ack_quiescing(cache);
1455
Joe Thornberc6b4fcb2013-03-01 22:45:51 +00001456 } while (more_work(cache));
1457}
1458
1459/*
1460 * We want to commit periodically so that not too much
1461 * unwritten metadata builds up.
1462 */
1463static void do_waker(struct work_struct *ws)
1464{
1465 struct cache *cache = container_of(to_delayed_work(ws), struct cache, waker);
Joe Thornberf8350da2013-05-10 14:37:16 +01001466 policy_tick(cache->policy);
Joe Thornberc6b4fcb2013-03-01 22:45:51 +00001467 wake_worker(cache);
1468 queue_delayed_work(cache->wq, &cache->waker, COMMIT_PERIOD);
1469}
1470
1471/*----------------------------------------------------------------*/
1472
1473static int is_congested(struct dm_dev *dev, int bdi_bits)
1474{
1475 struct request_queue *q = bdev_get_queue(dev->bdev);
1476 return bdi_congested(&q->backing_dev_info, bdi_bits);
1477}
1478
1479static int cache_is_congested(struct dm_target_callbacks *cb, int bdi_bits)
1480{
1481 struct cache *cache = container_of(cb, struct cache, callbacks);
1482
1483 return is_congested(cache->origin_dev, bdi_bits) ||
1484 is_congested(cache->cache_dev, bdi_bits);
1485}
1486
1487/*----------------------------------------------------------------
1488 * Target methods
1489 *--------------------------------------------------------------*/
1490
1491/*
1492 * This function gets called on the error paths of the constructor, so we
1493 * have to cope with a partially initialised struct.
1494 */
1495static void destroy(struct cache *cache)
1496{
1497 unsigned i;
1498
1499 if (cache->next_migration)
1500 mempool_free(cache->next_migration, cache->migration_pool);
1501
1502 if (cache->migration_pool)
1503 mempool_destroy(cache->migration_pool);
1504
1505 if (cache->all_io_ds)
1506 dm_deferred_set_destroy(cache->all_io_ds);
1507
1508 if (cache->prison)
1509 dm_bio_prison_destroy(cache->prison);
1510
1511 if (cache->wq)
1512 destroy_workqueue(cache->wq);
1513
1514 if (cache->dirty_bitset)
1515 free_bitset(cache->dirty_bitset);
1516
1517 if (cache->discard_bitset)
1518 free_bitset(cache->discard_bitset);
1519
1520 if (cache->copier)
1521 dm_kcopyd_client_destroy(cache->copier);
1522
1523 if (cache->cmd)
1524 dm_cache_metadata_close(cache->cmd);
1525
1526 if (cache->metadata_dev)
1527 dm_put_device(cache->ti, cache->metadata_dev);
1528
1529 if (cache->origin_dev)
1530 dm_put_device(cache->ti, cache->origin_dev);
1531
1532 if (cache->cache_dev)
1533 dm_put_device(cache->ti, cache->cache_dev);
1534
1535 if (cache->policy)
1536 dm_cache_policy_destroy(cache->policy);
1537
1538 for (i = 0; i < cache->nr_ctr_args ; i++)
1539 kfree(cache->ctr_args[i]);
1540 kfree(cache->ctr_args);
1541
1542 kfree(cache);
1543}
1544
1545static void cache_dtr(struct dm_target *ti)
1546{
1547 struct cache *cache = ti->private;
1548
1549 destroy(cache);
1550}
1551
1552static sector_t get_dev_size(struct dm_dev *dev)
1553{
1554 return i_size_read(dev->bdev->bd_inode) >> SECTOR_SHIFT;
1555}
1556
1557/*----------------------------------------------------------------*/
1558
1559/*
1560 * Construct a cache device mapping.
1561 *
1562 * cache <metadata dev> <cache dev> <origin dev> <block size>
1563 * <#feature args> [<feature arg>]*
1564 * <policy> <#policy args> [<policy arg>]*
1565 *
1566 * metadata dev : fast device holding the persistent metadata
1567 * cache dev : fast device holding cached data blocks
1568 * origin dev : slow device holding original data blocks
1569 * block size : cache unit size in sectors
1570 *
1571 * #feature args : number of feature arguments passed
1572 * feature args : writethrough. (The default is writeback.)
1573 *
1574 * policy : the replacement policy to use
1575 * #policy args : an even number of policy arguments corresponding
1576 * to key/value pairs passed to the policy
1577 * policy args : key/value pairs passed to the policy
1578 * E.g. 'sequential_threshold 1024'
1579 * See cache-policies.txt for details.
1580 *
1581 * Optional feature arguments are:
1582 * writethrough : write through caching that prohibits cache block
1583 * content from being different from origin block content.
1584 * Without this argument, the default behaviour is to write
1585 * back cache block contents later for performance reasons,
1586 * so they may differ from the corresponding origin blocks.
1587 */
1588struct cache_args {
1589 struct dm_target *ti;
1590
1591 struct dm_dev *metadata_dev;
1592
1593 struct dm_dev *cache_dev;
1594 sector_t cache_sectors;
1595
1596 struct dm_dev *origin_dev;
1597 sector_t origin_sectors;
1598
1599 uint32_t block_size;
1600
1601 const char *policy_name;
1602 int policy_argc;
1603 const char **policy_argv;
1604
1605 struct cache_features features;
1606};
1607
1608static void destroy_cache_args(struct cache_args *ca)
1609{
1610 if (ca->metadata_dev)
1611 dm_put_device(ca->ti, ca->metadata_dev);
1612
1613 if (ca->cache_dev)
1614 dm_put_device(ca->ti, ca->cache_dev);
1615
1616 if (ca->origin_dev)
1617 dm_put_device(ca->ti, ca->origin_dev);
1618
1619 kfree(ca);
1620}
1621
1622static bool at_least_one_arg(struct dm_arg_set *as, char **error)
1623{
1624 if (!as->argc) {
1625 *error = "Insufficient args";
1626 return false;
1627 }
1628
1629 return true;
1630}
1631
1632static int parse_metadata_dev(struct cache_args *ca, struct dm_arg_set *as,
1633 char **error)
1634{
1635 int r;
1636 sector_t metadata_dev_size;
1637 char b[BDEVNAME_SIZE];
1638
1639 if (!at_least_one_arg(as, error))
1640 return -EINVAL;
1641
1642 r = dm_get_device(ca->ti, dm_shift_arg(as), FMODE_READ | FMODE_WRITE,
1643 &ca->metadata_dev);
1644 if (r) {
1645 *error = "Error opening metadata device";
1646 return r;
1647 }
1648
1649 metadata_dev_size = get_dev_size(ca->metadata_dev);
1650 if (metadata_dev_size > DM_CACHE_METADATA_MAX_SECTORS_WARNING)
1651 DMWARN("Metadata device %s is larger than %u sectors: excess space will not be used.",
1652 bdevname(ca->metadata_dev->bdev, b), THIN_METADATA_MAX_SECTORS);
1653
1654 return 0;
1655}
1656
1657static int parse_cache_dev(struct cache_args *ca, struct dm_arg_set *as,
1658 char **error)
1659{
1660 int r;
1661
1662 if (!at_least_one_arg(as, error))
1663 return -EINVAL;
1664
1665 r = dm_get_device(ca->ti, dm_shift_arg(as), FMODE_READ | FMODE_WRITE,
1666 &ca->cache_dev);
1667 if (r) {
1668 *error = "Error opening cache device";
1669 return r;
1670 }
1671 ca->cache_sectors = get_dev_size(ca->cache_dev);
1672
1673 return 0;
1674}
1675
1676static int parse_origin_dev(struct cache_args *ca, struct dm_arg_set *as,
1677 char **error)
1678{
1679 int r;
1680
1681 if (!at_least_one_arg(as, error))
1682 return -EINVAL;
1683
1684 r = dm_get_device(ca->ti, dm_shift_arg(as), FMODE_READ | FMODE_WRITE,
1685 &ca->origin_dev);
1686 if (r) {
1687 *error = "Error opening origin device";
1688 return r;
1689 }
1690
1691 ca->origin_sectors = get_dev_size(ca->origin_dev);
1692 if (ca->ti->len > ca->origin_sectors) {
1693 *error = "Device size larger than cached device";
1694 return -EINVAL;
1695 }
1696
1697 return 0;
1698}
1699
1700static int parse_block_size(struct cache_args *ca, struct dm_arg_set *as,
1701 char **error)
1702{
Mike Snitzer05473042013-08-16 10:54:19 -04001703 unsigned long block_size;
Joe Thornberc6b4fcb2013-03-01 22:45:51 +00001704
1705 if (!at_least_one_arg(as, error))
1706 return -EINVAL;
1707
Mike Snitzer05473042013-08-16 10:54:19 -04001708 if (kstrtoul(dm_shift_arg(as), 10, &block_size) || !block_size ||
1709 block_size < DATA_DEV_BLOCK_SIZE_MIN_SECTORS ||
1710 block_size > DATA_DEV_BLOCK_SIZE_MAX_SECTORS ||
1711 block_size & (DATA_DEV_BLOCK_SIZE_MIN_SECTORS - 1)) {
Joe Thornberc6b4fcb2013-03-01 22:45:51 +00001712 *error = "Invalid data block size";
1713 return -EINVAL;
1714 }
1715
Mike Snitzer05473042013-08-16 10:54:19 -04001716 if (block_size > ca->cache_sectors) {
Joe Thornberc6b4fcb2013-03-01 22:45:51 +00001717 *error = "Data block size is larger than the cache device";
1718 return -EINVAL;
1719 }
1720
Mike Snitzer05473042013-08-16 10:54:19 -04001721 ca->block_size = block_size;
Joe Thornberc6b4fcb2013-03-01 22:45:51 +00001722
1723 return 0;
1724}
1725
1726static void init_features(struct cache_features *cf)
1727{
1728 cf->mode = CM_WRITE;
1729 cf->write_through = false;
1730}
1731
1732static int parse_features(struct cache_args *ca, struct dm_arg_set *as,
1733 char **error)
1734{
1735 static struct dm_arg _args[] = {
1736 {0, 1, "Invalid number of cache feature arguments"},
1737 };
1738
1739 int r;
1740 unsigned argc;
1741 const char *arg;
1742 struct cache_features *cf = &ca->features;
1743
1744 init_features(cf);
1745
1746 r = dm_read_arg_group(_args, as, &argc, error);
1747 if (r)
1748 return -EINVAL;
1749
1750 while (argc--) {
1751 arg = dm_shift_arg(as);
1752
1753 if (!strcasecmp(arg, "writeback"))
1754 cf->write_through = false;
1755
1756 else if (!strcasecmp(arg, "writethrough"))
1757 cf->write_through = true;
1758
1759 else {
1760 *error = "Unrecognised cache feature requested";
1761 return -EINVAL;
1762 }
1763 }
1764
1765 return 0;
1766}
1767
1768static int parse_policy(struct cache_args *ca, struct dm_arg_set *as,
1769 char **error)
1770{
1771 static struct dm_arg _args[] = {
1772 {0, 1024, "Invalid number of policy arguments"},
1773 };
1774
1775 int r;
1776
1777 if (!at_least_one_arg(as, error))
1778 return -EINVAL;
1779
1780 ca->policy_name = dm_shift_arg(as);
1781
1782 r = dm_read_arg_group(_args, as, &ca->policy_argc, error);
1783 if (r)
1784 return -EINVAL;
1785
1786 ca->policy_argv = (const char **)as->argv;
1787 dm_consume_args(as, ca->policy_argc);
1788
1789 return 0;
1790}
1791
1792static int parse_cache_args(struct cache_args *ca, int argc, char **argv,
1793 char **error)
1794{
1795 int r;
1796 struct dm_arg_set as;
1797
1798 as.argc = argc;
1799 as.argv = argv;
1800
1801 r = parse_metadata_dev(ca, &as, error);
1802 if (r)
1803 return r;
1804
1805 r = parse_cache_dev(ca, &as, error);
1806 if (r)
1807 return r;
1808
1809 r = parse_origin_dev(ca, &as, error);
1810 if (r)
1811 return r;
1812
1813 r = parse_block_size(ca, &as, error);
1814 if (r)
1815 return r;
1816
1817 r = parse_features(ca, &as, error);
1818 if (r)
1819 return r;
1820
1821 r = parse_policy(ca, &as, error);
1822 if (r)
1823 return r;
1824
1825 return 0;
1826}
1827
1828/*----------------------------------------------------------------*/
1829
1830static struct kmem_cache *migration_cache;
1831
Alasdair G Kergon2c73c472013-05-10 14:37:21 +01001832#define NOT_CORE_OPTION 1
1833
Joe Thornber2f14f4b2013-05-10 14:37:21 +01001834static int process_config_option(struct cache *cache, const char *key, const char *value)
Alasdair G Kergon2c73c472013-05-10 14:37:21 +01001835{
1836 unsigned long tmp;
1837
Joe Thornber2f14f4b2013-05-10 14:37:21 +01001838 if (!strcasecmp(key, "migration_threshold")) {
1839 if (kstrtoul(value, 10, &tmp))
Alasdair G Kergon2c73c472013-05-10 14:37:21 +01001840 return -EINVAL;
1841
1842 cache->migration_threshold = tmp;
1843 return 0;
1844 }
1845
1846 return NOT_CORE_OPTION;
1847}
1848
Joe Thornber2f14f4b2013-05-10 14:37:21 +01001849static int set_config_value(struct cache *cache, const char *key, const char *value)
1850{
1851 int r = process_config_option(cache, key, value);
1852
1853 if (r == NOT_CORE_OPTION)
1854 r = policy_set_config_value(cache->policy, key, value);
1855
1856 if (r)
1857 DMWARN("bad config value for %s: %s", key, value);
1858
1859 return r;
1860}
1861
1862static int set_config_values(struct cache *cache, int argc, const char **argv)
Joe Thornberc6b4fcb2013-03-01 22:45:51 +00001863{
1864 int r = 0;
1865
1866 if (argc & 1) {
1867 DMWARN("Odd number of policy arguments given but they should be <key> <value> pairs.");
1868 return -EINVAL;
1869 }
1870
1871 while (argc) {
Joe Thornber2f14f4b2013-05-10 14:37:21 +01001872 r = set_config_value(cache, argv[0], argv[1]);
1873 if (r)
1874 break;
Joe Thornberc6b4fcb2013-03-01 22:45:51 +00001875
1876 argc -= 2;
1877 argv += 2;
1878 }
1879
1880 return r;
1881}
1882
1883static int create_cache_policy(struct cache *cache, struct cache_args *ca,
1884 char **error)
1885{
Mikulas Patocka4cb3e1d2013-10-01 18:35:39 -04001886 struct dm_cache_policy *p = dm_cache_policy_create(ca->policy_name,
1887 cache->cache_size,
1888 cache->origin_sectors,
1889 cache->sectors_per_block);
1890 if (IS_ERR(p)) {
Joe Thornberc6b4fcb2013-03-01 22:45:51 +00001891 *error = "Error creating cache's policy";
Mikulas Patocka4cb3e1d2013-10-01 18:35:39 -04001892 return PTR_ERR(p);
Joe Thornberc6b4fcb2013-03-01 22:45:51 +00001893 }
Mikulas Patocka4cb3e1d2013-10-01 18:35:39 -04001894 cache->policy = p;
Joe Thornberc6b4fcb2013-03-01 22:45:51 +00001895
Joe Thornber2f14f4b2013-05-10 14:37:21 +01001896 return 0;
Joe Thornberc6b4fcb2013-03-01 22:45:51 +00001897}
1898
1899/*
1900 * We want the discard block size to be a power of two, at least the size
1901 * of the cache block size, and have no more than 2^14 discard blocks
1902 * across the origin.
1903 */
1904#define MAX_DISCARD_BLOCKS (1 << 14)
1905
1906static bool too_many_discard_blocks(sector_t discard_block_size,
1907 sector_t origin_size)
1908{
1909 (void) sector_div(origin_size, discard_block_size);
1910
1911 return origin_size > MAX_DISCARD_BLOCKS;
1912}
1913
1914static sector_t calculate_discard_block_size(sector_t cache_block_size,
1915 sector_t origin_size)
1916{
1917 sector_t discard_block_size;
1918
1919 discard_block_size = roundup_pow_of_two(cache_block_size);
1920
1921 if (origin_size)
1922 while (too_many_discard_blocks(discard_block_size, origin_size))
1923 discard_block_size *= 2;
1924
1925 return discard_block_size;
1926}
1927
Joe Thornberf8350da2013-05-10 14:37:16 +01001928#define DEFAULT_MIGRATION_THRESHOLD 2048
Joe Thornberc6b4fcb2013-03-01 22:45:51 +00001929
Joe Thornberc6b4fcb2013-03-01 22:45:51 +00001930static int cache_create(struct cache_args *ca, struct cache **result)
1931{
1932 int r = 0;
1933 char **error = &ca->ti->error;
1934 struct cache *cache;
1935 struct dm_target *ti = ca->ti;
1936 dm_block_t origin_blocks;
1937 struct dm_cache_metadata *cmd;
1938 bool may_format = ca->features.mode == CM_WRITE;
1939
1940 cache = kzalloc(sizeof(*cache), GFP_KERNEL);
1941 if (!cache)
1942 return -ENOMEM;
1943
1944 cache->ti = ca->ti;
1945 ti->private = cache;
Joe Thornberc6b4fcb2013-03-01 22:45:51 +00001946 ti->num_flush_bios = 2;
1947 ti->flush_supported = true;
1948
1949 ti->num_discard_bios = 1;
1950 ti->discards_supported = true;
1951 ti->discard_zeroes_data_unsupported = true;
1952
Joe Thornber8c5008f2013-05-10 14:37:18 +01001953 cache->features = ca->features;
Mike Snitzer19b00922013-04-05 15:36:34 +01001954 ti->per_bio_data_size = get_per_bio_data_size(cache);
Joe Thornberc6b4fcb2013-03-01 22:45:51 +00001955
Joe Thornberc6b4fcb2013-03-01 22:45:51 +00001956 cache->callbacks.congested_fn = cache_is_congested;
1957 dm_table_add_target_callbacks(ti->table, &cache->callbacks);
1958
1959 cache->metadata_dev = ca->metadata_dev;
1960 cache->origin_dev = ca->origin_dev;
1961 cache->cache_dev = ca->cache_dev;
1962
1963 ca->metadata_dev = ca->origin_dev = ca->cache_dev = NULL;
1964
1965 /* FIXME: factor out this whole section */
1966 origin_blocks = cache->origin_sectors = ca->origin_sectors;
Joe Thornber414dd672013-03-20 17:21:25 +00001967 origin_blocks = block_div(origin_blocks, ca->block_size);
Joe Thornberc6b4fcb2013-03-01 22:45:51 +00001968 cache->origin_blocks = to_oblock(origin_blocks);
1969
1970 cache->sectors_per_block = ca->block_size;
1971 if (dm_set_target_max_io_len(ti, cache->sectors_per_block)) {
1972 r = -EINVAL;
1973 goto bad;
1974 }
1975
1976 if (ca->block_size & (ca->block_size - 1)) {
1977 dm_block_t cache_size = ca->cache_sectors;
1978
1979 cache->sectors_per_block_shift = -1;
Joe Thornber414dd672013-03-20 17:21:25 +00001980 cache_size = block_div(cache_size, ca->block_size);
Joe Thornberc6b4fcb2013-03-01 22:45:51 +00001981 cache->cache_size = to_cblock(cache_size);
1982 } else {
1983 cache->sectors_per_block_shift = __ffs(ca->block_size);
1984 cache->cache_size = to_cblock(ca->cache_sectors >> cache->sectors_per_block_shift);
1985 }
1986
1987 r = create_cache_policy(cache, ca, error);
1988 if (r)
1989 goto bad;
Joe Thornber2f14f4b2013-05-10 14:37:21 +01001990
Joe Thornberc6b4fcb2013-03-01 22:45:51 +00001991 cache->policy_nr_args = ca->policy_argc;
Joe Thornber2f14f4b2013-05-10 14:37:21 +01001992 cache->migration_threshold = DEFAULT_MIGRATION_THRESHOLD;
1993
1994 r = set_config_values(cache, ca->policy_argc, ca->policy_argv);
1995 if (r) {
1996 *error = "Error setting cache policy's config values";
1997 goto bad;
1998 }
Joe Thornberc6b4fcb2013-03-01 22:45:51 +00001999
2000 cmd = dm_cache_metadata_open(cache->metadata_dev->bdev,
2001 ca->block_size, may_format,
2002 dm_cache_policy_get_hint_size(cache->policy));
2003 if (IS_ERR(cmd)) {
2004 *error = "Error creating metadata object";
2005 r = PTR_ERR(cmd);
2006 goto bad;
2007 }
2008 cache->cmd = cmd;
2009
2010 spin_lock_init(&cache->lock);
2011 bio_list_init(&cache->deferred_bios);
2012 bio_list_init(&cache->deferred_flush_bios);
Joe Thornbere2e74d62013-03-20 17:21:27 +00002013 bio_list_init(&cache->deferred_writethrough_bios);
Joe Thornberc6b4fcb2013-03-01 22:45:51 +00002014 INIT_LIST_HEAD(&cache->quiesced_migrations);
2015 INIT_LIST_HEAD(&cache->completed_migrations);
2016 INIT_LIST_HEAD(&cache->need_commit_migrations);
Joe Thornberc6b4fcb2013-03-01 22:45:51 +00002017 atomic_set(&cache->nr_migrations, 0);
2018 init_waitqueue_head(&cache->migration_wait);
2019
Joe Thornber66cb1912013-10-30 17:11:58 +00002020 init_waitqueue_head(&cache->quiescing_wait);
Joe Thornber238f8362013-10-30 17:29:30 +00002021 atomic_set(&cache->quiescing, 0);
Joe Thornber66cb1912013-10-30 17:11:58 +00002022 atomic_set(&cache->quiescing_ack, 0);
2023
Wei Yongjunfa4d6832013-05-10 14:37:14 +01002024 r = -ENOMEM;
Joe Thornberc6b4fcb2013-03-01 22:45:51 +00002025 cache->nr_dirty = 0;
2026 cache->dirty_bitset = alloc_bitset(from_cblock(cache->cache_size));
2027 if (!cache->dirty_bitset) {
2028 *error = "could not allocate dirty bitset";
2029 goto bad;
2030 }
2031 clear_bitset(cache->dirty_bitset, from_cblock(cache->cache_size));
2032
2033 cache->discard_block_size =
2034 calculate_discard_block_size(cache->sectors_per_block,
2035 cache->origin_sectors);
2036 cache->discard_nr_blocks = oblock_to_dblock(cache, cache->origin_blocks);
2037 cache->discard_bitset = alloc_bitset(from_dblock(cache->discard_nr_blocks));
2038 if (!cache->discard_bitset) {
2039 *error = "could not allocate discard bitset";
2040 goto bad;
2041 }
2042 clear_bitset(cache->discard_bitset, from_dblock(cache->discard_nr_blocks));
2043
2044 cache->copier = dm_kcopyd_client_create(&dm_kcopyd_throttle);
2045 if (IS_ERR(cache->copier)) {
2046 *error = "could not create kcopyd client";
2047 r = PTR_ERR(cache->copier);
2048 goto bad;
2049 }
2050
2051 cache->wq = alloc_ordered_workqueue("dm-" DM_MSG_PREFIX, WQ_MEM_RECLAIM);
2052 if (!cache->wq) {
2053 *error = "could not create workqueue for metadata object";
2054 goto bad;
2055 }
2056 INIT_WORK(&cache->worker, do_worker);
2057 INIT_DELAYED_WORK(&cache->waker, do_waker);
2058 cache->last_commit_jiffies = jiffies;
2059
2060 cache->prison = dm_bio_prison_create(PRISON_CELLS);
2061 if (!cache->prison) {
2062 *error = "could not create bio prison";
2063 goto bad;
2064 }
2065
2066 cache->all_io_ds = dm_deferred_set_create();
2067 if (!cache->all_io_ds) {
2068 *error = "could not create all_io deferred set";
2069 goto bad;
2070 }
2071
2072 cache->migration_pool = mempool_create_slab_pool(MIGRATION_POOL_SIZE,
2073 migration_cache);
2074 if (!cache->migration_pool) {
2075 *error = "Error creating cache's migration mempool";
2076 goto bad;
2077 }
2078
2079 cache->next_migration = NULL;
2080
2081 cache->need_tick_bio = true;
2082 cache->sized = false;
Joe Thornberc6b4fcb2013-03-01 22:45:51 +00002083 cache->commit_requested = false;
2084 cache->loaded_mappings = false;
2085 cache->loaded_discards = false;
2086
2087 load_stats(cache);
2088
2089 atomic_set(&cache->stats.demotion, 0);
2090 atomic_set(&cache->stats.promotion, 0);
2091 atomic_set(&cache->stats.copies_avoided, 0);
2092 atomic_set(&cache->stats.cache_cell_clash, 0);
2093 atomic_set(&cache->stats.commit_count, 0);
2094 atomic_set(&cache->stats.discard_count, 0);
2095
2096 *result = cache;
2097 return 0;
2098
2099bad:
2100 destroy(cache);
2101 return r;
2102}
2103
2104static int copy_ctr_args(struct cache *cache, int argc, const char **argv)
2105{
2106 unsigned i;
2107 const char **copy;
2108
2109 copy = kcalloc(argc, sizeof(*copy), GFP_KERNEL);
2110 if (!copy)
2111 return -ENOMEM;
2112 for (i = 0; i < argc; i++) {
2113 copy[i] = kstrdup(argv[i], GFP_KERNEL);
2114 if (!copy[i]) {
2115 while (i--)
2116 kfree(copy[i]);
2117 kfree(copy);
2118 return -ENOMEM;
2119 }
2120 }
2121
2122 cache->nr_ctr_args = argc;
2123 cache->ctr_args = copy;
2124
2125 return 0;
2126}
2127
2128static int cache_ctr(struct dm_target *ti, unsigned argc, char **argv)
2129{
2130 int r = -EINVAL;
2131 struct cache_args *ca;
2132 struct cache *cache = NULL;
2133
2134 ca = kzalloc(sizeof(*ca), GFP_KERNEL);
2135 if (!ca) {
2136 ti->error = "Error allocating memory for cache";
2137 return -ENOMEM;
2138 }
2139 ca->ti = ti;
2140
2141 r = parse_cache_args(ca, argc, argv, &ti->error);
2142 if (r)
2143 goto out;
2144
2145 r = cache_create(ca, &cache);
Heinz Mauelshagen617a0b82013-03-20 17:21:26 +00002146 if (r)
2147 goto out;
Joe Thornberc6b4fcb2013-03-01 22:45:51 +00002148
2149 r = copy_ctr_args(cache, argc - 3, (const char **)argv + 3);
2150 if (r) {
2151 destroy(cache);
2152 goto out;
2153 }
2154
2155 ti->private = cache;
2156
2157out:
2158 destroy_cache_args(ca);
2159 return r;
2160}
2161
Joe Thornberc6b4fcb2013-03-01 22:45:51 +00002162static int cache_map(struct dm_target *ti, struct bio *bio)
2163{
2164 struct cache *cache = ti->private;
2165
2166 int r;
2167 dm_oblock_t block = get_bio_block(cache, bio);
Mike Snitzer19b00922013-04-05 15:36:34 +01002168 size_t pb_data_size = get_per_bio_data_size(cache);
Joe Thornberc6b4fcb2013-03-01 22:45:51 +00002169 bool can_migrate = false;
2170 bool discarded_block;
2171 struct dm_bio_prison_cell *cell;
2172 struct policy_result lookup_result;
2173 struct per_bio_data *pb;
2174
2175 if (from_oblock(block) > from_oblock(cache->origin_blocks)) {
2176 /*
2177 * This can only occur if the io goes to a partial block at
2178 * the end of the origin device. We don't cache these.
2179 * Just remap to the origin and carry on.
2180 */
2181 remap_to_origin_clear_discard(cache, bio, block);
2182 return DM_MAPIO_REMAPPED;
2183 }
2184
Mike Snitzer19b00922013-04-05 15:36:34 +01002185 pb = init_per_bio_data(bio, pb_data_size);
Joe Thornberc6b4fcb2013-03-01 22:45:51 +00002186
2187 if (bio->bi_rw & (REQ_FLUSH | REQ_FUA | REQ_DISCARD)) {
2188 defer_bio(cache, bio);
2189 return DM_MAPIO_SUBMITTED;
2190 }
2191
2192 /*
2193 * Check to see if that block is currently migrating.
2194 */
2195 cell = alloc_prison_cell(cache);
2196 if (!cell) {
2197 defer_bio(cache, bio);
2198 return DM_MAPIO_SUBMITTED;
2199 }
2200
2201 r = bio_detain(cache, block, bio, cell,
2202 (cell_free_fn) free_prison_cell,
2203 cache, &cell);
2204 if (r) {
2205 if (r < 0)
2206 defer_bio(cache, bio);
2207
2208 return DM_MAPIO_SUBMITTED;
2209 }
2210
2211 discarded_block = is_discarded_oblock(cache, block);
2212
2213 r = policy_map(cache->policy, block, false, can_migrate, discarded_block,
2214 bio, &lookup_result);
2215 if (r == -EWOULDBLOCK) {
2216 cell_defer(cache, cell, true);
2217 return DM_MAPIO_SUBMITTED;
2218
2219 } else if (r) {
2220 DMERR_LIMIT("Unexpected return from cache replacement policy: %d", r);
2221 bio_io_error(bio);
2222 return DM_MAPIO_SUBMITTED;
2223 }
2224
2225 switch (lookup_result.op) {
2226 case POLICY_HIT:
2227 inc_hit_counter(cache, bio);
2228 pb->all_io_entry = dm_deferred_entry_inc(cache->all_io_ds);
2229
Joe Thornbere2e74d62013-03-20 17:21:27 +00002230 if (is_writethrough_io(cache, bio, lookup_result.cblock))
2231 remap_to_origin_then_cache(cache, bio, block, lookup_result.cblock);
2232 else
Joe Thornberc6b4fcb2013-03-01 22:45:51 +00002233 remap_to_cache_dirty(cache, bio, block, lookup_result.cblock);
Joe Thornbere2e74d62013-03-20 17:21:27 +00002234
2235 cell_defer(cache, cell, false);
Joe Thornberc6b4fcb2013-03-01 22:45:51 +00002236 break;
2237
2238 case POLICY_MISS:
2239 inc_miss_counter(cache, bio);
2240 pb->all_io_entry = dm_deferred_entry_inc(cache->all_io_ds);
2241
2242 if (pb->req_nr != 0) {
2243 /*
2244 * This is a duplicate writethrough io that is no
2245 * longer needed because the block has been demoted.
2246 */
2247 bio_endio(bio, 0);
2248 cell_defer(cache, cell, false);
2249 return DM_MAPIO_SUBMITTED;
2250 } else {
2251 remap_to_origin_clear_discard(cache, bio, block);
2252 cell_defer(cache, cell, false);
2253 }
2254 break;
2255
2256 default:
2257 DMERR_LIMIT("%s: erroring bio: unknown policy op: %u", __func__,
2258 (unsigned) lookup_result.op);
2259 bio_io_error(bio);
2260 return DM_MAPIO_SUBMITTED;
2261 }
2262
2263 return DM_MAPIO_REMAPPED;
2264}
2265
2266static int cache_end_io(struct dm_target *ti, struct bio *bio, int error)
2267{
2268 struct cache *cache = ti->private;
2269 unsigned long flags;
Mike Snitzer19b00922013-04-05 15:36:34 +01002270 size_t pb_data_size = get_per_bio_data_size(cache);
2271 struct per_bio_data *pb = get_per_bio_data(bio, pb_data_size);
Joe Thornberc6b4fcb2013-03-01 22:45:51 +00002272
2273 if (pb->tick) {
2274 policy_tick(cache->policy);
2275
2276 spin_lock_irqsave(&cache->lock, flags);
2277 cache->need_tick_bio = true;
2278 spin_unlock_irqrestore(&cache->lock, flags);
2279 }
2280
2281 check_for_quiesced_migrations(cache, pb);
2282
2283 return 0;
2284}
2285
2286static int write_dirty_bitset(struct cache *cache)
2287{
2288 unsigned i, r;
2289
2290 for (i = 0; i < from_cblock(cache->cache_size); i++) {
2291 r = dm_cache_set_dirty(cache->cmd, to_cblock(i),
2292 is_dirty(cache, to_cblock(i)));
2293 if (r)
2294 return r;
2295 }
2296
2297 return 0;
2298}
2299
2300static int write_discard_bitset(struct cache *cache)
2301{
2302 unsigned i, r;
2303
2304 r = dm_cache_discard_bitset_resize(cache->cmd, cache->discard_block_size,
2305 cache->discard_nr_blocks);
2306 if (r) {
2307 DMERR("could not resize on-disk discard bitset");
2308 return r;
2309 }
2310
2311 for (i = 0; i < from_dblock(cache->discard_nr_blocks); i++) {
2312 r = dm_cache_set_discard(cache->cmd, to_dblock(i),
2313 is_discarded(cache, to_dblock(i)));
2314 if (r)
2315 return r;
2316 }
2317
2318 return 0;
2319}
2320
2321static int save_hint(void *context, dm_cblock_t cblock, dm_oblock_t oblock,
2322 uint32_t hint)
2323{
2324 struct cache *cache = context;
2325 return dm_cache_save_hint(cache->cmd, cblock, hint);
2326}
2327
2328static int write_hints(struct cache *cache)
2329{
2330 int r;
2331
2332 r = dm_cache_begin_hints(cache->cmd, cache->policy);
2333 if (r) {
2334 DMERR("dm_cache_begin_hints failed");
2335 return r;
2336 }
2337
2338 r = policy_walk_mappings(cache->policy, save_hint, cache);
2339 if (r)
2340 DMERR("policy_walk_mappings failed");
2341
2342 return r;
2343}
2344
2345/*
2346 * returns true on success
2347 */
2348static bool sync_metadata(struct cache *cache)
2349{
2350 int r1, r2, r3, r4;
2351
2352 r1 = write_dirty_bitset(cache);
2353 if (r1)
2354 DMERR("could not write dirty bitset");
2355
2356 r2 = write_discard_bitset(cache);
2357 if (r2)
2358 DMERR("could not write discard bitset");
2359
2360 save_stats(cache);
2361
2362 r3 = write_hints(cache);
2363 if (r3)
2364 DMERR("could not write hints");
2365
2366 /*
2367 * If writing the above metadata failed, we still commit, but don't
2368 * set the clean shutdown flag. This will effectively force every
2369 * dirty bit to be set on reload.
2370 */
2371 r4 = dm_cache_commit(cache->cmd, !r1 && !r2 && !r3);
2372 if (r4)
2373 DMERR("could not write cache metadata. Data loss may occur.");
2374
2375 return !r1 && !r2 && !r3 && !r4;
2376}
2377
2378static void cache_postsuspend(struct dm_target *ti)
2379{
2380 struct cache *cache = ti->private;
2381
2382 start_quiescing(cache);
2383 wait_for_migrations(cache);
2384 stop_worker(cache);
2385 requeue_deferred_io(cache);
2386 stop_quiescing(cache);
2387
2388 (void) sync_metadata(cache);
2389}
2390
2391static int load_mapping(void *context, dm_oblock_t oblock, dm_cblock_t cblock,
2392 bool dirty, uint32_t hint, bool hint_valid)
2393{
2394 int r;
2395 struct cache *cache = context;
2396
2397 r = policy_load_mapping(cache->policy, oblock, cblock, hint, hint_valid);
2398 if (r)
2399 return r;
2400
2401 if (dirty)
2402 set_dirty(cache, oblock, cblock);
2403 else
2404 clear_dirty(cache, oblock, cblock);
2405
2406 return 0;
2407}
2408
2409static int load_discard(void *context, sector_t discard_block_size,
2410 dm_dblock_t dblock, bool discard)
2411{
2412 struct cache *cache = context;
2413
2414 /* FIXME: handle mis-matched block size */
2415
2416 if (discard)
2417 set_discard(cache, dblock);
2418 else
2419 clear_discard(cache, dblock);
2420
2421 return 0;
2422}
2423
2424static int cache_preresume(struct dm_target *ti)
2425{
2426 int r = 0;
2427 struct cache *cache = ti->private;
2428 sector_t actual_cache_size = get_dev_size(cache->cache_dev);
2429 (void) sector_div(actual_cache_size, cache->sectors_per_block);
2430
2431 /*
2432 * Check to see if the cache has resized.
2433 */
2434 if (from_cblock(cache->cache_size) != actual_cache_size || !cache->sized) {
2435 cache->cache_size = to_cblock(actual_cache_size);
2436
2437 r = dm_cache_resize(cache->cmd, cache->cache_size);
2438 if (r) {
2439 DMERR("could not resize cache metadata");
2440 return r;
2441 }
2442
2443 cache->sized = true;
2444 }
2445
2446 if (!cache->loaded_mappings) {
Mike Snitzerea2dd8c2013-03-20 17:21:28 +00002447 r = dm_cache_load_mappings(cache->cmd, cache->policy,
Joe Thornberc6b4fcb2013-03-01 22:45:51 +00002448 load_mapping, cache);
2449 if (r) {
2450 DMERR("could not load cache mappings");
2451 return r;
2452 }
2453
2454 cache->loaded_mappings = true;
2455 }
2456
2457 if (!cache->loaded_discards) {
2458 r = dm_cache_load_discards(cache->cmd, load_discard, cache);
2459 if (r) {
2460 DMERR("could not load origin discards");
2461 return r;
2462 }
2463
2464 cache->loaded_discards = true;
2465 }
2466
2467 return r;
2468}
2469
2470static void cache_resume(struct dm_target *ti)
2471{
2472 struct cache *cache = ti->private;
2473
2474 cache->need_tick_bio = true;
2475 do_waker(&cache->waker.work);
2476}
2477
2478/*
2479 * Status format:
2480 *
2481 * <#used metadata blocks>/<#total metadata blocks>
2482 * <#read hits> <#read misses> <#write hits> <#write misses>
2483 * <#demotions> <#promotions> <#blocks in cache> <#dirty>
2484 * <#features> <features>*
2485 * <#core args> <core args>
2486 * <#policy args> <policy args>*
2487 */
2488static void cache_status(struct dm_target *ti, status_type_t type,
2489 unsigned status_flags, char *result, unsigned maxlen)
2490{
2491 int r = 0;
2492 unsigned i;
2493 ssize_t sz = 0;
2494 dm_block_t nr_free_blocks_metadata = 0;
2495 dm_block_t nr_blocks_metadata = 0;
2496 char buf[BDEVNAME_SIZE];
2497 struct cache *cache = ti->private;
2498 dm_cblock_t residency;
2499
2500 switch (type) {
2501 case STATUSTYPE_INFO:
2502 /* Commit to ensure statistics aren't out-of-date */
2503 if (!(status_flags & DM_STATUS_NOFLUSH_FLAG) && !dm_suspended(ti)) {
2504 r = dm_cache_commit(cache->cmd, false);
2505 if (r)
2506 DMERR("could not commit metadata for accurate status");
2507 }
2508
2509 r = dm_cache_get_free_metadata_block_count(cache->cmd,
2510 &nr_free_blocks_metadata);
2511 if (r) {
2512 DMERR("could not get metadata free block count");
2513 goto err;
2514 }
2515
2516 r = dm_cache_get_metadata_dev_size(cache->cmd, &nr_blocks_metadata);
2517 if (r) {
2518 DMERR("could not get metadata device size");
2519 goto err;
2520 }
2521
2522 residency = policy_residency(cache->policy);
2523
2524 DMEMIT("%llu/%llu %u %u %u %u %u %u %llu %u ",
2525 (unsigned long long)(nr_blocks_metadata - nr_free_blocks_metadata),
2526 (unsigned long long)nr_blocks_metadata,
2527 (unsigned) atomic_read(&cache->stats.read_hit),
2528 (unsigned) atomic_read(&cache->stats.read_miss),
2529 (unsigned) atomic_read(&cache->stats.write_hit),
2530 (unsigned) atomic_read(&cache->stats.write_miss),
2531 (unsigned) atomic_read(&cache->stats.demotion),
2532 (unsigned) atomic_read(&cache->stats.promotion),
2533 (unsigned long long) from_cblock(residency),
2534 cache->nr_dirty);
2535
2536 if (cache->features.write_through)
2537 DMEMIT("1 writethrough ");
2538 else
2539 DMEMIT("0 ");
2540
2541 DMEMIT("2 migration_threshold %llu ", (unsigned long long) cache->migration_threshold);
2542 if (sz < maxlen) {
2543 r = policy_emit_config_values(cache->policy, result + sz, maxlen - sz);
2544 if (r)
2545 DMERR("policy_emit_config_values returned %d", r);
2546 }
2547
2548 break;
2549
2550 case STATUSTYPE_TABLE:
2551 format_dev_t(buf, cache->metadata_dev->bdev->bd_dev);
2552 DMEMIT("%s ", buf);
2553 format_dev_t(buf, cache->cache_dev->bdev->bd_dev);
2554 DMEMIT("%s ", buf);
2555 format_dev_t(buf, cache->origin_dev->bdev->bd_dev);
2556 DMEMIT("%s", buf);
2557
2558 for (i = 0; i < cache->nr_ctr_args - 1; i++)
2559 DMEMIT(" %s", cache->ctr_args[i]);
2560 if (cache->nr_ctr_args)
2561 DMEMIT(" %s", cache->ctr_args[cache->nr_ctr_args - 1]);
2562 }
2563
2564 return;
2565
2566err:
2567 DMEMIT("Error");
2568}
2569
Joe Thornberc6b4fcb2013-03-01 22:45:51 +00002570/*
2571 * Supports <key> <value>.
2572 *
2573 * The key migration_threshold is supported by the cache target core.
2574 */
2575static int cache_message(struct dm_target *ti, unsigned argc, char **argv)
2576{
Joe Thornberc6b4fcb2013-03-01 22:45:51 +00002577 struct cache *cache = ti->private;
2578
2579 if (argc != 2)
2580 return -EINVAL;
2581
Joe Thornber2f14f4b2013-05-10 14:37:21 +01002582 return set_config_value(cache, argv[0], argv[1]);
Joe Thornberc6b4fcb2013-03-01 22:45:51 +00002583}
2584
2585static int cache_iterate_devices(struct dm_target *ti,
2586 iterate_devices_callout_fn fn, void *data)
2587{
2588 int r = 0;
2589 struct cache *cache = ti->private;
2590
2591 r = fn(ti, cache->cache_dev, 0, get_dev_size(cache->cache_dev), data);
2592 if (!r)
2593 r = fn(ti, cache->origin_dev, 0, ti->len, data);
2594
2595 return r;
2596}
2597
2598/*
2599 * We assume I/O is going to the origin (which is the volume
2600 * more likely to have restrictions e.g. by being striped).
2601 * (Looking up the exact location of the data would be expensive
2602 * and could always be out of date by the time the bio is submitted.)
2603 */
2604static int cache_bvec_merge(struct dm_target *ti,
2605 struct bvec_merge_data *bvm,
2606 struct bio_vec *biovec, int max_size)
2607{
2608 struct cache *cache = ti->private;
2609 struct request_queue *q = bdev_get_queue(cache->origin_dev->bdev);
2610
2611 if (!q->merge_bvec_fn)
2612 return max_size;
2613
2614 bvm->bi_bdev = cache->origin_dev->bdev;
2615 return min(max_size, q->merge_bvec_fn(q, bvm, biovec));
2616}
2617
2618static void set_discard_limits(struct cache *cache, struct queue_limits *limits)
2619{
2620 /*
2621 * FIXME: these limits may be incompatible with the cache device
2622 */
2623 limits->max_discard_sectors = cache->discard_block_size * 1024;
2624 limits->discard_granularity = cache->discard_block_size << SECTOR_SHIFT;
2625}
2626
2627static void cache_io_hints(struct dm_target *ti, struct queue_limits *limits)
2628{
2629 struct cache *cache = ti->private;
Mike Snitzerf6109372013-08-20 15:02:41 -04002630 uint64_t io_opt_sectors = limits->io_opt >> SECTOR_SHIFT;
Joe Thornberc6b4fcb2013-03-01 22:45:51 +00002631
Mike Snitzerf6109372013-08-20 15:02:41 -04002632 /*
2633 * If the system-determined stacked limits are compatible with the
2634 * cache's blocksize (io_opt is a factor) do not override them.
2635 */
2636 if (io_opt_sectors < cache->sectors_per_block ||
2637 do_div(io_opt_sectors, cache->sectors_per_block)) {
2638 blk_limits_io_min(limits, 0);
2639 blk_limits_io_opt(limits, cache->sectors_per_block << SECTOR_SHIFT);
2640 }
Joe Thornberc6b4fcb2013-03-01 22:45:51 +00002641 set_discard_limits(cache, limits);
2642}
2643
2644/*----------------------------------------------------------------*/
2645
2646static struct target_type cache_target = {
2647 .name = "cache",
Joe Thornber2f14f4b2013-05-10 14:37:21 +01002648 .version = {1, 1, 1},
Joe Thornberc6b4fcb2013-03-01 22:45:51 +00002649 .module = THIS_MODULE,
2650 .ctr = cache_ctr,
2651 .dtr = cache_dtr,
2652 .map = cache_map,
2653 .end_io = cache_end_io,
2654 .postsuspend = cache_postsuspend,
2655 .preresume = cache_preresume,
2656 .resume = cache_resume,
2657 .status = cache_status,
2658 .message = cache_message,
2659 .iterate_devices = cache_iterate_devices,
2660 .merge = cache_bvec_merge,
2661 .io_hints = cache_io_hints,
2662};
2663
2664static int __init dm_cache_init(void)
2665{
2666 int r;
2667
2668 r = dm_register_target(&cache_target);
2669 if (r) {
2670 DMERR("cache target registration failed: %d", r);
2671 return r;
2672 }
2673
2674 migration_cache = KMEM_CACHE(dm_cache_migration, 0);
2675 if (!migration_cache) {
2676 dm_unregister_target(&cache_target);
2677 return -ENOMEM;
2678 }
2679
2680 return 0;
2681}
2682
2683static void __exit dm_cache_exit(void)
2684{
2685 dm_unregister_target(&cache_target);
2686 kmem_cache_destroy(migration_cache);
2687}
2688
2689module_init(dm_cache_init);
2690module_exit(dm_cache_exit);
2691
2692MODULE_DESCRIPTION(DM_NAME " cache target");
2693MODULE_AUTHOR("Joe Thornber <ejt@redhat.com>");
2694MODULE_LICENSE("GPL");