From patchwork Tue Dec 18 16:29:22 2012 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Eduardo Habkost X-Patchwork-Id: 207152 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 1AAE52C0087 for ; Wed, 19 Dec 2012 03:28:15 +1100 (EST) Received: from localhost ([::1]:37881 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Tl01d-0005Pw-6z for incoming@patchwork.ozlabs.org; Tue, 18 Dec 2012 11:28:13 -0500 Received: from eggs.gnu.org ([208.118.235.92]:42219) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Tl01L-0005CV-5w for qemu-devel@nongnu.org; Tue, 18 Dec 2012 11:27:59 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1Tl01J-0006FD-QU for qemu-devel@nongnu.org; Tue, 18 Dec 2012 11:27:55 -0500 Received: from mx1.redhat.com ([209.132.183.28]:65142) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Tl01J-0006Es-It for qemu-devel@nongnu.org; Tue, 18 Dec 2012 11:27:53 -0500 Received: from int-mx10.intmail.prod.int.phx2.redhat.com (int-mx10.intmail.prod.int.phx2.redhat.com [10.5.11.23]) by mx1.redhat.com (8.14.4/8.14.4) with ESMTP id qBIGRqkJ026205 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=OK); Tue, 18 Dec 2012 11:27:52 -0500 Received: from blackpad.lan.raisama.net (vpn1-6-125.gru2.redhat.com [10.97.6.125]) by int-mx10.intmail.prod.int.phx2.redhat.com (8.14.4/8.14.4) with ESMTP id qBIGRp1w021873; Tue, 18 Dec 2012 11:27:52 -0500 Received: by blackpad.lan.raisama.net (Postfix, from userid 500) id 4E2CC20114B; Tue, 18 Dec 2012 14:29:24 -0200 (BRST) From: Eduardo Habkost To: qemu-devel@nongnu.org Date: Tue, 18 Dec 2012 14:29:22 -0200 Message-Id: <1355848163-29846-3-git-send-email-ehabkost@redhat.com> In-Reply-To: <1355848163-29846-1-git-send-email-ehabkost@redhat.com> References: <1355848163-29846-1-git-send-email-ehabkost@redhat.com> X-Scanned-By: MIMEDefang 2.68 on 10.5.11.23 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: remove last TAB character from the source 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 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/target-i386/cpu.c b/target-i386/cpu.c index fe27def..6bfc8cc 100644 --- a/target-i386/cpu.c +++ b/target-i386/cpu.c @@ -1787,7 +1787,7 @@ void cpu_x86_cpuid(CPUX86State *env, uint32_t index, uint32_t count, if (env->cpuid_ext2_features & CPUID_EXT2_LM) { /* 64 bit processor */ /* XXX: The physical address space is limited to 42 bits in exec.c. */ - *eax = 0x00003028; /* 48 bits virtual, 40 bits physical */ + *eax = 0x00003028; /* 48 bits virtual, 40 bits physical */ } else { if (env->cpuid_features & CPUID_PSE36) { *eax = 0x00000024; /* 36 bits physical */