From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from smtp.kernel.org (aws-us-west-2-korg-mail-1.web.codeaurora.org [10.30.226.201]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.subspace.kernel.org (Postfix) with ESMTPS id 54FC223ABBD for ; Fri, 23 Jan 2026 18:37:34 +0000 (UTC) Authentication-Results: smtp.subspace.kernel.org; arc=none smtp.client-ip=10.30.226.201 ARC-Seal:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1769193454; cv=none; b=sC1fj1yN/o9GhGeP4TZN0x3vDwTKlkxwt22fa1hip+tFLu/Fl58LcZqze5bywBlzrZEr/FE1ilhuQJUVD0LNxAifWZva9KTYalZiH0RisQ21XvQMeJpccLWkpnw0sSxzyxEHKWLGZkbd8tS5dN3EeihSC4o3duXNIUFhKI3+OHY= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1769193454; c=relaxed/simple; bh=QqghfQYs6gIVngNrbud+bq8jp6flTSCOZwS6FQiIxDA=; h=Date:From:To:Cc:Subject:Message-ID:MIME-Version:Content-Type: Content-Disposition; b=kxGI4CtNESXUrcFD1uXRa8sgBh4ClFwfUyWhz9Wg1oE+2kl5kUbg+wNFsVyRjK+A/1xfZefOSazWOx0Hk/WtBEl6RvU/I7aadwF6MYD3MMy5RtmuP07BQsuMIyURyrE9Lu0RITMl+7MXulCSVXtrCNse/wkL0MVXGIOTmoDGosU= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dkim=pass (2048-bit key) header.d=kernel.org header.i=@kernel.org header.b=qmv44h/V; arc=none smtp.client-ip=10.30.226.201 Authentication-Results: smtp.subspace.kernel.org; dkim=pass (2048-bit key) header.d=kernel.org header.i=@kernel.org header.b="qmv44h/V" Received: by smtp.kernel.org (Postfix) with ESMTPSA id F0AE7C4CEF1; Fri, 23 Jan 2026 18:37:32 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=k20201202; t=1769193453; bh=QqghfQYs6gIVngNrbud+bq8jp6flTSCOZwS6FQiIxDA=; h=Date:From:To:Cc:Subject:From; b=qmv44h/VtPZFhcxzeez9crtwFQkX1M923qxoIWIz/PhSiNl+u/oxBKWf/pMepteTj 8dBPLatMBPOYK/YA7ie7Bf+LUs4Z4mebsKX9jjzClm5kEAOPPAnTHWavfuu3fii/09 k0Py/USU2TncCxQaBOZa0sMn2cMogdjXaraK1zwkFjcGpZ+CrwR8ag7wapvIL6W/H4 IFEOEKqnbenwum4CMMEYlHAKTbjNaNJAwLkEbn6Sv8oDk9PY007QYyhPP/J2WEIAod OxGCic4+PMnDD7aAWQiei3iQhffn2Ok1wswoSZ2lFKd/NbqIF2f/r1qibyRV5PIXUp HJOhnIPzvh15A== Date: Fri, 23 Jan 2026 18:37:30 +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.19-rc7 Message-ID: Precedence: bulk X-Mailing-List: linux-kernel@vger.kernel.org List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Hi Linus, Please pull the arm64 fixes below. Thanks. The following changes since commit b9f5c38e4af1a094384650d2fc79fb992d6d5e64: arm_mpam: Use non-atomic bitops when modifying feature bitmap (2026-01-16 12:04:20 +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 e2f8216ca2d8e61a23cb6ec355616339667e0ba6: arm64: Set __nocfi on swsusp_arch_resume() (2026-01-23 18:13:07 +0000) ---------------------------------------------------------------- arm64 fixes: - A set of fixes for FPSIMD/SVE/SME state management (around signal handling and ptrace) where a task can be placed in an invalid state - __nocfi added to swsusp_arch_resume() to avoid a data abort on resuming from hibernate ---------------------------------------------------------------- Mark Rutland (3): arm64/fpsimd: ptrace: Fix SVE writes on !SME systems arm64/fpsimd: signal: Allocate SSVE storage when restoring ZA arm64/fpsimd: signal: Fix restoration of SVE context Zhaoyang Huang (1): arm64: Set __nocfi on swsusp_arch_resume() arch/arm64/kernel/hibernate.c | 2 +- arch/arm64/kernel/ptrace.c | 26 ++++++++++++-------------- arch/arm64/kernel/signal.c | 26 ++++++++++++++++++++------ 3 files changed, 33 insertions(+), 21 deletions(-) -- Catalin