[PATCH 0/4] Convert motorola to use ptdescs

Vishal Moola (Oracle) posted 4 patches 4 months ago
arch/m68k/mm/motorola.c | 54 ++++++++++++++++++++---------------------
1 file changed, 27 insertions(+), 27 deletions(-)
[PATCH 0/4] Convert motorola to use ptdescs
Posted by Vishal Moola (Oracle) 4 months ago
m68k's Motorola still uses struct page (it's pointer tables) to track
page tables. This patchset converts it to use ptdescs, to help prepare
for allocating memory descriptors independently of struct page.

It also includes some minor cleanups to make the code more readable. 

----

Based on mm-new. This has only been compile tested, but there are
no expected runtime changes.

Vishal Moola (Oracle) (4):
  m68k: mm: Convert get_pointer_table() to use ptdescs
  m68k: mm: Convert free_pointer_table() to use ptdescs
  m68k: mm: Convert init_pointer_table() to use ptdescs
  m68k: mm: Convert pointer table macros to use ptdescs

 arch/m68k/mm/motorola.c | 54 ++++++++++++++++++++---------------------
 1 file changed, 27 insertions(+), 27 deletions(-)

-- 
2.49.0
Re: [PATCH 0/4] Convert motorola to use ptdescs
Posted by Vishal Moola (Oracle) 3 months, 3 weeks ago
On Tue, Jun 10, 2025 at 05:12:51PM -0700, Vishal Moola (Oracle) wrote:
> m68k's Motorola still uses struct page (it's pointer tables) to track
> page tables. This patchset converts it to use ptdescs, to help prepare
> for allocating memory descriptors independently of struct page.
> 
> It also includes some minor cleanups to make the code more readable. 
> 
> ----
> 
> Based on mm-new. This has only been compile tested, but there are
> no expected runtime changes.

Just a friendly ping requesting someone takes a look at this series..
It should be simple, just make sure I didn't miss anything :)