From: David Hildenbrand <david@redhat.com>
To: Wei Yang <richard.weiyang@gmail.com>
Cc: Lorenzo Stoakes <lorenzo.stoakes@oracle.com>,
akpm@linux-foundation.org, riel@surriel.com, vbabka@suse.cz,
harry.yoo@oracle.com, jannh@google.com, baohua@kernel.org,
linux-mm@kvack.org
Subject: Re: [RFC Patch 0/5] Make anon_vma operations testable
Date: Fri, 30 May 2025 16:39:21 +0200 [thread overview]
Message-ID: <253705b2-a9bb-47a0-94e5-1aeafcca0396@redhat.com> (raw)
In-Reply-To: <20250530140521.tnyjxdsy6qa6dokl@master>
On 30.05.25 16:05, Wei Yang wrote:
> On Fri, May 30, 2025 at 10:00:18AM +0200, David Hildenbrand wrote:
> [...]
>>>>
>>>> Thanks for reminding me and sorry for the late reply.
>>>>
>>>>>
>>>>>>>> I am trying to understand what scenarios you want.
>>>>>>>
>>>>>>
>>>>>> Sorry for the late reply, I handled other things a while.
>>>>>>
>>>>>>> That is exactly the task to figure out: how can we actually test our rmap
>>>>>>> implementation from a higher level. The example regarding fork and migration
>>>>>>> is possibly a low-hanging fruit.
>>>>>>
>>>>>> If my understanding is correct, you suggested two high level way:
>>>>>>
>>>>>> 1. fork + migrate (move_pages)
>>>>
>>>> Yes, that should be one way of testing it. We could even get multiple child
>>>> processes into place.
>>>>
>>>>>>
>>>>>>>
>>>>>>> We might already have the functionality to achieve it, *maybe* we'd even want
>>>>>>> some extensions to make it all even easier to test.
>>>>>>>
>>>>>>> For example, MADV_PAGEOUT is refused on folios that are mapped into multiple
>>>>>>> processes. Maybe we'd want the option to *still* page it out, just like
>>>>>>> MPOL_MF_MOVE_ALL allows with CAP_SYS_NICE to *still* migrate a folio that is
>>>>>>> mapped into multiple processes.
>>>>>>>
>>>>>>
>>>>>> 2. madvise(MADV_PAGEOUT)
>>>>>>
>>>>>> Not fully get it here. You mean fork + madvise(MADV_PAGEOUT) + migrate ?
>>>>
>>>> fork + madvise(MADV_PAGEOUT) only.
>>>>
>>>> Then verify, that it was actually paged out.
>>>>
>>>> For example, we could have 10 processes mapping the page, then call
>>>> madvise(MADV_PAGEOUT) from one process. We can verify in all processes if the
>>>> page is actually no longer mapped using /proc/self/pagemap
>>>>
>>>
>>> Hi, David
>>
>> Hi!
>>
>>>
>>> I'd like to clarify some detail here.
>>>
>>>> We could likely do it with anon pages (swap), shmem pages (swap) and
>>>> pagecache pages (file backed).
>>>>
>>>
>>> I could understand the three cases here, but for the (swap) case, it is not
>>> clear to me. You mean we force the page to be swapped out before migration? I
>>> may not have an idea to ensure that.
>>
>> No need to involve migration for that test. It's sufficient to trigger
>> pageout to then check if the page was unmapped in all other processes.
>>
>
> Here you mean for all anon/shmem/pagecache pages, we could have two category
> tests:
>
> * migrate and write different data from on process, verify each process see
> new data
> * trigger pageout from one process, verify each process has it pageout
> (/proc/self/pagemap)
>
> While one of these category is enough, right? Just like KSM below, migrate or
> pageout.
Both cases will trigger different code paths: for example, migration
will trigger restoring of migration entries, which is a different rmap
operation not triggered by pageout/pagein :)
Pageout is probably easier to implement: but we couldn't test hugetlb.
With migration we probably could also test hugetlb rmap code (yet
another case we should probably cover).
--
Cheers,
David / dhildenb
next prev parent reply other threads:[~2025-05-30 14:39 UTC|newest]
Thread overview: 29+ messages / expand[flat|nested] mbox.gz Atom feed top
2025-04-29 9:06 Wei Yang
2025-04-29 9:06 ` [RFC Patch 1/5] mm: move anon_vma manipulation functions to own file Wei Yang
2025-04-29 9:06 ` [RFC Patch 2/5] anon_vma: add skeleton code for userland testing of anon_vma logic Wei Yang
2025-05-01 1:31 ` Wei Yang
2025-05-01 9:41 ` Lorenzo Stoakes
2025-05-01 14:45 ` Wei Yang
2025-04-29 9:06 ` [RFC Patch 3/5] anon_vma: add test for mergeable anon_vma Wei Yang
2025-04-29 9:06 ` [RFC Patch 4/5] anon_vma: add test for reusable anon_vma Wei Yang
2025-04-29 9:06 ` [RFC Patch 5/5] anon_vma: add test to assert no double-reuse Wei Yang
2025-04-29 9:31 ` [RFC Patch 0/5] Make anon_vma operations testable Lorenzo Stoakes
2025-04-29 9:38 ` David Hildenbrand
2025-04-29 9:41 ` Lorenzo Stoakes
2025-04-29 23:56 ` Wei Yang
2025-04-30 7:47 ` David Hildenbrand
2025-04-30 15:44 ` Wei Yang
2025-04-30 21:36 ` David Hildenbrand
2025-05-14 1:23 ` Wei Yang
2025-05-27 6:34 ` Wei Yang
2025-05-27 11:31 ` David Hildenbrand
2025-05-28 1:17 ` Wei Yang
2025-05-30 2:11 ` Wei Yang
2025-05-30 8:00 ` David Hildenbrand
2025-05-30 14:05 ` Wei Yang
2025-05-30 14:39 ` David Hildenbrand [this message]
2025-05-30 23:23 ` Wei Yang
2025-06-03 21:31 ` David Hildenbrand
2025-04-29 23:15 ` Wei Yang
2025-04-30 14:38 ` Lorenzo Stoakes
2025-04-30 15:41 ` Wei Yang
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=253705b2-a9bb-47a0-94e5-1aeafcca0396@redhat.com \
--to=david@redhat.com \
--cc=akpm@linux-foundation.org \
--cc=baohua@kernel.org \
--cc=harry.yoo@oracle.com \
--cc=jannh@google.com \
--cc=linux-mm@kvack.org \
--cc=lorenzo.stoakes@oracle.com \
--cc=richard.weiyang@gmail.com \
--cc=riel@surriel.com \
--cc=vbabka@suse.cz \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox