Blame view

drivers/md/dm-cache-policy-internal.h 4.36 KB
c6b4fcbad   Joe Thornber   dm: add cache target
1
2
3
4
5
6
7
8
  /*
   * Copyright (C) 2012 Red Hat. All rights reserved.
   *
   * This file is released under the GPL.
   */
  
  #ifndef DM_CACHE_POLICY_INTERNAL_H
  #define DM_CACHE_POLICY_INTERNAL_H
451b9e007   Joe Thornber   dm cache: pull ou...
9
  #include <linux/vmalloc.h>
c6b4fcbad   Joe Thornber   dm: add cache target
10
11
12
  #include "dm-cache-policy.h"
  
  /*----------------------------------------------------------------*/
b29d4986d   Joe Thornber   dm cache: signifi...
13
14
  static inline int policy_lookup(struct dm_cache_policy *p, dm_oblock_t oblock, dm_cblock_t *cblock,
  				int data_dir, bool fast_copy, bool *background_queued)
c6b4fcbad   Joe Thornber   dm: add cache target
15
  {
b29d4986d   Joe Thornber   dm cache: signifi...
16
  	return p->lookup(p, oblock, cblock, data_dir, fast_copy, background_queued);
c6b4fcbad   Joe Thornber   dm: add cache target
17
  }
b29d4986d   Joe Thornber   dm cache: signifi...
18
19
20
21
  static inline int policy_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)
c6b4fcbad   Joe Thornber   dm: add cache target
22
  {
b29d4986d   Joe Thornber   dm cache: signifi...
23
24
25
26
  	if (!p->lookup_with_work) {
  		*work = NULL;
  		return p->lookup(p, oblock, cblock, data_dir, fast_copy, NULL);
  	}
c6b4fcbad   Joe Thornber   dm: add cache target
27

b29d4986d   Joe Thornber   dm cache: signifi...
28
  	return p->lookup_with_work(p, oblock, cblock, data_dir, fast_copy, work);
c6b4fcbad   Joe Thornber   dm: add cache target
29
  }
b29d4986d   Joe Thornber   dm cache: signifi...
30
31
  static inline int policy_get_background_work(struct dm_cache_policy *p,
  					     bool idle, struct policy_work **result)
c6b4fcbad   Joe Thornber   dm: add cache target
32
  {
b29d4986d   Joe Thornber   dm cache: signifi...
33
  	return p->get_background_work(p, idle, result);
c6b4fcbad   Joe Thornber   dm: add cache target
34
  }
b29d4986d   Joe Thornber   dm cache: signifi...
35
36
37
  static inline void policy_complete_background_work(struct dm_cache_policy *p,
  						   struct policy_work *work,
  						   bool success)
c6b4fcbad   Joe Thornber   dm: add cache target
38
  {
b29d4986d   Joe Thornber   dm cache: signifi...
39
  	return p->complete_background_work(p, work, success);
c6b4fcbad   Joe Thornber   dm: add cache target
40
  }
b29d4986d   Joe Thornber   dm cache: signifi...
41
  static inline void policy_set_dirty(struct dm_cache_policy *p, dm_cblock_t cblock)
c6b4fcbad   Joe Thornber   dm: add cache target
42
  {
b29d4986d   Joe Thornber   dm cache: signifi...
43
  	p->set_dirty(p, cblock);
c6b4fcbad   Joe Thornber   dm: add cache target
44
  }
b29d4986d   Joe Thornber   dm cache: signifi...
45
  static inline void policy_clear_dirty(struct dm_cache_policy *p, dm_cblock_t cblock)
c6b4fcbad   Joe Thornber   dm: add cache target
46
  {
b29d4986d   Joe Thornber   dm cache: signifi...
47
  	p->clear_dirty(p, cblock);
c6b4fcbad   Joe Thornber   dm: add cache target
48
  }
b29d4986d   Joe Thornber   dm cache: signifi...
49
50
51
  static inline int policy_load_mapping(struct dm_cache_policy *p,
  				      dm_oblock_t oblock, dm_cblock_t cblock,
  				      bool dirty, uint32_t hint, bool hint_valid)
c6b4fcbad   Joe Thornber   dm: add cache target
52
  {
b29d4986d   Joe Thornber   dm cache: signifi...
53
  	return p->load_mapping(p, oblock, cblock, dirty, hint, hint_valid);
c6b4fcbad   Joe Thornber   dm: add cache target
54
  }
b29d4986d   Joe Thornber   dm cache: signifi...
55
56
  static inline int policy_invalidate_mapping(struct dm_cache_policy *p,
  					    dm_cblock_t cblock)
532906aa7   Joe Thornber   dm cache: add rem...
57
  {
b29d4986d   Joe Thornber   dm cache: signifi...
58
  	return p->invalidate_mapping(p, cblock);
532906aa7   Joe Thornber   dm cache: add rem...
59
  }
b29d4986d   Joe Thornber   dm cache: signifi...
60
61
  static inline uint32_t policy_get_hint(struct dm_cache_policy *p,
  				       dm_cblock_t cblock)
c6b4fcbad   Joe Thornber   dm: add cache target
62
  {
b29d4986d   Joe Thornber   dm cache: signifi...
63
  	return p->get_hint ? p->get_hint(p, cblock) : 0;
c6b4fcbad   Joe Thornber   dm: add cache target
64
65
66
67
68
69
  }
  
  static inline dm_cblock_t policy_residency(struct dm_cache_policy *p)
  {
  	return p->residency(p);
  }
fba10109a   Joe Thornber   dm cache: age and...
70
  static inline void policy_tick(struct dm_cache_policy *p, bool can_block)
c6b4fcbad   Joe Thornber   dm: add cache target
71
72
  {
  	if (p->tick)
fba10109a   Joe Thornber   dm cache: age and...
73
  		return p->tick(p, can_block);
c6b4fcbad   Joe Thornber   dm: add cache target
74
  }
028ae9f76   Joe Thornber   dm cache: add fai...
75
76
  static inline int policy_emit_config_values(struct dm_cache_policy *p, char *result,
  					    unsigned maxlen, ssize_t *sz_ptr)
c6b4fcbad   Joe Thornber   dm: add cache target
77
  {
028ae9f76   Joe Thornber   dm cache: add fai...
78
  	ssize_t sz = *sz_ptr;
c6b4fcbad   Joe Thornber   dm: add cache target
79
  	if (p->emit_config_values)
028ae9f76   Joe Thornber   dm cache: add fai...
80
  		return p->emit_config_values(p, result, maxlen, sz_ptr);
c6b4fcbad   Joe Thornber   dm: add cache target
81

028ae9f76   Joe Thornber   dm cache: add fai...
82
83
  	DMEMIT("0 ");
  	*sz_ptr = sz;
c6b4fcbad   Joe Thornber   dm: add cache target
84
85
86
87
88
89
90
91
  	return 0;
  }
  
  static inline int policy_set_config_value(struct dm_cache_policy *p,
  					  const char *key, const char *value)
  {
  	return p->set_config_value ? p->set_config_value(p, key, value) : -EINVAL;
  }
b29d4986d   Joe Thornber   dm cache: signifi...
92
93
94
95
  static inline void policy_allow_migrations(struct dm_cache_policy *p, bool allow)
  {
  	return p->allow_migrations(p, allow);
  }
c6b4fcbad   Joe Thornber   dm: add cache target
96
97
98
  /*----------------------------------------------------------------*/
  
  /*
451b9e007   Joe Thornber   dm cache: pull ou...
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
   * Some utility functions commonly used by policies and the core target.
   */
  static inline size_t bitset_size_in_bytes(unsigned nr_entries)
  {
  	return sizeof(unsigned long) * dm_div_up(nr_entries, BITS_PER_LONG);
  }
  
  static inline unsigned long *alloc_bitset(unsigned nr_entries)
  {
  	size_t s = bitset_size_in_bytes(nr_entries);
  	return vzalloc(s);
  }
  
  static inline void clear_bitset(void *bitset, unsigned nr_entries)
  {
  	size_t s = bitset_size_in_bytes(nr_entries);
  	memset(bitset, 0, s);
  }
  
  static inline void free_bitset(unsigned long *bits)
  {
  	vfree(bits);
  }
  
  /*----------------------------------------------------------------*/
  
  /*
c6b4fcbad   Joe Thornber   dm: add cache target
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
   * Creates a new cache policy given a policy name, a cache size, an origin size and the block size.
   */
  struct dm_cache_policy *dm_cache_policy_create(const char *name, dm_cblock_t cache_size,
  					       sector_t origin_size, sector_t block_size);
  
  /*
   * Destroys the policy.  This drops references to the policy module as well
   * as calling it's destroy method.  So always use this rather than calling
   * the policy->destroy method directly.
   */
  void dm_cache_policy_destroy(struct dm_cache_policy *p);
  
  /*
   * In case we've forgotten.
   */
  const char *dm_cache_policy_get_name(struct dm_cache_policy *p);
4e7f506f6   Mike Snitzer   dm cache: policy ...
142
  const unsigned *dm_cache_policy_get_version(struct dm_cache_policy *p);
c6b4fcbad   Joe Thornber   dm: add cache target
143
144
145
146
147
  size_t dm_cache_policy_get_hint_size(struct dm_cache_policy *p);
  
  /*----------------------------------------------------------------*/
  
  #endif /* DM_CACHE_POLICY_INTERNAL_H */