From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([208.118.235.92]:50951) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1TgXQP-0000SL-Tz for qemu-devel@nongnu.org; Thu, 06 Dec 2012 04:07:27 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1TgXQH-0007dp-Ih for qemu-devel@nongnu.org; Thu, 06 Dec 2012 04:07:21 -0500 Received: from cantor2.suse.de ([195.135.220.15]:47531 helo=mx2.suse.de) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1TgXQH-0007dL-BH for qemu-devel@nongnu.org; Thu, 06 Dec 2012 04:07:13 -0500 From: =?UTF-8?q?Andreas=20F=C3=A4rber?= Date: Thu, 6 Dec 2012 10:06:57 +0100 Message-Id: <1354784817-1340-14-git-send-email-afaerber@suse.de> In-Reply-To: <1354784817-1340-1-git-send-email-afaerber@suse.de> References: <1354784817-1340-1-git-send-email-afaerber@suse.de> MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: quoted-printable Subject: [Qemu-devel] [PATCH 13/13] target-i386: Postpone cpuid_level update to realize time List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org Cc: Igor Mammedov , =?UTF-8?q?Andreas=20F=C3=A4rber?= From: Igor Mammedov Delay capping cpuid_level to 7 to realize time so property setters for cpuid_7_0_ebx_features and "level" could be used in any order/time between x86_cpu_initfn() and x86_cpu_realize(). Signed-off-by: Igor Mammedov Reviewed-by: Eduardo Habkost Signed-off-by: Andreas F=C3=A4rber --- target-i386/cpu.c | 3 --- 1 Datei ge=C3=A4ndert, 3 Zeilen entfernt(-) diff --git a/target-i386/cpu.c b/target-i386/cpu.c index a631ae9..f56aa0d 100644 --- a/target-i386/cpu.c +++ b/target-i386/cpu.c @@ -1381,9 +1381,6 @@ static int cpu_x86_parse_featurestr(x86_def_t *x86_= cpu_def, char *features) if (kvm_check_features_against_host(x86_cpu_def) && enforce_cpui= d) goto error; } - if (x86_cpu_def->cpuid_7_0_ebx_features && x86_cpu_def->level < 7) { - x86_cpu_def->level =3D 7; - } return 0; =20 error: --=20 1.7.10.4