[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [Xen-changelog] [xen-unstable] [IA64] Fix live migration
# HG changeset patch # User Alex Williamson <alex.williamson@xxxxxx> # Date 1202401193 25200 # Node ID 741ac532eb797400ed34e902d225aa9873b57309 # Parent e83d2b840e88223a92f8473b23ae57876e298fc8 [IA64] Fix live migration In live migration, a domain is paused and *entire* memory is copied after pre-copy phase. (i.e. live migration is not live) Signed-off-by: Kouya Shimura <kouya@xxxxxxxxxxxxxx> --- tools/libxc/ia64/xc_ia64_linux_save.c | 3 +++ 1 files changed, 3 insertions(+) diff -r e83d2b840e88 -r 741ac532eb79 tools/libxc/ia64/xc_ia64_linux_save.c --- a/tools/libxc/ia64/xc_ia64_linux_save.c Tue Feb 05 09:36:48 2008 -0700 +++ b/tools/libxc/ia64/xc_ia64_linux_save.c Thu Feb 07 09:19:53 2008 -0700 @@ -651,6 +651,9 @@ xc_domain_save(int xc_handle, int io_fd, if (test_bit(N, to_skip) && test_bit(N, to_send)) skip_this_iter++; if (test_bit(N, to_skip) || !test_bit(N, to_send)) + continue; + } else if (live) { + if (!test_bit(N, to_send)) continue; } _______________________________________________ Xen-changelog mailing list Xen-changelog@xxxxxxxxxxxxxxxxxxx http://lists.xensource.com/xen-changelog
|
Lists.xenproject.org is hosted with RackSpace, monitoring our |