mbox series

[v2,0/4] mm: page_ext: Introduce new iteration API

Message ID cover.1740434344.git.luizcap@redhat.com (mailing list archive)
Headers show
Series mm: page_ext: Introduce new iteration API | expand

Message

Luiz Capitulino Feb. 24, 2025, 9:59 p.m. UTC
This series is against v6.14-rc4. The introduction is after the changelog.

v1 -> v2
========

- Drop for_each_page_ext_order() (David)
- Make page_ext_iter_begin() and page_ext_iter_next() inline functions
  (David)
- Move loop logic into page_ext_iter_begin() and page_ext_iter_next()
  (David)

RFC -> v1
=========

- Revamped the API by introducing for_each_page_ext macros
- Implemented various suggestions from David Hildenbrand, including page_ext
  lookup optimization
- Fixed changelogs

Introduction
============

  [ Thanks to David Hildenbrand for identifying the root cause of this
    issue and proving guidance on how to fix it. The new API idea, bugs
    and misconceptions are all mine though ]

Currently, trying to reserve 1G pages with page_owner=on and sparsemem
causes a crash. The reproducer is very simple:

 1. Build the kernel with CONFIG_SPARSEMEM=y and the table extensions
 2. Pass 'default_hugepagesz=1 page_owner=on' in the kernel command-line
 3. Reserve one 1G page at run-time, this should crash (see patch 1 for
    backtrace) 

 [ A crash with page_table_check is also possible, but harder to trigger ]

Apparently, starting with commit cf54f310d0d3 ("mm/hugetlb: use __GFP_COMP
for gigantic folios") we now pass the full allocation order to page
extension clients and the page extension implementation assumes that all
PFNs of an allocation range will be stored in the same memory section (which
is not true for 1G pages).

To fix this, this series introduces a new iteration API for page extension
objects. The API checks if the next page extension object can be retrieved
from the current section or if it needs to look up for it in another
section.

Please, find all details in patch 2.

Luiz Capitulino (4):
  mm: page_ext: make lookup_page_ext() public
  mm: page_ext: add an iteration API for page extensions
  mm: page_table_check: use new iteration API
  mm: page_owner: use new iteration API

 include/linux/page_ext.h | 93 ++++++++++++++++++++++++++++++++++++++++
 mm/page_ext.c            |  4 +-
 mm/page_owner.c          | 61 +++++++++++++-------------
 mm/page_table_check.c    | 39 ++++++-----------
 4 files changed, 136 insertions(+), 61 deletions(-)