From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1757034AbcLORcZ (ORCPT ); Thu, 15 Dec 2016 12:32:25 -0500 Received: from mail-ua0-f169.google.com ([209.85.217.169]:34542 "EHLO mail-ua0-f169.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751014AbcLORcX (ORCPT ); Thu, 15 Dec 2016 12:32:23 -0500 MIME-Version: 1.0 In-Reply-To: <20161215164240.904945084@linutronix.de> References: <20161215162648.061449202@linutronix.de> <20161215164240.904945084@linutronix.de> From: Andy Lutomirski Date: Thu, 15 Dec 2016 09:31:39 -0800 Message-ID: Subject: Re: [patch 3/3] x86/process: Optimize TIF_NOTSC switch To: Thomas Gleixner Cc: LKML , X86 ML , Peter Zijlstra , Kyle Huey , Andy Lutomirski Content-Type: text/plain; charset=UTF-8 Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On Thu, Dec 15, 2016 at 8:44 AM, Thomas Gleixner wrote: > Provide and use a toggle helper instead of doing it with a branch. > > x86_64: > 3662 8505 16 12183 2f97 Before > 3646 8505 16 12167 2f87 After > > i386: > 5906 9388 1804 17098 42ca Before > 5834 9324 1740 16898 4202 After > > Signed-off-by: Thomas Gleixner > --- > arch/x86/include/asm/tlbflush.h | 10 ++++++++++ > arch/x86/kernel/process.c | 22 ++++------------------ > 2 files changed, 14 insertions(+), 18 deletions(-) > > --- a/arch/x86/include/asm/tlbflush.h > +++ b/arch/x86/include/asm/tlbflush.h > @@ -110,6 +110,16 @@ static inline void cr4_clear_bits(unsign > } > } > > +static inline void cr4_toggle_bits(unsigned long mask) > +{ > + unsigned long cr4; > + > + cr4 = this_cpu_read(cpu_tlbstate.cr4); > + cr4 ^= mask; > + this_cpu_write(cpu_tlbstate.cr4, cr4); > + __write_cr4(cr4); > +} This scares me for the same reason as BTF, although this should at least be less fragile. But how about: static inline void cr4_set_bit_to(unsigned long mask, bool set) { ... cr4 &= ~mask; cr4 ^= (set << ilog2(mask)); ... } This should generate code that's nearly as good.