Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1751410AbbLXDmg (ORCPT ); Wed, 23 Dec 2015 22:42:36 -0500 Received: from relay3-d.mail.gandi.net ([217.70.183.195]:54983 "EHLO relay3-d.mail.gandi.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1750710AbbLXDme (ORCPT ); Wed, 23 Dec 2015 22:42:34 -0500 User-Agent: K-9 Mail for Android In-Reply-To: <1450807333-22104-2-git-send-email-mathieu.desnoyers@efficios.com> References: <1450807333-22104-1-git-send-email-mathieu.desnoyers@efficios.com> <1450807333-22104-2-git-send-email-mathieu.desnoyers@efficios.com> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset=UTF-8 Subject: Re: [RFC PATCH v2 2/3] thread_local_abi: wire up x86 32/64 system call From: Josh Triplett Date: Wed, 23 Dec 2015 19:42:14 -0800 To: Mathieu Desnoyers , Paul Turner , Andrew Hunter , Thomas Gleixner , Michael Kerrisk , Russell King CC: linux-kernel@vger.kernel.org, Catalin Marinas , Will Deacon , Peter Zijlstra , Andy Lutomirski , Andi Kleen , Dave Watson , Chris Lameter , Ingo Molnar , Ben Maurer , Steven Rostedt , "Paul E. McKenney" , Linus Torvalds , Andrew Morton , linux-api@vger.kernel.org Message-ID: <1ECDFB6F-7C34-4BBB-A45F-E0D9A4B70737@joshtriplett.org> Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 2387 Lines: 55 On December 22, 2015 10:02:12 AM PST, Mathieu Desnoyers wrote: >Wire up the thread local ABI on x86 32/64. Call the >thread_local_abi_handle_notify_resume() function on return to >userspace if TIF_NOTIFY_RESUME thread flag is set. > >This provides an ABI improving the speed of a getcpu operation >on x86 by removing the need to perform a function call, "lsl" >instruction, or system call on the fast path. > >Signed-off-by: Mathieu Desnoyers >CC: Russell King >CC: Catalin Marinas >CC: Will Deacon >CC: Thomas Gleixner >CC: Paul Turner >CC: Andrew Hunter >CC: Peter Zijlstra >CC: Andy Lutomirski >CC: Andi Kleen >CC: Dave Watson >CC: Chris Lameter >CC: Ingo Molnar >CC: Ben Maurer >CC: Steven Rostedt >CC: "Paul E. McKenney" >CC: Josh Triplett >CC: Linus Torvalds >CC: Andrew Morton >CC: Thomas Gleixner >CC: linux-api@vger.kernel.org >--- > arch/x86/entry/common.c | 2 ++ > arch/x86/entry/syscalls/syscall_32.tbl | 1 + > arch/x86/entry/syscalls/syscall_64.tbl | 1 + > 3 files changed, 4 insertions(+) > >diff --git a/arch/x86/entry/common.c b/arch/x86/entry/common.c >index a89fdbc..222cacf 100644 >--- a/arch/x86/entry/common.c >+++ b/arch/x86/entry/common.c >@@ -249,6 +249,8 @@ static void exit_to_usermode_loop(struct pt_regs >*regs, u32 cached_flags) > if (cached_flags & _TIF_NOTIFY_RESUME) { > clear_thread_flag(TIF_NOTIFY_RESUME); > tracehook_notify_resume(regs); >+ if (thread_local_abi_active(current)) >+ thread_local_abi_handle_notify_resume(current); Every caller seems likely to duplicate this pattern; why not make the call itself a static inline containing this check and call (or no-op if compiled out)? -- 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/