blob: 56f0a23f698c075b3ac0d82919aa33aba74d134a [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#ifndef DM_CACHE_POLICY_INTERNAL_H
8#define DM_CACHE_POLICY_INTERNAL_H
9
Joe Thornber451b9e02015-05-15 15:22:02 +010010#include <linux/vmalloc.h>
Joe Thornberc6b4fcb2013-03-01 22:45:51 +000011#include "dm-cache-policy.h"
12
13/*----------------------------------------------------------------*/
14
Joe Thornberb29d4982016-12-15 04:57:31 -050015static inline int policy_lookup(struct dm_cache_policy *p, dm_oblock_t oblock, dm_cblock_t *cblock,
16 int data_dir, bool fast_copy, bool *background_queued)
Joe Thornberc6b4fcb2013-03-01 22:45:51 +000017{
Joe Thornberb29d4982016-12-15 04:57:31 -050018 return p->lookup(p, oblock, cblock, data_dir, fast_copy, background_queued);
Joe Thornberc6b4fcb2013-03-01 22:45:51 +000019}
20
Joe Thornberb29d4982016-12-15 04:57:31 -050021static inline int policy_lookup_with_work(struct dm_cache_policy *p,
22 dm_oblock_t oblock, dm_cblock_t *cblock,
23 int data_dir, bool fast_copy,
24 struct policy_work **work)
Joe Thornberc6b4fcb2013-03-01 22:45:51 +000025{
Joe Thornberb29d4982016-12-15 04:57:31 -050026 if (!p->lookup_with_work) {
27 *work = NULL;
28 return p->lookup(p, oblock, cblock, data_dir, fast_copy, NULL);
29 }
30
31 return p->lookup_with_work(p, oblock, cblock, data_dir, fast_copy, work);
Joe Thornberc6b4fcb2013-03-01 22:45:51 +000032}
33
Joe Thornberb29d4982016-12-15 04:57:31 -050034static inline int policy_get_background_work(struct dm_cache_policy *p,
35 bool idle, struct policy_work **result)
Joe Thornberc6b4fcb2013-03-01 22:45:51 +000036{
Joe Thornberb29d4982016-12-15 04:57:31 -050037 return p->get_background_work(p, idle, result);
Joe Thornberc6b4fcb2013-03-01 22:45:51 +000038}
39
Joe Thornberb29d4982016-12-15 04:57:31 -050040static inline void policy_complete_background_work(struct dm_cache_policy *p,
41 struct policy_work *work,
42 bool success)
Joe Thornberc6b4fcb2013-03-01 22:45:51 +000043{
Joe Thornberb29d4982016-12-15 04:57:31 -050044 return p->complete_background_work(p, work, success);
45}
46
47static inline void policy_set_dirty(struct dm_cache_policy *p, dm_cblock_t cblock)
48{
49 p->set_dirty(p, cblock);
50}
51
52static inline void policy_clear_dirty(struct dm_cache_policy *p, dm_cblock_t cblock)
53{
54 p->clear_dirty(p, cblock);
Joe Thornberc6b4fcb2013-03-01 22:45:51 +000055}
56
57static inline int policy_load_mapping(struct dm_cache_policy *p,
58 dm_oblock_t oblock, dm_cblock_t cblock,
Joe Thornberb29d4982016-12-15 04:57:31 -050059 bool dirty, uint32_t hint, bool hint_valid)
Joe Thornberc6b4fcb2013-03-01 22:45:51 +000060{
Joe Thornberb29d4982016-12-15 04:57:31 -050061 return p->load_mapping(p, oblock, cblock, dirty, hint, hint_valid);
62}
63
64static inline int policy_invalidate_mapping(struct dm_cache_policy *p,
65 dm_cblock_t cblock)
66{
67 return p->invalidate_mapping(p, cblock);
Joe Thornberc6b4fcb2013-03-01 22:45:51 +000068}
69
Joe Thornber4e781b42016-09-15 09:23:46 -040070static inline uint32_t policy_get_hint(struct dm_cache_policy *p,
71 dm_cblock_t cblock)
Joe Thornberc6b4fcb2013-03-01 22:45:51 +000072{
Joe Thornber4e781b42016-09-15 09:23:46 -040073 return p->get_hint ? p->get_hint(p, cblock) : 0;
Joe Thornberc6b4fcb2013-03-01 22:45:51 +000074}
75
Joe Thornberc6b4fcb2013-03-01 22:45:51 +000076static inline dm_cblock_t policy_residency(struct dm_cache_policy *p)
77{
78 return p->residency(p);
79}
80
Joe Thornberfba10102015-05-29 10:20:56 +010081static inline void policy_tick(struct dm_cache_policy *p, bool can_block)
Joe Thornberc6b4fcb2013-03-01 22:45:51 +000082{
83 if (p->tick)
Joe Thornberfba10102015-05-29 10:20:56 +010084 return p->tick(p, can_block);
Joe Thornberc6b4fcb2013-03-01 22:45:51 +000085}
86
Joe Thornber028ae9f2015-04-22 16:42:35 -040087static inline int policy_emit_config_values(struct dm_cache_policy *p, char *result,
88 unsigned maxlen, ssize_t *sz_ptr)
Joe Thornberc6b4fcb2013-03-01 22:45:51 +000089{
Joe Thornber028ae9f2015-04-22 16:42:35 -040090 ssize_t sz = *sz_ptr;
Joe Thornberc6b4fcb2013-03-01 22:45:51 +000091 if (p->emit_config_values)
Joe Thornber028ae9f2015-04-22 16:42:35 -040092 return p->emit_config_values(p, result, maxlen, sz_ptr);
Joe Thornberc6b4fcb2013-03-01 22:45:51 +000093
Joe Thornber028ae9f2015-04-22 16:42:35 -040094 DMEMIT("0 ");
95 *sz_ptr = sz;
Joe Thornberc6b4fcb2013-03-01 22:45:51 +000096 return 0;
97}
98
99static inline int policy_set_config_value(struct dm_cache_policy *p,
100 const char *key, const char *value)
101{
102 return p->set_config_value ? p->set_config_value(p, key, value) : -EINVAL;
103}
104
Joe Thornberb29d4982016-12-15 04:57:31 -0500105static inline void policy_allow_migrations(struct dm_cache_policy *p, bool allow)
106{
107 return p->allow_migrations(p, allow);
108}
109
Joe Thornberc6b4fcb2013-03-01 22:45:51 +0000110/*----------------------------------------------------------------*/
111
112/*
Joe Thornber451b9e02015-05-15 15:22:02 +0100113 * Some utility functions commonly used by policies and the core target.
114 */
115static inline size_t bitset_size_in_bytes(unsigned nr_entries)
116{
117 return sizeof(unsigned long) * dm_div_up(nr_entries, BITS_PER_LONG);
118}
119
120static inline unsigned long *alloc_bitset(unsigned nr_entries)
121{
122 size_t s = bitset_size_in_bytes(nr_entries);
123 return vzalloc(s);
124}
125
126static inline void clear_bitset(void *bitset, unsigned nr_entries)
127{
128 size_t s = bitset_size_in_bytes(nr_entries);
129 memset(bitset, 0, s);
130}
131
132static inline void free_bitset(unsigned long *bits)
133{
134 vfree(bits);
135}
136
137/*----------------------------------------------------------------*/
138
139/*
Joe Thornberc6b4fcb2013-03-01 22:45:51 +0000140 * Creates a new cache policy given a policy name, a cache size, an origin size and the block size.
141 */
142struct dm_cache_policy *dm_cache_policy_create(const char *name, dm_cblock_t cache_size,
143 sector_t origin_size, sector_t block_size);
144
145/*
146 * Destroys the policy. This drops references to the policy module as well
147 * as calling it's destroy method. So always use this rather than calling
148 * the policy->destroy method directly.
149 */
150void dm_cache_policy_destroy(struct dm_cache_policy *p);
151
152/*
153 * In case we've forgotten.
154 */
155const char *dm_cache_policy_get_name(struct dm_cache_policy *p);
156
Mike Snitzer4e7f5062013-03-20 17:21:27 +0000157const unsigned *dm_cache_policy_get_version(struct dm_cache_policy *p);
158
Joe Thornberc6b4fcb2013-03-01 22:45:51 +0000159size_t dm_cache_policy_get_hint_size(struct dm_cache_policy *p);
160
161/*----------------------------------------------------------------*/
162
163#endif /* DM_CACHE_POLICY_INTERNAL_H */