From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1KuXnU-0007C8-Oa for qemu-devel@nongnu.org; Mon, 27 Oct 2008 15:30:40 -0400 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1KuXnQ-0007Bi-8G for qemu-devel@nongnu.org; Mon, 27 Oct 2008 15:30:39 -0400 Received: from [199.232.76.173] (port=51000 helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1KuXnP-0007BX-SC for qemu-devel@nongnu.org; Mon, 27 Oct 2008 15:30:36 -0400 Received: from rv-out-0708.google.com ([209.85.198.247]:23848) by monty-python.gnu.org with esmtp (Exim 4.60) (envelope-from ) id 1KuXnO-0004fc-U2 for qemu-devel@nongnu.org; Mon, 27 Oct 2008 15:30:35 -0400 Received: by rv-out-0708.google.com with SMTP id f25so2035103rvb.22 for ; Mon, 27 Oct 2008 12:30:32 -0700 (PDT) Message-ID: Date: Mon, 27 Oct 2008 20:30:32 +0100 From: "andrzej zaborowski" In-Reply-To: MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 7bit Content-Disposition: inline References: Subject: [Qemu-devel] Re: n270 SSSE3 flag problem Reply-To: qemu-devel@nongnu.org List-Id: qemu-devel.nongnu.org List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: Blue Swirl Cc: "qemu-devel@nongnu.org" 2008/10/27 Blue Swirl : > Hi, > > 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 */ Thanks, good catch! I had only tested n270 in user mode, that's why it didn't blow up. Cheers