From patchwork Thu Mar 11 16:55:36 2010 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Juan Quintela X-Patchwork-Id: 47344 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from lists.gnu.org (lists.gnu.org [199.232.76.165]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (Client did not present a certificate) by ozlabs.org (Postfix) with ESMTPS id AD056B7D12 for ; Fri, 12 Mar 2010 04:14:11 +1100 (EST) Received: from localhost ([127.0.0.1]:46784 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1NplnV-0006sB-Jm for incoming@patchwork.ozlabs.org; Thu, 11 Mar 2010 12:03:45 -0500 Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1Nplg3-0004r1-IU for qemu-devel@nongnu.org; Thu, 11 Mar 2010 11:56:03 -0500 Received: from [199.232.76.173] (port=35544 helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1Nplg2-0004qf-Ug for qemu-devel@nongnu.org; Thu, 11 Mar 2010 11:56:02 -0500 Received: from Debian-exim by monty-python.gnu.org with spam-scanned (Exim 4.60) (envelope-from ) id 1Nplfz-0003oW-6R for qemu-devel@nongnu.org; Thu, 11 Mar 2010 11:56:01 -0500 Received: from mx1.redhat.com ([209.132.183.28]:54587) by monty-python.gnu.org with esmtp (Exim 4.60) (envelope-from ) id 1Nplfx-0003ng-3N for qemu-devel@nongnu.org; Thu, 11 Mar 2010 11:55:58 -0500 Received: from int-mx02.intmail.prod.int.phx2.redhat.com (int-mx02.intmail.prod.int.phx2.redhat.com [10.5.11.12]) by mx1.redhat.com (8.13.8/8.13.8) with ESMTP id o2BGtuWf027502 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=OK) for ; Thu, 11 Mar 2010 11:55:56 -0500 Received: from localhost.localdomain (ovpn01.gateway.prod.ext.phx2.redhat.com [10.5.9.1]) by int-mx02.intmail.prod.int.phx2.redhat.com (8.13.8/8.13.8) with ESMTP id o2BGtoNj002794; Thu, 11 Mar 2010 11:55:55 -0500 From: Juan Quintela To: qemu-devel@nongnu.org Date: Thu, 11 Mar 2010 17:55:36 +0100 Message-Id: In-Reply-To: References: In-Reply-To: References: X-Scanned-By: MIMEDefang 2.67 on 10.5.11.12 X-detected-operating-system: by monty-python.gnu.org: Genre and OS details not recognized. Subject: [Qemu-devel] [PATCH 02/16] migration: unix migration should obey autostart are the other ones X-BeenThere: qemu-devel@nongnu.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: qemu-devel.nongnu.org List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Sender: qemu-devel-bounces+incoming=patchwork.ozlabs.org@nongnu.org Errors-To: qemu-devel-bounces+incoming=patchwork.ozlabs.org@nongnu.org This was the only incoming migration without autostart check Signed-off-by: Juan Quintela --- migration-unix.c | 2 ++ 1 files changed, 2 insertions(+), 0 deletions(-) diff --git a/migration-unix.c b/migration-unix.c index ce59a2a..49de1b9 100644 --- a/migration-unix.c +++ b/migration-unix.c @@ -176,6 +176,8 @@ static void unix_accept_incoming_migration(void *opaque) qemu_announce_self(); DPRINTF("successfully loaded vm state\n"); + if (autostart) + vm_start(); out_fopen: qemu_fclose(f);