From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org Received: from mail.kernel.org (mail.kernel.org [198.145.29.99]) by smtp.lore.kernel.org (Postfix) with ESMTP id 7AC31C433F5 for ; Tue, 26 Oct 2021 20:26:49 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by mail.kernel.org (Postfix) with ESMTP id 53FC16103B for ; Tue, 26 Oct 2021 20:26:49 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S239170AbhJZU3I (ORCPT ); Tue, 26 Oct 2021 16:29:08 -0400 Received: from brightrain.aerifal.cx ([216.12.86.13]:39554 "EHLO brightrain.aerifal.cx" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S239167AbhJZU2z (ORCPT ); Tue, 26 Oct 2021 16:28:55 -0400 Date: Tue, 26 Oct 2021 16:26:27 -0400 From: Rich Felker To: Arnd Bergmann Cc: Peter Zijlstra , Thomas Gleixner , Ingo Molnar , Arnd Bergmann , Vineet Gupta , Russell King , Catalin Marinas , Will Deacon , Guo Ren , Geert Uytterhoeven , Paul Walmsley , Palmer Dabbelt , Albert Ou , Heiko Carstens , Vasily Gorbik , Christian Borntraeger , Alexander Gordeev , Yoshinori Sato , Jeff Dike , Richard Weinberger , Anton Ivanov , Chris Zankel , Max Filippov , Darren Hart , Davidlohr Bueso , =?utf-8?B?QW5kcsOp?= Almeida , Andrew Morton , Mike Rapoport , Mark Rutland , Anshuman Khandual , linux-snps-arc@lists.infradead.org, linux-kernel@vger.kernel.org, linux-arm-kernel@lists.infradead.org, linux-csky@vger.kernel.org, linux-m68k@lists.linux-m68k.org, linux-riscv@lists.infradead.org, linux-s390@vger.kernel.org, linux-sh@vger.kernel.org, linux-um@lists.infradead.org, linux-xtensa@linux-xtensa.org Subject: Re: [PATCH 2/2] futex: remove futex_cmpxchg detection Message-ID: <20211026202625.GU7074@brightrain.aerifal.cx> References: <20211026100432.1730393-1-arnd@kernel.org> <20211026100432.1730393-2-arnd@kernel.org> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20211026100432.1730393-2-arnd@kernel.org> User-Agent: Mutt/1.5.21 (2010-09-15) Precedence: bulk List-ID: X-Mailing-List: linux-sh@vger.kernel.org On Tue, Oct 26, 2021 at 12:03:48PM +0200, Arnd Bergmann wrote: > From: Arnd Bergmann > > Now that all architectures have a working futex implementation > in any configuration, remove the runtime detection code. > > Signed-off-by: Arnd Bergmann > --- > arch/arc/Kconfig | 1 - > arch/arm/Kconfig | 1 - > arch/arm64/Kconfig | 1 - > arch/csky/Kconfig | 1 - > arch/m68k/Kconfig | 1 - > arch/riscv/Kconfig | 1 - > arch/s390/Kconfig | 1 - > arch/sh/Kconfig | 1 - > arch/um/Kconfig | 1 - > arch/um/kernel/skas/uaccess.c | 1 - > arch/xtensa/Kconfig | 1 - > init/Kconfig | 8 -------- > kernel/futex/core.c | 35 ----------------------------------- > kernel/futex/futex.h | 6 ------ > kernel/futex/syscalls.c | 22 ---------------------- > 15 files changed, 82 deletions(-) Acked-by: Rich Felker