[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [Xen-changelog] [xen-unstable] Remus: Add callbacks for suspend, postcopy and preresume in xc_domain_save.
# HG changeset patch # User Keir Fraser <keir.fraser@xxxxxxxxxx> # Date 1257793585 0 # Node ID 07f6d9047af4baada47b03c396ed9761cae3b92c # Parent e8483c7f668d9e2699c22a6502ffe20123a9ef45 Remus: Add callbacks for suspend, postcopy and preresume in xc_domain_save. This makes it possible to perform repeated checkpoints. Signed-off-by: Brendan Cully <brendan@xxxxxxxxx> --- tools/libxc/xc_domain_save.c | 58 ++++++++++++++++++++++++++++++++++--------- tools/libxc/xenguest.h | 17 +++++++++++- tools/xcutils/xc_save.c | 7 +++-- 3 files changed, 66 insertions(+), 16 deletions(-) diff -r e8483c7f668d -r 07f6d9047af4 tools/libxc/xc_domain_save.c --- a/tools/libxc/xc_domain_save.c Mon Nov 09 18:54:27 2009 +0000 +++ b/tools/libxc/xc_domain_save.c Mon Nov 09 19:06:25 2009 +0000 @@ -332,11 +332,11 @@ static int analysis_phase(int xc_handle, return -1; } - -static int suspend_and_state(int (*suspend)(void), int xc_handle, int io_fd, - int dom, xc_dominfo_t *info) -{ - if ( !(*suspend)() ) +static int suspend_and_state(int (*suspend)(void*), void* data, + int xc_handle, int io_fd, int dom, + xc_dominfo_t *info) +{ + if ( !(*suspend)(data) ) { ERROR("Suspend request failed"); return -1; @@ -742,13 +742,14 @@ static xen_pfn_t *map_and_save_p2m_table } int xc_domain_save(int xc_handle, int io_fd, uint32_t dom, uint32_t max_iters, - uint32_t max_factor, uint32_t flags, int (*suspend)(void), + uint32_t max_factor, uint32_t flags, + struct save_callbacks* callbacks, int hvm, void (*switch_qemu_logdirty)(int, unsigned)) { xc_dominfo_t info; DECLARE_DOMCTL; - int rc = 1, frc, i, j, last_iter, iter = 0; + int rc = 1, frc, i, j, last_iter = 0, iter = 0; int live = (flags & XCFLAGS_LIVE); int debug = (flags & XCFLAGS_DEBUG); int race = 0, sent_last_iter, skip_this_iter; @@ -864,7 +865,8 @@ int xc_domain_save(int xc_handle, int io else { /* This is a non-live suspend. Suspend the domain .*/ - if ( suspend_and_state(suspend, xc_handle, io_fd, dom, &info) ) + if ( suspend_and_state(callbacks->suspend, callbacks->data, xc_handle, + io_fd, dom, &info) ) { ERROR("Domain appears not to have suspended"); goto out; @@ -992,6 +994,7 @@ int xc_domain_save(int xc_handle, int io goto out; } + copypages: /* Now write out each data page, canonicalising page tables as we go... */ for ( ; ; ) { @@ -1305,7 +1308,8 @@ int xc_domain_save(int xc_handle, int io DPRINTF("Start last iteration\n"); last_iter = 1; - if ( suspend_and_state(suspend, xc_handle, io_fd, dom, &info) ) + if ( suspend_and_state(callbacks->suspend, callbacks->data, + xc_handle, io_fd, dom, &info) ) { ERROR("Domain appears not to have suspended"); goto out; @@ -1586,6 +1590,39 @@ int xc_domain_save(int xc_handle, int io rc = 0; out: + if ( !rc && callbacks->postcopy ) + callbacks->postcopy(callbacks->data); + + /* Flush last write and discard cache for file. */ + discard_file_cache(io_fd, 1 /* flush */); + + /* checkpoint_cb can spend arbitrarily long in between rounds */ + if (!rc && callbacks->checkpoint && + callbacks->checkpoint(callbacks->data) > 0) + { + /* reset stats timer */ + print_stats(xc_handle, dom, 0, &stats, 0); + + rc = 1; + /* last_iter = 1; */ + if ( suspend_and_state(callbacks->suspend, callbacks->data, xc_handle, + io_fd, dom, &info) ) + { + ERROR("Domain appears not to have suspended"); + goto out; + } + DPRINTF("SUSPEND shinfo %08lx\n", info.shared_info_frame); + print_stats(xc_handle, dom, 0, &stats, 1); + + if ( xc_shadow_control(xc_handle, dom, + XEN_DOMCTL_SHADOW_OP_CLEAN, to_send, + p2m_size, NULL, 0, &stats) != p2m_size ) + { + ERROR("Error flushing shadow PT"); + } + + goto copypages; + } if ( tmem_saved != 0 && live ) xc_tmem_save_done(xc_handle, dom); @@ -1599,9 +1636,6 @@ int xc_domain_save(int xc_handle, int io if ( hvm ) switch_qemu_logdirty(dom, 0); } - - /* Flush last write and discard cache for file. */ - discard_file_cache(io_fd, 1 /* flush */); if ( live_shinfo ) munmap(live_shinfo, PAGE_SIZE); diff -r e8483c7f668d -r 07f6d9047af4 tools/libxc/xenguest.h --- a/tools/libxc/xenguest.h Mon Nov 09 18:54:27 2009 +0000 +++ b/tools/libxc/xenguest.h Mon Nov 09 19:06:25 2009 +0000 @@ -14,6 +14,19 @@ #define XCFLAGS_HVM 4 #define XCFLAGS_STDVGA 8 +/* callbacks provided by xc_domain_save */ +struct save_callbacks { + int (*suspend)(void* data); + /* callback to rendezvous with external checkpoint functions */ + int (*postcopy)(void* data); + /* returns: + * 0: terminate checkpointing gracefully + * 1: take another checkpoint */ + int (*checkpoint)(void* data); + + /* to be provided as the first argument to each callback function */ + void* data; +}; /** * This function will save a running domain. @@ -25,8 +38,8 @@ */ int xc_domain_save(int xc_handle, int io_fd, uint32_t dom, uint32_t max_iters, uint32_t max_factor, uint32_t flags /* XCFLAGS_xxx */, - int (*suspend)(void), int hvm, - void (*switch_qemu_logdirty)(int, unsigned)); /* HVM only */ + struct save_callbacks* callbacks, + int hvm, void (*switch_qemu_logdirty)(int, unsigned)); /* HVM only */ /** diff -r e8483c7f668d -r 07f6d9047af4 tools/xcutils/xc_save.c --- a/tools/xcutils/xc_save.c Mon Nov 09 18:54:27 2009 +0000 +++ b/tools/xcutils/xc_save.c Mon Nov 09 19:06:25 2009 +0000 @@ -71,7 +71,7 @@ static int evtchn_suspend(void) return 1; } -static int suspend(void) +static int suspend(void* data) { unsigned long sx_state = 0; @@ -166,6 +166,7 @@ main(int argc, char **argv) { unsigned int maxit, max_f; int io_fd, ret, port; + struct save_callbacks callbacks; if (argc != 6) errx(1, "usage: %s iofd domid maxit maxf flags", argv[0]); @@ -202,8 +203,10 @@ main(int argc, char **argv) "using slow path"); } } + memset(&callbacks, 0, sizeof(callbacks)); + callbacks.suspend = suspend; ret = xc_domain_save(si.xc_fd, io_fd, si.domid, maxit, max_f, si.flags, - &suspend, !!(si.flags & XCFLAGS_HVM), + &callbacks, !!(si.flags & XCFLAGS_HVM), &switch_qemu_logdirty); if (si.suspend_evtchn > 0) _______________________________________________ Xen-changelog mailing list Xen-changelog@xxxxxxxxxxxxxxxxxxx http://lists.xensource.com/xen-changelog
|
Lists.xenproject.org is hosted with RackSpace, monitoring our |