Re: [PATCH v2 2/3] mini-os: mm: switch need_pgt() to use walk_pt()

2024-08-20 Thread Samuel Thibault
Juergen Gross, le mar. 13 août 2024 15:41:57 +0200, a ecrit: > Instead of open coding a page table walk, use walk_pt() in need_pgt(). > > Signed-off-by: Juergen Gross Reviewed-by: Samuel Thibault > --- > V2: > - add comment and ASSERT() (Samuel Thibault) > --- > arch/x86/mm.c | 72 +++

[PATCH v2 2/3] mini-os: mm: switch need_pgt() to use walk_pt()

2024-08-13 Thread Juergen Gross
Instead of open coding a page table walk, use walk_pt() in need_pgt(). Signed-off-by: Juergen Gross --- V2: - add comment and ASSERT() (Samuel Thibault) --- arch/x86/mm.c | 72 +-- 1 file changed, 30 insertions(+), 42 deletions(-) diff --git a/arc