Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1752826AbeAFTWz (ORCPT + 1 other); Sat, 6 Jan 2018 14:22:55 -0500 Received: from mga06.intel.com ([134.134.136.31]:47592 "EHLO mga06.intel.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1752231AbeAFTWy (ORCPT ); Sat, 6 Jan 2018 14:22:54 -0500 X-Amp-Result: SKIPPED(no attachment in message) X-Amp-File-Uploaded: False X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.46,323,1511856000"; d="scan'208";a="24949160" Subject: Re: [PATCH v2 4/8] x86/spec_ctrl: Add sysctl knobs to enable/disable SPEC_CTRL feature To: "Van De Ven, Arjan" , Konrad Rzeszutek Wilk , Tim Chen References: <20180106144110.GA2592@localhost.localdomain> <742ed1d9-7210-8443-0373-5af74f193ab9@intel.com> <0575AF4FD06DD142AD198903C74E1CC87A56C6FE@ORSMSX103.amr.corp.intel.com> Cc: Thomas Gleixner , Andy Lutomirski , Linus Torvalds , Greg KH , Andrea Arcangeli , Andi Kleen , David Woodhouse , "linux-kernel@vger.kernel.org" From: Dave Hansen Message-ID: Date: Sat, 6 Jan 2018 11:22:52 -0800 User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:52.0) Gecko/20100101 Thunderbird/52.5.0 MIME-Version: 1.0 In-Reply-To: <0575AF4FD06DD142AD198903C74E1CC87A56C6FE@ORSMSX103.amr.corp.intel.com> Content-Type: text/plain; charset=utf-8 Content-Language: en-US Content-Transfer-Encoding: 7bit Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Return-Path: On 01/06/2018 09:41 AM, Van De Ven, Arjan wrote: >>>> .macro DISABLE_IBRS >>>> - ALTERNATIVE "jmp .Lskip_\@", "", X86_FEATURE_SPEC_CTRL >>>> + testl $1, dynamic_ibrs >>> On every system call we end up hammering on this 'dynamic_ibrs' >>> variable. And it looks like it can be flipped via the IPI mechanism. >>> >>> Would it make sense for this to be per-cpu? >> >> It's probably better to either just make it __read_mostly or get the >> static branches that folks were suggesting actually working. > > I still wonder if this isn't just better as a boot command line It's simpler that way. But, ideally, we want to make it runtime switchable to match the implementation in the distros.