qemu-devel
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Qemu-devel] [DEBUGGING DO-NOT-COMMIT 2/2]: debugging migration busy-loo


From: Uri Lublin
Subject: [Qemu-devel] [DEBUGGING DO-NOT-COMMIT 2/2]: debugging migration busy-looping
Date: Tue, 3 Feb 2009 13:04:23 +0200

Try it with/without fix for migration busy-loop, and migrate
a VM. (without the fix, patch fails just manually fix it).

To see the problem clearly try to suspend the destination while a migration
process is active (e.g. with CTRL-z and fg).

Signed-off-by: Uri Lublin <address@hidden>
---
 migration.c |    3 +++
 1 files changed, 3 insertions(+), 0 deletions(-)

diff --git a/migration.c b/migration.c
index e8bafa6..5db9c47 100644
--- a/migration.c
+++ b/migration.c
@@ -165,11 +165,14 @@ ssize_t migrate_fd_put_buffer(void *opaque, const void 
*data, size_t size)
 {
     FdMigrationState *s = opaque;
     ssize_t ret;
+    int n = 0;
 
     do {
         ret = s->write(s, data, size);
+       if (++n % 1000 == 0) printf("LOOP size=%lu n=%d\n", size, n);
     } while (ret == -1 && s->get_error(s) == EINTR);
 
+    if (n > 4) printf("OUT size=%lu n=%d\n", size, n);
     if (ret == -1)
         ret = -(s->get_error(s));
 
-- 
1.6.0.6





reply via email to

[Prev in Thread] Current Thread [Next in Thread]