Re: [PATCH RFC 06/11] mm/kasan: use hw_pte_t for the early shadow PTE table
From: Alexander Gordeev
Date: Thu Jul 30 2026 - 08:02:02 EST
On Mon, Jul 27, 2026 at 05:46:57PM +0100, Muhammad Usama Anjum wrote:
> diff --git a/mm/ptdump.c b/mm/ptdump.c
> index 376880071ca2a..8f19f20be3c44 100644
> --- a/mm/ptdump.c
> +++ b/mm/ptdump.c
> @@ -19,7 +19,7 @@ static inline int note_kasan_page_table(struct mm_walk *walk,
> {
> struct ptdump_state *st = walk->private;
>
> - st->note_page_pte(st, addr, kasan_early_shadow_pte[0]);
> + st->note_page_pte(st, addr, ptep_get(kasan_early_shadow_pte));
>
> walk->action = ACTION_CONTINUE;
I suppose this chunk could be posted as a follow-up to commit c33c794828f2
("mm: ptep_get() conversion") independent of this series.