From patchwork Fri Nov 11 23:08:36 2022 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Catalin Marinas X-Patchwork-Id: 13040907 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 bombadil.infradead.org (bombadil.infradead.org [198.137.202.133]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.lore.kernel.org (Postfix) with ESMTPS id 532BAC4332F for ; Fri, 11 Nov 2022 23:09:57 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=lists.infradead.org; s=bombadil.20210309; h=Sender: Content-Transfer-Encoding:Content-Type:List-Subscribe:List-Help:List-Post: List-Archive:List-Unsubscribe:List-Id:MIME-Version:Message-ID:Subject:Cc:To: From:Date:Reply-To:Content-ID:Content-Description:Resent-Date:Resent-From: Resent-Sender:Resent-To:Resent-Cc:Resent-Message-ID:In-Reply-To:References: List-Owner; bh=e0dTIWBSxq83nAN8RGxlv0i56A+HaNddBg4tS/b8lpI=; b=iEnYyF55J8gnHj 0wMG3ULbt6sQy9fWX6e6zC7gvHXbZzE6zqeeBQaFJKJeQBN0tgj7Kkb+K0NFySIkDi2eJmCdxhFju w6JloKTOwkeW9A6WuiorpCPl1OIiettgQ7nYqDKsp2L6139WsCUX17RSvc7DGlRSJIZAigTCqnMRi gmZykPgS0uz8H2IJ2WGru6XVA73h9FPCAf+VJqE6hzJTI8ATfHasSXcN69qJdN70RACeojmAq/UTZ hNFfXkW0eGIR/tvElVgONyLJRtDg7U2NqZwM2S+PhY6lvhIB5trgCzFx8DjWHSESyLW4UBmRYqKMP EAMJUHgyCGLlB1wm7j/A==; Received: from localhost ([::1] helo=bombadil.infradead.org) by bombadil.infradead.org with esmtp (Exim 4.94.2 #2 (Red Hat Linux)) id 1otd8h-001kzk-D1; Fri, 11 Nov 2022 23:08:47 +0000 Received: from dfw.source.kernel.org ([139.178.84.217]) by bombadil.infradead.org with esmtps (Exim 4.94.2 #2 (Red Hat Linux)) id 1otd8e-001kyz-NE for linux-arm-kernel@lists.infradead.org; Fri, 11 Nov 2022 23:08:46 +0000 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 1287A62112; Fri, 11 Nov 2022 23:08:44 +0000 (UTC) Received: by smtp.kernel.org (Postfix) with ESMTPSA id B7461C433D7; Fri, 11 Nov 2022 23:08:41 +0000 (UTC) Date: Fri, 11 Nov 2022 23:08:36 +0000 From: Catalin Marinas To: Linus Torvalds Cc: Will Deacon , linux-arm-kernel@lists.infradead.org, linux-kernel@vger.kernel.org Subject: [GIT PULL] arm64 fixes for 6.1-rc5 Message-ID: MIME-Version: 1.0 Content-Disposition: inline X-CRM114-Version: 20100106-BlameMichelson ( TRE 0.8.0 (BSD) ) MR-646709E3 X-CRM114-CacheID: sfid-20221111_150844_834804_65544A75 X-CRM114-Status: GOOD ( 13.26 ) X-BeenThere: linux-arm-kernel@lists.infradead.org X-Mailman-Version: 2.1.34 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Sender: "linux-arm-kernel" Errors-To: linux-arm-kernel-bounces+linux-arm-kernel=archiver.kernel.org@lists.infradead.org Hi Linus, Please pull the arm64 fixes below. Thanks. The following changes since commit 85f1506337f0c79a4955edfeee86a18628e3735f: arm64: cpufeature: Fix the visibility of compat hwcaps (2022-11-03 18:04:56 +0000) are available in the Git repository at: git://git.kernel.org/pub/scm/linux/kernel/git/arm64/linux tags/arm64-fixes for you to fetch changes up to acfc35cfcee5df419391671ef1a631f43feee4e3: arm64/syscall: Include asm/ptrace.h in syscall_wrapper header. (2022-11-09 09:52:25 +0000) ---------------------------------------------------------------- arm64 fixes: - Another fix for rodata=full. Since rodata= is not a simple boolean on arm64 (accepting 'full' as well), it got inadvertently broken by changes in the core code. If rodata=on is the default and rodata=off is passed on the kernel command line, rodata_full is never disabled. - Fix gcc compiler warning of shifting 0xc0 into bits 31:24 without an explicit conversion to u32 (triggered by the AMPERE1 MIDR definition). - Include asm/ptrace.h in asm/syscall_wrapper.h to fix an incomplete struct pt_regs type causing the BPF verifier to refuse to load a tracing program which accesses pt_regs. ---------------------------------------------------------------- Ard Biesheuvel (1): arm64: fix rodata=full again D Scott Phillips (1): arm64: Fix bit-shifting UB in the MIDR_CPU_MODEL() macro Kuniyuki Iwashima (1): arm64/syscall: Include asm/ptrace.h in syscall_wrapper header. arch/arm64/include/asm/cputype.h | 2 +- arch/arm64/include/asm/syscall_wrapper.h | 2 +- arch/arm64/mm/pageattr.c | 5 +++-- 3 files changed, 5 insertions(+), 4 deletions(-)