2013-03-02 02:45:51 +04:00
/*
* Copyright ( C ) 2012 Red Hat . All rights reserved .
*
* This file is released under the GPL .
*/
# ifndef DM_CACHE_POLICY_H
# define DM_CACHE_POLICY_H
# include "dm-cache-block-types.h"
# include <linux/device-mapper.h>
/*----------------------------------------------------------------*/
/*
* The cache policy makes the important decisions about which blocks get to
* live on the faster cache device .
*/
enum policy_operation {
2016-12-15 12:57:31 +03:00
POLICY_PROMOTE ,
POLICY_DEMOTE ,
POLICY_WRITEBACK
2015-05-20 12:30:32 +03:00
} ;
2013-03-02 02:45:51 +04:00
/*
* This is the instruction passed back to the core target .
*/
2016-12-15 12:57:31 +03:00
struct policy_work {
2013-03-02 02:45:51 +04:00
enum policy_operation op ;
2016-12-15 12:57:31 +03:00
dm_oblock_t oblock ;
dm_cblock_t cblock ;
2013-03-02 02:45:51 +04:00
} ;
/*
2016-12-15 12:57:31 +03:00
* The cache policy object . It is envisaged that this structure will be
* embedded in a bigger , policy specific structure ( ie . use container_of ( ) ) .
2013-03-02 02:45:51 +04:00
*/
struct dm_cache_policy {
/*
* Destroys this object .
*/
void ( * destroy ) ( struct dm_cache_policy * p ) ;
/*
2016-12-15 12:57:31 +03:00
* Find the location of a block .
2013-03-02 02:45:51 +04:00
*
2016-12-15 12:57:31 +03:00
* Must not block .
2013-03-02 02:45:51 +04:00
*
2016-12-15 12:57:31 +03:00
* Returns 0 if in cache ( cblock will be set ) , - ENOENT if not , < 0 for
* other errors ( - EWOULDBLOCK would be typical ) . data_dir should be
* READ or WRITE . fast_copy should be set if migrating this block would
* be ' cheap ' somehow ( eg , discarded data ) . background_queued will be set
* if a migration has just been queued .
2013-03-02 02:45:51 +04:00
*/
2016-12-15 12:57:31 +03:00
int ( * lookup ) ( struct dm_cache_policy * p , dm_oblock_t oblock , dm_cblock_t * cblock ,
int data_dir , bool fast_copy , bool * background_queued ) ;
2013-03-02 02:45:51 +04:00
/*
2016-12-15 12:57:31 +03:00
* Sometimes the core target can optimise a migration , eg , the
* block may be discarded , or the bio may cover an entire block .
* In order to optimise it needs the migration immediately though
* so it knows to do something different with the bio .
2013-03-02 02:45:51 +04:00
*
2016-12-15 12:57:31 +03:00
* This method is optional ( policy - internal will fallback to using
* lookup ) .
2013-03-02 02:45:51 +04:00
*/
2016-12-15 12:57:31 +03:00
int ( * lookup_with_work ) ( struct dm_cache_policy * p ,
dm_oblock_t oblock , dm_cblock_t * cblock ,
int data_dir , bool fast_copy ,
struct policy_work * * work ) ;
2013-03-02 02:45:51 +04:00
/*
2016-12-15 12:57:31 +03:00
* Retrieves background work . Returns - ENODATA when there ' s no
* background work .
2013-03-02 02:45:51 +04:00
*/
2016-12-15 12:57:31 +03:00
int ( * get_background_work ) ( struct dm_cache_policy * p , bool idle ,
struct policy_work * * result ) ;
2013-03-02 02:45:51 +04:00
2016-09-15 16:23:46 +03:00
/*
2016-12-15 12:57:31 +03:00
* You must pass in the same work pointer that you were given , not
* a copy .
2016-09-15 16:23:46 +03:00
*/
2016-12-15 12:57:31 +03:00
void ( * complete_background_work ) ( struct dm_cache_policy * p ,
struct policy_work * work ,
bool success ) ;
void ( * set_dirty ) ( struct dm_cache_policy * p , dm_cblock_t cblock ) ;
void ( * clear_dirty ) ( struct dm_cache_policy * p , dm_cblock_t cblock ) ;
2013-03-02 02:45:51 +04:00
/*
2016-12-15 12:57:31 +03:00
* Called when a cache target is first created . Used to load a
* mapping from the metadata device into the policy .
2013-03-02 02:45:51 +04:00
*/
2016-12-15 12:57:31 +03:00
int ( * load_mapping ) ( struct dm_cache_policy * p , dm_oblock_t oblock ,
dm_cblock_t cblock , bool dirty ,
uint32_t hint , bool hint_valid ) ;
2013-03-02 02:45:51 +04:00
2013-11-08 20:36:17 +04:00
/*
2016-12-15 12:57:31 +03:00
* Drops the mapping , irrespective of whether it ' s clean or dirty .
* Returns - ENODATA if cblock is not mapped .
2013-11-08 20:36:17 +04:00
*/
2016-12-15 12:57:31 +03:00
int ( * invalidate_mapping ) ( struct dm_cache_policy * p , dm_cblock_t cblock ) ;
2013-03-02 02:45:51 +04:00
2013-11-08 20:36:17 +04:00
/*
2016-12-15 12:57:31 +03:00
* Gets the hint for a given cblock . Called in a single threaded
* context . So no locking required .
2013-11-08 20:36:17 +04:00
*/
2016-12-15 12:57:31 +03:00
uint32_t ( * get_hint ) ( struct dm_cache_policy * p , dm_cblock_t cblock ) ;
2013-03-02 02:45:51 +04:00
/*
* How full is the cache ?
*/
dm_cblock_t ( * residency ) ( struct dm_cache_policy * p ) ;
/*
* Because of where we sit in the block layer , we can be asked to
* map a lot of little bios that are all in the same block ( no
* queue merging has occurred ) . To stop the policy being fooled by
2015-05-29 12:20:56 +03:00
* these , the core target sends regular tick ( ) calls to the policy .
2013-03-02 02:45:51 +04:00
* The policy should only count an entry as hit once per tick .
2016-12-15 12:57:31 +03:00
*
* This method is optional .
2013-03-02 02:45:51 +04:00
*/
2015-05-29 12:20:56 +03:00
void ( * tick ) ( struct dm_cache_policy * p , bool can_block ) ;
2013-03-02 02:45:51 +04:00
/*
* Configuration .
*/
2015-04-22 23:42:35 +03:00
int ( * emit_config_values ) ( struct dm_cache_policy * p , char * result ,
unsigned maxlen , ssize_t * sz_ptr ) ;
2013-03-02 02:45:51 +04:00
int ( * set_config_value ) ( struct dm_cache_policy * p ,
const char * key , const char * value ) ;
2016-12-15 12:57:31 +03:00
void ( * allow_migrations ) ( struct dm_cache_policy * p , bool allow ) ;
2013-03-02 02:45:51 +04:00
/*
* Book keeping ptr for the policy register , not for general use .
*/
void * private ;
} ;
/*----------------------------------------------------------------*/
/*
* We maintain a little register of the different policy types .
*/
# define CACHE_POLICY_NAME_SIZE 16
2013-03-20 21:21:27 +04:00
# define CACHE_POLICY_VERSION_SIZE 3
2013-03-02 02:45:51 +04:00
struct dm_cache_policy_type {
/* For use by the register code only. */
struct list_head list ;
/*
* Policy writers should fill in these fields . The name field is
* what gets passed on the target line to select your policy .
*/
char name [ CACHE_POLICY_NAME_SIZE ] ;
2013-03-20 21:21:27 +04:00
unsigned version [ CACHE_POLICY_VERSION_SIZE ] ;
2013-03-02 02:45:51 +04:00
2014-01-16 06:06:55 +04:00
/*
* For use by an alias dm_cache_policy_type to point to the
* real dm_cache_policy_type .
*/
struct dm_cache_policy_type * real ;
2013-03-02 02:45:51 +04:00
/*
* Policies may store a hint for each each cache block .
* Currently the size of this hint must be 0 or 4 bytes but we
* expect to relax this in future .
*/
size_t hint_size ;
struct module * owner ;
struct dm_cache_policy * ( * create ) ( dm_cblock_t cache_size ,
sector_t origin_size ,
sector_t block_size ) ;
} ;
int dm_cache_policy_register ( struct dm_cache_policy_type * type ) ;
void dm_cache_policy_unregister ( struct dm_cache_policy_type * type ) ;
/*----------------------------------------------------------------*/
# endif /* DM_CACHE_POLICY_H */