aboutsummaryrefslogtreecommitdiffstats
path: root/xen/include/public/domctl.h
diff options
context:
space:
mode:
authorOlaf Hering <olafiaepfle.de>2011-09-26 22:19:42 +0100
committerOlaf Hering <olafiaepfle.de>2011-09-26 22:19:42 +0100
commit47e2593cc8a6f99d4b621228bd847b0b2d7e5cb3 (patch)
tree437c07793d2ce2fbacbc1a61f2560b4b3a5d47de /xen/include/public/domctl.h
parent5f47247ded7bcd5ae5126da30f09f105a59fdc8d (diff)
downloadxen-47e2593cc8a6f99d4b621228bd847b0b2d7e5cb3.tar.gz
xen-47e2593cc8a6f99d4b621228bd847b0b2d7e5cb3.tar.bz2
xen-47e2593cc8a6f99d4b621228bd847b0b2d7e5cb3.zip
xenpaging: track number of paged pages in struct domain
The toolstack should know how many pages are paged-out at a given point in time so it could make smarter decisions about how many pages should be paged or ballooned. Add a new member to xen_domctl_getdomaininfo and bump interface version. Use the new member in xc_dominfo_t. The SONAME of libxc should be changed if this patch gets applied. Signed-off-by: Olaf Hering <olaf@aepfle.de> Acked-by: Ian Campbell <ian.campbell@citrix.com> Acked-by: Tim Deegan <tim@xen.org> Committed-by: Tim Deegan <tim@xen.org>
Diffstat (limited to 'xen/include/public/domctl.h')
-rw-r--r--xen/include/public/domctl.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/xen/include/public/domctl.h b/xen/include/public/domctl.h
index ae512aac10..ea8fce63d9 100644
--- a/xen/include/public/domctl.h
+++ b/xen/include/public/domctl.h
@@ -35,7 +35,7 @@
#include "xen.h"
#include "grant_table.h"
-#define XEN_DOMCTL_INTERFACE_VERSION 0x00000007
+#define XEN_DOMCTL_INTERFACE_VERSION 0x00000008
/*
* NB. xen_domctl.domain is an IN/OUT parameter for this operation.
@@ -95,6 +95,7 @@ struct xen_domctl_getdomaininfo {
uint64_aligned_t tot_pages;
uint64_aligned_t max_pages;
uint64_aligned_t shr_pages;
+ uint64_aligned_t paged_pages;
uint64_aligned_t shared_info_frame; /* GMFN of shared_info struct */
uint64_aligned_t cpu_time;
uint32_t nr_online_vcpus; /* Number of VCPUs currently online. */