From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mail.kernel.org ([198.145.29.99]:36500 "EHLO mail.kernel.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1754165AbeFOE43 (ORCPT ); Fri, 15 Jun 2018 00:56:29 -0400 Date: Fri, 15 Jun 2018 06:56:04 +0200 From: 'Greg Kroah-Hartman' To: Daniel Sangorrin Cc: linux-kernel@vger.kernel.org, stable@vger.kernel.org, 'Andy Lutomirski' , 'Rik van Riel' , 'Borislav Petkov' , 'Brian Gerst' , 'Dave Hansen' , 'Denys Vlasenko' , 'Fenghua Yu' , "'H. Peter Anvin'" , 'Josh Poimboeuf' , 'Linus Torvalds' , 'Oleg Nesterov' , 'Peter Zijlstra' , 'Quentin Casasnovas' , 'Thomas Gleixner' , pbonzini@redhat.com, 'Ingo Molnar' Subject: Re: [PATCH 4.4 10/24] x86/fpu: Hard-disable lazy FPU mode Message-ID: <20180615045604.GA8664@kroah.com> References: <20180614132724.483802160@linuxfoundation.org> <20180614132724.905032027@linuxfoundation.org> <000c01d40460$bfc97710$3f5c6530$@toshiba.co.jp> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <000c01d40460$bfc97710$3f5c6530$@toshiba.co.jp> Sender: stable-owner@vger.kernel.org List-ID: On Fri, Jun 15, 2018 at 01:24:27PM +0900, Daniel Sangorrin wrote: > Hi Greg, > > > /* Intel-defined CPU features, CPUID level 0x00000001 (ecx), word 4 */ > > --- a/arch/x86/include/asm/fpu/internal.h > > +++ b/arch/x86/include/asm/fpu/internal.h > > @@ -58,7 +58,7 @@ extern u64 fpu__get_supported_xfeatures_ > > */ > > static __always_inline __pure bool use_eager_fpu(void) > > { > > - return static_cpu_has_safe(X86_FEATURE_EAGER_FPU); > > + return true; > > } > > Since this function returns always true then we can remove the code depending on lazy FPU mode. > Actually this has already been done in "x86/fpu: Remove use_eager_fpu()" > Ref: https://patchwork.kernel.org/patch/9365883/ > > > static void __init fpu__init_parse_early_param(void) > > { > > - if (cmdline_find_option_bool(boot_command_line, "eagerfpu=off")) { > > - eagerfpu = DISABLE; > > - fpu__clear_eager_fpu_features(); > > - } > > Since this patch removes the kernel boot parameter "eagerfpu", maybe we should remove it from the Documentation. > This has also been done by commit "x86/fpu: Finish excising 'eagerfpu'" > Ref: https://patchwork.kernel.org/patch/9380673/ > > I will try backporting those patches unless anyone has any objections. What are the git commit ids of those patches in Linus's tree? No need to point to patchwork links, I don't use that tool. thanks, greg k-h