From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1LqY63-0006cr-Kj for qemu-devel@nongnu.org; Sun, 05 Apr 2009 15:33:35 -0400 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1LqY62-0006bw-NO for qemu-devel@nongnu.org; Sun, 05 Apr 2009 15:33:35 -0400 Received: from [199.232.76.173] (port=54671 helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1LqY62-0006bj-I6 for qemu-devel@nongnu.org; Sun, 05 Apr 2009 15:33:34 -0400 Received: from savannah.gnu.org ([199.232.41.3]:40705 helo=sv.gnu.org) by monty-python.gnu.org with esmtps (TLS-1.0:RSA_AES_256_CBC_SHA1:32) (Exim 4.60) (envelope-from ) id 1LqY62-0000VK-AQ for qemu-devel@nongnu.org; Sun, 05 Apr 2009 15:33:34 -0400 Received: from cvs.savannah.gnu.org ([199.232.41.69]) by sv.gnu.org with esmtp (Exim 4.69) (envelope-from ) id 1LqY61-0000zo-Rj for qemu-devel@nongnu.org; Sun, 05 Apr 2009 19:33:33 +0000 Received: from aliguori by cvs.savannah.gnu.org with local (Exim 4.69) (envelope-from ) id 1LqY61-0000zh-Ic for qemu-devel@nongnu.org; Sun, 05 Apr 2009 19:33:33 +0000 MIME-Version: 1.0 Errors-To: aliguori Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit From: Anthony Liguori Message-Id: Date: Sun, 05 Apr 2009 19:33:33 +0000 Subject: [Qemu-devel] [7000] propagate error on failed completion (Glauber Costa) Reply-To: qemu-devel@nongnu.org List-Id: qemu-devel.nongnu.org List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org Revision: 7000 http://svn.sv.gnu.org/viewvc/?view=rev&root=qemu&revision=7000 Author: aliguori Date: 2009-04-05 19:33:33 +0000 (Sun, 05 Apr 2009) Log Message: ----------- propagate error on failed completion (Glauber Costa) migrate_fd_put_ready() calls qemu_savevm_state_complete(), but the later can fail. If it happens, re-start the vm and propagate the error up Based on a patch by Yaniv Kamay Signed-off-by: Glauber Costa Signed-off-by: Anthony Liguori Modified Paths: -------------- branches/stable_0_10/migration.c Modified: branches/stable_0_10/migration.c =================================================================== --- branches/stable_0_10/migration.c 2009-04-05 19:30:55 UTC (rev 6999) +++ branches/stable_0_10/migration.c 2009-04-05 19:33:33 UTC (rev 7000) @@ -212,13 +212,19 @@ dprintf("iterate\n"); if (qemu_savevm_state_iterate(s->file) == 1) { + int state; dprintf("done iterating\n"); vm_stop(0); bdrv_flush_all(); - qemu_savevm_state_complete(s->file); - s->state = MIG_STATE_COMPLETED; + if ((qemu_savevm_state_complete(s->file)) < 0) { + vm_start(); + state = MIG_STATE_ERROR; + } else { + state = MIG_STATE_COMPLETED; + } migrate_fd_cleanup(s); + s->state = state; } }