Dan Magenheimer | 29f233c | 2012-04-09 17:09:27 -0600 | [diff] [blame] | 1 | /* |
| 2 | * Frontswap frontend |
| 3 | * |
| 4 | * This code provides the generic "frontend" layer to call a matching |
| 5 | * "backend" driver implementation of frontswap. See |
| 6 | * Documentation/vm/frontswap.txt for more information. |
| 7 | * |
| 8 | * Copyright (C) 2009-2012 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 | |
Dan Magenheimer | 29f233c | 2012-04-09 17:09:27 -0600 | [diff] [blame] | 14 | #include <linux/mman.h> |
| 15 | #include <linux/swap.h> |
| 16 | #include <linux/swapops.h> |
Dan Magenheimer | 29f233c | 2012-04-09 17:09:27 -0600 | [diff] [blame] | 17 | #include <linux/security.h> |
Dan Magenheimer | 29f233c | 2012-04-09 17:09:27 -0600 | [diff] [blame] | 18 | #include <linux/module.h> |
Dan Magenheimer | 29f233c | 2012-04-09 17:09:27 -0600 | [diff] [blame] | 19 | #include <linux/debugfs.h> |
| 20 | #include <linux/frontswap.h> |
| 21 | #include <linux/swapfile.h> |
| 22 | |
| 23 | /* |
| 24 | * frontswap_ops is set by frontswap_register_ops to contain the pointers |
| 25 | * to the frontswap "backend" implementation functions. |
| 26 | */ |
| 27 | static struct frontswap_ops frontswap_ops __read_mostly; |
| 28 | |
| 29 | /* |
| 30 | * This global enablement flag reduces overhead on systems where frontswap_ops |
| 31 | * has not been registered, so is preferred to the slower alternative: a |
| 32 | * function call that checks a non-global. |
| 33 | */ |
| 34 | bool frontswap_enabled __read_mostly; |
| 35 | EXPORT_SYMBOL(frontswap_enabled); |
| 36 | |
| 37 | /* |
Konrad Rzeszutek Wilk | 165c8ae | 2012-05-15 11:32:15 -0400 | [diff] [blame] | 38 | * If enabled, frontswap_store will return failure even on success. As |
Dan Magenheimer | 29f233c | 2012-04-09 17:09:27 -0600 | [diff] [blame] | 39 | * a result, the swap subsystem will always write the page to swap, in |
| 40 | * effect converting frontswap into a writethrough cache. In this mode, |
| 41 | * there is no direct reduction in swap writes, but a frontswap backend |
| 42 | * can unilaterally "reclaim" any pages in use with no data loss, thus |
| 43 | * providing increases control over maximum memory usage due to frontswap. |
| 44 | */ |
| 45 | static bool frontswap_writethrough_enabled __read_mostly; |
| 46 | |
Dan Magenheimer | e3483a5 | 2012-09-20 12:16:52 -0700 | [diff] [blame] | 47 | /* |
| 48 | * If enabled, the underlying tmem implementation is capable of doing |
| 49 | * exclusive gets, so frontswap_load, on a successful tmem_get must |
| 50 | * mark the page as no longer in frontswap AND mark it dirty. |
| 51 | */ |
| 52 | static bool frontswap_tmem_exclusive_gets_enabled __read_mostly; |
| 53 | |
Dan Magenheimer | 29f233c | 2012-04-09 17:09:27 -0600 | [diff] [blame] | 54 | #ifdef CONFIG_DEBUG_FS |
| 55 | /* |
| 56 | * Counters available via /sys/kernel/debug/frontswap (if debugfs is |
| 57 | * properly configured). These are for information only so are not protected |
| 58 | * against increment races. |
| 59 | */ |
Konrad Rzeszutek Wilk | 165c8ae | 2012-05-15 11:32:15 -0400 | [diff] [blame] | 60 | static u64 frontswap_loads; |
| 61 | static u64 frontswap_succ_stores; |
| 62 | static u64 frontswap_failed_stores; |
Dan Magenheimer | 29f233c | 2012-04-09 17:09:27 -0600 | [diff] [blame] | 63 | static u64 frontswap_invalidates; |
| 64 | |
Konrad Rzeszutek Wilk | 165c8ae | 2012-05-15 11:32:15 -0400 | [diff] [blame] | 65 | static inline void inc_frontswap_loads(void) { |
| 66 | frontswap_loads++; |
Dan Magenheimer | 29f233c | 2012-04-09 17:09:27 -0600 | [diff] [blame] | 67 | } |
Konrad Rzeszutek Wilk | 165c8ae | 2012-05-15 11:32:15 -0400 | [diff] [blame] | 68 | static inline void inc_frontswap_succ_stores(void) { |
| 69 | frontswap_succ_stores++; |
Dan Magenheimer | 29f233c | 2012-04-09 17:09:27 -0600 | [diff] [blame] | 70 | } |
Konrad Rzeszutek Wilk | 165c8ae | 2012-05-15 11:32:15 -0400 | [diff] [blame] | 71 | static inline void inc_frontswap_failed_stores(void) { |
| 72 | frontswap_failed_stores++; |
Dan Magenheimer | 29f233c | 2012-04-09 17:09:27 -0600 | [diff] [blame] | 73 | } |
| 74 | static inline void inc_frontswap_invalidates(void) { |
| 75 | frontswap_invalidates++; |
| 76 | } |
| 77 | #else |
Konrad Rzeszutek Wilk | 165c8ae | 2012-05-15 11:32:15 -0400 | [diff] [blame] | 78 | static inline void inc_frontswap_loads(void) { } |
| 79 | static inline void inc_frontswap_succ_stores(void) { } |
| 80 | static inline void inc_frontswap_failed_stores(void) { } |
Dan Magenheimer | 29f233c | 2012-04-09 17:09:27 -0600 | [diff] [blame] | 81 | static inline void inc_frontswap_invalidates(void) { } |
| 82 | #endif |
| 83 | /* |
| 84 | * Register operations for frontswap, returning previous thus allowing |
| 85 | * detection of multiple backends and possible nesting. |
| 86 | */ |
| 87 | struct frontswap_ops frontswap_register_ops(struct frontswap_ops *ops) |
| 88 | { |
| 89 | struct frontswap_ops old = frontswap_ops; |
| 90 | |
| 91 | frontswap_ops = *ops; |
| 92 | frontswap_enabled = true; |
| 93 | return old; |
| 94 | } |
| 95 | EXPORT_SYMBOL(frontswap_register_ops); |
| 96 | |
| 97 | /* |
| 98 | * Enable/disable frontswap writethrough (see above). |
| 99 | */ |
| 100 | void frontswap_writethrough(bool enable) |
| 101 | { |
| 102 | frontswap_writethrough_enabled = enable; |
| 103 | } |
| 104 | EXPORT_SYMBOL(frontswap_writethrough); |
| 105 | |
| 106 | /* |
Dan Magenheimer | e3483a5 | 2012-09-20 12:16:52 -0700 | [diff] [blame] | 107 | * Enable/disable frontswap exclusive gets (see above). |
| 108 | */ |
| 109 | void frontswap_tmem_exclusive_gets(bool enable) |
| 110 | { |
| 111 | frontswap_tmem_exclusive_gets_enabled = enable; |
| 112 | } |
| 113 | EXPORT_SYMBOL(frontswap_tmem_exclusive_gets); |
| 114 | |
| 115 | /* |
Dan Magenheimer | 29f233c | 2012-04-09 17:09:27 -0600 | [diff] [blame] | 116 | * Called when a swap device is swapon'd. |
| 117 | */ |
| 118 | void __frontswap_init(unsigned type) |
| 119 | { |
| 120 | struct swap_info_struct *sis = swap_info[type]; |
| 121 | |
| 122 | BUG_ON(sis == NULL); |
| 123 | if (sis->frontswap_map == NULL) |
| 124 | return; |
Sasha Levin | f9f0810 | 2012-06-10 12:51:05 +0200 | [diff] [blame] | 125 | frontswap_ops.init(type); |
Dan Magenheimer | 29f233c | 2012-04-09 17:09:27 -0600 | [diff] [blame] | 126 | } |
| 127 | EXPORT_SYMBOL(__frontswap_init); |
| 128 | |
Sasha Levin | 611edfe | 2012-06-10 12:51:07 +0200 | [diff] [blame] | 129 | static inline void __frontswap_clear(struct swap_info_struct *sis, pgoff_t offset) |
| 130 | { |
| 131 | frontswap_clear(sis, offset); |
| 132 | atomic_dec(&sis->frontswap_pages); |
| 133 | } |
| 134 | |
Dan Magenheimer | 29f233c | 2012-04-09 17:09:27 -0600 | [diff] [blame] | 135 | /* |
Konrad Rzeszutek Wilk | 165c8ae | 2012-05-15 11:32:15 -0400 | [diff] [blame] | 136 | * "Store" data from a page to frontswap and associate it with the page's |
Dan Magenheimer | 29f233c | 2012-04-09 17:09:27 -0600 | [diff] [blame] | 137 | * swaptype and offset. Page must be locked and in the swap cache. |
| 138 | * If frontswap already contains a page with matching swaptype and |
Wanpeng Li | 1d00015 | 2012-06-16 20:37:48 +0800 | [diff] [blame] | 139 | * offset, the frontswap implementation may either overwrite the data and |
Dan Magenheimer | 29f233c | 2012-04-09 17:09:27 -0600 | [diff] [blame] | 140 | * return success or invalidate the page from frontswap and return failure. |
| 141 | */ |
Konrad Rzeszutek Wilk | 165c8ae | 2012-05-15 11:32:15 -0400 | [diff] [blame] | 142 | int __frontswap_store(struct page *page) |
Dan Magenheimer | 29f233c | 2012-04-09 17:09:27 -0600 | [diff] [blame] | 143 | { |
| 144 | int ret = -1, dup = 0; |
| 145 | swp_entry_t entry = { .val = page_private(page), }; |
| 146 | int type = swp_type(entry); |
| 147 | struct swap_info_struct *sis = swap_info[type]; |
| 148 | pgoff_t offset = swp_offset(entry); |
| 149 | |
| 150 | BUG_ON(!PageLocked(page)); |
| 151 | BUG_ON(sis == NULL); |
| 152 | if (frontswap_test(sis, offset)) |
| 153 | dup = 1; |
Sasha Levin | ef38359 | 2012-06-10 12:50:59 +0200 | [diff] [blame] | 154 | ret = frontswap_ops.store(type, offset, page); |
Dan Magenheimer | 29f233c | 2012-04-09 17:09:27 -0600 | [diff] [blame] | 155 | if (ret == 0) { |
| 156 | frontswap_set(sis, offset); |
Konrad Rzeszutek Wilk | 165c8ae | 2012-05-15 11:32:15 -0400 | [diff] [blame] | 157 | inc_frontswap_succ_stores(); |
Dan Magenheimer | 29f233c | 2012-04-09 17:09:27 -0600 | [diff] [blame] | 158 | if (!dup) |
| 159 | atomic_inc(&sis->frontswap_pages); |
Sasha Levin | d9674dd | 2012-06-10 12:51:04 +0200 | [diff] [blame] | 160 | } else { |
Dan Magenheimer | 29f233c | 2012-04-09 17:09:27 -0600 | [diff] [blame] | 161 | /* |
| 162 | failed dup always results in automatic invalidate of |
| 163 | the (older) page from frontswap |
| 164 | */ |
Konrad Rzeszutek Wilk | 165c8ae | 2012-05-15 11:32:15 -0400 | [diff] [blame] | 165 | inc_frontswap_failed_stores(); |
Sasha Levin | 611edfe | 2012-06-10 12:51:07 +0200 | [diff] [blame] | 166 | if (dup) |
| 167 | __frontswap_clear(sis, offset); |
Sasha Levin | 4bb3e31 | 2012-06-10 12:51:00 +0200 | [diff] [blame] | 168 | } |
Dan Magenheimer | 29f233c | 2012-04-09 17:09:27 -0600 | [diff] [blame] | 169 | if (frontswap_writethrough_enabled) |
| 170 | /* report failure so swap also writes to swap device */ |
| 171 | ret = -1; |
| 172 | return ret; |
| 173 | } |
Konrad Rzeszutek Wilk | 165c8ae | 2012-05-15 11:32:15 -0400 | [diff] [blame] | 174 | EXPORT_SYMBOL(__frontswap_store); |
Dan Magenheimer | 29f233c | 2012-04-09 17:09:27 -0600 | [diff] [blame] | 175 | |
| 176 | /* |
| 177 | * "Get" data from frontswap associated with swaptype and offset that were |
| 178 | * specified when the data was put to frontswap and use it to fill the |
| 179 | * specified page with data. Page must be locked and in the swap cache. |
| 180 | */ |
Konrad Rzeszutek Wilk | 165c8ae | 2012-05-15 11:32:15 -0400 | [diff] [blame] | 181 | int __frontswap_load(struct page *page) |
Dan Magenheimer | 29f233c | 2012-04-09 17:09:27 -0600 | [diff] [blame] | 182 | { |
| 183 | int ret = -1; |
| 184 | swp_entry_t entry = { .val = page_private(page), }; |
| 185 | int type = swp_type(entry); |
| 186 | struct swap_info_struct *sis = swap_info[type]; |
| 187 | pgoff_t offset = swp_offset(entry); |
| 188 | |
| 189 | BUG_ON(!PageLocked(page)); |
| 190 | BUG_ON(sis == NULL); |
| 191 | if (frontswap_test(sis, offset)) |
Sasha Levin | ef38359 | 2012-06-10 12:50:59 +0200 | [diff] [blame] | 192 | ret = frontswap_ops.load(type, offset, page); |
Dan Magenheimer | e3483a5 | 2012-09-20 12:16:52 -0700 | [diff] [blame] | 193 | if (ret == 0) { |
Konrad Rzeszutek Wilk | 165c8ae | 2012-05-15 11:32:15 -0400 | [diff] [blame] | 194 | inc_frontswap_loads(); |
Dan Magenheimer | e3483a5 | 2012-09-20 12:16:52 -0700 | [diff] [blame] | 195 | if (frontswap_tmem_exclusive_gets_enabled) { |
| 196 | SetPageDirty(page); |
| 197 | frontswap_clear(sis, offset); |
| 198 | } |
| 199 | } |
Dan Magenheimer | 29f233c | 2012-04-09 17:09:27 -0600 | [diff] [blame] | 200 | return ret; |
| 201 | } |
Konrad Rzeszutek Wilk | 165c8ae | 2012-05-15 11:32:15 -0400 | [diff] [blame] | 202 | EXPORT_SYMBOL(__frontswap_load); |
Dan Magenheimer | 29f233c | 2012-04-09 17:09:27 -0600 | [diff] [blame] | 203 | |
| 204 | /* |
| 205 | * Invalidate any data from frontswap associated with the specified swaptype |
| 206 | * and offset so that a subsequent "get" will fail. |
| 207 | */ |
| 208 | void __frontswap_invalidate_page(unsigned type, pgoff_t offset) |
| 209 | { |
| 210 | struct swap_info_struct *sis = swap_info[type]; |
| 211 | |
| 212 | BUG_ON(sis == NULL); |
| 213 | if (frontswap_test(sis, offset)) { |
Sasha Levin | ef38359 | 2012-06-10 12:50:59 +0200 | [diff] [blame] | 214 | frontswap_ops.invalidate_page(type, offset); |
Sasha Levin | 611edfe | 2012-06-10 12:51:07 +0200 | [diff] [blame] | 215 | __frontswap_clear(sis, offset); |
Dan Magenheimer | 29f233c | 2012-04-09 17:09:27 -0600 | [diff] [blame] | 216 | inc_frontswap_invalidates(); |
| 217 | } |
| 218 | } |
| 219 | EXPORT_SYMBOL(__frontswap_invalidate_page); |
| 220 | |
| 221 | /* |
| 222 | * Invalidate all data from frontswap associated with all offsets for the |
| 223 | * specified swaptype. |
| 224 | */ |
| 225 | void __frontswap_invalidate_area(unsigned type) |
| 226 | { |
| 227 | struct swap_info_struct *sis = swap_info[type]; |
| 228 | |
| 229 | BUG_ON(sis == NULL); |
| 230 | if (sis->frontswap_map == NULL) |
| 231 | return; |
Sasha Levin | ef38359 | 2012-06-10 12:50:59 +0200 | [diff] [blame] | 232 | frontswap_ops.invalidate_area(type); |
Dan Magenheimer | 29f233c | 2012-04-09 17:09:27 -0600 | [diff] [blame] | 233 | atomic_set(&sis->frontswap_pages, 0); |
| 234 | memset(sis->frontswap_map, 0, sis->max / sizeof(long)); |
| 235 | } |
| 236 | EXPORT_SYMBOL(__frontswap_invalidate_area); |
| 237 | |
Sasha Levin | 9625344 | 2012-06-10 12:51:01 +0200 | [diff] [blame] | 238 | static unsigned long __frontswap_curr_pages(void) |
| 239 | { |
| 240 | int type; |
| 241 | unsigned long totalpages = 0; |
| 242 | struct swap_info_struct *si = NULL; |
| 243 | |
| 244 | assert_spin_locked(&swap_lock); |
| 245 | for (type = swap_list.head; type >= 0; type = si->next) { |
| 246 | si = swap_info[type]; |
| 247 | totalpages += atomic_read(&si->frontswap_pages); |
| 248 | } |
| 249 | return totalpages; |
| 250 | } |
| 251 | |
Sasha Levin | f116695 | 2012-06-10 12:51:02 +0200 | [diff] [blame] | 252 | static int __frontswap_unuse_pages(unsigned long total, unsigned long *unused, |
| 253 | int *swapid) |
| 254 | { |
| 255 | int ret = -EINVAL; |
| 256 | struct swap_info_struct *si = NULL; |
| 257 | int si_frontswap_pages; |
| 258 | unsigned long total_pages_to_unuse = total; |
| 259 | unsigned long pages = 0, pages_to_unuse = 0; |
| 260 | int type; |
| 261 | |
| 262 | assert_spin_locked(&swap_lock); |
| 263 | for (type = swap_list.head; type >= 0; type = si->next) { |
| 264 | si = swap_info[type]; |
| 265 | si_frontswap_pages = atomic_read(&si->frontswap_pages); |
| 266 | if (total_pages_to_unuse < si_frontswap_pages) { |
| 267 | pages = pages_to_unuse = total_pages_to_unuse; |
| 268 | } else { |
| 269 | pages = si_frontswap_pages; |
| 270 | pages_to_unuse = 0; /* unuse all */ |
| 271 | } |
| 272 | /* ensure there is enough RAM to fetch pages from frontswap */ |
| 273 | if (security_vm_enough_memory_mm(current->mm, pages)) { |
| 274 | ret = -ENOMEM; |
| 275 | continue; |
| 276 | } |
| 277 | vm_unacct_memory(pages); |
| 278 | *unused = pages_to_unuse; |
| 279 | *swapid = type; |
| 280 | ret = 0; |
| 281 | break; |
| 282 | } |
| 283 | |
| 284 | return ret; |
| 285 | } |
| 286 | |
Zhenzhong Duan | a00bb1e | 2012-09-21 16:40:30 +0800 | [diff] [blame] | 287 | /* |
| 288 | * Used to check if it's necessory and feasible to unuse pages. |
| 289 | * Return 1 when nothing to do, 0 when need to shink pages, |
| 290 | * error code when there is an error. |
| 291 | */ |
Sasha Levin | 69217b4 | 2012-06-10 12:51:03 +0200 | [diff] [blame] | 292 | static int __frontswap_shrink(unsigned long target_pages, |
| 293 | unsigned long *pages_to_unuse, |
| 294 | int *type) |
| 295 | { |
| 296 | unsigned long total_pages = 0, total_pages_to_unuse; |
| 297 | |
| 298 | assert_spin_locked(&swap_lock); |
| 299 | |
| 300 | total_pages = __frontswap_curr_pages(); |
| 301 | if (total_pages <= target_pages) { |
| 302 | /* Nothing to do */ |
| 303 | *pages_to_unuse = 0; |
Zhenzhong Duan | a00bb1e | 2012-09-21 16:40:30 +0800 | [diff] [blame] | 304 | return 1; |
Sasha Levin | 69217b4 | 2012-06-10 12:51:03 +0200 | [diff] [blame] | 305 | } |
| 306 | total_pages_to_unuse = total_pages - target_pages; |
| 307 | return __frontswap_unuse_pages(total_pages_to_unuse, pages_to_unuse, type); |
| 308 | } |
| 309 | |
Dan Magenheimer | 29f233c | 2012-04-09 17:09:27 -0600 | [diff] [blame] | 310 | /* |
| 311 | * Frontswap, like a true swap device, may unnecessarily retain pages |
| 312 | * under certain circumstances; "shrink" frontswap is essentially a |
| 313 | * "partial swapoff" and works by calling try_to_unuse to attempt to |
| 314 | * unuse enough frontswap pages to attempt to -- subject to memory |
| 315 | * constraints -- reduce the number of pages in frontswap to the |
| 316 | * number given in the parameter target_pages. |
| 317 | */ |
| 318 | void frontswap_shrink(unsigned long target_pages) |
| 319 | { |
Sasha Levin | f116695 | 2012-06-10 12:51:02 +0200 | [diff] [blame] | 320 | unsigned long pages_to_unuse = 0; |
Seth Jennings | 6b982fc | 2012-07-30 14:47:44 -0500 | [diff] [blame] | 321 | int uninitialized_var(type), ret; |
Dan Magenheimer | 29f233c | 2012-04-09 17:09:27 -0600 | [diff] [blame] | 322 | |
| 323 | /* |
| 324 | * we don't want to hold swap_lock while doing a very |
| 325 | * lengthy try_to_unuse, but swap_list may change |
| 326 | * so restart scan from swap_list.head each time |
| 327 | */ |
| 328 | spin_lock(&swap_lock); |
Sasha Levin | 69217b4 | 2012-06-10 12:51:03 +0200 | [diff] [blame] | 329 | ret = __frontswap_shrink(target_pages, &pages_to_unuse, &type); |
Dan Magenheimer | 29f233c | 2012-04-09 17:09:27 -0600 | [diff] [blame] | 330 | spin_unlock(&swap_lock); |
Zhenzhong Duan | a00bb1e | 2012-09-21 16:40:30 +0800 | [diff] [blame] | 331 | if (ret == 0) |
Sasha Levin | 69217b4 | 2012-06-10 12:51:03 +0200 | [diff] [blame] | 332 | try_to_unuse(type, true, pages_to_unuse); |
Dan Magenheimer | 29f233c | 2012-04-09 17:09:27 -0600 | [diff] [blame] | 333 | return; |
| 334 | } |
| 335 | EXPORT_SYMBOL(frontswap_shrink); |
| 336 | |
| 337 | /* |
| 338 | * Count and return the number of frontswap pages across all |
| 339 | * swap devices. This is exported so that backend drivers can |
| 340 | * determine current usage without reading debugfs. |
| 341 | */ |
| 342 | unsigned long frontswap_curr_pages(void) |
| 343 | { |
Dan Magenheimer | 29f233c | 2012-04-09 17:09:27 -0600 | [diff] [blame] | 344 | unsigned long totalpages = 0; |
Dan Magenheimer | 29f233c | 2012-04-09 17:09:27 -0600 | [diff] [blame] | 345 | |
| 346 | spin_lock(&swap_lock); |
Sasha Levin | 9625344 | 2012-06-10 12:51:01 +0200 | [diff] [blame] | 347 | totalpages = __frontswap_curr_pages(); |
Dan Magenheimer | 29f233c | 2012-04-09 17:09:27 -0600 | [diff] [blame] | 348 | spin_unlock(&swap_lock); |
Sasha Levin | 9625344 | 2012-06-10 12:51:01 +0200 | [diff] [blame] | 349 | |
Dan Magenheimer | 29f233c | 2012-04-09 17:09:27 -0600 | [diff] [blame] | 350 | return totalpages; |
| 351 | } |
| 352 | EXPORT_SYMBOL(frontswap_curr_pages); |
| 353 | |
| 354 | static int __init init_frontswap(void) |
| 355 | { |
| 356 | #ifdef CONFIG_DEBUG_FS |
| 357 | struct dentry *root = debugfs_create_dir("frontswap", NULL); |
| 358 | if (root == NULL) |
| 359 | return -ENXIO; |
Konrad Rzeszutek Wilk | 165c8ae | 2012-05-15 11:32:15 -0400 | [diff] [blame] | 360 | debugfs_create_u64("loads", S_IRUGO, root, &frontswap_loads); |
| 361 | debugfs_create_u64("succ_stores", S_IRUGO, root, &frontswap_succ_stores); |
| 362 | debugfs_create_u64("failed_stores", S_IRUGO, root, |
| 363 | &frontswap_failed_stores); |
Dan Magenheimer | 29f233c | 2012-04-09 17:09:27 -0600 | [diff] [blame] | 364 | debugfs_create_u64("invalidates", S_IRUGO, |
| 365 | root, &frontswap_invalidates); |
| 366 | #endif |
| 367 | return 0; |
| 368 | } |
| 369 | |
| 370 | module_init(init_frontswap); |