From patchwork Wed Dec 12 22:22:25 2012 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Eduardo Habkost X-Patchwork-Id: 205668 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from lists.gnu.org (lists.gnu.org [208.118.235.17]) (using TLSv1 with cipher AES256-SHA (256/256 bits)) (Client did not present a certificate) by ozlabs.org (Postfix) with ESMTPS id 14F502C0087 for ; Thu, 13 Dec 2012 09:21:34 +1100 (EST) Received: from localhost ([::1]:51976 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1TiugG-0002db-1M for incoming@patchwork.ozlabs.org; Wed, 12 Dec 2012 17:21:32 -0500 Received: from eggs.gnu.org ([208.118.235.92]:35785) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Tiufx-0002Xg-R5 for qemu-devel@nongnu.org; Wed, 12 Dec 2012 17:21:15 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1Tiufu-0003FO-Sl for qemu-devel@nongnu.org; Wed, 12 Dec 2012 17:21:13 -0500 Received: from mx1.redhat.com ([209.132.183.28]:62146) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Tiufu-0003F1-LG for qemu-devel@nongnu.org; Wed, 12 Dec 2012 17:21:10 -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.14.4/8.14.4) with ESMTP id qBCML9wo022995 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=OK); Wed, 12 Dec 2012 17:21:09 -0500 Received: from blackpad.lan.raisama.net (vpn1-6-59.gru2.redhat.com [10.97.6.59]) by int-mx02.intmail.prod.int.phx2.redhat.com (8.13.8/8.13.8) with ESMTP id qBCML95a027594; Wed, 12 Dec 2012 17:21:09 -0500 Received: by blackpad.lan.raisama.net (Postfix, from userid 500) id 70E1D20114B; Wed, 12 Dec 2012 20:22:45 -0200 (BRST) From: Eduardo Habkost To: qemu-devel@nongnu.org Date: Wed, 12 Dec 2012 20:22:25 -0200 Message-Id: <1355350946-28010-3-git-send-email-ehabkost@redhat.com> In-Reply-To: <1355350946-28010-1-git-send-email-ehabkost@redhat.com> References: <1355350946-28010-1-git-send-email-ehabkost@redhat.com> X-Scanned-By: MIMEDefang 2.67 on 10.5.11.12 X-detected-operating-system: by eggs.gnu.org: GNU/Linux 3.x X-Received-From: 209.132.183.28 Cc: Igor Mammedov , =?UTF-8?q?Andreas=20F=C3=A4rber?= Subject: [Qemu-devel] [PATCH 2/3] target-i386/cpu.c: coding style fix 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 Signed-off-by: Eduardo Habkost --- target-i386/cpu.c | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/target-i386/cpu.c b/target-i386/cpu.c index a2ee8bb..25f7500 100644 --- a/target-i386/cpu.c +++ b/target-i386/cpu.c @@ -1865,10 +1865,11 @@ void cpu_x86_cpuid(CPUX86State *env, uint32_t index, uint32_t count, /* XXX: The physical address space is limited to 42 bits in exec.c. */ *eax = 0x00003028; /* 48 bits virtual, 40 bits physical */ } else { - if (env->cpuid_features & CPUID_PSE36) + if (env->cpuid_features & CPUID_PSE36) { *eax = 0x00000024; /* 36 bits physical */ - else + } else { *eax = 0x00000020; /* 32 bits physical */ + } } *ebx = 0; *ecx = 0;