blob: b3ae19b72035f36efc1f2e6d30199c933ba6a087 [file] [log] [blame]
Dan Magenheimer077b1f82011-05-26 10:01:36 -06001/*
2 * Cleancache frontend
3 *
4 * This code provides the generic "frontend" layer to call a matching
5 * "backend" driver implementation of cleancache. See
6 * Documentation/vm/cleancache.txt for more information.
7 *
8 * Copyright (C) 2009-2010 Oracle Corp. All rights reserved.
9 * Author: Dan Magenheimer
10 *
11 * This work is licensed under the terms of the GNU GPL, version 2.
12 */
13
14#include <linux/module.h>
15#include <linux/fs.h>
16#include <linux/exportfs.h>
17#include <linux/mm.h>
Dan Magenheimer417fc2c2011-09-21 12:28:04 -040018#include <linux/debugfs.h>
Dan Magenheimer077b1f82011-05-26 10:01:36 -060019#include <linux/cleancache.h>
20
21/*
22 * This global enablement flag may be read thousands of times per second
Dan Magenheimer31677602011-09-21 11:56:28 -040023 * by cleancache_get/put/invalidate even on systems where cleancache_ops
Dan Magenheimer077b1f82011-05-26 10:01:36 -060024 * is not claimed (e.g. cleancache is config'ed on but remains
25 * disabled), so is preferred to the slower alternative: a function
26 * call that checks a non-global.
27 */
Dan Magenheimer072611e2011-09-21 12:21:20 -040028int cleancache_enabled __read_mostly;
Dan Magenheimer077b1f82011-05-26 10:01:36 -060029EXPORT_SYMBOL(cleancache_enabled);
30
31/*
32 * cleancache_ops is set by cleancache_ops_register to contain the pointers
33 * to the cleancache "backend" implementation functions.
34 */
Konrad Rzeszutek Wilk833f8662013-04-30 15:26:57 -070035static struct cleancache_ops *cleancache_ops __read_mostly;
Dan Magenheimer077b1f82011-05-26 10:01:36 -060036
Dan Magenheimer417fc2c2011-09-21 12:28:04 -040037/*
38 * Counters available via /sys/kernel/debug/frontswap (if debugfs is
39 * properly configured. These are for information only so are not protected
40 * against increment races.
41 */
42static u64 cleancache_succ_gets;
43static u64 cleancache_failed_gets;
44static u64 cleancache_puts;
45static u64 cleancache_invalidates;
Dan Magenheimer077b1f82011-05-26 10:01:36 -060046
47/*
Dan Magenheimer49a9ab82013-04-30 15:26:56 -070048 * When no backend is registered all calls to init_fs and init_shared_fs
49 * are registered and fake poolids (FAKE_FS_POOLID_OFFSET or
50 * FAKE_SHARED_FS_POOLID_OFFSET, plus offset in the respective array
51 * [shared_|]fs_poolid_map) are given to the respective super block
52 * (sb->cleancache_poolid) and no tmem_pools are created. When a backend
53 * registers with cleancache the previous calls to init_fs and init_shared_fs
54 * are executed to create tmem_pools and set the respective poolids. While no
55 * backend is registered all "puts", "gets" and "flushes" are ignored or failed.
56 */
57#define MAX_INITIALIZABLE_FS 32
58#define FAKE_FS_POOLID_OFFSET 1000
59#define FAKE_SHARED_FS_POOLID_OFFSET 2000
60
61#define FS_NO_BACKEND (-1)
62#define FS_UNKNOWN (-2)
63static int fs_poolid_map[MAX_INITIALIZABLE_FS];
64static int shared_fs_poolid_map[MAX_INITIALIZABLE_FS];
65static char *uuids[MAX_INITIALIZABLE_FS];
66/*
67 * Mutex for the [shared_|]fs_poolid_map to guard against multiple threads
68 * invoking umount (and ending in __cleancache_invalidate_fs) and also multiple
69 * threads calling mount (and ending up in __cleancache_init_[shared|]fs).
70 */
71static DEFINE_MUTEX(poolid_mutex);
72/*
73 * When set to false (default) all calls to the cleancache functions, except
74 * the __cleancache_invalidate_fs and __cleancache_init_[shared|]fs are guarded
Konrad Rzeszutek Wilk833f8662013-04-30 15:26:57 -070075 * by the if (!cleancache_ops) return. This means multiple threads (from
76 * different filesystems) will be checking cleancache_ops. The usage of a
Dan Magenheimer49a9ab82013-04-30 15:26:56 -070077 * bool instead of a atomic_t or a bool guarded by a spinlock is OK - we are
78 * OK if the time between the backend's have been initialized (and
Konrad Rzeszutek Wilk833f8662013-04-30 15:26:57 -070079 * cleancache_ops has been set to not NULL) and when the filesystems start
Dan Magenheimer49a9ab82013-04-30 15:26:56 -070080 * actually calling the backends. The inverse (when unloading) is obviously
81 * not good - but this shim does not do that (yet).
82 */
Dan Magenheimer49a9ab82013-04-30 15:26:56 -070083
84/*
85 * The backends and filesystems work all asynchronously. This is b/c the
86 * backends can be built as modules.
87 * The usual sequence of events is:
88 * a) mount / -> __cleancache_init_fs is called. We set the
89 * [shared_|]fs_poolid_map and uuids for.
90 *
91 * b). user does I/Os -> we call the rest of __cleancache_* functions
Konrad Rzeszutek Wilk833f8662013-04-30 15:26:57 -070092 * which return immediately as cleancache_ops is false.
Dan Magenheimer49a9ab82013-04-30 15:26:56 -070093 *
94 * c). modprobe zcache -> cleancache_register_ops. We init the backend
Konrad Rzeszutek Wilk833f8662013-04-30 15:26:57 -070095 * and set cleancache_ops to true, and for any fs_poolid_map
Dan Magenheimer49a9ab82013-04-30 15:26:56 -070096 * (which is set by __cleancache_init_fs) we initialize the poolid.
97 *
Konrad Rzeszutek Wilk833f8662013-04-30 15:26:57 -070098 * d). user does I/Os -> now that cleancache_ops is true all the
Dan Magenheimer49a9ab82013-04-30 15:26:56 -070099 * __cleancache_* functions can call the backend. They all check
100 * that fs_poolid_map is valid and if so invoke the backend.
101 *
102 * e). umount / -> __cleancache_invalidate_fs, the fs_poolid_map is
103 * reset (which is the second check in the __cleancache_* ops
104 * to call the backend).
105 *
106 * The sequence of event could also be c), followed by a), and d). and e). The
107 * c) would not happen anymore. There is also the chance of c), and one thread
108 * doing a) + d), and another doing e). For that case we depend on the
109 * filesystem calling __cleancache_invalidate_fs in the proper sequence (so
110 * that it handles all I/Os before it invalidates the fs (which is last part
111 * of unmounting process).
112 *
113 * Note: The acute reader will notice that there is no "rmmod zcache" case.
114 * This is b/c the functionality for that is not yet implemented and when
115 * done, will require some extra locking not yet devised.
116 */
117
118/*
119 * Register operations for cleancache, returning previous thus allowing
120 * detection of multiple backends and possible nesting.
Dan Magenheimer077b1f82011-05-26 10:01:36 -0600121 */
Konrad Rzeszutek Wilk833f8662013-04-30 15:26:57 -0700122struct cleancache_ops *cleancache_register_ops(struct cleancache_ops *ops)
Dan Magenheimer077b1f82011-05-26 10:01:36 -0600123{
Konrad Rzeszutek Wilk833f8662013-04-30 15:26:57 -0700124 struct cleancache_ops *old = cleancache_ops;
Dan Magenheimer49a9ab82013-04-30 15:26:56 -0700125 int i;
Dan Magenheimer077b1f82011-05-26 10:01:36 -0600126
Dan Magenheimer49a9ab82013-04-30 15:26:56 -0700127 mutex_lock(&poolid_mutex);
Dan Magenheimer49a9ab82013-04-30 15:26:56 -0700128 for (i = 0; i < MAX_INITIALIZABLE_FS; i++) {
129 if (fs_poolid_map[i] == FS_NO_BACKEND)
Konrad Rzeszutek Wilk833f8662013-04-30 15:26:57 -0700130 fs_poolid_map[i] = ops->init_fs(PAGE_SIZE);
Dan Magenheimer49a9ab82013-04-30 15:26:56 -0700131 if (shared_fs_poolid_map[i] == FS_NO_BACKEND)
Konrad Rzeszutek Wilk833f8662013-04-30 15:26:57 -0700132 shared_fs_poolid_map[i] = ops->init_shared_fs
Dan Magenheimer49a9ab82013-04-30 15:26:56 -0700133 (uuids[i], PAGE_SIZE);
134 }
Konrad Rzeszutek Wilk833f8662013-04-30 15:26:57 -0700135 /*
136 * We MUST set cleancache_ops _after_ we have called the backends
137 * init_fs or init_shared_fs functions. Otherwise the compiler might
138 * re-order where cleancache_ops is set in this function.
139 */
140 barrier();
141 cleancache_ops = ops;
Dan Magenheimer49a9ab82013-04-30 15:26:56 -0700142 mutex_unlock(&poolid_mutex);
Dan Magenheimer077b1f82011-05-26 10:01:36 -0600143 return old;
144}
145EXPORT_SYMBOL(cleancache_register_ops);
146
147/* Called by a cleancache-enabled filesystem at time of mount */
148void __cleancache_init_fs(struct super_block *sb)
149{
Dan Magenheimer49a9ab82013-04-30 15:26:56 -0700150 int i;
151
152 mutex_lock(&poolid_mutex);
153 for (i = 0; i < MAX_INITIALIZABLE_FS; i++) {
154 if (fs_poolid_map[i] == FS_UNKNOWN) {
155 sb->cleancache_poolid = i + FAKE_FS_POOLID_OFFSET;
Konrad Rzeszutek Wilk833f8662013-04-30 15:26:57 -0700156 if (cleancache_ops)
157 fs_poolid_map[i] = cleancache_ops->init_fs(PAGE_SIZE);
Dan Magenheimer49a9ab82013-04-30 15:26:56 -0700158 else
159 fs_poolid_map[i] = FS_NO_BACKEND;
160 break;
161 }
162 }
163 mutex_unlock(&poolid_mutex);
Dan Magenheimer077b1f82011-05-26 10:01:36 -0600164}
165EXPORT_SYMBOL(__cleancache_init_fs);
166
167/* Called by a cleancache-enabled clustered filesystem at time of mount */
168void __cleancache_init_shared_fs(char *uuid, struct super_block *sb)
169{
Dan Magenheimer49a9ab82013-04-30 15:26:56 -0700170 int i;
171
172 mutex_lock(&poolid_mutex);
173 for (i = 0; i < MAX_INITIALIZABLE_FS; i++) {
174 if (shared_fs_poolid_map[i] == FS_UNKNOWN) {
175 sb->cleancache_poolid = i + FAKE_SHARED_FS_POOLID_OFFSET;
176 uuids[i] = uuid;
Konrad Rzeszutek Wilk833f8662013-04-30 15:26:57 -0700177 if (cleancache_ops)
178 shared_fs_poolid_map[i] = cleancache_ops->init_shared_fs
Dan Magenheimer49a9ab82013-04-30 15:26:56 -0700179 (uuid, PAGE_SIZE);
180 else
181 shared_fs_poolid_map[i] = FS_NO_BACKEND;
182 break;
183 }
184 }
185 mutex_unlock(&poolid_mutex);
Dan Magenheimer077b1f82011-05-26 10:01:36 -0600186}
187EXPORT_SYMBOL(__cleancache_init_shared_fs);
188
189/*
190 * If the filesystem uses exportable filehandles, use the filehandle as
191 * the key, else use the inode number.
192 */
193static int cleancache_get_key(struct inode *inode,
194 struct cleancache_filekey *key)
195{
Al Virob0b03822012-04-02 14:34:06 -0400196 int (*fhfn)(struct inode *, __u32 *fh, int *, struct inode *);
Dan Magenheimer077b1f82011-05-26 10:01:36 -0600197 int len = 0, maxlen = CLEANCACHE_KEY_MAX;
198 struct super_block *sb = inode->i_sb;
199
200 key->u.ino = inode->i_ino;
201 if (sb->s_export_op != NULL) {
202 fhfn = sb->s_export_op->encode_fh;
203 if (fhfn) {
Al Virob0b03822012-04-02 14:34:06 -0400204 len = (*fhfn)(inode, &key->u.fh[0], &maxlen, NULL);
Namjae Jeon94e07a752013-02-17 15:48:11 +0900205 if (len <= FILEID_ROOT || len == FILEID_INVALID)
Dan Magenheimer077b1f82011-05-26 10:01:36 -0600206 return -1;
207 if (maxlen > CLEANCACHE_KEY_MAX)
208 return -1;
209 }
210 }
211 return 0;
212}
213
214/*
Dan Magenheimer49a9ab82013-04-30 15:26:56 -0700215 * Returns a pool_id that is associated with a given fake poolid.
216 */
217static int get_poolid_from_fake(int fake_pool_id)
218{
219 if (fake_pool_id >= FAKE_SHARED_FS_POOLID_OFFSET)
220 return shared_fs_poolid_map[fake_pool_id -
221 FAKE_SHARED_FS_POOLID_OFFSET];
222 else if (fake_pool_id >= FAKE_FS_POOLID_OFFSET)
223 return fs_poolid_map[fake_pool_id - FAKE_FS_POOLID_OFFSET];
224 return FS_NO_BACKEND;
225}
226
227/*
Dan Magenheimer077b1f82011-05-26 10:01:36 -0600228 * "Get" data from cleancache associated with the poolid/inode/index
229 * that were specified when the data was put to cleanache and, if
230 * successful, use it to fill the specified page with data and return 0.
231 * The pageframe is unchanged and returns -1 if the get fails.
232 * Page must be locked by caller.
Dan Magenheimer49a9ab82013-04-30 15:26:56 -0700233 *
234 * The function has two checks before any action is taken - whether
235 * a backend is registered and whether the sb->cleancache_poolid
236 * is correct.
Dan Magenheimer077b1f82011-05-26 10:01:36 -0600237 */
238int __cleancache_get_page(struct page *page)
239{
240 int ret = -1;
241 int pool_id;
Dan Magenheimer49a9ab82013-04-30 15:26:56 -0700242 int fake_pool_id;
Dan Magenheimer077b1f82011-05-26 10:01:36 -0600243 struct cleancache_filekey key = { .u.key = { 0 } };
244
Konrad Rzeszutek Wilk833f8662013-04-30 15:26:57 -0700245 if (!cleancache_ops) {
Dan Magenheimer49a9ab82013-04-30 15:26:56 -0700246 cleancache_failed_gets++;
Dan Magenheimer077b1f82011-05-26 10:01:36 -0600247 goto out;
Dan Magenheimer49a9ab82013-04-30 15:26:56 -0700248 }
249
250 VM_BUG_ON(!PageLocked(page));
251 fake_pool_id = page->mapping->host->i_sb->cleancache_poolid;
252 if (fake_pool_id < 0)
253 goto out;
254 pool_id = get_poolid_from_fake(fake_pool_id);
Dan Magenheimer077b1f82011-05-26 10:01:36 -0600255
256 if (cleancache_get_key(page->mapping->host, &key) < 0)
257 goto out;
258
Dan Magenheimer49a9ab82013-04-30 15:26:56 -0700259 if (pool_id >= 0)
Konrad Rzeszutek Wilk833f8662013-04-30 15:26:57 -0700260 ret = cleancache_ops->get_page(pool_id,
Dan Magenheimer49a9ab82013-04-30 15:26:56 -0700261 key, page->index, page);
Dan Magenheimer077b1f82011-05-26 10:01:36 -0600262 if (ret == 0)
263 cleancache_succ_gets++;
264 else
265 cleancache_failed_gets++;
266out:
267 return ret;
268}
269EXPORT_SYMBOL(__cleancache_get_page);
270
271/*
272 * "Put" data from a page to cleancache and associate it with the
273 * (previously-obtained per-filesystem) poolid and the page's,
274 * inode and page index. Page must be locked. Note that a put_page
275 * always "succeeds", though a subsequent get_page may succeed or fail.
Dan Magenheimer49a9ab82013-04-30 15:26:56 -0700276 *
277 * The function has two checks before any action is taken - whether
278 * a backend is registered and whether the sb->cleancache_poolid
279 * is correct.
Dan Magenheimer077b1f82011-05-26 10:01:36 -0600280 */
281void __cleancache_put_page(struct page *page)
282{
283 int pool_id;
Dan Magenheimer49a9ab82013-04-30 15:26:56 -0700284 int fake_pool_id;
Dan Magenheimer077b1f82011-05-26 10:01:36 -0600285 struct cleancache_filekey key = { .u.key = { 0 } };
286
Konrad Rzeszutek Wilk833f8662013-04-30 15:26:57 -0700287 if (!cleancache_ops) {
Dan Magenheimer49a9ab82013-04-30 15:26:56 -0700288 cleancache_puts++;
289 return;
290 }
291
Dan Magenheimer077b1f82011-05-26 10:01:36 -0600292 VM_BUG_ON(!PageLocked(page));
Dan Magenheimer49a9ab82013-04-30 15:26:56 -0700293 fake_pool_id = page->mapping->host->i_sb->cleancache_poolid;
294 if (fake_pool_id < 0)
295 return;
296
297 pool_id = get_poolid_from_fake(fake_pool_id);
298
Dan Magenheimer077b1f82011-05-26 10:01:36 -0600299 if (pool_id >= 0 &&
Dan Magenheimer49a9ab82013-04-30 15:26:56 -0700300 cleancache_get_key(page->mapping->host, &key) >= 0) {
Konrad Rzeszutek Wilk833f8662013-04-30 15:26:57 -0700301 cleancache_ops->put_page(pool_id, key, page->index, page);
Dan Magenheimer077b1f82011-05-26 10:01:36 -0600302 cleancache_puts++;
303 }
304}
305EXPORT_SYMBOL(__cleancache_put_page);
306
307/*
Dan Magenheimer31677602011-09-21 11:56:28 -0400308 * Invalidate any data from cleancache associated with the poolid and the
Dan Magenheimer077b1f82011-05-26 10:01:36 -0600309 * page's inode and page index so that a subsequent "get" will fail.
Dan Magenheimer49a9ab82013-04-30 15:26:56 -0700310 *
311 * The function has two checks before any action is taken - whether
312 * a backend is registered and whether the sb->cleancache_poolid
313 * is correct.
Dan Magenheimer077b1f82011-05-26 10:01:36 -0600314 */
Dan Magenheimer31677602011-09-21 11:56:28 -0400315void __cleancache_invalidate_page(struct address_space *mapping,
316 struct page *page)
Dan Magenheimer077b1f82011-05-26 10:01:36 -0600317{
318 /* careful... page->mapping is NULL sometimes when this is called */
Dan Magenheimer49a9ab82013-04-30 15:26:56 -0700319 int pool_id;
320 int fake_pool_id = mapping->host->i_sb->cleancache_poolid;
Dan Magenheimer077b1f82011-05-26 10:01:36 -0600321 struct cleancache_filekey key = { .u.key = { 0 } };
322
Konrad Rzeszutek Wilk833f8662013-04-30 15:26:57 -0700323 if (!cleancache_ops)
Dan Magenheimer49a9ab82013-04-30 15:26:56 -0700324 return;
325
326 if (fake_pool_id >= 0) {
327 pool_id = get_poolid_from_fake(fake_pool_id);
328 if (pool_id < 0)
329 return;
330
Dan Magenheimer077b1f82011-05-26 10:01:36 -0600331 VM_BUG_ON(!PageLocked(page));
332 if (cleancache_get_key(mapping->host, &key) >= 0) {
Konrad Rzeszutek Wilk833f8662013-04-30 15:26:57 -0700333 cleancache_ops->invalidate_page(pool_id,
Dan Magenheimer49a9ab82013-04-30 15:26:56 -0700334 key, page->index);
Dan Magenheimer417fc2c2011-09-21 12:28:04 -0400335 cleancache_invalidates++;
Dan Magenheimer077b1f82011-05-26 10:01:36 -0600336 }
337 }
338}
Dan Magenheimer31677602011-09-21 11:56:28 -0400339EXPORT_SYMBOL(__cleancache_invalidate_page);
Dan Magenheimer077b1f82011-05-26 10:01:36 -0600340
341/*
Dan Magenheimer31677602011-09-21 11:56:28 -0400342 * Invalidate all data from cleancache associated with the poolid and the
Dan Magenheimer077b1f82011-05-26 10:01:36 -0600343 * mappings's inode so that all subsequent gets to this poolid/inode
344 * will fail.
Dan Magenheimer49a9ab82013-04-30 15:26:56 -0700345 *
346 * The function has two checks before any action is taken - whether
347 * a backend is registered and whether the sb->cleancache_poolid
348 * is correct.
Dan Magenheimer077b1f82011-05-26 10:01:36 -0600349 */
Dan Magenheimer31677602011-09-21 11:56:28 -0400350void __cleancache_invalidate_inode(struct address_space *mapping)
Dan Magenheimer077b1f82011-05-26 10:01:36 -0600351{
Dan Magenheimer49a9ab82013-04-30 15:26:56 -0700352 int pool_id;
353 int fake_pool_id = mapping->host->i_sb->cleancache_poolid;
Dan Magenheimer077b1f82011-05-26 10:01:36 -0600354 struct cleancache_filekey key = { .u.key = { 0 } };
355
Konrad Rzeszutek Wilk833f8662013-04-30 15:26:57 -0700356 if (!cleancache_ops)
Dan Magenheimer49a9ab82013-04-30 15:26:56 -0700357 return;
358
359 if (fake_pool_id < 0)
360 return;
361
362 pool_id = get_poolid_from_fake(fake_pool_id);
363
Dan Magenheimer077b1f82011-05-26 10:01:36 -0600364 if (pool_id >= 0 && cleancache_get_key(mapping->host, &key) >= 0)
Konrad Rzeszutek Wilk833f8662013-04-30 15:26:57 -0700365 cleancache_ops->invalidate_inode(pool_id, key);
Dan Magenheimer077b1f82011-05-26 10:01:36 -0600366}
Dan Magenheimer31677602011-09-21 11:56:28 -0400367EXPORT_SYMBOL(__cleancache_invalidate_inode);
Dan Magenheimer077b1f82011-05-26 10:01:36 -0600368
369/*
370 * Called by any cleancache-enabled filesystem at time of unmount;
Dan Magenheimer49a9ab82013-04-30 15:26:56 -0700371 * note that pool_id is surrendered and may be returned by a subsequent
372 * cleancache_init_fs or cleancache_init_shared_fs.
Dan Magenheimer077b1f82011-05-26 10:01:36 -0600373 */
Dan Magenheimer31677602011-09-21 11:56:28 -0400374void __cleancache_invalidate_fs(struct super_block *sb)
Dan Magenheimer077b1f82011-05-26 10:01:36 -0600375{
Dan Magenheimer49a9ab82013-04-30 15:26:56 -0700376 int index;
377 int fake_pool_id = sb->cleancache_poolid;
378 int old_poolid = fake_pool_id;
379
380 mutex_lock(&poolid_mutex);
381 if (fake_pool_id >= FAKE_SHARED_FS_POOLID_OFFSET) {
382 index = fake_pool_id - FAKE_SHARED_FS_POOLID_OFFSET;
383 old_poolid = shared_fs_poolid_map[index];
384 shared_fs_poolid_map[index] = FS_UNKNOWN;
385 uuids[index] = NULL;
386 } else if (fake_pool_id >= FAKE_FS_POOLID_OFFSET) {
387 index = fake_pool_id - FAKE_FS_POOLID_OFFSET;
388 old_poolid = fs_poolid_map[index];
389 fs_poolid_map[index] = FS_UNKNOWN;
Dan Magenheimer077b1f82011-05-26 10:01:36 -0600390 }
Dan Magenheimer49a9ab82013-04-30 15:26:56 -0700391 sb->cleancache_poolid = -1;
Konrad Rzeszutek Wilk833f8662013-04-30 15:26:57 -0700392 if (cleancache_ops)
393 cleancache_ops->invalidate_fs(old_poolid);
Dan Magenheimer49a9ab82013-04-30 15:26:56 -0700394 mutex_unlock(&poolid_mutex);
Dan Magenheimer077b1f82011-05-26 10:01:36 -0600395}
Dan Magenheimer31677602011-09-21 11:56:28 -0400396EXPORT_SYMBOL(__cleancache_invalidate_fs);
Dan Magenheimer077b1f82011-05-26 10:01:36 -0600397
Dan Magenheimer077b1f82011-05-26 10:01:36 -0600398static int __init init_cleancache(void)
399{
Dan Magenheimer49a9ab82013-04-30 15:26:56 -0700400 int i;
401
Dan Magenheimer417fc2c2011-09-21 12:28:04 -0400402#ifdef CONFIG_DEBUG_FS
403 struct dentry *root = debugfs_create_dir("cleancache", NULL);
404 if (root == NULL)
405 return -ENXIO;
406 debugfs_create_u64("succ_gets", S_IRUGO, root, &cleancache_succ_gets);
407 debugfs_create_u64("failed_gets", S_IRUGO,
408 root, &cleancache_failed_gets);
409 debugfs_create_u64("puts", S_IRUGO, root, &cleancache_puts);
410 debugfs_create_u64("invalidates", S_IRUGO,
411 root, &cleancache_invalidates);
412#endif
Dan Magenheimer49a9ab82013-04-30 15:26:56 -0700413 for (i = 0; i < MAX_INITIALIZABLE_FS; i++) {
414 fs_poolid_map[i] = FS_UNKNOWN;
415 shared_fs_poolid_map[i] = FS_UNKNOWN;
416 }
417 cleancache_enabled = 1;
Dan Magenheimer077b1f82011-05-26 10:01:36 -0600418 return 0;
419}
420module_init(init_cleancache)