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 X-Spam-Level: X-Spam-Status: No, score=-5.6 required=3.0 tests=BAYES_00,DKIMWL_WL_HIGH, DKIM_SIGNED,DKIM_VALID,DKIM_VALID_AU,MAILING_LIST_MULTI,SPF_HELO_NONE, SPF_PASS,USER_AGENT_SANE_1 autolearn=no autolearn_force=no version=3.4.0 Received: from mail.kernel.org (mail.kernel.org [198.145.29.99]) by smtp.lore.kernel.org (Postfix) with ESMTP id D0858C433E1 for ; Fri, 21 Aug 2020 16:02:50 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by mail.kernel.org (Postfix) with ESMTP id A1B06207BB for ; Fri, 21 Aug 2020 16:02:50 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=default; t=1598025770; bh=bVxlYauOODt5UvuiL4qlg3/4fXBWfUekdVF6gpHL2NA=; h=Date:From:To:Cc:Subject:References:In-Reply-To:List-ID:From; b=oPkcfObtzneOXb5X8TkqH6+r0O7MwFHTmOjYDozuhV9v+ZOaOo6XoQWBS39+k7ihn G3OXaKccNjABHffAURVsns0b7Isizp++kvEBh6vco2rPjDhH6lRhwfEXB+Om2dVpub e6acvkOyZbBbylu6j67SQDTPigIlvzEhfe8fRs9I= Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1725935AbgHUQCt (ORCPT ); Fri, 21 Aug 2020 12:02:49 -0400 Received: from mail.kernel.org ([198.145.29.99]:35254 "EHLO mail.kernel.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1725866AbgHUQCo (ORCPT ); Fri, 21 Aug 2020 12:02:44 -0400 Received: from willie-the-truck (236.31.169.217.in-addr.arpa [217.169.31.236]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mail.kernel.org (Postfix) with ESMTPSA id C1045207BB; Fri, 21 Aug 2020 16:02:40 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=default; t=1598025764; bh=bVxlYauOODt5UvuiL4qlg3/4fXBWfUekdVF6gpHL2NA=; h=Date:From:To:Cc:Subject:References:In-Reply-To:From; b=qtiOLcTNtgV8t5B/UrNYZ67LjVkjtj+tvsE9RImkxtdHUkBLASZC84M+1nS5+sgV8 12FhkH4Yc2r9MBR7hEzYmWd/5CxFkvZFFSXaR1E+wKWERtuGzDJFGqL94UTpIKmSud HqMJEU+DetpWiJgA/zKbNbLhRsa4BmgcgcDUJ6xU= Date: Fri, 21 Aug 2020 17:02:38 +0100 From: Will Deacon To: Kees Cook Cc: Catalin Marinas , Mark Rutland , Ard Biesheuvel , Peter Collingbourne , James Morse , Borislav Petkov , Thomas Gleixner , Ingo Molnar , Russell King , Masahiro Yamada , Arvind Sankar , Nick Desaulniers , Nathan Chancellor , Arnd Bergmann , x86@kernel.org, clang-built-linux@googlegroups.com, linux-arch@vger.kernel.org, linux-efi@vger.kernel.org, linux-arm-kernel@lists.infradead.org, linux-kernel@vger.kernel.org Subject: Re: [PATCH v4 00/17] Warn on orphan section placement Message-ID: <20200821160237.GB21517@willie-the-truck> References: <20200629061840.4065483-1-keescook@chromium.org> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20200629061840.4065483-1-keescook@chromium.org> User-Agent: Mutt/1.10.1 (2018-07-13) Sender: linux-efi-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-efi@vger.kernel.org Hi Kees, On Sun, Jun 28, 2020 at 11:18:23PM -0700, Kees Cook wrote: > v4: > - explicitly add .ARM.attributes > - split up arm64 changes into separate patches > - split up arm changes into separate patches > - work around Clang section generation bug in -mbranch-protection > - work around Clang section generation bug in KASAN and KCSAN > - split "common" ELF sections out of STABS_DEBUG > - changed relative position of .comment > - add reviews/acks What's the plan with this series? I thought it might have landed during the merge window, but I can't even seem to find it in next. Anything else you need on the arm64 side? Will