From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1KuXIM-0000Y8-9Y for qemu-devel@nongnu.org; Mon, 27 Oct 2008 14:58:30 -0400 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1KuXIK-0000We-FI for qemu-devel@nongnu.org; Mon, 27 Oct 2008 14:58:29 -0400 Received: from [199.232.76.173] (port=44492 helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1KuXIJ-0000WM-Fg for qemu-devel@nongnu.org; Mon, 27 Oct 2008 14:58:27 -0400 Received: from wx-out-0506.google.com ([66.249.82.238]:45244) by monty-python.gnu.org with esmtp (Exim 4.60) (envelope-from ) id 1KuXII-0007wE-Rq for qemu-devel@nongnu.org; Mon, 27 Oct 2008 14:58:27 -0400 Received: by wx-out-0506.google.com with SMTP id h27so779823wxd.4 for ; Mon, 27 Oct 2008 11:58:23 -0700 (PDT) Message-ID: Date: Mon, 27 Oct 2008 20:58:22 +0200 From: "Blue Swirl" MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 7bit Content-Disposition: inline Subject: [Qemu-devel] 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: andrzej zaborowski , "qemu-devel@nongnu.org" 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 */