Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S933197AbbGUQMZ (ORCPT ); Tue, 21 Jul 2015 12:12:25 -0400 Received: from casper.infradead.org ([85.118.1.10]:42285 "EHLO casper.infradead.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1753084AbbGUQMY (ORCPT ); Tue, 21 Jul 2015 12:12:24 -0400 Date: Tue, 21 Jul 2015 18:12:15 +0200 From: Peter Zijlstra To: Andy Lutomirski Cc: Thomas Gleixner , Jason Baron , Mikulas Patocka , Paul Mackerras , Arnaldo Carvalho de Melo , Kees Cook , Andrea Arcangeli , Vince Weaver , "hillf.zj" , Valdis Kletnieks , "linux-kernel@vger.kernel.org" , Borislav Petkov , Steven Rostedt Subject: Re: Kernel broken on processors without performance counters Message-ID: <20150721161215.GU19282@twins.programming.kicks-ass.net> References: <20150708160750.GQ19282@twins.programming.kicks-ass.net> <559D8250.8000707@gmail.com> <20150710141359.GJ19282@twins.programming.kicks-ass.net> <20150721082107.GE18673@twins.programming.kicks-ass.net> <20150721154959.GS19282@twins.programming.kicks-ass.net> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: User-Agent: Mutt/1.5.21 (2012-12-30) Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 1319 Lines: 51 On Tue, Jul 21, 2015 at 08:51:51AM -0700, Andy Lutomirski wrote: > To clarify my (mis-)understanding: > > There are two degrees of freedom in a static_key. They can start out > true or false, and they can be unlikely or likely. Are those two > degrees of freedom in fact tied together? Yes, if you start out false, you must be unlikely. If you start out true, you must be likely. We could maybe try and untangle that if there really is a good use case, but this is the current state. The whole reason this happened is because 'false' is like: ... 1: ... label: jmp 1b Where the code if out-of-line by default. The enable will rewrite the with a jmp label. Of course, if you have code that is on by default, you don't want to pay that out-of-line penalty all the time. So the on by default generates: ... label: ... Where, if we disable, we replace the nop with jmp label. Or rather, that all is the intent, GCC doesn't actually honour hot/cold attributes on asm labels very well last time I tried. -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/