This source file includes following definitions.
- cleancache_register_ops_sb
- cleancache_register_ops
- __cleancache_init_fs
- __cleancache_init_shared_fs
- cleancache_get_key
- __cleancache_get_page
- __cleancache_put_page
- __cleancache_invalidate_page
- __cleancache_invalidate_inode
- __cleancache_invalidate_fs
- init_cleancache
1
2
3
4
5
6
7
8
9
10
11
12
13 #include <linux/module.h>
14 #include <linux/fs.h>
15 #include <linux/exportfs.h>
16 #include <linux/mm.h>
17 #include <linux/debugfs.h>
18 #include <linux/cleancache.h>
19
20
21
22
23
24 static const struct cleancache_ops *cleancache_ops __read_mostly;
25
26
27
28
29
30
31 static u64 cleancache_succ_gets;
32 static u64 cleancache_failed_gets;
33 static u64 cleancache_puts;
34 static u64 cleancache_invalidates;
35
36 static void cleancache_register_ops_sb(struct super_block *sb, void *unused)
37 {
38 switch (sb->cleancache_poolid) {
39 case CLEANCACHE_NO_BACKEND:
40 __cleancache_init_fs(sb);
41 break;
42 case CLEANCACHE_NO_BACKEND_SHARED:
43 __cleancache_init_shared_fs(sb);
44 break;
45 }
46 }
47
48
49
50
51 int cleancache_register_ops(const struct cleancache_ops *ops)
52 {
53 if (cmpxchg(&cleancache_ops, NULL, ops))
54 return -EBUSY;
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107 iterate_supers(cleancache_register_ops_sb, NULL);
108 return 0;
109 }
110 EXPORT_SYMBOL(cleancache_register_ops);
111
112
113 void __cleancache_init_fs(struct super_block *sb)
114 {
115 int pool_id = CLEANCACHE_NO_BACKEND;
116
117 if (cleancache_ops) {
118 pool_id = cleancache_ops->init_fs(PAGE_SIZE);
119 if (pool_id < 0)
120 pool_id = CLEANCACHE_NO_POOL;
121 }
122 sb->cleancache_poolid = pool_id;
123 }
124 EXPORT_SYMBOL(__cleancache_init_fs);
125
126
127 void __cleancache_init_shared_fs(struct super_block *sb)
128 {
129 int pool_id = CLEANCACHE_NO_BACKEND_SHARED;
130
131 if (cleancache_ops) {
132 pool_id = cleancache_ops->init_shared_fs(&sb->s_uuid, PAGE_SIZE);
133 if (pool_id < 0)
134 pool_id = CLEANCACHE_NO_POOL;
135 }
136 sb->cleancache_poolid = pool_id;
137 }
138 EXPORT_SYMBOL(__cleancache_init_shared_fs);
139
140
141
142
143
144 static int cleancache_get_key(struct inode *inode,
145 struct cleancache_filekey *key)
146 {
147 int (*fhfn)(struct inode *, __u32 *fh, int *, struct inode *);
148 int len = 0, maxlen = CLEANCACHE_KEY_MAX;
149 struct super_block *sb = inode->i_sb;
150
151 key->u.ino = inode->i_ino;
152 if (sb->s_export_op != NULL) {
153 fhfn = sb->s_export_op->encode_fh;
154 if (fhfn) {
155 len = (*fhfn)(inode, &key->u.fh[0], &maxlen, NULL);
156 if (len <= FILEID_ROOT || len == FILEID_INVALID)
157 return -1;
158 if (maxlen > CLEANCACHE_KEY_MAX)
159 return -1;
160 }
161 }
162 return 0;
163 }
164
165
166
167
168
169
170
171
172
173
174
175
176 int __cleancache_get_page(struct page *page)
177 {
178 int ret = -1;
179 int pool_id;
180 struct cleancache_filekey key = { .u.key = { 0 } };
181
182 if (!cleancache_ops) {
183 cleancache_failed_gets++;
184 goto out;
185 }
186
187 VM_BUG_ON_PAGE(!PageLocked(page), page);
188 pool_id = page->mapping->host->i_sb->cleancache_poolid;
189 if (pool_id < 0)
190 goto out;
191
192 if (cleancache_get_key(page->mapping->host, &key) < 0)
193 goto out;
194
195 ret = cleancache_ops->get_page(pool_id, key, page->index, page);
196 if (ret == 0)
197 cleancache_succ_gets++;
198 else
199 cleancache_failed_gets++;
200 out:
201 return ret;
202 }
203 EXPORT_SYMBOL(__cleancache_get_page);
204
205
206
207
208
209
210
211
212
213
214
215 void __cleancache_put_page(struct page *page)
216 {
217 int pool_id;
218 struct cleancache_filekey key = { .u.key = { 0 } };
219
220 if (!cleancache_ops) {
221 cleancache_puts++;
222 return;
223 }
224
225 VM_BUG_ON_PAGE(!PageLocked(page), page);
226 pool_id = page->mapping->host->i_sb->cleancache_poolid;
227 if (pool_id >= 0 &&
228 cleancache_get_key(page->mapping->host, &key) >= 0) {
229 cleancache_ops->put_page(pool_id, key, page->index, page);
230 cleancache_puts++;
231 }
232 }
233 EXPORT_SYMBOL(__cleancache_put_page);
234
235
236
237
238
239
240
241
242
243 void __cleancache_invalidate_page(struct address_space *mapping,
244 struct page *page)
245 {
246
247 int pool_id = mapping->host->i_sb->cleancache_poolid;
248 struct cleancache_filekey key = { .u.key = { 0 } };
249
250 if (!cleancache_ops)
251 return;
252
253 if (pool_id >= 0) {
254 VM_BUG_ON_PAGE(!PageLocked(page), page);
255 if (cleancache_get_key(mapping->host, &key) >= 0) {
256 cleancache_ops->invalidate_page(pool_id,
257 key, page->index);
258 cleancache_invalidates++;
259 }
260 }
261 }
262 EXPORT_SYMBOL(__cleancache_invalidate_page);
263
264
265
266
267
268
269
270
271
272
273 void __cleancache_invalidate_inode(struct address_space *mapping)
274 {
275 int pool_id = mapping->host->i_sb->cleancache_poolid;
276 struct cleancache_filekey key = { .u.key = { 0 } };
277
278 if (!cleancache_ops)
279 return;
280
281 if (pool_id >= 0 && cleancache_get_key(mapping->host, &key) >= 0)
282 cleancache_ops->invalidate_inode(pool_id, key);
283 }
284 EXPORT_SYMBOL(__cleancache_invalidate_inode);
285
286
287
288
289
290
291 void __cleancache_invalidate_fs(struct super_block *sb)
292 {
293 int pool_id;
294
295 pool_id = sb->cleancache_poolid;
296 sb->cleancache_poolid = CLEANCACHE_NO_POOL;
297
298 if (cleancache_ops && pool_id >= 0)
299 cleancache_ops->invalidate_fs(pool_id);
300 }
301 EXPORT_SYMBOL(__cleancache_invalidate_fs);
302
303 static int __init init_cleancache(void)
304 {
305 #ifdef CONFIG_DEBUG_FS
306 struct dentry *root = debugfs_create_dir("cleancache", NULL);
307
308 debugfs_create_u64("succ_gets", 0444, root, &cleancache_succ_gets);
309 debugfs_create_u64("failed_gets", 0444, root, &cleancache_failed_gets);
310 debugfs_create_u64("puts", 0444, root, &cleancache_puts);
311 debugfs_create_u64("invalidates", 0444, root, &cleancache_invalidates);
312 #endif
313 return 0;
314 }
315 module_init(init_cleancache)