From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1KuXTs-0003Du-Ak for qemu-devel@nongnu.org; Mon, 27 Oct 2008 15:10:24 -0400 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1KuXTn-0003Be-6E for qemu-devel@nongnu.org; Mon, 27 Oct 2008 15:10:23 -0400 Received: from [199.232.76.173] (port=38876 helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1KuXTn-0003BY-1M for qemu-devel@nongnu.org; Mon, 27 Oct 2008 15:10:19 -0400 Received: from wx-out-0506.google.com ([66.249.82.231]:48038) by monty-python.gnu.org with esmtp (Exim 4.60) (envelope-from ) id 1KuXTm-0005Q7-KC for qemu-devel@nongnu.org; Mon, 27 Oct 2008 15:10:18 -0400 Received: by wx-out-0506.google.com with SMTP id h27so781613wxd.4 for ; Mon, 27 Oct 2008 12:10:16 -0700 (PDT) Message-ID: <761ea48b0810271210w2a4b0ebdof8b19575d4e057ac@mail.gmail.com> Date: Mon, 27 Oct 2008 20:10:16 +0100 From: "Laurent Desnogues" Subject: Re: [Qemu-devel] n270 SSSE3 flag problem In-Reply-To: MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Content-Disposition: inline References: Reply-To: qemu-devel@nongnu.org List-Id: qemu-devel.nongnu.org List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org On Mon, Oct 27, 2008 at 7:58 PM, Blue Swirl wrote: > > Sparse detected a problem with n270 CPU definition, I think > .ext_features = CPUID_EXT_MONITOR | > CPUID_EXT_SSE3 /* PNI */, CPUID_EXT_SSSE3, > /* Missing: CPUID_EXT_DSCPL | CPUID_EXT_EST | > * CPUID_EXT_TM2 | CPUID_EXT_XTPR */ > should be: > .ext_features = CPUID_EXT_MONITOR | > CPUID_EXT_SSE3 /* PNI */ | CPUID_EXT_SSSE3, > /* Missing: CPUID_EXT_DSCPL | CPUID_EXT_EST | > * CPUID_EXT_TM2 | CPUID_EXT_XTPR */ SSSE3 is indeed supported by n270 according to Intel documentation http://download.intel.com/design/processor/datashts/320032.pdf Laurent