From patchwork Tue Dec 1 12:51:33 2009 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Glauber Costa X-Patchwork-Id: 39906 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 0A1CFB7B93 for ; Wed, 2 Dec 2009 00:15:54 +1100 (EST) Received: from localhost ([127.0.0.1]:40994 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1NFSa6-000548-6G for incoming@patchwork.ozlabs.org; Tue, 01 Dec 2009 08:15:50 -0500 Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1NFSDC-0005c2-1x for qemu-devel@nongnu.org; Tue, 01 Dec 2009 07:52:10 -0500 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1NFSD5-0005ZQ-4A for qemu-devel@nongnu.org; Tue, 01 Dec 2009 07:52:07 -0500 Received: from [199.232.76.173] (port=35014 helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1NFSD4-0005Z6-SU for qemu-devel@nongnu.org; Tue, 01 Dec 2009 07:52:03 -0500 Received: from mx1.redhat.com ([209.132.183.28]:37194) by monty-python.gnu.org with esmtp (Exim 4.60) (envelope-from ) id 1NFSD4-0004sT-Iu for qemu-devel@nongnu.org; Tue, 01 Dec 2009 07:52:02 -0500 Received: from int-mx01.intmail.prod.int.phx2.redhat.com (int-mx01.intmail.prod.int.phx2.redhat.com [10.5.11.11]) by mx1.redhat.com (8.13.8/8.13.8) with ESMTP id nB1Cpvje020959 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=OK); Tue, 1 Dec 2009 07:51:57 -0500 Received: from localhost.localdomain (ovpn01.gateway.prod.ext.phx2.redhat.com [10.5.9.1]) by int-mx01.intmail.prod.int.phx2.redhat.com (8.13.8/8.13.8) with ESMTP id nB1CphO3002534; Tue, 1 Dec 2009 07:51:56 -0500 From: Glauber Costa To: qemu-devel@nongnu.org Date: Tue, 1 Dec 2009 10:51:33 -0200 Message-Id: <1259671897-22232-8-git-send-email-glommer@redhat.com> In-Reply-To: <1259671897-22232-7-git-send-email-glommer@redhat.com> References: <1259671897-22232-1-git-send-email-glommer@redhat.com> <1259671897-22232-2-git-send-email-glommer@redhat.com> <1259671897-22232-3-git-send-email-glommer@redhat.com> <1259671897-22232-4-git-send-email-glommer@redhat.com> <1259671897-22232-5-git-send-email-glommer@redhat.com> <1259671897-22232-6-git-send-email-glommer@redhat.com> <1259671897-22232-7-git-send-email-glommer@redhat.com> X-Scanned-By: MIMEDefang 2.67 on 10.5.11.11 X-detected-operating-system: by monty-python.gnu.org: Genre and OS details not recognized. Cc: aliguori@us.ibm.com, avi@redhat.com, agraf@suse.de Subject: [Qemu-devel] [PATCH v2 07/11] Don't call kvm cpu reset on initialization 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 All reset functions are called from the same place, and this was a leftover Signed-off-by: Glauber Costa --- kvm-all.c | 2 -- 1 files changed, 0 insertions(+), 2 deletions(-) diff --git a/kvm-all.c b/kvm-all.c index 318a4e6..ecd1102 100644 --- a/kvm-all.c +++ b/kvm-all.c @@ -204,8 +204,6 @@ int kvm_init_vcpu(CPUState *env) ret = kvm_arch_init_vcpu(env); if (ret == 0) { qemu_register_reset(kvm_reset_vcpu, env); - kvm_arch_reset_vcpu(env); - ret = kvm_arch_put_registers(env); } err: return ret;