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 A8CE52D47EB; Wed, 24 Sep 2025 09:36:05 +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=1758706565; cv=none; b=MO1m1V3cpcCAoyrROOQYnc4y32Rp/8jigcbQW6FBC8XCfOD3+XIHSSDvKuu+iRWFe8x9CAFGf/VsJMSj57lWvkzCcN+Bt0JUCyshVoE99MVL/TRJpz350nQpJuBvKlS984nfiRwWRDoiI5i2fJOIG4jdXJZAfQ+uNwaZPhLMFYo= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1758706565; c=relaxed/simple; bh=r1+7tqclbLN8iwvSzrNmsnUPc3+3wVG70qHwsXjmUUs=; h=Date:From:To:Cc:Subject:Message-ID:References:MIME-Version: Content-Type:Content-Disposition:In-Reply-To; b=FOMDENOUcg+CVoB5EAXc3c/SH82/v4kL9iWxCZLTJeuzPoZZ5z4Ey96/sCtMGD0qWelk+H6xEkUpdCwNUqoSigEUOpsWrrpcX5J7O1EpRHKCZREgi31JpIlz1/ra2RVDdMMXOqhJ+p8omium3yWqdEDGKO2ATerOOzbKB4g1s7I= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; arc=none smtp.client-ip=10.30.226.201 Received: by smtp.kernel.org (Postfix) with ESMTPSA id 551F0C116B1; Wed, 24 Sep 2025 09:34:55 +0000 (UTC) Date: Wed, 24 Sep 2025 10:34:42 +0100 From: Catalin Marinas To: David Hildenbrand Cc: Lance Yang , akpm@linux-foundation.org, lorenzo.stoakes@oracle.com, usamaarif642@gmail.com, yuzhao@google.com, ziy@nvidia.com, baolin.wang@linux.alibaba.com, baohua@kernel.org, voidice@gmail.com, Liam.Howlett@oracle.com, cerasuolodomenico@gmail.com, hannes@cmpxchg.org, kaleshsingh@google.com, npache@redhat.com, riel@surriel.com, roman.gushchin@linux.dev, rppt@kernel.org, ryan.roberts@arm.com, dev.jain@arm.com, ryncsn@gmail.com, shakeel.butt@linux.dev, surenb@google.com, hughd@google.com, willy@infradead.org, matthew.brost@intel.com, joshua.hahnjy@gmail.com, rakie.kim@sk.com, byungchul@sk.com, gourry@gourry.net, ying.huang@linux.alibaba.com, apopple@nvidia.com, qun-wei.lin@mediatek.com, Andrew.Yang@mediatek.com, casper.li@mediatek.com, chinwen.chang@mediatek.com, linux-arm-kernel@lists.infradead.org, linux-kernel@vger.kernel.org, linux-mediatek@lists.infradead.org, linux-mm@kvack.org, ioworker0@gmail.com, stable@vger.kernel.org Subject: Re: [PATCH 1/1] mm/thp: fix MTE tag mismatch when replacing zero-filled subpages Message-ID: References: <20250922021458.68123-1-lance.yang@linux.dev> <17dabd83-0849-44c9-b4a2-196af60d9676@redhat.com> Precedence: bulk X-Mailing-List: stable@vger.kernel.org List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <17dabd83-0849-44c9-b4a2-196af60d9676@redhat.com> On Wed, Sep 24, 2025 at 11:13:18AM +0200, David Hildenbrand wrote: > On 24.09.25 10:50, Catalin Marinas wrote: > > On Wed, Sep 24, 2025 at 10:49:27AM +0800, Lance Yang wrote: > > > On 2025/9/24 00:14, Catalin Marinas wrote: > > > > So alternative patch that also fixes the deferred struct page init (on > > > > the assumptions that the zero page is always mapped as pte_special(): > > > > > > I can confirm that this alternative patch also works correctly; my tests > > > for MTE all pass ;) > > > > Thanks Lance for testing. I'll post one of the variants today. > > > > > This looks like a better fix since it solves the boot hang issue too. > > > > In principle, yes, until I tracked down why I changed it in the first > > place - 68d54ceeec0e ("arm64: mte: Allow PTRACE_PEEKMTETAGS access to > > the zero page"). ptrace() can read tags from PROT_MTE mappings and we > > want to allow reading zeroes as well if the page points to the zero > > page. Not flagging the page as PG_mte_tagged caused issues. > > > > I can change the logic in the ptrace() code, I just need to figure out > > what happens to the huge zero page. Ideally we should treat both in the > > same way but, AFAICT, we don't use pmd_mkspecial() on the huge zero > > page, so it gets flagged with PG_mte_tagged. > > I changed that recently :) The huge zero folio will now always have > pmd_special() set. Oh, which commit was this? It means that we can end up with uninitialised tags if we have a PROT_MTE huge zero page since set_pmd_at/set_pte_at() skips mte_sync_tags(). -- Catalin