aboutsummaryrefslogtreecommitdiffstats
path: root/xen/include/asm-x86/mem_paging.h
diff options
context:
space:
mode:
authorKeir Fraser <keir.fraser@citrix.com>2009-12-17 06:27:55 +0000
committerKeir Fraser <keir.fraser@citrix.com>2009-12-17 06:27:55 +0000
commit35b1c10cb4210e14a579e3030d65bb08949ab709 (patch)
tree7351941b115cadf4fc55495dcd23843e51d8263b /xen/include/asm-x86/mem_paging.h
parentb41ecc03e9d1527905dc955b14ada0e8c7171f52 (diff)
downloadxen-35b1c10cb4210e14a579e3030d65bb08949ab709.tar.gz
xen-35b1c10cb4210e14a579e3030d65bb08949ab709.tar.bz2
xen-35b1c10cb4210e14a579e3030d65bb08949ab709.zip
Memory paging domctl support, which is a sub-operation of the generic memory
event domctl support. Signed-off-by: Patrick Colp <Patrick.Colp@citrix.com>
Diffstat (limited to 'xen/include/asm-x86/mem_paging.h')
-rw-r--r--xen/include/asm-x86/mem_paging.h35
1 files changed, 35 insertions, 0 deletions
diff --git a/xen/include/asm-x86/mem_paging.h b/xen/include/asm-x86/mem_paging.h
new file mode 100644
index 0000000000..d66f6e62b1
--- /dev/null
+++ b/xen/include/asm-x86/mem_paging.h
@@ -0,0 +1,35 @@
+/******************************************************************************
+ * include/asm-x86/mem_paging.h
+ *
+ * Memory paging support.
+ *
+ * Copyright (c) 2009 Citrix (R)&D) Ltd. (Patrick Colp)
+ *
+ * This program is free software; you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License as published by
+ * the Free Software Foundation; either version 2 of the License, or
+ * (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program; if not, write to the Free Software
+ * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
+ */
+
+
+int mem_paging_domctl(struct domain *d, xen_domctl_mem_event_op_t *mec,
+ XEN_GUEST_HANDLE(void) u_domctl);
+
+
+/*
+ * Local variables:
+ * mode: C
+ * c-set-style: "BSD"
+ * c-basic-offset: 4
+ * indent-tabs-mode: nil
+ * End:
+ */