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 7333D78F4A for ; Sat, 17 Jan 2026 14:05:42 +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=1768658742; cv=none; b=dPaC0zgtuURCwUagQi+zEsJpxLT5OIRJ4Ny78H0nrPENwYOmkbRJjgq+ZXb5P4wPtGk76Oj9O1KH6Zol7p8iLQ2O4sWoqZ3kg91+/tyG5WfEYP1GijZ5Uzq/8yC4nIBTnpPTM/Rzyb8wL6qGJYBdXkQJaebJyrQMQA+xbA42Ui0= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1768658742; c=relaxed/simple; bh=vF+mU7/KmQT85TX8LyZU3XygKnEZbzAS9VQnTtaA88s=; h=Date:From:To:Cc:Subject:Message-ID:MIME-Version:Content-Type: Content-Disposition; b=n9G0MV1ldMfuEfoYzZMVtGfk72BrufC65ccqdjs5Tq7cw6nWq7qXoEYbSWdhjr4Gck/DDhJsx2BAE1zmUKaMzcm5Es/DoIHATiCOz2DVZMXzuHvWYw4ShTl5Ibt3oL6gtCq42ZlOvpFFOw5p9Itscply7GD2totDoyJcL+0JD+w= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dkim=pass (2048-bit key) header.d=kernel.org header.i=@kernel.org header.b=AIJhvjDU; 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="AIJhvjDU" Received: by smtp.kernel.org (Postfix) with ESMTPSA id 3DCC2C4CEF7; Sat, 17 Jan 2026 14:05:41 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=k20201202; t=1768658742; bh=vF+mU7/KmQT85TX8LyZU3XygKnEZbzAS9VQnTtaA88s=; h=Date:From:To:Cc:Subject:From; b=AIJhvjDU5fo+PSeDgUSBQLdMkpomq0c6h8Ol/lEIKs0rrbADbxwARiOK9b7bVobjD YxW9KIaN+2LxSNR5AqBGB+Eda1DQs9uu/w/APWrUHUvSPZlHtdJ8lo0XWGhwJy7B0Q XEXOloF6+ACDq7ZF4XR2bC3pxSvd1E0hSaBm8nsSu/64czfxXEEP2rEqYY15ul4Nli oCQYPH3MZ2RREiM0ZTEuLLwCD7d+tNZcqkOajPr5qFlRP1gV0vQx1j1/SBHTj0GTgr iHwVv5yShCApnVj3vxMgOL6rnaIAlSGIsLGGwomeI8+6M5p/HBv2pDqIhj2elF6O2d UpUXHXrikmCCQ== Date: Sat, 17 Jan 2026 14:05:37 +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-rc6 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 bdf3f4176092df5281877cacf42f843063b4784d: arm64: Fix cleared E0POE bit after cpu_suspend()/resume() (2026-01-09 10:41:45 +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 b9f5c38e4af1a094384650d2fc79fb992d6d5e64: arm_mpam: Use non-atomic bitops when modifying feature bitmap (2026-01-16 12:04:20 +0000) ---------------------------------------------------------------- arm64/mpam fix to use non-atomic bitops on struct mmap_props member (atomicity not required). For kunit testing, the structure is packed to avoid memcmp() errors but this affects atomic bitops as they have strict alignment requirements. Also remove a duplicate include in the mpam driver. ---------------------------------------------------------------- Ben Horgan (1): arm_mpam: Use non-atomic bitops when modifying feature bitmap Jiapeng Chong (1): arm_mpam: Remove duplicate linux/srcu.h header drivers/resctrl/mpam_internal.h | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) -- Catalin