From: John David Anglin <dave.anglin@bell.net>
To: Helge Deller <deller@gmx.de>, Usama Arif <usama.arif@linux.dev>,
Pedro Falcato <pfalcato@suse.de>
Cc: Matthew Wilcox <willy@infradead.org>,
Andrew Morton <akpm@linux-foundation.org>,
David Hildenbrand <david@kernel.org>,
Catalin Marinas <catalin.marinas@arm.com>,
Will Deacon <will@kernel.org>,
"James E.J. Bottomley" <James.Bottomley@hansenpartnership.com>,
Madhavan Srinivasan <maddy@linux.ibm.com>,
Michael Ellerman <mpe@ellerman.id.au>,
Lorenzo Stoakes <ljs@kernel.org>,
"Liam R. Howlett" <liam@infradead.org>,
Vlastimil Babka <vbabka@kernel.org>,
Mike Rapoport <rppt@kernel.org>,
Suren Baghdasaryan <surenb@google.com>,
Michal Hocko <mhocko@suse.com>, Jan Kara <jack@suse.cz>,
Zi Yan <ziy@nvidia.com>,
Baolin Wang <baolin.wang@linux.alibaba.com>,
Nico Pache <npache@redhat.com>,
Ryan Roberts <ryan.roberts@arm.com>, Dev Jain <dev.jain@arm.com>,
Barry Song <baohua@kernel.org>, Lance Yang <lance.yang@linux.dev>,
Kevin Brodsky <kevin.brodsky@arm.com>,
Muhammad Usama Anjum <usama.anjum@arm.com>,
linux-arm-kernel@lists.infradead.org,
linux-kernel@vger.kernel.org, linux-parisc@vger.kernel.org,
linuxppc-dev@lists.ozlabs.org, linux-mm@kvack.org,
linux-fsdevel@vger.kernel.org
Subject: Re: [PATCH 3/5] mm/parisc: constify ptep_get() argument
Date: Sat, 25 Jul 2026 13:00:55 -0400 [thread overview]
Message-ID: <4606e13f-6827-45d0-b3b8-6bc26358f7ae@bell.net> (raw)
In-Reply-To: <3e9dece8-4e86-4ce5-bd74-b3ec305f3003@gmx.de>
On 2026-07-25 12:27 p.m., Helge Deller wrote:
> On 7/24/26 17:48, Usama Arif wrote:
>>
>>
>> On 24/07/2026 16:32, Pedro Falcato wrote:
>>> On Fri, Jul 24, 2026 at 04:03:44PM +0100, Usama Arif wrote:
>>>>
>>>>
>>>> On 24/07/2026 15:14, Matthew Wilcox wrote:
>>>>> On Fri, Jul 24, 2026 at 02:36:59PM +0100, Usama Arif wrote:
>>>>>>
>>>>>>
>>>>>> On 24/07/2026 11:20, Pedro Falcato wrote:
>>>>>>> ptep_get() does not need write access to the PTE.
>>>>>>>
>>>>>>> Signed-off-by: Pedro Falcato <pfalcato@suse.de>
>>>>>>> ---
>>>>>>> arch/parisc/include/asm/pgtable.h | 2 +-
>>>>>>> 1 file changed, 1 insertion(+), 1 deletion(-)
>>>>>>>
>>>>>> hmm I think you might break build bisectibility if
>>>>>> you separate out the patches, you should squash patch 3 and 4,
>>>>>> with patch 1.
>>>>>
>>>>> I don't see how this breaks bisectability. Can you elaborate on what
>>>>> you think would break?
>>>>
>>>> Patch 1 does:
>>>>
>>>> -static inline pte_t ptep_get_lockless(pte_t *ptep)
>>>> +static inline pte_t ptep_get_lockless(const pte_t *ptep)
>>>> {
>>>> return ptep_get(ptep);
>>>> }
>>>>
>>>>
>>>> ptep_get() takes a non-const arg till patch 3 for example for parsic.
>>>> I don't think you can pass a const variable to non const function arg?
>>>>
>>>> So parsic won't compile in patch 1 and 2, powerprc wont compile
>>>> for patches 1, 2 and 3..
>>>
>>> Aha, yes, nice catch! I'll have to rethink that. Maybe squashing the patches
>>> would be the cleanest way forward.
>>>
>>
>> Yes, squashing is the simplest way forward.
>>
>>> FWIW, the vast majority of architectures aren't doing funny things on
>>> ptep_get(). E.g PA-RISC, loongarch only define these so they can use it in
>>> their own asm/pgtable.h. I'd really like to delete these but I can't tell
>>> if they are *actually* required.
>>>
>>
>> Ah maybe there is something in git history on why it was needed?
>>
>> If not, hopefully someone from the arch lists could clarify..
> I tried to remove ptep_get() and ptep_test_and_clear_young() from
> arch/parisc/include/asm/pgtable.h, but this then triggers compile errors:
>
> CC arch/parisc/kernel/asm-offsets.s
> In file included from /home/cvs/parisc/git-kernel/linus-linux-2.6/include/linux/mm.h:31,
> from /home/cvs/parisc/git-kernel/linus-linux-2.6/include/linux/pid_namespace.h:7,
> from /home/cvs/parisc/git-kernel/linus-linux-2.6/include/linux/ptrace.h:10,
> from /home/cvs/parisc/git-kernel/linus-linux-2.6/arch/parisc/kernel/asm-offsets.c:21:
> /home/cvs/parisc/git-kernel/linus-linux-2.6/include/linux/pgtable.h: In function ‘clear_young_dirty_ptes’:
> /home/cvs/parisc/git-kernel/linus-linux-2.6/include/linux/pgtable.h:683:25: error: implicit declaration of function ‘ptep_test_and_clear_young’;
> did you mean ‘pmdp_test_and_clear_young’? [-Wimplicit-function-declaration]
> 683 | ptep_test_and_clear_young(vma, addr, ptep);
> | ^~~~~~~~~~~~~~~~~~~~~~~~~
> | pmdp_test_and_clear_young
>
> So, I think the answer is, that the local copy of ptep_get() is used in the parisc implementation of
> ptep_test_and_clear_young() function.
>
> Switching to the default include/linux/pgtable.h seems not easy doable....
Did you remove define for __HAVE_ARCH_PTEP_TEST_AND_CLEAR_YOUNG in parisc version of pgtable.h?
Dave
--
John David Anglin dave.anglin@bell.net
next prev parent reply other threads:[~2026-07-25 17:03 UTC|newest]
Thread overview: 15+ messages / expand[flat|nested] mbox.gz Atom feed top
2026-07-24 10:20 [PATCH 0/5] mm: add basic PTE const type-safety Pedro Falcato
2026-07-24 10:20 ` [PATCH 1/5] mm: constify generic pte_get*() Pedro Falcato
2026-07-24 10:20 ` [PATCH 2/5] mm/arm64: constify pte_get*() and contpte get logic Pedro Falcato
2026-07-24 10:20 ` [PATCH 3/5] mm/parisc: constify ptep_get() argument Pedro Falcato
2026-07-24 13:36 ` Usama Arif
2026-07-24 13:39 ` Usama Arif
2026-07-24 14:14 ` Matthew Wilcox
2026-07-24 15:03 ` Usama Arif
2026-07-24 15:32 ` Pedro Falcato
2026-07-24 15:48 ` Usama Arif
2026-07-25 16:27 ` Helge Deller
2026-07-25 17:00 ` John David Anglin [this message]
2026-07-25 17:38 ` Helge Deller
2026-07-24 10:20 ` [PATCH 4/5] mm/powerpc/8xx: " Pedro Falcato
2026-07-24 10:20 ` [PATCH 5/5] mm: constify the pte_offset_map_ro_nolock() return value Pedro Falcato
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=4606e13f-6827-45d0-b3b8-6bc26358f7ae@bell.net \
--to=dave.anglin@bell.net \
--cc=James.Bottomley@hansenpartnership.com \
--cc=akpm@linux-foundation.org \
--cc=baohua@kernel.org \
--cc=baolin.wang@linux.alibaba.com \
--cc=catalin.marinas@arm.com \
--cc=david@kernel.org \
--cc=deller@gmx.de \
--cc=dev.jain@arm.com \
--cc=jack@suse.cz \
--cc=kevin.brodsky@arm.com \
--cc=lance.yang@linux.dev \
--cc=liam@infradead.org \
--cc=linux-arm-kernel@lists.infradead.org \
--cc=linux-fsdevel@vger.kernel.org \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-mm@kvack.org \
--cc=linux-parisc@vger.kernel.org \
--cc=linuxppc-dev@lists.ozlabs.org \
--cc=ljs@kernel.org \
--cc=maddy@linux.ibm.com \
--cc=mhocko@suse.com \
--cc=mpe@ellerman.id.au \
--cc=npache@redhat.com \
--cc=pfalcato@suse.de \
--cc=rppt@kernel.org \
--cc=ryan.roberts@arm.com \
--cc=surenb@google.com \
--cc=usama.anjum@arm.com \
--cc=usama.arif@linux.dev \
--cc=vbabka@kernel.org \
--cc=will@kernel.org \
--cc=willy@infradead.org \
--cc=ziy@nvidia.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox