blob: 30bf97475e130849630ffc1bb558130887552d07 [file] [log] [blame]
Dan Magenheimer5bc20fc2011-05-26 10:02:21 -06001/*
2 * Xen implementation for transcendent memory (tmem)
3 *
Dan Magenheimerafec6e02011-06-17 15:06:20 -06004 * Copyright (C) 2009-2011 Oracle Corp. All rights reserved.
Dan Magenheimer5bc20fc2011-05-26 10:02:21 -06005 * Author: Dan Magenheimer
6 */
7
Dan Magenheimer10a7a0772013-04-30 15:27:00 -07008#include <linux/module.h>
Dan Magenheimer5bc20fc2011-05-26 10:02:21 -06009#include <linux/kernel.h>
10#include <linux/types.h>
11#include <linux/init.h>
12#include <linux/pagemap.h>
13#include <linux/cleancache.h>
Dan Magenheimerafec6e02011-06-17 15:06:20 -060014#include <linux/frontswap.h>
Dan Magenheimerafec6e02011-06-17 15:06:20 -060015
Dan Magenheimer5bc20fc2011-05-26 10:02:21 -060016#include <xen/xen.h>
17#include <xen/interface/xen.h>
18#include <asm/xen/hypercall.h>
19#include <asm/xen/page.h>
20#include <asm/xen/hypervisor.h>
Konrad Rzeszutek Wilkb8b0f552012-08-21 14:49:34 -040021#include <xen/tmem.h>
Dan Magenheimer5bc20fc2011-05-26 10:02:21 -060022
Konrad Rzeszutek Wilk0cb401d2013-05-08 15:50:59 -040023#ifndef CONFIG_XEN_TMEM_MODULE
24bool __read_mostly tmem_enabled = false;
25
26static int __init enable_tmem(char *s)
27{
28 tmem_enabled = true;
29 return 1;
30}
31__setup("tmem", enable_tmem);
32#endif
33
34#ifdef CONFIG_CLEANCACHE
35static bool disable_cleancache __read_mostly;
36static bool disable_selfballooning __read_mostly;
37#ifdef CONFIG_XEN_TMEM_MODULE
38module_param(disable_cleancache, bool, S_IRUGO);
39module_param(disable_selfballooning, bool, S_IRUGO);
40#else
41static int __init no_cleancache(char *s)
42{
43 disable_cleancache = true;
44 return 1;
45}
46__setup("nocleancache", no_cleancache);
47#endif
48#endif /* CONFIG_CLEANCACHE */
49
50#ifdef CONFIG_FRONTSWAP
51static bool disable_frontswap __read_mostly;
Konrad Rzeszutek Wilk0cb401d2013-05-08 15:50:59 -040052#ifdef CONFIG_XEN_TMEM_MODULE
53module_param(disable_frontswap, bool, S_IRUGO);
Konrad Rzeszutek Wilk0cb401d2013-05-08 15:50:59 -040054#else
55static int __init no_frontswap(char *s)
56{
57 disable_frontswap = true;
58 return 1;
59}
60__setup("nofrontswap", no_frontswap);
61#endif
Konrad Rzeszutek Wilke8f9cb02013-05-08 15:58:06 -040062#endif /* CONFIG_FRONTSWAP */
63
Konrad Rzeszutek Wilk23972c62013-05-08 16:57:35 -040064#ifdef CONFIG_XEN_SELFBALLOONING
Konrad Rzeszutek Wilke8f9cb02013-05-08 15:58:06 -040065static bool disable_frontswap_selfshrinking __read_mostly;
66#ifdef CONFIG_XEN_TMEM_MODULE
67module_param(disable_frontswap_selfshrinking, bool, S_IRUGO);
Konrad Rzeszutek Wilke8f9cb02013-05-08 15:58:06 -040068#endif
Konrad Rzeszutek Wilk23972c62013-05-08 16:57:35 -040069#endif /* CONFIG_XEN_SELFBALLOONING */
Konrad Rzeszutek Wilk0cb401d2013-05-08 15:50:59 -040070
Dan Magenheimer5bc20fc2011-05-26 10:02:21 -060071#define TMEM_CONTROL 0
72#define TMEM_NEW_POOL 1
73#define TMEM_DESTROY_POOL 2
74#define TMEM_NEW_PAGE 3
75#define TMEM_PUT_PAGE 4
76#define TMEM_GET_PAGE 5
77#define TMEM_FLUSH_PAGE 6
78#define TMEM_FLUSH_OBJECT 7
79#define TMEM_READ 8
80#define TMEM_WRITE 9
81#define TMEM_XCHG 10
82
83/* Bits for HYPERVISOR_tmem_op(TMEM_NEW_POOL) */
84#define TMEM_POOL_PERSIST 1
85#define TMEM_POOL_SHARED 2
86#define TMEM_POOL_PAGESIZE_SHIFT 4
87#define TMEM_VERSION_SHIFT 24
88
89
90struct tmem_pool_uuid {
91 u64 uuid_lo;
92 u64 uuid_hi;
93};
94
95struct tmem_oid {
96 u64 oid[3];
97};
98
99#define TMEM_POOL_PRIVATE_UUID { 0, 0 }
100
101/* flags for tmem_ops.new_pool */
102#define TMEM_POOL_PERSIST 1
103#define TMEM_POOL_SHARED 2
104
105/* xen tmem foundation ops/hypercalls */
106
107static inline int xen_tmem_op(u32 tmem_cmd, u32 tmem_pool, struct tmem_oid oid,
108 u32 index, unsigned long gmfn, u32 tmem_offset, u32 pfn_offset, u32 len)
109{
110 struct tmem_op op;
111 int rc = 0;
112
113 op.cmd = tmem_cmd;
114 op.pool_id = tmem_pool;
115 op.u.gen.oid[0] = oid.oid[0];
116 op.u.gen.oid[1] = oid.oid[1];
117 op.u.gen.oid[2] = oid.oid[2];
118 op.u.gen.index = index;
119 op.u.gen.tmem_offset = tmem_offset;
120 op.u.gen.pfn_offset = pfn_offset;
121 op.u.gen.len = len;
122 set_xen_guest_handle(op.u.gen.gmfn, (void *)gmfn);
123 rc = HYPERVISOR_tmem_op(&op);
124 return rc;
125}
126
127static int xen_tmem_new_pool(struct tmem_pool_uuid uuid,
128 u32 flags, unsigned long pagesize)
129{
130 struct tmem_op op;
131 int rc = 0, pageshift;
132
133 for (pageshift = 0; pagesize != 1; pageshift++)
134 pagesize >>= 1;
135 flags |= (pageshift - 12) << TMEM_POOL_PAGESIZE_SHIFT;
136 flags |= TMEM_SPEC_VERSION << TMEM_VERSION_SHIFT;
137 op.cmd = TMEM_NEW_POOL;
138 op.u.new.uuid[0] = uuid.uuid_lo;
139 op.u.new.uuid[1] = uuid.uuid_hi;
140 op.u.new.flags = flags;
141 rc = HYPERVISOR_tmem_op(&op);
142 return rc;
143}
144
145/* xen generic tmem ops */
146
147static int xen_tmem_put_page(u32 pool_id, struct tmem_oid oid,
148 u32 index, unsigned long pfn)
149{
150 unsigned long gmfn = xen_pv_domain() ? pfn_to_mfn(pfn) : pfn;
151
152 return xen_tmem_op(TMEM_PUT_PAGE, pool_id, oid, index,
153 gmfn, 0, 0, 0);
154}
155
156static int xen_tmem_get_page(u32 pool_id, struct tmem_oid oid,
157 u32 index, unsigned long pfn)
158{
159 unsigned long gmfn = xen_pv_domain() ? pfn_to_mfn(pfn) : pfn;
160
161 return xen_tmem_op(TMEM_GET_PAGE, pool_id, oid, index,
162 gmfn, 0, 0, 0);
163}
164
165static int xen_tmem_flush_page(u32 pool_id, struct tmem_oid oid, u32 index)
166{
167 return xen_tmem_op(TMEM_FLUSH_PAGE, pool_id, oid, index,
168 0, 0, 0, 0);
169}
170
171static int xen_tmem_flush_object(u32 pool_id, struct tmem_oid oid)
172{
173 return xen_tmem_op(TMEM_FLUSH_OBJECT, pool_id, oid, 0, 0, 0, 0, 0);
174}
175
Dan Magenheimer5bc20fc2011-05-26 10:02:21 -0600176
Dan Magenheimerafec6e02011-06-17 15:06:20 -0600177#ifdef CONFIG_CLEANCACHE
178static int xen_tmem_destroy_pool(u32 pool_id)
179{
180 struct tmem_oid oid = { { 0 } };
181
182 return xen_tmem_op(TMEM_DESTROY_POOL, pool_id, oid, 0, 0, 0, 0, 0);
183}
184
Dan Magenheimer5bc20fc2011-05-26 10:02:21 -0600185/* cleancache ops */
186
187static void tmem_cleancache_put_page(int pool, struct cleancache_filekey key,
188 pgoff_t index, struct page *page)
189{
190 u32 ind = (u32) index;
191 struct tmem_oid oid = *(struct tmem_oid *)&key;
192 unsigned long pfn = page_to_pfn(page);
193
194 if (pool < 0)
195 return;
196 if (ind != index)
197 return;
198 mb(); /* ensure page is quiescent; tmem may address it with an alias */
199 (void)xen_tmem_put_page((u32)pool, oid, ind, pfn);
200}
201
202static int tmem_cleancache_get_page(int pool, struct cleancache_filekey key,
203 pgoff_t index, struct page *page)
204{
205 u32 ind = (u32) index;
206 struct tmem_oid oid = *(struct tmem_oid *)&key;
207 unsigned long pfn = page_to_pfn(page);
208 int ret;
209
210 /* translate return values to linux semantics */
211 if (pool < 0)
212 return -1;
213 if (ind != index)
214 return -1;
215 ret = xen_tmem_get_page((u32)pool, oid, ind, pfn);
216 if (ret == 1)
217 return 0;
218 else
219 return -1;
220}
221
222static void tmem_cleancache_flush_page(int pool, struct cleancache_filekey key,
223 pgoff_t index)
224{
225 u32 ind = (u32) index;
226 struct tmem_oid oid = *(struct tmem_oid *)&key;
227
228 if (pool < 0)
229 return;
230 if (ind != index)
231 return;
232 (void)xen_tmem_flush_page((u32)pool, oid, ind);
233}
234
235static void tmem_cleancache_flush_inode(int pool, struct cleancache_filekey key)
236{
237 struct tmem_oid oid = *(struct tmem_oid *)&key;
238
239 if (pool < 0)
240 return;
241 (void)xen_tmem_flush_object((u32)pool, oid);
242}
243
244static void tmem_cleancache_flush_fs(int pool)
245{
246 if (pool < 0)
247 return;
248 (void)xen_tmem_destroy_pool((u32)pool);
249}
250
251static int tmem_cleancache_init_fs(size_t pagesize)
252{
253 struct tmem_pool_uuid uuid_private = TMEM_POOL_PRIVATE_UUID;
254
255 return xen_tmem_new_pool(uuid_private, 0, pagesize);
256}
257
258static int tmem_cleancache_init_shared_fs(char *uuid, size_t pagesize)
259{
260 struct tmem_pool_uuid shared_uuid;
261
262 shared_uuid.uuid_lo = *(u64 *)uuid;
263 shared_uuid.uuid_hi = *(u64 *)(&uuid[8]);
264 return xen_tmem_new_pool(shared_uuid, TMEM_POOL_SHARED, pagesize);
265}
266
Konrad Rzeszutek Wilk833f8662013-04-30 15:26:57 -0700267static struct cleancache_ops tmem_cleancache_ops = {
Dan Magenheimer5bc20fc2011-05-26 10:02:21 -0600268 .put_page = tmem_cleancache_put_page,
269 .get_page = tmem_cleancache_get_page,
Dan Magenheimer91c6cc92012-01-12 14:03:25 -0500270 .invalidate_page = tmem_cleancache_flush_page,
271 .invalidate_inode = tmem_cleancache_flush_inode,
272 .invalidate_fs = tmem_cleancache_flush_fs,
Dan Magenheimer5bc20fc2011-05-26 10:02:21 -0600273 .init_shared_fs = tmem_cleancache_init_shared_fs,
274 .init_fs = tmem_cleancache_init_fs
275};
Dan Magenheimerafec6e02011-06-17 15:06:20 -0600276#endif
277
278#ifdef CONFIG_FRONTSWAP
279/* frontswap tmem operations */
280
281/* a single tmem poolid is used for all frontswap "types" (swapfiles) */
282static int tmem_frontswap_poolid;
283
284/*
285 * Swizzling increases objects per swaptype, increasing tmem concurrency
286 * for heavy swaploads. Later, larger nr_cpus -> larger SWIZ_BITS
287 */
288#define SWIZ_BITS 4
289#define SWIZ_MASK ((1 << SWIZ_BITS) - 1)
290#define _oswiz(_type, _ind) ((_type << SWIZ_BITS) | (_ind & SWIZ_MASK))
291#define iswiz(_ind) (_ind >> SWIZ_BITS)
292
293static inline struct tmem_oid oswiz(unsigned type, u32 ind)
294{
295 struct tmem_oid oid = { .oid = { 0 } };
296 oid.oid[0] = _oswiz(type, ind);
297 return oid;
298}
299
300/* returns 0 if the page was successfully put into frontswap, -1 if not */
Konrad Rzeszutek Wilk165c8ae2012-05-15 11:32:15 -0400301static int tmem_frontswap_store(unsigned type, pgoff_t offset,
Dan Magenheimerafec6e02011-06-17 15:06:20 -0600302 struct page *page)
303{
304 u64 ind64 = (u64)offset;
305 u32 ind = (u32)offset;
306 unsigned long pfn = page_to_pfn(page);
307 int pool = tmem_frontswap_poolid;
308 int ret;
309
310 if (pool < 0)
311 return -1;
312 if (ind64 != ind)
313 return -1;
314 mb(); /* ensure page is quiescent; tmem may address it with an alias */
315 ret = xen_tmem_put_page(pool, oswiz(type, ind), iswiz(ind), pfn);
316 /* translate Xen tmem return values to linux semantics */
317 if (ret == 1)
318 return 0;
319 else
320 return -1;
321}
322
323/*
324 * returns 0 if the page was successfully gotten from frontswap, -1 if
325 * was not present (should never happen!)
326 */
Konrad Rzeszutek Wilk165c8ae2012-05-15 11:32:15 -0400327static int tmem_frontswap_load(unsigned type, pgoff_t offset,
Dan Magenheimerafec6e02011-06-17 15:06:20 -0600328 struct page *page)
329{
330 u64 ind64 = (u64)offset;
331 u32 ind = (u32)offset;
332 unsigned long pfn = page_to_pfn(page);
333 int pool = tmem_frontswap_poolid;
334 int ret;
335
336 if (pool < 0)
337 return -1;
338 if (ind64 != ind)
339 return -1;
340 ret = xen_tmem_get_page(pool, oswiz(type, ind), iswiz(ind), pfn);
341 /* translate Xen tmem return values to linux semantics */
342 if (ret == 1)
343 return 0;
344 else
345 return -1;
346}
347
348/* flush a single page from frontswap */
349static void tmem_frontswap_flush_page(unsigned type, pgoff_t offset)
350{
351 u64 ind64 = (u64)offset;
352 u32 ind = (u32)offset;
353 int pool = tmem_frontswap_poolid;
354
355 if (pool < 0)
356 return;
357 if (ind64 != ind)
358 return;
359 (void) xen_tmem_flush_page(pool, oswiz(type, ind), iswiz(ind));
360}
361
362/* flush all pages from the passed swaptype */
363static void tmem_frontswap_flush_area(unsigned type)
364{
365 int pool = tmem_frontswap_poolid;
366 int ind;
367
368 if (pool < 0)
369 return;
370 for (ind = SWIZ_MASK; ind >= 0; ind--)
371 (void)xen_tmem_flush_object(pool, oswiz(type, ind));
372}
373
374static void tmem_frontswap_init(unsigned ignored)
375{
376 struct tmem_pool_uuid private = TMEM_POOL_PRIVATE_UUID;
377
378 /* a single tmem poolid is used for all frontswap "types" (swapfiles) */
379 if (tmem_frontswap_poolid < 0)
380 tmem_frontswap_poolid =
381 xen_tmem_new_pool(private, TMEM_POOL_PERSIST, PAGE_SIZE);
382}
383
Konrad Rzeszutek Wilk1e01c962013-04-30 15:26:51 -0700384static struct frontswap_ops tmem_frontswap_ops = {
Konrad Rzeszutek Wilk165c8ae2012-05-15 11:32:15 -0400385 .store = tmem_frontswap_store,
386 .load = tmem_frontswap_load,
Dan Magenheimer91c6cc92012-01-12 14:03:25 -0500387 .invalidate_page = tmem_frontswap_flush_page,
388 .invalidate_area = tmem_frontswap_flush_area,
Dan Magenheimerafec6e02011-06-17 15:06:20 -0600389 .init = tmem_frontswap_init
390};
391#endif
Dan Magenheimer5bc20fc2011-05-26 10:02:21 -0600392
Dan Magenheimer10a7a0772013-04-30 15:27:00 -0700393static int xen_tmem_init(void)
Dan Magenheimer5bc20fc2011-05-26 10:02:21 -0600394{
Dan Magenheimer5bc20fc2011-05-26 10:02:21 -0600395 if (!xen_domain())
396 return 0;
Dan Magenheimerafec6e02011-06-17 15:06:20 -0600397#ifdef CONFIG_FRONTSWAP
Dan Magenheimer10a7a0772013-04-30 15:27:00 -0700398 if (tmem_enabled && !disable_frontswap) {
Dan Magenheimerafec6e02011-06-17 15:06:20 -0600399 char *s = "";
Konrad Rzeszutek Wilk1e01c962013-04-30 15:26:51 -0700400 struct frontswap_ops *old_ops =
Dan Magenheimerafec6e02011-06-17 15:06:20 -0600401 frontswap_register_ops(&tmem_frontswap_ops);
402
403 tmem_frontswap_poolid = -1;
Konrad Rzeszutek Wilkf42158f2013-04-30 15:27:01 -0700404 if (IS_ERR(old_ops) || old_ops) {
405 if (IS_ERR(old_ops))
406 return PTR_ERR(old_ops);
Dan Magenheimerafec6e02011-06-17 15:06:20 -0600407 s = " (WARNING: frontswap_ops overridden)";
Konrad Rzeszutek Wilkf42158f2013-04-30 15:27:01 -0700408 }
Dan Magenheimerafec6e02011-06-17 15:06:20 -0600409 printk(KERN_INFO "frontswap enabled, RAM provided by "
Konrad Rzeszutek Wilk22230c12013-02-01 14:10:44 -0500410 "Xen Transcendent Memory%s\n", s);
Dan Magenheimerafec6e02011-06-17 15:06:20 -0600411 }
412#endif
Dan Magenheimer5bc20fc2011-05-26 10:02:21 -0600413#ifdef CONFIG_CLEANCACHE
414 BUG_ON(sizeof(struct cleancache_filekey) != sizeof(struct tmem_oid));
Dan Magenheimer10a7a0772013-04-30 15:27:00 -0700415 if (tmem_enabled && !disable_cleancache) {
Dan Magenheimer5bc20fc2011-05-26 10:02:21 -0600416 char *s = "";
Konrad Rzeszutek Wilk833f8662013-04-30 15:26:57 -0700417 struct cleancache_ops *old_ops =
Dan Magenheimerafec6e02011-06-17 15:06:20 -0600418 cleancache_register_ops(&tmem_cleancache_ops);
Konrad Rzeszutek Wilk833f8662013-04-30 15:26:57 -0700419 if (old_ops)
Dan Magenheimer5bc20fc2011-05-26 10:02:21 -0600420 s = " (WARNING: cleancache_ops overridden)";
421 printk(KERN_INFO "cleancache enabled, RAM provided by "
422 "Xen Transcendent Memory%s\n", s);
423 }
424#endif
Dan Magenheimer10a7a0772013-04-30 15:27:00 -0700425#ifdef CONFIG_XEN_SELFBALLOONING
426 xen_selfballoon_init(!disable_selfballooning,
427 !disable_frontswap_selfshrinking);
428#endif
Dan Magenheimer5bc20fc2011-05-26 10:02:21 -0600429 return 0;
430}
431
432module_init(xen_tmem_init)
Dan Magenheimer10a7a0772013-04-30 15:27:00 -0700433MODULE_LICENSE("GPL");
434MODULE_AUTHOR("Dan Magenheimer <dan.magenheimer@oracle.com>");
435MODULE_DESCRIPTION("Shim to Xen transcendent memory");