[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-ID: <fab81387-7f19-4a2b-b71d-1fa6e0a08226@os.amperecomputing.com>
Date: Fri, 7 Mar 2025 09:34:35 -0800
From: Yang Shi <yang@...amperecomputing.com>
To: Lorenzo Stoakes <lorenzo.stoakes@...cle.com>
Cc: Liam.Howlett@...cle.com, vbabka@...e.cz, jannh@...gle.com,
oliver.sang@...el.com, akpm@...ux-foundation.org, linux-mm@...ck.org,
linux-kernel@...r.kernel.org
Subject: Re: [PATCH] mm: vma: skip anonymous vma when inserting vma to file
rmap tree
On 3/7/25 5:12 AM, Lorenzo Stoakes wrote:
> On Thu, Mar 06, 2025 at 01:49:48PM -0800, Yang Shi wrote:
>> LKP reported 800% performance improvement for small-allocs benchmark
>> from vm-scalability [1] with patch ("/dev/zero: make private mapping
>> full anonymous mapping") [2], but the patch was nack'ed since it changes
>> the output of smaps somewhat.
> Yeah sorry about that, but unfortunately something we really do have to
> think about (among other things, the VMA edge cases are always the source
> of weirdness...)
>
>> The profiling shows one of the major sources of the performance
>> improvement is the less contention to i_mmap_rwsem.
> Great work tracking that down! Sorry I lost track of the other thread.
>
>> The small-allocs benchmark creates a lot of 40K size memory maps by
>> mmap'ing private /dev/zero then triggers page fault on the mappings.
>> When creating private mapping for /dev/zero, the anonymous VMA is
>> created, but it has valid vm_file. Kernel basically assumes anonymous
>> VMAs should have NULL vm_file, for example, mmap inserts VMA to the file
>> rmap tree if vm_file is not NULL. So the private /dev/zero mapping
>> will be inserted to the file rmap tree, this resulted in the contention
>> to i_mmap_rwsem. But it is actually anonymous VMA, so it is pointless
>> to insert it to file rmap tree.
> Ughhhh god haha.
>
>> Skip anonymous VMA for this case. Over 400% performance improvement was
>> reported [3].
> That's insane. Amazing work.
>
>> It is not on par with the 800% improvement from the original patch. It is
>> because page fault handler needs to access some members of struct file
>> if vm_file is not NULL, for example, f_mode and f_mapping. They are in
>> the same cacheline with file refcount. When mmap'ing a file the file
>> refcount is inc'ed and dec'ed, this caused bad cache false sharing
>> problem. The further debug showed checking whether the VMA is anonymous
>> or not can alleviate the problem. But I'm not sure whether it is the
>> best way to handle it, maybe we should consider shuffle the layout of
>> struct file.
> Interesting, I guess you'll take a look at this also?
I looked into it, but I can't determine what is the best way. We
basically have two options:
1. Regroup the layout of struct file, for example, move refcount to
another cache line. But I'm not sure whether it will cause any other
problems. This needs extensive testing.
2. Put refcount in a dedicated cacheline. Currently struct file is 192
bytes, a dedicated cacheline will increase the size to 256 bytes. I'm
not sure whether it is worth it or not.
>
>> However it sounds rare that real life applications would create that
>> many maps with mmap'ing private /dev/zero and share the same struct
>> file, so the cache false sharing problem may be not that bad. But
> Right
>
>> i_mmap_rwsem contention problem seems more real since all /dev/zero
>> private mappings even from different applications share the same struct
>> address_space so the same i_mmap_rwsem.
> Yeah, lord above, that's crazy. Again, great work!
>
>> [1] https://lore.kernel.org/linux-mm/202501281038.617c6b60-lkp@intel.com/
>> [2] https://lore.kernel.org/linux-mm/20250113223033.4054534-1-yang@os.amperecomputing.com/
>> [3] https://lore.kernel.org/linux-mm/Z6RshwXCWhAGoMOK@xsang-OptiPlex-9020/#t
>>
>> Reported-by: kernel test robot <oliver.sang@...el.com>
>> Signed-off-by: Yang Shi <yang@...amperecomputing.com>
> Thanks, this looks sensible, other than nits below, so:
>
> Reviewed-by: Lorenzo Stoakes <lorenzo.stoakes@...cle.com>
Thank you.
>
>> ---
>> mm/vma.c | 15 +++++++++++++--
>> 1 file changed, 13 insertions(+), 2 deletions(-)
>>
>> diff --git a/mm/vma.c b/mm/vma.c
>> index c7abef5177cc..f4cf85c32b7a 100644
>> --- a/mm/vma.c
>> +++ b/mm/vma.c
>> @@ -1648,6 +1648,9 @@ static void unlink_file_vma_batch_process(struct unlink_vma_file_batch *vb)
>> void unlink_file_vma_batch_add(struct unlink_vma_file_batch *vb,
>> struct vm_area_struct *vma)
>> {
>> + if (vma_is_anonymous(vma))
>> + return;
>> +
> This really needs a comment imo, something simple like:
>
> /* Rare, but e.g. /dev/zero sets vma->vm_file on an anon VMA */
Thanks for the suggestion, will add the comment in the new spin.
Yang
>
>> if (vma->vm_file == NULL)
>> return;
>>
>> @@ -1671,8 +1674,12 @@ void unlink_file_vma_batch_final(struct unlink_vma_file_batch *vb)
>> */
>> void unlink_file_vma(struct vm_area_struct *vma)
>> {
>> - struct file *file = vma->vm_file;
>> + struct file *file;
>> +
>> + if (vma_is_anonymous(vma))
>> + return;
> Same comment as above.
>
>> + file = vma->vm_file;
>> if (file) {
>> struct address_space *mapping = file->f_mapping;
>>
>> @@ -1684,9 +1691,13 @@ void unlink_file_vma(struct vm_area_struct *vma)
>>
>> void vma_link_file(struct vm_area_struct *vma)
>> {
>> - struct file *file = vma->vm_file;
>> + struct file *file;
>> struct address_space *mapping;
>>
>> + if (vma_is_anonymous(vma))
>> + return;
> Same comment as above.
>
>> +
>> + file = vma->vm_file;
>> if (file) {
>> mapping = file->f_mapping;
>> i_mmap_lock_write(mapping);
>> --
>> 2.47.0
>>
Powered by blists - more mailing lists