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 vger.kernel.org (vger.kernel.org [23.128.96.18]) by smtp.lore.kernel.org (Postfix) with ESMTP id 042CDC4332F for ; Wed, 9 Nov 2022 01:41:34 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S230131AbiKIBlc (ORCPT ); Tue, 8 Nov 2022 20:41:32 -0500 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:35514 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S230064AbiKIBkC (ORCPT ); Tue, 8 Nov 2022 20:40:02 -0500 Received: from dfw.source.kernel.org (dfw.source.kernel.org [139.178.84.217]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id 9C0F467F58 for ; Tue, 8 Nov 2022 17:39:18 -0800 (PST) Received: from smtp.kernel.org (relay.kernel.org [52.25.139.140]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by dfw.source.kernel.org (Postfix) with ESMTPS id 367EB61803 for ; Wed, 9 Nov 2022 01:39:18 +0000 (UTC) Received: by smtp.kernel.org (Postfix) with ESMTPSA id 8D004C433D6; Wed, 9 Nov 2022 01:39:17 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=linux-foundation.org; s=korg; t=1667957957; bh=B9dvv2YEyZOkB/3rDvS2rmJYbEbhl2WUqlQxfD2tBFc=; h=Date:To:From:Subject:From; b=fhBKdPRJ/Dl+Hf7UKdTytdRr1BBirTY5Fyda4+AHvYrbGmbOco+2dkCaY2+aoBbul d+XGcVOqQWhgwcn2QIW1GMgY47KOmF349460+Pts77PFOv7QHa0Bb+wsonxTI8Nd2w Ck1DacKlsW/R5Ix87bfTawf9n0iENUvaTQ4Y7iG0= Date: Tue, 08 Nov 2022 17:39:17 -0800 To: mm-commits@vger.kernel.org, ubizjak@gmail.com, ndesaulniers@google.com, nathan@kernel.org, memxor@gmail.com, keescook@chromium.org, glider@google.com, elver@google.com, ashimida@linux.alibaba.com, arnd@arndb.de, andreyknvl@gmail.com, ojeda@kernel.org, akpm@linux-foundation.org From: Andrew Morton Subject: [merged mm-stable] compiler-gcc-remove-attribute-support-check-for-__no_sanitize_thread__.patch removed from -mm tree Message-Id: <20221109013917.8D004C433D6@smtp.kernel.org> Precedence: bulk Reply-To: linux-kernel@vger.kernel.org List-ID: X-Mailing-List: mm-commits@vger.kernel.org The quilt patch titled Subject: compiler-gcc: remove attribute support check for `__no_sanitize_thread__` has been removed from the -mm tree. Its filename was compiler-gcc-remove-attribute-support-check-for-__no_sanitize_thread__.patch This patch was dropped because it was merged into the mm-stable branch of git://git.kernel.org/pub/scm/linux/kernel/git/akpm/mm ------------------------------------------------------ From: Miguel Ojeda Subject: compiler-gcc: remove attribute support check for `__no_sanitize_thread__` Date: Fri, 21 Oct 2022 13:59:54 +0200 The attribute was added in GCC 5.1, which matches the minimum GCC version supported by the kernel. Therefore, remove the check. Link: https://godbolt.org/z/vbxKejxbx Link: https://lkml.kernel.org/r/20221021115956.9947-3-ojeda@kernel.org Signed-off-by: Miguel Ojeda Acked-by: Marco Elver Reviewed-by: Nathan Chancellor Cc: Alexander Potapenko Cc: Andrey Konovalov Cc: Arnd Bergmann Cc: Dan Li Cc: Kees Cook Cc: Kumar Kartikeya Dwivedi Cc: Nick Desaulniers Cc: Uros Bizjak Signed-off-by: Andrew Morton --- include/linux/compiler-gcc.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) --- a/include/linux/compiler-gcc.h~compiler-gcc-remove-attribute-support-check-for-__no_sanitize_thread__ +++ a/include/linux/compiler-gcc.h @@ -84,7 +84,7 @@ #define __no_sanitize_address __attribute__((__no_sanitize_address__)) -#if defined(__SANITIZE_THREAD__) && __has_attribute(__no_sanitize_thread__) +#if defined(__SANITIZE_THREAD__) #define __no_sanitize_thread __attribute__((__no_sanitize_thread__)) #else #define __no_sanitize_thread _ Patches currently in -mm which might be from ojeda@kernel.org are