diff options
author | Dan Magenheimer <dan.magenheimer@oracle.com> | 2011-07-08 14:26:21 -0400 |
---|---|---|
committer | Dan Magenheimer <dan.magenheimer@oracle.com> | 2011-07-08 14:26:21 -0400 |
commit | a50777c791031d7345ce95785ea6220f67339d90 (patch) | |
tree | 8246cc346988df9cdaf3e2cea2b0e8eb20156fd7 /include/xen | |
parent | 55922c9d1b84b89cb946c777fddccb3247e7df2c (diff) |
xen: tmem: self-ballooning and frontswap-selfshrinking
This patch introduces two in-kernel drivers for Xen transcendent memory
("tmem") functionality that complement cleancache and frontswap. Both
use control theory to dynamically adjust and optimize memory utilization.
Selfballooning controls the in-kernel Xen balloon driver, targeting a goal
value (vm_committed_as), thus pushing less frequently used clean
page cache pages (through the cleancache code) into Xen tmem where
Xen can balance needs across all VMs residing on the physical machine.
Frontswap-selfshrinking controls the number of pages in frontswap,
driving it towards zero (effectively doing a partial swapoff) when
in-kernel memory pressure subsides, freeing up RAM for other VMs.
More detail is provided in the header comment of xen-selfballooning.c.
Signed-off-by: Dan Magenheimer <dan.magenheimer@oracle.com>
[v8: konrad.wilk@oracle.com: set default enablement depending on frontswap]
[v7: konrad.wilk@oracle.com: fix capitalization and punctuation in comments]
[v6: fix frontswap-selfshrinking initialization]
[v6: konrad.wilk@oracle.com: fix init pr_infos; add comments about swap]
[v5: konrad.wilk@oracle.com: add NULL to attr list; move inits up to decls]
[v4: dkiper@net-space.pl: use strict_strtoul plus a few syntactic nits]
[v3: konrad.wilk@oracle.com: fix potential divides-by-zero]
[v3: konrad.wilk@oracle.com: add many more comments, fix nits]
[v2: rebased to linux-3.0-rc1]
[v2: Ian.Campbell@citrix.com: reorganize as new file (xen-selfballoon.c)]
[v2: dkiper@net-space.pl: proper access to vm_committed_as]
[v2: dkiper@net-space.pl: accounting fixes]
Cc: Jan Beulich <JBeulich@novell.com>
Cc: Jeremy Fitzhardinge <jeremy@goop.org>
Cc: <xen-devel@lists.xensource.com>
Diffstat (limited to 'include/xen')
-rw-r--r-- | include/xen/balloon.h | 10 | ||||
-rw-r--r-- | include/xen/tmem.h | 5 |
2 files changed, 15 insertions, 0 deletions
diff --git a/include/xen/balloon.h b/include/xen/balloon.h index a2b22f01a51d..4076ed72afbd 100644 --- a/include/xen/balloon.h +++ b/include/xen/balloon.h | |||
@@ -23,3 +23,13 @@ void balloon_set_new_target(unsigned long target); | |||
23 | 23 | ||
24 | int alloc_xenballooned_pages(int nr_pages, struct page** pages); | 24 | int alloc_xenballooned_pages(int nr_pages, struct page** pages); |
25 | void free_xenballooned_pages(int nr_pages, struct page** pages); | 25 | void free_xenballooned_pages(int nr_pages, struct page** pages); |
26 | |||
27 | struct sys_device; | ||
28 | #ifdef CONFIG_XEN_SELFBALLOONING | ||
29 | extern int register_xen_selfballooning(struct sys_device *sysdev); | ||
30 | #else | ||
31 | static inline int register_xen_selfballooning(struct sys_device *sysdev) | ||
32 | { | ||
33 | return -ENOSYS; | ||
34 | } | ||
35 | #endif | ||
diff --git a/include/xen/tmem.h b/include/xen/tmem.h new file mode 100644 index 000000000000..82e2c83a32f5 --- /dev/null +++ b/include/xen/tmem.h | |||
@@ -0,0 +1,5 @@ | |||
1 | #ifndef _XEN_TMEM_H | ||
2 | #define _XEN_TMEM_H | ||
3 | /* defined in drivers/xen/tmem.c */ | ||
4 | extern int tmem_enabled; | ||
5 | #endif /* _XEN_TMEM_H */ | ||