| Submitter | Isaku Yamahata |
|---|---|
| Date | Oct. 30, 2012, 8:32 a.m. |
| Message ID | <c2f19c076e5ed01333e891844c8ab00799a3a957.1351582535.git.yamahata@valinux.co.jp> |
| Download | mbox | patch |
| Permalink | /patch/195448/ |
| State | New |
| Headers | show |
Comments
Patch
diff --git a/arch_init.c b/arch_init.c index e6effe8..79d4041 100644 --- a/arch_init.c +++ b/arch_init.c @@ -659,7 +659,7 @@ static int ram_save_iterate(QEMUFile *f, void *opaque) qemu_put_be64(f, RAM_SAVE_FLAG_EOS); expected_downtime = ram_save_remaining() * TARGET_PAGE_SIZE / bwidth; - DPRINTF("ram_save_live: expected(%" PRIu64 ") <= max(" PRIu64 ")?\n", + DPRINTF("ram_save_iterate: expected(%" PRIu64 ") <= max(%" PRIu64 ")?\n", expected_downtime, migrate_max_downtime()); if (expected_downtime <= migrate_max_downtime()) {
missing % s/ram_save_live/ram_save_iterate/ Signed-off-by: Isaku Yamahata <yamahata@valinux.co.jp> --- arch_init.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)