From patchwork Fri Mar 22 00:09:14 2024 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Catalin Marinas X-Patchwork-Id: 13599485 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 091F6C6FD1F for ; Fri, 22 Mar 2024 00:09:47 +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=YpYrp/+aKR+MBD9jqNIvWH//m1BVaQoIjCv7WoZ6qAU=; b=Vh6/HyI/CmjWqB AANh5qoVr9gU2KBoCCFnmAxOOBrRFev0S4NJfh3Bd6O3MdDQjbk+lfwqmsvTzeclSPiEQD33IZ0d7 a2fnmWdjrDfScwWbFyQM72+v3PO41JcIetPeke4POLha9+YXQ+J/FIqbm0kae5CyJxCLjQJL1IT8N pqQgoeUeKDL7C7z1AuM3MeSkJgUDzWmMGtGfv7Y7TQjped5QCm+AhfbKCcoWI563HXVMhhcGdjgZh UFYn1L0Xz3ZKP6GK4C7CLeR8AmIB2a7yCV1+jiXiutFBMWpdrFzxTro9RFmGK2hHX66h3LPnGuZn2 5b1iWSLbB4wj24b5HNkg==; Received: from localhost ([::1] helo=bombadil.infradead.org) by bombadil.infradead.org with esmtp (Exim 4.97.1 #2 (Red Hat Linux)) id 1rnSTW-00000005D1w-11hk; Fri, 22 Mar 2024 00:09:34 +0000 Received: from sin.source.kernel.org ([145.40.73.55]) by bombadil.infradead.org with esmtps (Exim 4.97.1 #2 (Red Hat Linux)) id 1rnSTI-00000005D1K-3isC for linux-arm-kernel@lists.infradead.org; Fri, 22 Mar 2024 00:09:22 +0000 Received: from smtp.kernel.org (transwarp.subspace.kernel.org [100.75.92.58]) by sin.source.kernel.org (Postfix) with ESMTP id D07D7CE1177; Fri, 22 Mar 2024 00:09:18 +0000 (UTC) Received: by smtp.kernel.org (Postfix) with ESMTPSA id 0BBAFC43390; Fri, 22 Mar 2024 00:09:16 +0000 (UTC) Date: Fri, 22 Mar 2024 00:09:14 +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.9-rc1 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-20240321_170921_128719_A82E7689 X-CRM114-Status: UNSURE ( 9.77 ) X-CRM114-Notice: Please train this message. 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 update and perf fix below. Thanks. The following changes since commit 1ef21fcd6a50f011680dbbd678c1bea8e3f67ab9: Revert "mm: add arch hook to validate mmap() prot flags" (2024-03-13 10:59:38 +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 1d63d1d9e5c5cb2e7c7ca75751a5eaf67c5623a7: perf: starfive: fix 64-bit only COMPILE_TEST condition (2024-03-19 19:01:39 +0000) ---------------------------------------------------------------- arm64 fix/update: - Re-instate the CPUMASK_OFFSTACK option for arm64 when NR_CPUS > 256. The bug that led to the initial revert was the cpufreq-dt code not using zalloc_cpumask_var(). - Make the STARFIVE_STARLINK_PMU config option depend on 64BIT to prevent compile-test failures on 32-bit architectures due to missing writeq(). ---------------------------------------------------------------- Christoph Lameter (Ampere) (1): ARM64: Dynamically allocate cpumasks and increase supported CPUs to 512 Conor Dooley (1): perf: starfive: fix 64-bit only COMPILE_TEST condition arch/arm64/Kconfig | 3 ++- drivers/perf/Kconfig | 3 ++- 2 files changed, 4 insertions(+), 2 deletions(-)