1 /* SPDX-License-Identifier: GPL-2.0-only */
3 * Copyright (C) 2012 Red Hat. All rights reserved.
5 * This file is released under the GPL.
8 #ifndef DM_CACHE_POLICY_INTERNAL_H
9 #define DM_CACHE_POLICY_INTERNAL_H
11 #include <linux/vmalloc.h>
12 #include "dm-cache-policy.h"
14 /*----------------------------------------------------------------*/
16 static inline int policy_lookup(struct dm_cache_policy
*p
, dm_oblock_t oblock
, dm_cblock_t
*cblock
,
17 int data_dir
, bool fast_copy
, bool *background_queued
)
19 return p
->lookup(p
, oblock
, cblock
, data_dir
, fast_copy
, background_queued
);
22 static inline int policy_lookup_with_work(struct dm_cache_policy
*p
,
23 dm_oblock_t oblock
, dm_cblock_t
*cblock
,
24 int data_dir
, bool fast_copy
,
25 struct policy_work
**work
)
27 if (!p
->lookup_with_work
) {
29 return p
->lookup(p
, oblock
, cblock
, data_dir
, fast_copy
, NULL
);
32 return p
->lookup_with_work(p
, oblock
, cblock
, data_dir
, fast_copy
, work
);
35 static inline int policy_get_background_work(struct dm_cache_policy
*p
,
36 bool idle
, struct policy_work
**result
)
38 return p
->get_background_work(p
, idle
, result
);
41 static inline void policy_complete_background_work(struct dm_cache_policy
*p
,
42 struct policy_work
*work
,
45 return p
->complete_background_work(p
, work
, success
);
48 static inline void policy_set_dirty(struct dm_cache_policy
*p
, dm_cblock_t cblock
)
50 p
->set_dirty(p
, cblock
);
53 static inline void policy_clear_dirty(struct dm_cache_policy
*p
, dm_cblock_t cblock
)
55 p
->clear_dirty(p
, cblock
);
58 static inline int policy_load_mapping(struct dm_cache_policy
*p
,
59 dm_oblock_t oblock
, dm_cblock_t cblock
,
60 bool dirty
, uint32_t hint
, bool hint_valid
)
62 return p
->load_mapping(p
, oblock
, cblock
, dirty
, hint
, hint_valid
);
65 static inline int policy_invalidate_mapping(struct dm_cache_policy
*p
,
68 return p
->invalidate_mapping(p
, cblock
);
71 static inline uint32_t policy_get_hint(struct dm_cache_policy
*p
,
74 return p
->get_hint
? p
->get_hint(p
, cblock
) : 0;
77 static inline dm_cblock_t
policy_residency(struct dm_cache_policy
*p
)
79 return p
->residency(p
);
82 static inline void policy_tick(struct dm_cache_policy
*p
, bool can_block
)
85 return p
->tick(p
, can_block
);
88 static inline int policy_emit_config_values(struct dm_cache_policy
*p
, char *result
,
89 unsigned int maxlen
, ssize_t
*sz_ptr
)
93 if (p
->emit_config_values
)
94 return p
->emit_config_values(p
, result
, maxlen
, sz_ptr
);
101 static inline int policy_set_config_value(struct dm_cache_policy
*p
,
102 const char *key
, const char *value
)
104 return p
->set_config_value
? p
->set_config_value(p
, key
, value
) : -EINVAL
;
107 static inline void policy_allow_migrations(struct dm_cache_policy
*p
, bool allow
)
109 return p
->allow_migrations(p
, allow
);
112 /*----------------------------------------------------------------*/
115 * Some utility functions commonly used by policies and the core target.
117 static inline size_t bitset_size_in_bytes(unsigned int nr_entries
)
119 return sizeof(unsigned long) * dm_div_up(nr_entries
, BITS_PER_LONG
);
122 static inline unsigned long *alloc_bitset(unsigned int nr_entries
)
124 size_t s
= bitset_size_in_bytes(nr_entries
);
129 static inline void clear_bitset(void *bitset
, unsigned int nr_entries
)
131 size_t s
= bitset_size_in_bytes(nr_entries
);
133 memset(bitset
, 0, s
);
136 static inline void free_bitset(unsigned long *bits
)
141 /*----------------------------------------------------------------*/
144 * Creates a new cache policy given a policy name, a cache size, an origin size and the block size.
146 struct dm_cache_policy
*dm_cache_policy_create(const char *name
, dm_cblock_t cache_size
,
147 sector_t origin_size
, sector_t block_size
);
150 * Destroys the policy. This drops references to the policy module as well
151 * as calling it's destroy method. So always use this rather than calling
152 * the policy->destroy method directly.
154 void dm_cache_policy_destroy(struct dm_cache_policy
*p
);
157 * In case we've forgotten.
159 const char *dm_cache_policy_get_name(struct dm_cache_policy
*p
);
161 const unsigned int *dm_cache_policy_get_version(struct dm_cache_policy
*p
);
163 size_t dm_cache_policy_get_hint_size(struct dm_cache_policy
*p
);
165 /*----------------------------------------------------------------*/
167 #endif /* DM_CACHE_POLICY_INTERNAL_H */