aboutsummaryrefslogtreecommitdiffstats
path: root/tools/libxc/xenguest.h
diff options
context:
space:
mode:
authorKeir Fraser <keir.fraser@citrix.com>2009-07-20 15:45:50 +0100
committerKeir Fraser <keir.fraser@citrix.com>2009-07-20 15:45:50 +0100
commit5301fe9943e8d6b4bee5fb8739775450ac3cbde4 (patch)
tree09eef4026350457f048e4bbd93512b7f3004f945 /tools/libxc/xenguest.h
parent07a34def028cf0737533b834a0e29f0ce639d9ea (diff)
downloadxen-5301fe9943e8d6b4bee5fb8739775450ac3cbde4.tar.gz
xen-5301fe9943e8d6b4bee5fb8739775450ac3cbde4.tar.bz2
xen-5301fe9943e8d6b4bee5fb8739775450ac3cbde4.zip
libxenguest: Revert domain builder interface changes for 'superpages'
parameter, and place the flag in a pad byte of 'struct xc_dom_image' instead. Signed-off-by: Keir Fraser <keir.fraser@citrix.com>
Diffstat (limited to 'tools/libxc/xenguest.h')
-rw-r--r--tools/libxc/xenguest.h11
1 files changed, 3 insertions, 8 deletions
diff --git a/tools/libxc/xenguest.h b/tools/libxc/xenguest.h
index 220db7061c..03bc38cb6a 100644
--- a/tools/libxc/xenguest.h
+++ b/tools/libxc/xenguest.h
@@ -63,7 +63,6 @@ int xc_domain_restore(int xc_handle, int io_fd, uint32_t dom,
* @parm store_mfn returned with the mfn of the store page
* @parm console_evtchn the console event channel for this domain to use
* @parm conole_mfn returned with the mfn of the console page
- * @parm superpages populate memory in guest with superpages
* @return 0 on success, -1 on failure
*/
int xc_linux_build(int xc_handle,
@@ -77,8 +76,7 @@ int xc_linux_build(int xc_handle,
unsigned int store_evtchn,
unsigned long *store_mfn,
unsigned int console_evtchn,
- unsigned long *console_mfn,
- int superpages);
+ unsigned long *console_mfn);
/** The same interface, but the dom structure is managed by the caller */
struct xc_dom_image;
@@ -92,8 +90,7 @@ int xc_dom_linux_build(int xc_handle,
unsigned int store_evtchn,
unsigned long *store_mfn,
unsigned int console_evtchn,
- unsigned long *console_mfn,
- int superpages);
+ unsigned long *console_mfn);
/**
* This function will create a domain for a paravirtualized Linux
@@ -112,7 +109,6 @@ int xc_dom_linux_build(int xc_handle,
* @parm store_mfn returned with the mfn of the store page
* @parm console_evtchn the console event channel for this domain to use
* @parm conole_mfn returned with the mfn of the console page
- * @parm superpages populate memory in guest with superpages
* @return 0 on success, -1 on failure
*/
int xc_linux_build_mem(int xc_handle,
@@ -128,8 +124,7 @@ int xc_linux_build_mem(int xc_handle,
unsigned int store_evtchn,
unsigned long *store_mfn,
unsigned int console_evtchn,
- unsigned long *console_mfn,
- int superpages);
+ unsigned long *console_mfn);
int xc_hvm_build(int xc_handle,
uint32_t domid,