From patchwork Sun Jan 8 23:52:25 2012 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Alexander Graf X-Patchwork-Id: 134952 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from lists.gnu.org (lists.gnu.org [140.186.70.17]) (using TLSv1 with cipher AES256-SHA (256/256 bits)) (Client did not present a certificate) by ozlabs.org (Postfix) with ESMTPS id 93194B6F74 for ; Mon, 9 Jan 2012 10:51:40 +1100 (EST) Received: from localhost ([::1]:58044 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Rk2WX-00067T-2w for incoming@patchwork.ozlabs.org; Sun, 08 Jan 2012 18:51:37 -0500 Received: from eggs.gnu.org ([140.186.70.92]:35799) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Rk2WR-00067O-N2 for qemu-devel@nongnu.org; Sun, 08 Jan 2012 18:51:32 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1Rk2WQ-0002sE-PA for qemu-devel@nongnu.org; Sun, 08 Jan 2012 18:51:31 -0500 Received: from cantor2.suse.de ([195.135.220.15]:44830 helo=mx2.suse.de) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Rk2WQ-0002sA-Jm for qemu-devel@nongnu.org; Sun, 08 Jan 2012 18:51:30 -0500 Received: from relay2.suse.de (nat.nue.novell.com [195.135.221.2]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by mx2.suse.de (Postfix) with ESMTP id 0E1638FD0F; Mon, 9 Jan 2012 00:51:30 +0100 (CET) From: Alexander Graf To: "qemu-devel@nongnu.org Developers" Date: Mon, 9 Jan 2012 00:52:25 +0100 Message-Id: <1326066745-8170-1-git-send-email-agraf@suse.de> X-Mailer: git-send-email 1.7.3.4 X-detected-operating-system: by eggs.gnu.org: GNU/Linux 2.4-2.6 X-Received-From: 195.135.220.15 Cc: Avi Kivity , kvm list Subject: [Qemu-devel] [PATCH] PC: pc-0.15 is not the default X-BeenThere: qemu-devel@nongnu.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: qemu-devel-bounces+incoming=patchwork.ozlabs.org@nongnu.org Sender: qemu-devel-bounces+incoming=patchwork.ozlabs.org@nongnu.org During creation of the pc-0.15 machine type something must have gone wrong and the is_default field was still set, even though our default machine is 1.0. Remove that field. Signed-off-by: Alexander Graf diff --git a/hw/pc_piix.c b/hw/pc_piix.c index b70431f..00f525e 100644 --- a/hw/pc_piix.c +++ b/hw/pc_piix.c @@ -328,7 +328,6 @@ static QEMUMachine pc_machine_v0_15 = { .desc = "Standard PC", .init = pc_init_pci, .max_cpus = 255, - .is_default = 1, }; static QEMUMachine pc_machine_v0_14 = {