2 * Copyright (C) 2012 Red Hat. All rights reserved.
4 * This file is released under the GPL.
8 #include "dm-bio-prison.h"
9 #include "dm-bio-record.h"
10 #include "dm-cache-metadata.h"
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>
20 #define DM_MSG_PREFIX "cache"
22 DECLARE_DM_KCOPYD_THROTTLE_WITH_MODULE_PARM(cache_copy_throttle
,
23 "A percentage of time allocated for copying to and/or from cache");
25 /*----------------------------------------------------------------*/
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,
38 /*----------------------------------------------------------------*/
40 static size_t bitset_size_in_bytes(unsigned nr_entries
)
42 return sizeof(unsigned long) * dm_div_up(nr_entries
, BITS_PER_LONG
);
45 static unsigned long *alloc_bitset(unsigned nr_entries
)
47 size_t s
= bitset_size_in_bytes(nr_entries
);
51 static void clear_bitset(void *bitset
, unsigned nr_entries
)
53 size_t s
= bitset_size_in_bytes(nr_entries
);
57 static void free_bitset(unsigned long *bits
)
62 /*----------------------------------------------------------------*/
64 #define PRISON_CELLS 1024
65 #define MIGRATION_POOL_SIZE 128
66 #define COMMIT_PERIOD HZ
67 #define MIGRATION_COUNT_WINDOW 10
70 * The block size of the device holding cache data must be
71 * between 32KB and 1GB.
73 #define DATA_DEV_BLOCK_SIZE_MIN_SECTORS (32 * 1024 >> SECTOR_SHIFT)
74 #define DATA_DEV_BLOCK_SIZE_MAX_SECTORS (1024 * 1024 * 1024 >> SECTOR_SHIFT)
77 * FIXME: the cache is read/write for the time being.
80 CM_WRITE
, /* metadata may be changed */
81 CM_READ_ONLY
, /* metadata may not be changed */
84 struct cache_features
{
96 atomic_t copies_avoided
;
97 atomic_t cache_cell_clash
;
98 atomic_t commit_count
;
99 atomic_t discard_count
;
103 struct dm_target
*ti
;
104 struct dm_target_callbacks callbacks
;
106 struct dm_cache_metadata
*cmd
;
109 * Metadata is written to this device.
111 struct dm_dev
*metadata_dev
;
114 * The slower of the two data devices. Typically a spindle.
116 struct dm_dev
*origin_dev
;
119 * The faster of the two data devices. Typically an SSD.
121 struct dm_dev
*cache_dev
;
124 * Size of the origin device in _complete_ blocks and native sectors.
126 dm_oblock_t origin_blocks
;
127 sector_t origin_sectors
;
130 * Size of the cache device in blocks.
132 dm_cblock_t cache_size
;
135 * Fields for converting from sectors to blocks.
137 uint32_t sectors_per_block
;
138 int sectors_per_block_shift
;
141 struct bio_list deferred_bios
;
142 struct bio_list deferred_flush_bios
;
143 struct bio_list deferred_writethrough_bios
;
144 struct list_head quiesced_migrations
;
145 struct list_head completed_migrations
;
146 struct list_head need_commit_migrations
;
147 sector_t migration_threshold
;
148 wait_queue_head_t migration_wait
;
149 atomic_t nr_migrations
;
151 wait_queue_head_t quiescing_wait
;
152 atomic_t quiescing_ack
;
155 * cache_size entries, dirty if set
158 unsigned long *dirty_bitset
;
161 * origin_blocks entries, discarded if set.
163 dm_dblock_t discard_nr_blocks
;
164 unsigned long *discard_bitset
;
165 uint32_t discard_block_size
;
168 * Rather than reconstructing the table line for the status we just
169 * save it and regurgitate.
171 unsigned nr_ctr_args
;
172 const char **ctr_args
;
174 struct dm_kcopyd_client
*copier
;
175 struct workqueue_struct
*wq
;
176 struct work_struct worker
;
178 struct delayed_work waker
;
179 unsigned long last_commit_jiffies
;
181 struct dm_bio_prison
*prison
;
182 struct dm_deferred_set
*all_io_ds
;
184 mempool_t
*migration_pool
;
185 struct dm_cache_migration
*next_migration
;
187 struct dm_cache_policy
*policy
;
188 unsigned policy_nr_args
;
190 bool need_tick_bio
:1;
193 bool commit_requested
:1;
194 bool loaded_mappings
:1;
195 bool loaded_discards
:1;
198 * Cache features such as write-through.
200 struct cache_features features
;
202 struct cache_stats stats
;
205 struct per_bio_data
{
208 struct dm_deferred_entry
*all_io_entry
;
211 * writethrough fields. These MUST remain at the end of this
212 * structure and the 'cache' member must be the first as it
213 * is used to determine the offset of the writethrough fields.
217 bio_end_io_t
*saved_bi_end_io
;
218 struct dm_bio_details bio_details
;
221 struct dm_cache_migration
{
222 struct list_head list
;
225 unsigned long start_jiffies
;
226 dm_oblock_t old_oblock
;
227 dm_oblock_t new_oblock
;
235 struct dm_bio_prison_cell
*old_ocell
;
236 struct dm_bio_prison_cell
*new_ocell
;
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).
245 struct dm_cache_migration
*mg
;
246 struct dm_bio_prison_cell
*cell1
;
247 struct dm_bio_prison_cell
*cell2
;
250 static void wake_worker(struct cache
*cache
)
252 queue_work(cache
->wq
, &cache
->worker
);
255 /*----------------------------------------------------------------*/
257 static struct dm_bio_prison_cell
*alloc_prison_cell(struct cache
*cache
)
259 /* FIXME: change to use a local slab. */
260 return dm_bio_prison_alloc_cell(cache
->prison
, GFP_NOWAIT
);
263 static void free_prison_cell(struct cache
*cache
, struct dm_bio_prison_cell
*cell
)
265 dm_bio_prison_free_cell(cache
->prison
, cell
);
268 static int prealloc_data_structs(struct cache
*cache
, struct prealloc
*p
)
271 p
->mg
= mempool_alloc(cache
->migration_pool
, GFP_NOWAIT
);
277 p
->cell1
= alloc_prison_cell(cache
);
283 p
->cell2
= alloc_prison_cell(cache
);
291 static void prealloc_free_structs(struct cache
*cache
, struct prealloc
*p
)
294 free_prison_cell(cache
, p
->cell2
);
297 free_prison_cell(cache
, p
->cell1
);
300 mempool_free(p
->mg
, cache
->migration_pool
);
303 static struct dm_cache_migration
*prealloc_get_migration(struct prealloc
*p
)
305 struct dm_cache_migration
*mg
= p
->mg
;
314 * You must have a cell within the prealloc struct to return. If not this
315 * function will BUG() rather than returning NULL.
317 static struct dm_bio_prison_cell
*prealloc_get_cell(struct prealloc
*p
)
319 struct dm_bio_prison_cell
*r
= NULL
;
325 } else if (p
->cell2
) {
335 * You can't have more than two cells in a prealloc struct. BUG() will be
336 * called if you try and overfill.
338 static void prealloc_put_cell(struct prealloc
*p
, struct dm_bio_prison_cell
*cell
)
350 /*----------------------------------------------------------------*/
352 static void build_key(dm_oblock_t oblock
, struct dm_cell_key
*key
)
356 key
->block
= from_oblock(oblock
);
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.
364 typedef void (*cell_free_fn
)(void *context
, struct dm_bio_prison_cell
*cell
);
366 static 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
)
372 struct dm_cell_key key
;
374 build_key(oblock
, &key
);
375 r
= dm_bio_detain(cache
->prison
, &key
, bio
, cell_prealloc
, cell_result
);
377 free_fn(free_context
, cell_prealloc
);
382 static int get_cell(struct cache
*cache
,
384 struct prealloc
*structs
,
385 struct dm_bio_prison_cell
**cell_result
)
388 struct dm_cell_key key
;
389 struct dm_bio_prison_cell
*cell_prealloc
;
391 cell_prealloc
= prealloc_get_cell(structs
);
393 build_key(oblock
, &key
);
394 r
= dm_get_cell(cache
->prison
, &key
, cell_prealloc
, cell_result
);
396 prealloc_put_cell(structs
, cell_prealloc
);
401 /*----------------------------------------------------------------*/
403 static bool is_dirty(struct cache
*cache
, dm_cblock_t b
)
405 return test_bit(from_cblock(b
), cache
->dirty_bitset
);
408 static void set_dirty(struct cache
*cache
, dm_oblock_t oblock
, dm_cblock_t cblock
)
410 if (!test_and_set_bit(from_cblock(cblock
), cache
->dirty_bitset
)) {
411 atomic_inc(&cache
->nr_dirty
);
412 policy_set_dirty(cache
->policy
, oblock
);
416 static void clear_dirty(struct cache
*cache
, dm_oblock_t oblock
, dm_cblock_t cblock
)
418 if (test_and_clear_bit(from_cblock(cblock
), cache
->dirty_bitset
)) {
419 policy_clear_dirty(cache
->policy
, oblock
);
420 if (atomic_dec_return(&cache
->nr_dirty
) == 0)
421 dm_table_event(cache
->ti
->table
);
425 /*----------------------------------------------------------------*/
427 static bool block_size_is_power_of_two(struct cache
*cache
)
429 return cache
->sectors_per_block_shift
>= 0;
432 /* gcc on ARM generates spurious references to __udivdi3 and __umoddi3 */
433 #if defined(CONFIG_ARM) && __GNUC__ == 4 && __GNUC_MINOR__ <= 6
436 static dm_block_t
block_div(dm_block_t b
, uint32_t n
)
443 static dm_dblock_t
oblock_to_dblock(struct cache
*cache
, dm_oblock_t oblock
)
445 uint32_t discard_blocks
= cache
->discard_block_size
;
446 dm_block_t b
= from_oblock(oblock
);
448 if (!block_size_is_power_of_two(cache
))
449 discard_blocks
= discard_blocks
/ cache
->sectors_per_block
;
451 discard_blocks
>>= cache
->sectors_per_block_shift
;
453 b
= block_div(b
, discard_blocks
);
458 static void set_discard(struct cache
*cache
, dm_dblock_t b
)
462 atomic_inc(&cache
->stats
.discard_count
);
464 spin_lock_irqsave(&cache
->lock
, flags
);
465 set_bit(from_dblock(b
), cache
->discard_bitset
);
466 spin_unlock_irqrestore(&cache
->lock
, flags
);
469 static void clear_discard(struct cache
*cache
, dm_dblock_t b
)
473 spin_lock_irqsave(&cache
->lock
, flags
);
474 clear_bit(from_dblock(b
), cache
->discard_bitset
);
475 spin_unlock_irqrestore(&cache
->lock
, flags
);
478 static bool is_discarded(struct cache
*cache
, dm_dblock_t b
)
483 spin_lock_irqsave(&cache
->lock
, flags
);
484 r
= test_bit(from_dblock(b
), cache
->discard_bitset
);
485 spin_unlock_irqrestore(&cache
->lock
, flags
);
490 static bool is_discarded_oblock(struct cache
*cache
, dm_oblock_t b
)
495 spin_lock_irqsave(&cache
->lock
, flags
);
496 r
= test_bit(from_dblock(oblock_to_dblock(cache
, b
)),
497 cache
->discard_bitset
);
498 spin_unlock_irqrestore(&cache
->lock
, flags
);
503 /*----------------------------------------------------------------*/
505 static void load_stats(struct cache
*cache
)
507 struct dm_cache_statistics stats
;
509 dm_cache_metadata_get_stats(cache
->cmd
, &stats
);
510 atomic_set(&cache
->stats
.read_hit
, stats
.read_hits
);
511 atomic_set(&cache
->stats
.read_miss
, stats
.read_misses
);
512 atomic_set(&cache
->stats
.write_hit
, stats
.write_hits
);
513 atomic_set(&cache
->stats
.write_miss
, stats
.write_misses
);
516 static void save_stats(struct cache
*cache
)
518 struct dm_cache_statistics stats
;
520 stats
.read_hits
= atomic_read(&cache
->stats
.read_hit
);
521 stats
.read_misses
= atomic_read(&cache
->stats
.read_miss
);
522 stats
.write_hits
= atomic_read(&cache
->stats
.write_hit
);
523 stats
.write_misses
= atomic_read(&cache
->stats
.write_miss
);
525 dm_cache_metadata_set_stats(cache
->cmd
, &stats
);
528 /*----------------------------------------------------------------
530 *--------------------------------------------------------------*/
533 * If using writeback, leave out struct per_bio_data's writethrough fields.
535 #define PB_DATA_SIZE_WB (offsetof(struct per_bio_data, cache))
536 #define PB_DATA_SIZE_WT (sizeof(struct per_bio_data))
538 static size_t get_per_bio_data_size(struct cache
*cache
)
540 return cache
->features
.write_through
? PB_DATA_SIZE_WT
: PB_DATA_SIZE_WB
;
543 static struct per_bio_data
*get_per_bio_data(struct bio
*bio
, size_t data_size
)
545 struct per_bio_data
*pb
= dm_per_bio_data(bio
, data_size
);
550 static struct per_bio_data
*init_per_bio_data(struct bio
*bio
, size_t data_size
)
552 struct per_bio_data
*pb
= get_per_bio_data(bio
, data_size
);
555 pb
->req_nr
= dm_bio_get_target_bio_nr(bio
);
556 pb
->all_io_entry
= NULL
;
561 /*----------------------------------------------------------------
563 *--------------------------------------------------------------*/
564 static void remap_to_origin(struct cache
*cache
, struct bio
*bio
)
566 bio
->bi_bdev
= cache
->origin_dev
->bdev
;
569 static void remap_to_cache(struct cache
*cache
, struct bio
*bio
,
572 sector_t bi_sector
= bio
->bi_sector
;
574 bio
->bi_bdev
= cache
->cache_dev
->bdev
;
575 if (!block_size_is_power_of_two(cache
))
576 bio
->bi_sector
= (from_cblock(cblock
) * cache
->sectors_per_block
) +
577 sector_div(bi_sector
, cache
->sectors_per_block
);
579 bio
->bi_sector
= (from_cblock(cblock
) << cache
->sectors_per_block_shift
) |
580 (bi_sector
& (cache
->sectors_per_block
- 1));
583 static void check_if_tick_bio_needed(struct cache
*cache
, struct bio
*bio
)
586 size_t pb_data_size
= get_per_bio_data_size(cache
);
587 struct per_bio_data
*pb
= get_per_bio_data(bio
, pb_data_size
);
589 spin_lock_irqsave(&cache
->lock
, flags
);
590 if (cache
->need_tick_bio
&&
591 !(bio
->bi_rw
& (REQ_FUA
| REQ_FLUSH
| REQ_DISCARD
))) {
593 cache
->need_tick_bio
= false;
595 spin_unlock_irqrestore(&cache
->lock
, flags
);
598 static void remap_to_origin_clear_discard(struct cache
*cache
, struct bio
*bio
,
601 check_if_tick_bio_needed(cache
, bio
);
602 remap_to_origin(cache
, bio
);
603 if (bio_data_dir(bio
) == WRITE
)
604 clear_discard(cache
, oblock_to_dblock(cache
, oblock
));
607 static void remap_to_cache_dirty(struct cache
*cache
, struct bio
*bio
,
608 dm_oblock_t oblock
, dm_cblock_t cblock
)
610 remap_to_cache(cache
, bio
, cblock
);
611 if (bio_data_dir(bio
) == WRITE
) {
612 set_dirty(cache
, oblock
, cblock
);
613 clear_discard(cache
, oblock_to_dblock(cache
, oblock
));
617 static dm_oblock_t
get_bio_block(struct cache
*cache
, struct bio
*bio
)
619 sector_t block_nr
= bio
->bi_sector
;
621 if (!block_size_is_power_of_two(cache
))
622 (void) sector_div(block_nr
, cache
->sectors_per_block
);
624 block_nr
>>= cache
->sectors_per_block_shift
;
626 return to_oblock(block_nr
);
629 static int bio_triggers_commit(struct cache
*cache
, struct bio
*bio
)
631 return bio
->bi_rw
& (REQ_FLUSH
| REQ_FUA
);
634 static void issue(struct cache
*cache
, struct bio
*bio
)
638 if (!bio_triggers_commit(cache
, bio
)) {
639 generic_make_request(bio
);
644 * Batch together any bios that trigger commits and then issue a
645 * single commit for them in do_worker().
647 spin_lock_irqsave(&cache
->lock
, flags
);
648 cache
->commit_requested
= true;
649 bio_list_add(&cache
->deferred_flush_bios
, bio
);
650 spin_unlock_irqrestore(&cache
->lock
, flags
);
653 static void defer_writethrough_bio(struct cache
*cache
, struct bio
*bio
)
657 spin_lock_irqsave(&cache
->lock
, flags
);
658 bio_list_add(&cache
->deferred_writethrough_bios
, bio
);
659 spin_unlock_irqrestore(&cache
->lock
, flags
);
664 static void writethrough_endio(struct bio
*bio
, int err
)
666 struct per_bio_data
*pb
= get_per_bio_data(bio
, PB_DATA_SIZE_WT
);
667 bio
->bi_end_io
= pb
->saved_bi_end_io
;
674 dm_bio_restore(&pb
->bio_details
, bio
);
675 remap_to_cache(pb
->cache
, bio
, pb
->cblock
);
678 * We can't issue this bio directly, since we're in interrupt
679 * context. So it gets put on a bio list for processing by the
682 defer_writethrough_bio(pb
->cache
, bio
);
686 * When running in writethrough mode we need to send writes to clean blocks
687 * to both the cache and origin devices. In future we'd like to clone the
688 * bio and send them in parallel, but for now we're doing them in
689 * series as this is easier.
691 static void remap_to_origin_then_cache(struct cache
*cache
, struct bio
*bio
,
692 dm_oblock_t oblock
, dm_cblock_t cblock
)
694 struct per_bio_data
*pb
= get_per_bio_data(bio
, PB_DATA_SIZE_WT
);
698 pb
->saved_bi_end_io
= bio
->bi_end_io
;
699 dm_bio_record(&pb
->bio_details
, bio
);
700 bio
->bi_end_io
= writethrough_endio
;
702 remap_to_origin_clear_discard(pb
->cache
, bio
, oblock
);
705 /*----------------------------------------------------------------
706 * Migration processing
708 * Migration covers moving data from the origin device to the cache, or
710 *--------------------------------------------------------------*/
711 static void free_migration(struct dm_cache_migration
*mg
)
713 mempool_free(mg
, mg
->cache
->migration_pool
);
716 static void inc_nr_migrations(struct cache
*cache
)
718 atomic_inc(&cache
->nr_migrations
);
721 static void dec_nr_migrations(struct cache
*cache
)
723 atomic_dec(&cache
->nr_migrations
);
726 * Wake the worker in case we're suspending the target.
728 wake_up(&cache
->migration_wait
);
731 static void __cell_defer(struct cache
*cache
, struct dm_bio_prison_cell
*cell
,
734 (holder
? dm_cell_release
: dm_cell_release_no_holder
)
735 (cache
->prison
, cell
, &cache
->deferred_bios
);
736 free_prison_cell(cache
, cell
);
739 static void cell_defer(struct cache
*cache
, struct dm_bio_prison_cell
*cell
,
744 spin_lock_irqsave(&cache
->lock
, flags
);
745 __cell_defer(cache
, cell
, holder
);
746 spin_unlock_irqrestore(&cache
->lock
, flags
);
751 static void cleanup_migration(struct dm_cache_migration
*mg
)
753 struct cache
*cache
= mg
->cache
;
755 dec_nr_migrations(cache
);
758 static void migration_failure(struct dm_cache_migration
*mg
)
760 struct cache
*cache
= mg
->cache
;
763 DMWARN_LIMIT("writeback failed; couldn't copy block");
764 set_dirty(cache
, mg
->old_oblock
, mg
->cblock
);
765 cell_defer(cache
, mg
->old_ocell
, false);
767 } else if (mg
->demote
) {
768 DMWARN_LIMIT("demotion failed; couldn't copy block");
769 policy_force_mapping(cache
->policy
, mg
->new_oblock
, mg
->old_oblock
);
771 cell_defer(cache
, mg
->old_ocell
, mg
->promote
? 0 : 1);
773 cell_defer(cache
, mg
->new_ocell
, 1);
775 DMWARN_LIMIT("promotion failed; couldn't copy block");
776 policy_remove_mapping(cache
->policy
, mg
->new_oblock
);
777 cell_defer(cache
, mg
->new_ocell
, 1);
780 cleanup_migration(mg
);
783 static void migration_success_pre_commit(struct dm_cache_migration
*mg
)
786 struct cache
*cache
= mg
->cache
;
789 cell_defer(cache
, mg
->old_ocell
, false);
790 clear_dirty(cache
, mg
->old_oblock
, mg
->cblock
);
791 cleanup_migration(mg
);
794 } else if (mg
->demote
) {
795 if (dm_cache_remove_mapping(cache
->cmd
, mg
->cblock
)) {
796 DMWARN_LIMIT("demotion failed; couldn't update on disk metadata");
797 policy_force_mapping(cache
->policy
, mg
->new_oblock
,
800 cell_defer(cache
, mg
->new_ocell
, true);
801 cleanup_migration(mg
);
805 if (dm_cache_insert_mapping(cache
->cmd
, mg
->cblock
, mg
->new_oblock
)) {
806 DMWARN_LIMIT("promotion failed; couldn't update on disk metadata");
807 policy_remove_mapping(cache
->policy
, mg
->new_oblock
);
808 cleanup_migration(mg
);
813 spin_lock_irqsave(&cache
->lock
, flags
);
814 list_add_tail(&mg
->list
, &cache
->need_commit_migrations
);
815 cache
->commit_requested
= true;
816 spin_unlock_irqrestore(&cache
->lock
, flags
);
819 static void migration_success_post_commit(struct dm_cache_migration
*mg
)
822 struct cache
*cache
= mg
->cache
;
825 DMWARN("writeback unexpectedly triggered commit");
828 } else if (mg
->demote
) {
829 cell_defer(cache
, mg
->old_ocell
, mg
->promote
? 0 : 1);
834 spin_lock_irqsave(&cache
->lock
, flags
);
835 list_add_tail(&mg
->list
, &cache
->quiesced_migrations
);
836 spin_unlock_irqrestore(&cache
->lock
, flags
);
839 cleanup_migration(mg
);
842 cell_defer(cache
, mg
->new_ocell
, true);
843 clear_dirty(cache
, mg
->new_oblock
, mg
->cblock
);
844 cleanup_migration(mg
);
848 static void copy_complete(int read_err
, unsigned long write_err
, void *context
)
851 struct dm_cache_migration
*mg
= (struct dm_cache_migration
*) context
;
852 struct cache
*cache
= mg
->cache
;
854 if (read_err
|| write_err
)
857 spin_lock_irqsave(&cache
->lock
, flags
);
858 list_add_tail(&mg
->list
, &cache
->completed_migrations
);
859 spin_unlock_irqrestore(&cache
->lock
, flags
);
864 static void issue_copy_real(struct dm_cache_migration
*mg
)
867 struct dm_io_region o_region
, c_region
;
868 struct cache
*cache
= mg
->cache
;
869 sector_t cblock
= from_cblock(mg
->cblock
);
871 o_region
.bdev
= cache
->origin_dev
->bdev
;
872 o_region
.count
= cache
->sectors_per_block
;
874 c_region
.bdev
= cache
->cache_dev
->bdev
;
875 c_region
.sector
= cblock
* cache
->sectors_per_block
;
876 c_region
.count
= cache
->sectors_per_block
;
878 if (mg
->writeback
|| mg
->demote
) {
880 o_region
.sector
= from_oblock(mg
->old_oblock
) * cache
->sectors_per_block
;
881 r
= dm_kcopyd_copy(cache
->copier
, &c_region
, 1, &o_region
, 0, copy_complete
, mg
);
884 o_region
.sector
= from_oblock(mg
->new_oblock
) * cache
->sectors_per_block
;
885 r
= dm_kcopyd_copy(cache
->copier
, &o_region
, 1, &c_region
, 0, copy_complete
, mg
);
889 migration_failure(mg
);
892 static void avoid_copy(struct dm_cache_migration
*mg
)
894 atomic_inc(&mg
->cache
->stats
.copies_avoided
);
895 migration_success_pre_commit(mg
);
898 static void issue_copy(struct dm_cache_migration
*mg
)
901 struct cache
*cache
= mg
->cache
;
903 if (mg
->writeback
|| mg
->demote
)
904 avoid
= !is_dirty(cache
, mg
->cblock
) ||
905 is_discarded_oblock(cache
, mg
->old_oblock
);
907 avoid
= is_discarded_oblock(cache
, mg
->new_oblock
);
909 avoid
? avoid_copy(mg
) : issue_copy_real(mg
);
912 static void complete_migration(struct dm_cache_migration
*mg
)
915 migration_failure(mg
);
917 migration_success_pre_commit(mg
);
920 static void process_migrations(struct cache
*cache
, struct list_head
*head
,
921 void (*fn
)(struct dm_cache_migration
*))
924 struct list_head list
;
925 struct dm_cache_migration
*mg
, *tmp
;
927 INIT_LIST_HEAD(&list
);
928 spin_lock_irqsave(&cache
->lock
, flags
);
929 list_splice_init(head
, &list
);
930 spin_unlock_irqrestore(&cache
->lock
, flags
);
932 list_for_each_entry_safe(mg
, tmp
, &list
, list
)
936 static void __queue_quiesced_migration(struct dm_cache_migration
*mg
)
938 list_add_tail(&mg
->list
, &mg
->cache
->quiesced_migrations
);
941 static void queue_quiesced_migration(struct dm_cache_migration
*mg
)
944 struct cache
*cache
= mg
->cache
;
946 spin_lock_irqsave(&cache
->lock
, flags
);
947 __queue_quiesced_migration(mg
);
948 spin_unlock_irqrestore(&cache
->lock
, flags
);
953 static void queue_quiesced_migrations(struct cache
*cache
, struct list_head
*work
)
956 struct dm_cache_migration
*mg
, *tmp
;
958 spin_lock_irqsave(&cache
->lock
, flags
);
959 list_for_each_entry_safe(mg
, tmp
, work
, list
)
960 __queue_quiesced_migration(mg
);
961 spin_unlock_irqrestore(&cache
->lock
, flags
);
966 static void check_for_quiesced_migrations(struct cache
*cache
,
967 struct per_bio_data
*pb
)
969 struct list_head work
;
971 if (!pb
->all_io_entry
)
974 INIT_LIST_HEAD(&work
);
975 if (pb
->all_io_entry
)
976 dm_deferred_entry_dec(pb
->all_io_entry
, &work
);
978 if (!list_empty(&work
))
979 queue_quiesced_migrations(cache
, &work
);
982 static void quiesce_migration(struct dm_cache_migration
*mg
)
984 if (!dm_deferred_set_add_work(mg
->cache
->all_io_ds
, &mg
->list
))
985 queue_quiesced_migration(mg
);
988 static void promote(struct cache
*cache
, struct prealloc
*structs
,
989 dm_oblock_t oblock
, dm_cblock_t cblock
,
990 struct dm_bio_prison_cell
*cell
)
992 struct dm_cache_migration
*mg
= prealloc_get_migration(structs
);
995 mg
->writeback
= false;
999 mg
->new_oblock
= oblock
;
1000 mg
->cblock
= cblock
;
1001 mg
->old_ocell
= NULL
;
1002 mg
->new_ocell
= cell
;
1003 mg
->start_jiffies
= jiffies
;
1005 inc_nr_migrations(cache
);
1006 quiesce_migration(mg
);
1009 static void writeback(struct cache
*cache
, struct prealloc
*structs
,
1010 dm_oblock_t oblock
, dm_cblock_t cblock
,
1011 struct dm_bio_prison_cell
*cell
)
1013 struct dm_cache_migration
*mg
= prealloc_get_migration(structs
);
1016 mg
->writeback
= true;
1018 mg
->promote
= false;
1020 mg
->old_oblock
= oblock
;
1021 mg
->cblock
= cblock
;
1022 mg
->old_ocell
= cell
;
1023 mg
->new_ocell
= NULL
;
1024 mg
->start_jiffies
= jiffies
;
1026 inc_nr_migrations(cache
);
1027 quiesce_migration(mg
);
1030 static void demote_then_promote(struct cache
*cache
, struct prealloc
*structs
,
1031 dm_oblock_t old_oblock
, dm_oblock_t new_oblock
,
1033 struct dm_bio_prison_cell
*old_ocell
,
1034 struct dm_bio_prison_cell
*new_ocell
)
1036 struct dm_cache_migration
*mg
= prealloc_get_migration(structs
);
1039 mg
->writeback
= false;
1043 mg
->old_oblock
= old_oblock
;
1044 mg
->new_oblock
= new_oblock
;
1045 mg
->cblock
= cblock
;
1046 mg
->old_ocell
= old_ocell
;
1047 mg
->new_ocell
= new_ocell
;
1048 mg
->start_jiffies
= jiffies
;
1050 inc_nr_migrations(cache
);
1051 quiesce_migration(mg
);
1054 /*----------------------------------------------------------------
1056 *--------------------------------------------------------------*/
1057 static void defer_bio(struct cache
*cache
, struct bio
*bio
)
1059 unsigned long flags
;
1061 spin_lock_irqsave(&cache
->lock
, flags
);
1062 bio_list_add(&cache
->deferred_bios
, bio
);
1063 spin_unlock_irqrestore(&cache
->lock
, flags
);
1068 static void process_flush_bio(struct cache
*cache
, struct bio
*bio
)
1070 size_t pb_data_size
= get_per_bio_data_size(cache
);
1071 struct per_bio_data
*pb
= get_per_bio_data(bio
, pb_data_size
);
1073 BUG_ON(bio
->bi_size
);
1075 remap_to_origin(cache
, bio
);
1077 remap_to_cache(cache
, bio
, 0);
1083 * People generally discard large parts of a device, eg, the whole device
1084 * when formatting. Splitting these large discards up into cache block
1085 * sized ios and then quiescing (always neccessary for discard) takes too
1088 * We keep it simple, and allow any size of discard to come in, and just
1089 * mark off blocks on the discard bitset. No passdown occurs!
1091 * To implement passdown we need to change the bio_prison such that a cell
1092 * can have a key that spans many blocks.
1094 static void process_discard_bio(struct cache
*cache
, struct bio
*bio
)
1096 dm_block_t start_block
= dm_sector_div_up(bio
->bi_sector
,
1097 cache
->discard_block_size
);
1098 dm_block_t end_block
= bio
->bi_sector
+ bio_sectors(bio
);
1101 end_block
= block_div(end_block
, cache
->discard_block_size
);
1103 for (b
= start_block
; b
< end_block
; b
++)
1104 set_discard(cache
, to_dblock(b
));
1109 static bool spare_migration_bandwidth(struct cache
*cache
)
1111 sector_t current_volume
= (atomic_read(&cache
->nr_migrations
) + 1) *
1112 cache
->sectors_per_block
;
1113 return current_volume
< cache
->migration_threshold
;
1116 static bool is_writethrough_io(struct cache
*cache
, struct bio
*bio
,
1119 return bio_data_dir(bio
) == WRITE
&&
1120 cache
->features
.write_through
&& !is_dirty(cache
, cblock
);
1123 static void inc_hit_counter(struct cache
*cache
, struct bio
*bio
)
1125 atomic_inc(bio_data_dir(bio
) == READ
?
1126 &cache
->stats
.read_hit
: &cache
->stats
.write_hit
);
1129 static void inc_miss_counter(struct cache
*cache
, struct bio
*bio
)
1131 atomic_inc(bio_data_dir(bio
) == READ
?
1132 &cache
->stats
.read_miss
: &cache
->stats
.write_miss
);
1135 static void process_bio(struct cache
*cache
, struct prealloc
*structs
,
1139 bool release_cell
= true;
1140 dm_oblock_t block
= get_bio_block(cache
, bio
);
1141 struct dm_bio_prison_cell
*cell_prealloc
, *old_ocell
, *new_ocell
;
1142 struct policy_result lookup_result
;
1143 size_t pb_data_size
= get_per_bio_data_size(cache
);
1144 struct per_bio_data
*pb
= get_per_bio_data(bio
, pb_data_size
);
1145 bool discarded_block
= is_discarded_oblock(cache
, block
);
1146 bool can_migrate
= discarded_block
|| spare_migration_bandwidth(cache
);
1149 * Check to see if that block is currently migrating.
1151 cell_prealloc
= prealloc_get_cell(structs
);
1152 r
= bio_detain(cache
, block
, bio
, cell_prealloc
,
1153 (cell_free_fn
) prealloc_put_cell
,
1154 structs
, &new_ocell
);
1158 r
= policy_map(cache
->policy
, block
, true, can_migrate
, discarded_block
,
1159 bio
, &lookup_result
);
1161 if (r
== -EWOULDBLOCK
)
1162 /* migration has been denied */
1163 lookup_result
.op
= POLICY_MISS
;
1165 switch (lookup_result
.op
) {
1167 inc_hit_counter(cache
, bio
);
1168 pb
->all_io_entry
= dm_deferred_entry_inc(cache
->all_io_ds
);
1170 if (is_writethrough_io(cache
, bio
, lookup_result
.cblock
))
1171 remap_to_origin_then_cache(cache
, bio
, block
, lookup_result
.cblock
);
1173 remap_to_cache_dirty(cache
, bio
, block
, lookup_result
.cblock
);
1179 inc_miss_counter(cache
, bio
);
1180 pb
->all_io_entry
= dm_deferred_entry_inc(cache
->all_io_ds
);
1181 remap_to_origin_clear_discard(cache
, bio
, block
);
1186 atomic_inc(&cache
->stats
.promotion
);
1187 promote(cache
, structs
, block
, lookup_result
.cblock
, new_ocell
);
1188 release_cell
= false;
1191 case POLICY_REPLACE
:
1192 cell_prealloc
= prealloc_get_cell(structs
);
1193 r
= bio_detain(cache
, lookup_result
.old_oblock
, bio
, cell_prealloc
,
1194 (cell_free_fn
) prealloc_put_cell
,
1195 structs
, &old_ocell
);
1198 * We have to be careful to avoid lock inversion of
1199 * the cells. So we back off, and wait for the
1200 * old_ocell to become free.
1202 policy_force_mapping(cache
->policy
, block
,
1203 lookup_result
.old_oblock
);
1204 atomic_inc(&cache
->stats
.cache_cell_clash
);
1207 atomic_inc(&cache
->stats
.demotion
);
1208 atomic_inc(&cache
->stats
.promotion
);
1210 demote_then_promote(cache
, structs
, lookup_result
.old_oblock
,
1211 block
, lookup_result
.cblock
,
1212 old_ocell
, new_ocell
);
1213 release_cell
= false;
1217 DMERR_LIMIT("%s: erroring bio, unknown policy op: %u", __func__
,
1218 (unsigned) lookup_result
.op
);
1223 cell_defer(cache
, new_ocell
, false);
1226 static int need_commit_due_to_time(struct cache
*cache
)
1228 return jiffies
< cache
->last_commit_jiffies
||
1229 jiffies
> cache
->last_commit_jiffies
+ COMMIT_PERIOD
;
1232 static int commit_if_needed(struct cache
*cache
)
1234 if (dm_cache_changed_this_transaction(cache
->cmd
) &&
1235 (cache
->commit_requested
|| need_commit_due_to_time(cache
))) {
1236 atomic_inc(&cache
->stats
.commit_count
);
1237 cache
->last_commit_jiffies
= jiffies
;
1238 cache
->commit_requested
= false;
1239 return dm_cache_commit(cache
->cmd
, false);
1245 static void process_deferred_bios(struct cache
*cache
)
1247 unsigned long flags
;
1248 struct bio_list bios
;
1250 struct prealloc structs
;
1252 memset(&structs
, 0, sizeof(structs
));
1253 bio_list_init(&bios
);
1255 spin_lock_irqsave(&cache
->lock
, flags
);
1256 bio_list_merge(&bios
, &cache
->deferred_bios
);
1257 bio_list_init(&cache
->deferred_bios
);
1258 spin_unlock_irqrestore(&cache
->lock
, flags
);
1260 while (!bio_list_empty(&bios
)) {
1262 * If we've got no free migration structs, and processing
1263 * this bio might require one, we pause until there are some
1264 * prepared mappings to process.
1266 if (prealloc_data_structs(cache
, &structs
)) {
1267 spin_lock_irqsave(&cache
->lock
, flags
);
1268 bio_list_merge(&cache
->deferred_bios
, &bios
);
1269 spin_unlock_irqrestore(&cache
->lock
, flags
);
1273 bio
= bio_list_pop(&bios
);
1275 if (bio
->bi_rw
& REQ_FLUSH
)
1276 process_flush_bio(cache
, bio
);
1277 else if (bio
->bi_rw
& REQ_DISCARD
)
1278 process_discard_bio(cache
, bio
);
1280 process_bio(cache
, &structs
, bio
);
1283 prealloc_free_structs(cache
, &structs
);
1286 static void process_deferred_flush_bios(struct cache
*cache
, bool submit_bios
)
1288 unsigned long flags
;
1289 struct bio_list bios
;
1292 bio_list_init(&bios
);
1294 spin_lock_irqsave(&cache
->lock
, flags
);
1295 bio_list_merge(&bios
, &cache
->deferred_flush_bios
);
1296 bio_list_init(&cache
->deferred_flush_bios
);
1297 spin_unlock_irqrestore(&cache
->lock
, flags
);
1299 while ((bio
= bio_list_pop(&bios
)))
1300 submit_bios
? generic_make_request(bio
) : bio_io_error(bio
);
1303 static void process_deferred_writethrough_bios(struct cache
*cache
)
1305 unsigned long flags
;
1306 struct bio_list bios
;
1309 bio_list_init(&bios
);
1311 spin_lock_irqsave(&cache
->lock
, flags
);
1312 bio_list_merge(&bios
, &cache
->deferred_writethrough_bios
);
1313 bio_list_init(&cache
->deferred_writethrough_bios
);
1314 spin_unlock_irqrestore(&cache
->lock
, flags
);
1316 while ((bio
= bio_list_pop(&bios
)))
1317 generic_make_request(bio
);
1320 static void writeback_some_dirty_blocks(struct cache
*cache
)
1325 struct prealloc structs
;
1326 struct dm_bio_prison_cell
*old_ocell
;
1328 memset(&structs
, 0, sizeof(structs
));
1330 while (spare_migration_bandwidth(cache
)) {
1331 if (prealloc_data_structs(cache
, &structs
))
1334 r
= policy_writeback_work(cache
->policy
, &oblock
, &cblock
);
1338 r
= get_cell(cache
, oblock
, &structs
, &old_ocell
);
1340 policy_set_dirty(cache
->policy
, oblock
);
1344 writeback(cache
, &structs
, oblock
, cblock
, old_ocell
);
1347 prealloc_free_structs(cache
, &structs
);
1350 /*----------------------------------------------------------------
1352 *--------------------------------------------------------------*/
1353 static bool is_quiescing(struct cache
*cache
)
1356 unsigned long flags
;
1358 spin_lock_irqsave(&cache
->lock
, flags
);
1359 r
= cache
->quiescing
;
1360 spin_unlock_irqrestore(&cache
->lock
, flags
);
1365 static void ack_quiescing(struct cache
*cache
)
1367 if (is_quiescing(cache
)) {
1368 atomic_inc(&cache
->quiescing_ack
);
1369 wake_up(&cache
->quiescing_wait
);
1373 static void wait_for_quiescing_ack(struct cache
*cache
)
1375 wait_event(cache
->quiescing_wait
, atomic_read(&cache
->quiescing_ack
));
1378 static void start_quiescing(struct cache
*cache
)
1380 unsigned long flags
;
1382 spin_lock_irqsave(&cache
->lock
, flags
);
1383 cache
->quiescing
= true;
1384 spin_unlock_irqrestore(&cache
->lock
, flags
);
1386 wait_for_quiescing_ack(cache
);
1389 static void stop_quiescing(struct cache
*cache
)
1391 unsigned long flags
;
1393 spin_lock_irqsave(&cache
->lock
, flags
);
1394 cache
->quiescing
= false;
1395 spin_unlock_irqrestore(&cache
->lock
, flags
);
1397 atomic_set(&cache
->quiescing_ack
, 0);
1400 static void wait_for_migrations(struct cache
*cache
)
1402 wait_event(cache
->migration_wait
, !atomic_read(&cache
->nr_migrations
));
1405 static void stop_worker(struct cache
*cache
)
1407 cancel_delayed_work(&cache
->waker
);
1408 flush_workqueue(cache
->wq
);
1411 static void requeue_deferred_io(struct cache
*cache
)
1414 struct bio_list bios
;
1416 bio_list_init(&bios
);
1417 bio_list_merge(&bios
, &cache
->deferred_bios
);
1418 bio_list_init(&cache
->deferred_bios
);
1420 while ((bio
= bio_list_pop(&bios
)))
1421 bio_endio(bio
, DM_ENDIO_REQUEUE
);
1424 static int more_work(struct cache
*cache
)
1426 if (is_quiescing(cache
))
1427 return !list_empty(&cache
->quiesced_migrations
) ||
1428 !list_empty(&cache
->completed_migrations
) ||
1429 !list_empty(&cache
->need_commit_migrations
);
1431 return !bio_list_empty(&cache
->deferred_bios
) ||
1432 !bio_list_empty(&cache
->deferred_flush_bios
) ||
1433 !bio_list_empty(&cache
->deferred_writethrough_bios
) ||
1434 !list_empty(&cache
->quiesced_migrations
) ||
1435 !list_empty(&cache
->completed_migrations
) ||
1436 !list_empty(&cache
->need_commit_migrations
);
1439 static void do_worker(struct work_struct
*ws
)
1441 struct cache
*cache
= container_of(ws
, struct cache
, worker
);
1444 if (!is_quiescing(cache
)) {
1445 writeback_some_dirty_blocks(cache
);
1446 process_deferred_writethrough_bios(cache
);
1447 process_deferred_bios(cache
);
1450 process_migrations(cache
, &cache
->quiesced_migrations
, issue_copy
);
1451 process_migrations(cache
, &cache
->completed_migrations
, complete_migration
);
1453 if (commit_if_needed(cache
)) {
1454 process_deferred_flush_bios(cache
, false);
1457 * FIXME: rollback metadata or just go into a
1458 * failure mode and error everything
1461 process_deferred_flush_bios(cache
, true);
1462 process_migrations(cache
, &cache
->need_commit_migrations
,
1463 migration_success_post_commit
);
1466 ack_quiescing(cache
);
1468 } while (more_work(cache
));
1472 * We want to commit periodically so that not too much
1473 * unwritten metadata builds up.
1475 static void do_waker(struct work_struct
*ws
)
1477 struct cache
*cache
= container_of(to_delayed_work(ws
), struct cache
, waker
);
1478 policy_tick(cache
->policy
);
1480 queue_delayed_work(cache
->wq
, &cache
->waker
, COMMIT_PERIOD
);
1483 /*----------------------------------------------------------------*/
1485 static int is_congested(struct dm_dev
*dev
, int bdi_bits
)
1487 struct request_queue
*q
= bdev_get_queue(dev
->bdev
);
1488 return bdi_congested(&q
->backing_dev_info
, bdi_bits
);
1491 static int cache_is_congested(struct dm_target_callbacks
*cb
, int bdi_bits
)
1493 struct cache
*cache
= container_of(cb
, struct cache
, callbacks
);
1495 return is_congested(cache
->origin_dev
, bdi_bits
) ||
1496 is_congested(cache
->cache_dev
, bdi_bits
);
1499 /*----------------------------------------------------------------
1501 *--------------------------------------------------------------*/
1504 * This function gets called on the error paths of the constructor, so we
1505 * have to cope with a partially initialised struct.
1507 static void destroy(struct cache
*cache
)
1511 if (cache
->next_migration
)
1512 mempool_free(cache
->next_migration
, cache
->migration_pool
);
1514 if (cache
->migration_pool
)
1515 mempool_destroy(cache
->migration_pool
);
1517 if (cache
->all_io_ds
)
1518 dm_deferred_set_destroy(cache
->all_io_ds
);
1521 dm_bio_prison_destroy(cache
->prison
);
1524 destroy_workqueue(cache
->wq
);
1526 if (cache
->dirty_bitset
)
1527 free_bitset(cache
->dirty_bitset
);
1529 if (cache
->discard_bitset
)
1530 free_bitset(cache
->discard_bitset
);
1533 dm_kcopyd_client_destroy(cache
->copier
);
1536 dm_cache_metadata_close(cache
->cmd
);
1538 if (cache
->metadata_dev
)
1539 dm_put_device(cache
->ti
, cache
->metadata_dev
);
1541 if (cache
->origin_dev
)
1542 dm_put_device(cache
->ti
, cache
->origin_dev
);
1544 if (cache
->cache_dev
)
1545 dm_put_device(cache
->ti
, cache
->cache_dev
);
1548 dm_cache_policy_destroy(cache
->policy
);
1550 for (i
= 0; i
< cache
->nr_ctr_args
; i
++)
1551 kfree(cache
->ctr_args
[i
]);
1552 kfree(cache
->ctr_args
);
1557 static void cache_dtr(struct dm_target
*ti
)
1559 struct cache
*cache
= ti
->private;
1564 static sector_t
get_dev_size(struct dm_dev
*dev
)
1566 return i_size_read(dev
->bdev
->bd_inode
) >> SECTOR_SHIFT
;
1569 /*----------------------------------------------------------------*/
1572 * Construct a cache device mapping.
1574 * cache <metadata dev> <cache dev> <origin dev> <block size>
1575 * <#feature args> [<feature arg>]*
1576 * <policy> <#policy args> [<policy arg>]*
1578 * metadata dev : fast device holding the persistent metadata
1579 * cache dev : fast device holding cached data blocks
1580 * origin dev : slow device holding original data blocks
1581 * block size : cache unit size in sectors
1583 * #feature args : number of feature arguments passed
1584 * feature args : writethrough. (The default is writeback.)
1586 * policy : the replacement policy to use
1587 * #policy args : an even number of policy arguments corresponding
1588 * to key/value pairs passed to the policy
1589 * policy args : key/value pairs passed to the policy
1590 * E.g. 'sequential_threshold 1024'
1591 * See cache-policies.txt for details.
1593 * Optional feature arguments are:
1594 * writethrough : write through caching that prohibits cache block
1595 * content from being different from origin block content.
1596 * Without this argument, the default behaviour is to write
1597 * back cache block contents later for performance reasons,
1598 * so they may differ from the corresponding origin blocks.
1601 struct dm_target
*ti
;
1603 struct dm_dev
*metadata_dev
;
1605 struct dm_dev
*cache_dev
;
1606 sector_t cache_sectors
;
1608 struct dm_dev
*origin_dev
;
1609 sector_t origin_sectors
;
1611 uint32_t block_size
;
1613 const char *policy_name
;
1615 const char **policy_argv
;
1617 struct cache_features features
;
1620 static void destroy_cache_args(struct cache_args
*ca
)
1622 if (ca
->metadata_dev
)
1623 dm_put_device(ca
->ti
, ca
->metadata_dev
);
1626 dm_put_device(ca
->ti
, ca
->cache_dev
);
1629 dm_put_device(ca
->ti
, ca
->origin_dev
);
1634 static bool at_least_one_arg(struct dm_arg_set
*as
, char **error
)
1637 *error
= "Insufficient args";
1644 static int parse_metadata_dev(struct cache_args
*ca
, struct dm_arg_set
*as
,
1648 sector_t metadata_dev_size
;
1649 char b
[BDEVNAME_SIZE
];
1651 if (!at_least_one_arg(as
, error
))
1654 r
= dm_get_device(ca
->ti
, dm_shift_arg(as
), FMODE_READ
| FMODE_WRITE
,
1657 *error
= "Error opening metadata device";
1661 metadata_dev_size
= get_dev_size(ca
->metadata_dev
);
1662 if (metadata_dev_size
> DM_CACHE_METADATA_MAX_SECTORS_WARNING
)
1663 DMWARN("Metadata device %s is larger than %u sectors: excess space will not be used.",
1664 bdevname(ca
->metadata_dev
->bdev
, b
), THIN_METADATA_MAX_SECTORS
);
1669 static int parse_cache_dev(struct cache_args
*ca
, struct dm_arg_set
*as
,
1674 if (!at_least_one_arg(as
, error
))
1677 r
= dm_get_device(ca
->ti
, dm_shift_arg(as
), FMODE_READ
| FMODE_WRITE
,
1680 *error
= "Error opening cache device";
1683 ca
->cache_sectors
= get_dev_size(ca
->cache_dev
);
1688 static int parse_origin_dev(struct cache_args
*ca
, struct dm_arg_set
*as
,
1693 if (!at_least_one_arg(as
, error
))
1696 r
= dm_get_device(ca
->ti
, dm_shift_arg(as
), FMODE_READ
| FMODE_WRITE
,
1699 *error
= "Error opening origin device";
1703 ca
->origin_sectors
= get_dev_size(ca
->origin_dev
);
1704 if (ca
->ti
->len
> ca
->origin_sectors
) {
1705 *error
= "Device size larger than cached device";
1712 static int parse_block_size(struct cache_args
*ca
, struct dm_arg_set
*as
,
1715 unsigned long block_size
;
1717 if (!at_least_one_arg(as
, error
))
1720 if (kstrtoul(dm_shift_arg(as
), 10, &block_size
) || !block_size
||
1721 block_size
< DATA_DEV_BLOCK_SIZE_MIN_SECTORS
||
1722 block_size
> DATA_DEV_BLOCK_SIZE_MAX_SECTORS
||
1723 block_size
& (DATA_DEV_BLOCK_SIZE_MIN_SECTORS
- 1)) {
1724 *error
= "Invalid data block size";
1728 if (block_size
> ca
->cache_sectors
) {
1729 *error
= "Data block size is larger than the cache device";
1733 ca
->block_size
= block_size
;
1738 static void init_features(struct cache_features
*cf
)
1740 cf
->mode
= CM_WRITE
;
1741 cf
->write_through
= false;
1744 static int parse_features(struct cache_args
*ca
, struct dm_arg_set
*as
,
1747 static struct dm_arg _args
[] = {
1748 {0, 1, "Invalid number of cache feature arguments"},
1754 struct cache_features
*cf
= &ca
->features
;
1758 r
= dm_read_arg_group(_args
, as
, &argc
, error
);
1763 arg
= dm_shift_arg(as
);
1765 if (!strcasecmp(arg
, "writeback"))
1766 cf
->write_through
= false;
1768 else if (!strcasecmp(arg
, "writethrough"))
1769 cf
->write_through
= true;
1772 *error
= "Unrecognised cache feature requested";
1780 static int parse_policy(struct cache_args
*ca
, struct dm_arg_set
*as
,
1783 static struct dm_arg _args
[] = {
1784 {0, 1024, "Invalid number of policy arguments"},
1789 if (!at_least_one_arg(as
, error
))
1792 ca
->policy_name
= dm_shift_arg(as
);
1794 r
= dm_read_arg_group(_args
, as
, &ca
->policy_argc
, error
);
1798 ca
->policy_argv
= (const char **)as
->argv
;
1799 dm_consume_args(as
, ca
->policy_argc
);
1804 static int parse_cache_args(struct cache_args
*ca
, int argc
, char **argv
,
1808 struct dm_arg_set as
;
1813 r
= parse_metadata_dev(ca
, &as
, error
);
1817 r
= parse_cache_dev(ca
, &as
, error
);
1821 r
= parse_origin_dev(ca
, &as
, error
);
1825 r
= parse_block_size(ca
, &as
, error
);
1829 r
= parse_features(ca
, &as
, error
);
1833 r
= parse_policy(ca
, &as
, error
);
1840 /*----------------------------------------------------------------*/
1842 static struct kmem_cache
*migration_cache
;
1844 #define NOT_CORE_OPTION 1
1846 static int process_config_option(struct cache
*cache
, const char *key
, const char *value
)
1850 if (!strcasecmp(key
, "migration_threshold")) {
1851 if (kstrtoul(value
, 10, &tmp
))
1854 cache
->migration_threshold
= tmp
;
1858 return NOT_CORE_OPTION
;
1861 static int set_config_value(struct cache
*cache
, const char *key
, const char *value
)
1863 int r
= process_config_option(cache
, key
, value
);
1865 if (r
== NOT_CORE_OPTION
)
1866 r
= policy_set_config_value(cache
->policy
, key
, value
);
1869 DMWARN("bad config value for %s: %s", key
, value
);
1874 static int set_config_values(struct cache
*cache
, int argc
, const char **argv
)
1879 DMWARN("Odd number of policy arguments given but they should be <key> <value> pairs.");
1884 r
= set_config_value(cache
, argv
[0], argv
[1]);
1895 static int create_cache_policy(struct cache
*cache
, struct cache_args
*ca
,
1898 cache
->policy
= dm_cache_policy_create(ca
->policy_name
,
1900 cache
->origin_sectors
,
1901 cache
->sectors_per_block
);
1902 if (!cache
->policy
) {
1903 *error
= "Error creating cache's policy";
1910 #define DEFAULT_MIGRATION_THRESHOLD 2048
1912 static int cache_create(struct cache_args
*ca
, struct cache
**result
)
1915 char **error
= &ca
->ti
->error
;
1916 struct cache
*cache
;
1917 struct dm_target
*ti
= ca
->ti
;
1918 dm_block_t origin_blocks
;
1919 struct dm_cache_metadata
*cmd
;
1920 bool may_format
= ca
->features
.mode
== CM_WRITE
;
1922 cache
= kzalloc(sizeof(*cache
), GFP_KERNEL
);
1927 ti
->private = cache
;
1928 ti
->num_flush_bios
= 2;
1929 ti
->flush_supported
= true;
1931 ti
->num_discard_bios
= 1;
1932 ti
->discards_supported
= true;
1933 ti
->discard_zeroes_data_unsupported
= true;
1934 /* Discard bios must be split on a block boundary */
1935 ti
->split_discard_bios
= true;
1937 cache
->features
= ca
->features
;
1938 ti
->per_bio_data_size
= get_per_bio_data_size(cache
);
1940 cache
->callbacks
.congested_fn
= cache_is_congested
;
1941 dm_table_add_target_callbacks(ti
->table
, &cache
->callbacks
);
1943 cache
->metadata_dev
= ca
->metadata_dev
;
1944 cache
->origin_dev
= ca
->origin_dev
;
1945 cache
->cache_dev
= ca
->cache_dev
;
1947 ca
->metadata_dev
= ca
->origin_dev
= ca
->cache_dev
= NULL
;
1949 /* FIXME: factor out this whole section */
1950 origin_blocks
= cache
->origin_sectors
= ca
->origin_sectors
;
1951 origin_blocks
= block_div(origin_blocks
, ca
->block_size
);
1952 cache
->origin_blocks
= to_oblock(origin_blocks
);
1954 cache
->sectors_per_block
= ca
->block_size
;
1955 if (dm_set_target_max_io_len(ti
, cache
->sectors_per_block
)) {
1960 if (ca
->block_size
& (ca
->block_size
- 1)) {
1961 dm_block_t cache_size
= ca
->cache_sectors
;
1963 cache
->sectors_per_block_shift
= -1;
1964 cache_size
= block_div(cache_size
, ca
->block_size
);
1965 cache
->cache_size
= to_cblock(cache_size
);
1967 cache
->sectors_per_block_shift
= __ffs(ca
->block_size
);
1968 cache
->cache_size
= to_cblock(ca
->cache_sectors
>> cache
->sectors_per_block_shift
);
1971 r
= create_cache_policy(cache
, ca
, error
);
1975 cache
->policy_nr_args
= ca
->policy_argc
;
1976 cache
->migration_threshold
= DEFAULT_MIGRATION_THRESHOLD
;
1978 r
= set_config_values(cache
, ca
->policy_argc
, ca
->policy_argv
);
1980 *error
= "Error setting cache policy's config values";
1984 cmd
= dm_cache_metadata_open(cache
->metadata_dev
->bdev
,
1985 ca
->block_size
, may_format
,
1986 dm_cache_policy_get_hint_size(cache
->policy
));
1988 *error
= "Error creating metadata object";
1994 spin_lock_init(&cache
->lock
);
1995 bio_list_init(&cache
->deferred_bios
);
1996 bio_list_init(&cache
->deferred_flush_bios
);
1997 bio_list_init(&cache
->deferred_writethrough_bios
);
1998 INIT_LIST_HEAD(&cache
->quiesced_migrations
);
1999 INIT_LIST_HEAD(&cache
->completed_migrations
);
2000 INIT_LIST_HEAD(&cache
->need_commit_migrations
);
2001 atomic_set(&cache
->nr_migrations
, 0);
2002 init_waitqueue_head(&cache
->migration_wait
);
2004 init_waitqueue_head(&cache
->quiescing_wait
);
2005 atomic_set(&cache
->quiescing_ack
, 0);
2008 atomic_set(&cache
->nr_dirty
, 0);
2009 cache
->dirty_bitset
= alloc_bitset(from_cblock(cache
->cache_size
));
2010 if (!cache
->dirty_bitset
) {
2011 *error
= "could not allocate dirty bitset";
2014 clear_bitset(cache
->dirty_bitset
, from_cblock(cache
->cache_size
));
2016 cache
->discard_block_size
= cache
->sectors_per_block
;
2017 cache
->discard_nr_blocks
= oblock_to_dblock(cache
, cache
->origin_blocks
);
2018 cache
->discard_bitset
= alloc_bitset(from_dblock(cache
->discard_nr_blocks
));
2019 if (!cache
->discard_bitset
) {
2020 *error
= "could not allocate discard bitset";
2023 clear_bitset(cache
->discard_bitset
, from_dblock(cache
->discard_nr_blocks
));
2025 cache
->copier
= dm_kcopyd_client_create(&dm_kcopyd_throttle
);
2026 if (IS_ERR(cache
->copier
)) {
2027 *error
= "could not create kcopyd client";
2028 r
= PTR_ERR(cache
->copier
);
2032 cache
->wq
= alloc_ordered_workqueue("dm-" DM_MSG_PREFIX
, WQ_MEM_RECLAIM
);
2034 *error
= "could not create workqueue for metadata object";
2037 INIT_WORK(&cache
->worker
, do_worker
);
2038 INIT_DELAYED_WORK(&cache
->waker
, do_waker
);
2039 cache
->last_commit_jiffies
= jiffies
;
2041 cache
->prison
= dm_bio_prison_create(PRISON_CELLS
);
2042 if (!cache
->prison
) {
2043 *error
= "could not create bio prison";
2047 cache
->all_io_ds
= dm_deferred_set_create();
2048 if (!cache
->all_io_ds
) {
2049 *error
= "could not create all_io deferred set";
2053 cache
->migration_pool
= mempool_create_slab_pool(MIGRATION_POOL_SIZE
,
2055 if (!cache
->migration_pool
) {
2056 *error
= "Error creating cache's migration mempool";
2060 cache
->next_migration
= NULL
;
2062 cache
->need_tick_bio
= true;
2063 cache
->sized
= false;
2064 cache
->quiescing
= false;
2065 cache
->commit_requested
= false;
2066 cache
->loaded_mappings
= false;
2067 cache
->loaded_discards
= false;
2071 atomic_set(&cache
->stats
.demotion
, 0);
2072 atomic_set(&cache
->stats
.promotion
, 0);
2073 atomic_set(&cache
->stats
.copies_avoided
, 0);
2074 atomic_set(&cache
->stats
.cache_cell_clash
, 0);
2075 atomic_set(&cache
->stats
.commit_count
, 0);
2076 atomic_set(&cache
->stats
.discard_count
, 0);
2086 static int copy_ctr_args(struct cache
*cache
, int argc
, const char **argv
)
2091 copy
= kcalloc(argc
, sizeof(*copy
), GFP_KERNEL
);
2094 for (i
= 0; i
< argc
; i
++) {
2095 copy
[i
] = kstrdup(argv
[i
], GFP_KERNEL
);
2104 cache
->nr_ctr_args
= argc
;
2105 cache
->ctr_args
= copy
;
2110 static int cache_ctr(struct dm_target
*ti
, unsigned argc
, char **argv
)
2113 struct cache_args
*ca
;
2114 struct cache
*cache
= NULL
;
2116 ca
= kzalloc(sizeof(*ca
), GFP_KERNEL
);
2118 ti
->error
= "Error allocating memory for cache";
2123 r
= parse_cache_args(ca
, argc
, argv
, &ti
->error
);
2127 r
= cache_create(ca
, &cache
);
2131 r
= copy_ctr_args(cache
, argc
- 3, (const char **)argv
+ 3);
2137 ti
->private = cache
;
2140 destroy_cache_args(ca
);
2144 static int cache_map(struct dm_target
*ti
, struct bio
*bio
)
2146 struct cache
*cache
= ti
->private;
2149 dm_oblock_t block
= get_bio_block(cache
, bio
);
2150 size_t pb_data_size
= get_per_bio_data_size(cache
);
2151 bool can_migrate
= false;
2152 bool discarded_block
;
2153 struct dm_bio_prison_cell
*cell
;
2154 struct policy_result lookup_result
;
2155 struct per_bio_data
*pb
= init_per_bio_data(bio
, pb_data_size
);
2157 if (unlikely(from_oblock(block
) >= from_oblock(cache
->origin_blocks
))) {
2159 * This can only occur if the io goes to a partial block at
2160 * the end of the origin device. We don't cache these.
2161 * Just remap to the origin and carry on.
2163 remap_to_origin(cache
, bio
);
2164 return DM_MAPIO_REMAPPED
;
2167 if (bio
->bi_rw
& (REQ_FLUSH
| REQ_FUA
| REQ_DISCARD
)) {
2168 defer_bio(cache
, bio
);
2169 return DM_MAPIO_SUBMITTED
;
2173 * Check to see if that block is currently migrating.
2175 cell
= alloc_prison_cell(cache
);
2177 defer_bio(cache
, bio
);
2178 return DM_MAPIO_SUBMITTED
;
2181 r
= bio_detain(cache
, block
, bio
, cell
,
2182 (cell_free_fn
) free_prison_cell
,
2186 defer_bio(cache
, bio
);
2188 return DM_MAPIO_SUBMITTED
;
2191 discarded_block
= is_discarded_oblock(cache
, block
);
2193 r
= policy_map(cache
->policy
, block
, false, can_migrate
, discarded_block
,
2194 bio
, &lookup_result
);
2195 if (r
== -EWOULDBLOCK
) {
2196 cell_defer(cache
, cell
, true);
2197 return DM_MAPIO_SUBMITTED
;
2200 DMERR_LIMIT("Unexpected return from cache replacement policy: %d", r
);
2202 return DM_MAPIO_SUBMITTED
;
2205 switch (lookup_result
.op
) {
2207 inc_hit_counter(cache
, bio
);
2208 pb
->all_io_entry
= dm_deferred_entry_inc(cache
->all_io_ds
);
2210 if (is_writethrough_io(cache
, bio
, lookup_result
.cblock
))
2211 remap_to_origin_then_cache(cache
, bio
, block
, lookup_result
.cblock
);
2213 remap_to_cache_dirty(cache
, bio
, block
, lookup_result
.cblock
);
2215 cell_defer(cache
, cell
, false);
2219 inc_miss_counter(cache
, bio
);
2220 pb
->all_io_entry
= dm_deferred_entry_inc(cache
->all_io_ds
);
2222 if (pb
->req_nr
!= 0) {
2224 * This is a duplicate writethrough io that is no
2225 * longer needed because the block has been demoted.
2228 cell_defer(cache
, cell
, false);
2229 return DM_MAPIO_SUBMITTED
;
2231 remap_to_origin_clear_discard(cache
, bio
, block
);
2232 cell_defer(cache
, cell
, false);
2237 DMERR_LIMIT("%s: erroring bio: unknown policy op: %u", __func__
,
2238 (unsigned) lookup_result
.op
);
2240 return DM_MAPIO_SUBMITTED
;
2243 return DM_MAPIO_REMAPPED
;
2246 static int cache_end_io(struct dm_target
*ti
, struct bio
*bio
, int error
)
2248 struct cache
*cache
= ti
->private;
2249 unsigned long flags
;
2250 size_t pb_data_size
= get_per_bio_data_size(cache
);
2251 struct per_bio_data
*pb
= get_per_bio_data(bio
, pb_data_size
);
2254 policy_tick(cache
->policy
);
2256 spin_lock_irqsave(&cache
->lock
, flags
);
2257 cache
->need_tick_bio
= true;
2258 spin_unlock_irqrestore(&cache
->lock
, flags
);
2261 check_for_quiesced_migrations(cache
, pb
);
2266 static int write_dirty_bitset(struct cache
*cache
)
2270 for (i
= 0; i
< from_cblock(cache
->cache_size
); i
++) {
2271 r
= dm_cache_set_dirty(cache
->cmd
, to_cblock(i
),
2272 is_dirty(cache
, to_cblock(i
)));
2280 static int write_discard_bitset(struct cache
*cache
)
2284 r
= dm_cache_discard_bitset_resize(cache
->cmd
, cache
->discard_block_size
,
2285 cache
->discard_nr_blocks
);
2287 DMERR("could not resize on-disk discard bitset");
2291 for (i
= 0; i
< from_dblock(cache
->discard_nr_blocks
); i
++) {
2292 r
= dm_cache_set_discard(cache
->cmd
, to_dblock(i
),
2293 is_discarded(cache
, to_dblock(i
)));
2301 static int save_hint(void *context
, dm_cblock_t cblock
, dm_oblock_t oblock
,
2304 struct cache
*cache
= context
;
2305 return dm_cache_save_hint(cache
->cmd
, cblock
, hint
);
2308 static int write_hints(struct cache
*cache
)
2312 r
= dm_cache_begin_hints(cache
->cmd
, cache
->policy
);
2314 DMERR("dm_cache_begin_hints failed");
2318 r
= policy_walk_mappings(cache
->policy
, save_hint
, cache
);
2320 DMERR("policy_walk_mappings failed");
2326 * returns true on success
2328 static bool sync_metadata(struct cache
*cache
)
2332 r1
= write_dirty_bitset(cache
);
2334 DMERR("could not write dirty bitset");
2336 r2
= write_discard_bitset(cache
);
2338 DMERR("could not write discard bitset");
2342 r3
= write_hints(cache
);
2344 DMERR("could not write hints");
2347 * If writing the above metadata failed, we still commit, but don't
2348 * set the clean shutdown flag. This will effectively force every
2349 * dirty bit to be set on reload.
2351 r4
= dm_cache_commit(cache
->cmd
, !r1
&& !r2
&& !r3
);
2353 DMERR("could not write cache metadata. Data loss may occur.");
2355 return !r1
&& !r2
&& !r3
&& !r4
;
2358 static void cache_postsuspend(struct dm_target
*ti
)
2360 struct cache
*cache
= ti
->private;
2362 start_quiescing(cache
);
2363 wait_for_migrations(cache
);
2365 requeue_deferred_io(cache
);
2366 stop_quiescing(cache
);
2368 (void) sync_metadata(cache
);
2371 static int load_mapping(void *context
, dm_oblock_t oblock
, dm_cblock_t cblock
,
2372 bool dirty
, uint32_t hint
, bool hint_valid
)
2375 struct cache
*cache
= context
;
2377 r
= policy_load_mapping(cache
->policy
, oblock
, cblock
, hint
, hint_valid
);
2382 set_dirty(cache
, oblock
, cblock
);
2384 clear_dirty(cache
, oblock
, cblock
);
2389 static int load_discard(void *context
, sector_t discard_block_size
,
2390 dm_dblock_t dblock
, bool discard
)
2392 struct cache
*cache
= context
;
2394 /* FIXME: handle mis-matched block size */
2397 set_discard(cache
, dblock
);
2399 clear_discard(cache
, dblock
);
2404 static int cache_preresume(struct dm_target
*ti
)
2407 struct cache
*cache
= ti
->private;
2408 sector_t actual_cache_size
= get_dev_size(cache
->cache_dev
);
2409 (void) sector_div(actual_cache_size
, cache
->sectors_per_block
);
2412 * Check to see if the cache has resized.
2414 if (from_cblock(cache
->cache_size
) != actual_cache_size
|| !cache
->sized
) {
2415 cache
->cache_size
= to_cblock(actual_cache_size
);
2417 r
= dm_cache_resize(cache
->cmd
, cache
->cache_size
);
2419 DMERR("could not resize cache metadata");
2423 cache
->sized
= true;
2426 if (!cache
->loaded_mappings
) {
2427 r
= dm_cache_load_mappings(cache
->cmd
, cache
->policy
,
2428 load_mapping
, cache
);
2430 DMERR("could not load cache mappings");
2434 cache
->loaded_mappings
= true;
2437 if (!cache
->loaded_discards
) {
2438 r
= dm_cache_load_discards(cache
->cmd
, load_discard
, cache
);
2440 DMERR("could not load origin discards");
2444 cache
->loaded_discards
= true;
2450 static void cache_resume(struct dm_target
*ti
)
2452 struct cache
*cache
= ti
->private;
2454 cache
->need_tick_bio
= true;
2455 do_waker(&cache
->waker
.work
);
2461 * <#used metadata blocks>/<#total metadata blocks>
2462 * <#read hits> <#read misses> <#write hits> <#write misses>
2463 * <#demotions> <#promotions> <#blocks in cache> <#dirty>
2464 * <#features> <features>*
2465 * <#core args> <core args>
2466 * <#policy args> <policy args>*
2468 static void cache_status(struct dm_target
*ti
, status_type_t type
,
2469 unsigned status_flags
, char *result
, unsigned maxlen
)
2474 dm_block_t nr_free_blocks_metadata
= 0;
2475 dm_block_t nr_blocks_metadata
= 0;
2476 char buf
[BDEVNAME_SIZE
];
2477 struct cache
*cache
= ti
->private;
2478 dm_cblock_t residency
;
2481 case STATUSTYPE_INFO
:
2482 /* Commit to ensure statistics aren't out-of-date */
2483 if (!(status_flags
& DM_STATUS_NOFLUSH_FLAG
) && !dm_suspended(ti
)) {
2484 r
= dm_cache_commit(cache
->cmd
, false);
2486 DMERR("could not commit metadata for accurate status");
2489 r
= dm_cache_get_free_metadata_block_count(cache
->cmd
,
2490 &nr_free_blocks_metadata
);
2492 DMERR("could not get metadata free block count");
2496 r
= dm_cache_get_metadata_dev_size(cache
->cmd
, &nr_blocks_metadata
);
2498 DMERR("could not get metadata device size");
2502 residency
= policy_residency(cache
->policy
);
2504 DMEMIT("%llu/%llu %u %u %u %u %u %u %llu %lu ",
2505 (unsigned long long)(nr_blocks_metadata
- nr_free_blocks_metadata
),
2506 (unsigned long long)nr_blocks_metadata
,
2507 (unsigned) atomic_read(&cache
->stats
.read_hit
),
2508 (unsigned) atomic_read(&cache
->stats
.read_miss
),
2509 (unsigned) atomic_read(&cache
->stats
.write_hit
),
2510 (unsigned) atomic_read(&cache
->stats
.write_miss
),
2511 (unsigned) atomic_read(&cache
->stats
.demotion
),
2512 (unsigned) atomic_read(&cache
->stats
.promotion
),
2513 (unsigned long long) from_cblock(residency
),
2514 (unsigned long) atomic_read(&cache
->nr_dirty
));
2516 if (cache
->features
.write_through
)
2517 DMEMIT("1 writethrough ");
2521 DMEMIT("2 migration_threshold %llu ", (unsigned long long) cache
->migration_threshold
);
2523 r
= policy_emit_config_values(cache
->policy
, result
+ sz
, maxlen
- sz
);
2525 DMERR("policy_emit_config_values returned %d", r
);
2530 case STATUSTYPE_TABLE
:
2531 format_dev_t(buf
, cache
->metadata_dev
->bdev
->bd_dev
);
2533 format_dev_t(buf
, cache
->cache_dev
->bdev
->bd_dev
);
2535 format_dev_t(buf
, cache
->origin_dev
->bdev
->bd_dev
);
2538 for (i
= 0; i
< cache
->nr_ctr_args
- 1; i
++)
2539 DMEMIT(" %s", cache
->ctr_args
[i
]);
2540 if (cache
->nr_ctr_args
)
2541 DMEMIT(" %s", cache
->ctr_args
[cache
->nr_ctr_args
- 1]);
2551 * Supports <key> <value>.
2553 * The key migration_threshold is supported by the cache target core.
2555 static int cache_message(struct dm_target
*ti
, unsigned argc
, char **argv
)
2557 struct cache
*cache
= ti
->private;
2562 return set_config_value(cache
, argv
[0], argv
[1]);
2565 static int cache_iterate_devices(struct dm_target
*ti
,
2566 iterate_devices_callout_fn fn
, void *data
)
2569 struct cache
*cache
= ti
->private;
2571 r
= fn(ti
, cache
->cache_dev
, 0, get_dev_size(cache
->cache_dev
), data
);
2573 r
= fn(ti
, cache
->origin_dev
, 0, ti
->len
, data
);
2579 * We assume I/O is going to the origin (which is the volume
2580 * more likely to have restrictions e.g. by being striped).
2581 * (Looking up the exact location of the data would be expensive
2582 * and could always be out of date by the time the bio is submitted.)
2584 static int cache_bvec_merge(struct dm_target
*ti
,
2585 struct bvec_merge_data
*bvm
,
2586 struct bio_vec
*biovec
, int max_size
)
2588 struct cache
*cache
= ti
->private;
2589 struct request_queue
*q
= bdev_get_queue(cache
->origin_dev
->bdev
);
2591 if (!q
->merge_bvec_fn
)
2594 bvm
->bi_bdev
= cache
->origin_dev
->bdev
;
2595 return min(max_size
, q
->merge_bvec_fn(q
, bvm
, biovec
));
2598 static void set_discard_limits(struct cache
*cache
, struct queue_limits
*limits
)
2601 * FIXME: these limits may be incompatible with the cache device
2603 limits
->max_discard_sectors
= cache
->discard_block_size
;
2604 limits
->discard_granularity
= cache
->discard_block_size
<< SECTOR_SHIFT
;
2607 static void cache_io_hints(struct dm_target
*ti
, struct queue_limits
*limits
)
2609 struct cache
*cache
= ti
->private;
2610 uint64_t io_opt_sectors
= limits
->io_opt
>> SECTOR_SHIFT
;
2613 * If the system-determined stacked limits are compatible with the
2614 * cache's blocksize (io_opt is a factor) do not override them.
2616 if (io_opt_sectors
< cache
->sectors_per_block
||
2617 do_div(io_opt_sectors
, cache
->sectors_per_block
)) {
2618 blk_limits_io_min(limits
, 0);
2619 blk_limits_io_opt(limits
, cache
->sectors_per_block
<< SECTOR_SHIFT
);
2621 set_discard_limits(cache
, limits
);
2624 /*----------------------------------------------------------------*/
2626 static struct target_type cache_target
= {
2628 .version
= {1, 1, 1},
2629 .module
= THIS_MODULE
,
2633 .end_io
= cache_end_io
,
2634 .postsuspend
= cache_postsuspend
,
2635 .preresume
= cache_preresume
,
2636 .resume
= cache_resume
,
2637 .status
= cache_status
,
2638 .message
= cache_message
,
2639 .iterate_devices
= cache_iterate_devices
,
2640 .merge
= cache_bvec_merge
,
2641 .io_hints
= cache_io_hints
,
2644 static int __init
dm_cache_init(void)
2648 r
= dm_register_target(&cache_target
);
2650 DMERR("cache target registration failed: %d", r
);
2654 migration_cache
= KMEM_CACHE(dm_cache_migration
, 0);
2655 if (!migration_cache
) {
2656 dm_unregister_target(&cache_target
);
2663 static void __exit
dm_cache_exit(void)
2665 dm_unregister_target(&cache_target
);
2666 kmem_cache_destroy(migration_cache
);
2669 module_init(dm_cache_init
);
2670 module_exit(dm_cache_exit
);
2672 MODULE_DESCRIPTION(DM_NAME
" cache target");
2673 MODULE_AUTHOR("Joe Thornber <ejt@redhat.com>");
2674 MODULE_LICENSE("GPL");