aboutsummaryrefslogtreecommitdiffstats
path: root/tools/libxc/xenguest.h
diff options
context:
space:
mode:
authorkfraser@localhost.localdomain <kfraser@localhost.localdomain>2007-04-04 16:34:56 +0100
committerkfraser@localhost.localdomain <kfraser@localhost.localdomain>2007-04-04 16:34:56 +0100
commitd5f5ff766fffd248ff8368b5e2e81308c1655487 (patch)
tree8061ba914cb042fb0895647937e6e6decebcbd00 /tools/libxc/xenguest.h
parent087d43326ab4de5dbf25e67bd17dcc72262d2a65 (diff)
downloadxen-d5f5ff766fffd248ff8368b5e2e81308c1655487.tar.gz
xen-d5f5ff766fffd248ff8368b5e2e81308c1655487.tar.bz2
xen-d5f5ff766fffd248ff8368b5e2e81308c1655487.zip
Clean up save/restore state record handling. No need for Python to
read out the 'p2m size' field. Also that field is not needed at all for HVM guests. Signed-off-by: Keir Fraser <keir@xensource.com>
Diffstat (limited to 'tools/libxc/xenguest.h')
-rw-r--r--tools/libxc/xenguest.h3
1 files changed, 0 insertions, 3 deletions
diff --git a/tools/libxc/xenguest.h b/tools/libxc/xenguest.h
index c5bfa9c5d9..988c85feb6 100644
--- a/tools/libxc/xenguest.h
+++ b/tools/libxc/xenguest.h
@@ -43,14 +43,11 @@ int xc_hvm_save(int xc_handle, int io_fd, uint32_t dom, uint32_t max_iters,
* @parm xc_handle a handle to an open hypervisor interface
* @parm fd the file descriptor to restore a domain from
* @parm dom the id of the domain
- * @parm p2m_size number of pages the guest has (i.e. number entries in P2M)
- * @parm max_nr_pfns domains maximum real memory allocation, in pages
* @parm store_evtchn the store event channel for this domain to use
* @parm store_mfn returned with the mfn of the store page
* @return 0 on success, -1 on failure
*/
int xc_linux_restore(int xc_handle, int io_fd, uint32_t dom,
- unsigned long p2m_size,
unsigned int store_evtchn, unsigned long *store_mfn,
unsigned int console_evtchn, unsigned long *console_mfn);