[<prev] [next>] [<thread-prev] [day] [month] [year] [list]
Message-ID: <86a276d6-afe3-4c70-aa85-7cafe33b8e5c@arm.com>
Date: Tue, 1 Apr 2025 08:21:36 +0530
From: Anshuman Khandual <anshuman.khandual@....com>
To: Alexander Gordeev <agordeev@...ux.ibm.com>
Cc: linux-mm@...ck.org, Catalin Marinas <catalin.marinas@....com>,
Will Deacon <will@...nel.org>, Steven Price <steven.price@....com>,
Ryan Roberts <ryan.roberts@....com>,
Madhavan Srinivasan <maddy@...ux.ibm.com>,
Nicholas Piggin <npiggin@...il.com>, Paul Walmsley
<paul.walmsley@...ive.com>, Palmer Dabbelt <palmer@...belt.com>,
Gerald Schaefer <gerald.schaefer@...ux.ibm.com>,
Heiko Carstens <hca@...ux.ibm.com>, Peter Zijlstra <peterz@...radead.org>,
Thomas Gleixner <tglx@...utronix.de>, Ingo Molnar <mingo@...hat.com>,
Andrew Morton <akpm@...ux-foundation.org>,
linux-arm-kernel@...ts.infradead.org, linux-kernel@...r.kernel.org,
linuxppc-dev@...ts.ozlabs.org, linux-riscv@...ts.infradead.org,
linux-s390@...r.kernel.org
Subject: Re: [PATCH 1/2] mm/ptdump: Split note_page() into level specific
callbacks
On 3/31/25 14:29, Alexander Gordeev wrote:
> On Mon, Mar 17, 2025 at 11:48:17AM +0530, Anshuman Khandual wrote:
>
> Hi Anshuman,
>
> ...
>> --- a/include/linux/ptdump.h
>> +++ b/include/linux/ptdump.h
>> @@ -11,9 +11,12 @@ struct ptdump_range {
>> };
>>
>> struct ptdump_state {
>> - /* level is 0:PGD to 4:PTE, or -1 if unknown */
>> - void (*note_page)(struct ptdump_state *st, unsigned long addr,
>> - int level, u64 val);
>> + void (*note_page_pte)(struct ptdump_state *st, unsigned long addr, pte_t pte);
>> + void (*note_page_pmd)(struct ptdump_state *st, unsigned long addr, pmd_t pmd);
>> + void (*note_page_pud)(struct ptdump_state *st, unsigned long addr, pud_t pud);
>> + void (*note_page_p4d)(struct ptdump_state *st, unsigned long addr, p4d_t p4d);
>> + void (*note_page_pgd)(struct ptdump_state *st, unsigned long addr, pgd_t pgd);
>> + void (*note_page_flush)(struct ptdump_state *st);
>> void (*effective_prot)(struct ptdump_state *st, int level, u64 val);
>
> Should you treat effective_prot() similarly?
Agreed. effective_prot() also uses pxd_val() derived data type in generic MM and
might cause the same problem later going ahead. Will split the helper into level
specific callbacks as well.
>
>> const struct ptdump_range *range;
>> };
Powered by blists - more mailing lists