From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1753095AbbHaXqy (ORCPT ); Mon, 31 Aug 2015 19:46:54 -0400 Received: from www.sr71.net ([198.145.64.142]:44955 "EHLO blackbird.sr71.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1752344AbbHaXqx (ORCPT ); Mon, 31 Aug 2015 19:46:53 -0400 Subject: Re: [PATCH 05/15] x86, fpu: XSAVE macro renames Cc: dave.hansen@linux.intel.com, mingo@redhat.com, x86@kernel.org, bp@alien8.de, fenghua.yu@intel.com, tim.c.chen@linux.intel.com, linux-kernel@vger.kernel.org References: <20150831222051.3D1897BF@viggo.jf.intel.com> <20150831222053.E5FFF0E2@viggo.jf.intel.com> From: Dave Hansen Message-ID: <55E4E769.8070904@sr71.net> Date: Mon, 31 Aug 2015 16:46:49 -0700 User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:38.0) Gecko/20100101 Thunderbird/38.2.0 MIME-Version: 1.0 In-Reply-To: <20150831222053.E5FFF0E2@viggo.jf.intel.com> Content-Type: text/plain; charset=windows-1252 Content-Transfer-Encoding: 7bit To: unlisted-recipients:; (no To-header on input) Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On 08/31/2015 03:20 PM, Dave Hansen wrote: > - if (!cpu_has_xfeatures(XSTATE_SSE | XSTATE_YMM, &feature_name)) { > + if (!cpu_has_xfeatures(XFEATURE_MASK_SSE | XFEATURE_MASK_YMM, > + &feature_name)) { > pr_info("CPU feature '%s' is not supported.\n", feature_name); > return -ENODEV; > } I posted theses a bit too quickly. 0day found one of these spots that I missed renaming XSTATE_*. Review of the rest of the set would be appreciated, but I'll need to post at least one more version before they can get applied anywhere.