debuggers.hg
changeset 17108:741ac532eb79
[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@jp.fujitsu.com>
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@jp.fujitsu.com>
author | Alex Williamson <alex.williamson@hp.com> |
---|---|
date | Thu Feb 07 09:19:53 2008 -0700 (2008-02-07) |
parents | e83d2b840e88 |
children | 7823534b28ca |
files | tools/libxc/ia64/xc_ia64_linux_save.c |
line diff
1.1 --- a/tools/libxc/ia64/xc_ia64_linux_save.c Tue Feb 05 09:36:48 2008 -0700 1.2 +++ b/tools/libxc/ia64/xc_ia64_linux_save.c Thu Feb 07 09:19:53 2008 -0700 1.3 @@ -652,6 +652,9 @@ xc_domain_save(int xc_handle, int io_fd, 1.4 skip_this_iter++; 1.5 if (test_bit(N, to_skip) || !test_bit(N, to_send)) 1.6 continue; 1.7 + } else if (live) { 1.8 + if (!test_bit(N, to_send)) 1.9 + continue; 1.10 } 1.11 1.12 if (debug)