Some thoughts after reading the related code:
offline_pages() is a little convoluted, since it has two steps to make
sure a range of memory can be offlined:
1. start_isolate_page_range() checks unmovable (maybe not migratable
is more precise) pages using has_unmovable_pages(), but leaves unmovable
PageOffline() page handling to the driver;
Right, it's best-effort. For ZONE_MOVABLE we're skipping the checks completely.
I was wondering for a longer time that -- with the isolate flag being a separate bit soon :) -- we could simply isolate the whole range, and then fail if we stumble over
Talking about that, I will need your input on my change to move_pfn_range_to_zone()
in online_pages()[1]. Making MIGRATE_ISOLATE a separate bit means if you isolate
a pageblock without a migratetype, unisolating it will give an unpredictable
migratetype.
[1] https://lore.kernel.org/linux-mm/20250509200111.3372279-3-ziy@xxxxxxxxxx/
an unmovable page during migration. That is, get rid of has_unmovable_pages() entirely. Un-doing the isolation would then properly preserve the migratetype -- no harm done?
Certainly worth a look. What do you think about that?
In principle, the method should work and simplifies the code. But it suffers more
penalty (pages are migrated) when an unmovable page is encountered after the
isolation, since before nothing will be migrated. To mitigate this,
we probably would want some retry mechanism. For example, register a callback
to each unmovable page and once the unmovable page is deallocated,
alloc_contig_range() can move forward progress.
2. scan_movable_pages() and do_migrate_range() migrate pages and handle
different types of PageOffline() pages.
Right, migrate what we can, skip these special once, and bail out on any others (at least in this patch, patch #2 restores the pre-virtio-mem behavior).
It might make the logic cleaner if start_isolate_page_range() can
have a callback to allow driver to handle PageOffline() pages.
We have to identify them repeadetly, so start_isolate_page_range() would not be sufficient. Also, callbacks are rather tricky for the case where we cannot really stabilize the page.
During start_isolate_page_range(), all pageblocks are isolated, so
free pages cannot be used by anyone else, meaning no new PageOffline()
pages or any other unmovable pages, right?
Hmm, Skippable PageOffline() pages are virtio-mem specific, I wonder
why offline_pages() takes care of them. Shouldn't virtio-mem driver
handle them?
I also realize that the two steps in offline_pages()> are very similar to alloc_contig_range() and virtio-mem is using
alloc_contig_range(). I wonder if the two steps in offline_pages()
can be abstracted out and shared with virtio-mem.Yes, offline_pages()> operates at memory section granularity, different from the granularity,
pageblock size, of alloc_contig_range() used in virtio-mem, but
both are trying to check unmovable pages and migrate movable pages.
Not sure I get completely what you mean. virtio-mem really wants to use alloc_contig_range() to allocate ranges it wants to unplug, because it will fail fast and allows for smaller ranges.
offline_pages() is primarily also about offlining the memory section, which virtio-mem must do in order to remove the Linux memory block.
To clarify, I mean the steps of start_isolate_page_range(), scan_movable_pages(),
do_migrate_range(), dissolve_free_hugetlb_folios() and test_pages_isolated() in
offline_pages() is very similar to the steps of start_isolate_page_range(),
__alloc_contig_migrate_range(), replace_free_hugepage_folios(),
and test_pages_isolate() in alloc_contig_range(). So I wonder if a common
function routine can be shared.