All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] mm: thp: register mm for khugepaged when merging vma for shmem
@ 2018-06-21 21:40 Yang Shi
  2018-06-21 22:10 ` Kirill A. Shutemov
  0 siblings, 1 reply; 4+ messages in thread
From: Yang Shi @ 2018-06-21 21:40 UTC (permalink / raw)
  To: hughd, kirill.shutemov, vbabka, akpm; +Cc: yang.shi, linux-mm, linux-kernel

When merging anonymous page vma, if the size of vam can fit in at least
one hugepage, the mm will be registered for khugepaged for collapsing
THP in the future.

But, it skips shmem vma. Doing so for shmem too when merging vma in
order to increase the odd to collapse hugepage by khugepaged.

Also increase the count of shmem THP collapse. It looks missed before.

Signed-off-by: Yang Shi <yang.shi@linux.alibaba.com>
Cc: Hugh Dickins <hughd@google.com>
Cc: Kirill A. Shutemov <kirill.shutemov@linux.intel.com>
Cc: Vlastimil Babka <vbabka@suse.cz>
---
 mm/khugepaged.c | 10 ++++++++--
 1 file changed, 8 insertions(+), 2 deletions(-)

diff --git a/mm/khugepaged.c b/mm/khugepaged.c
index d7b2a4b..27f5ce2 100644
--- a/mm/khugepaged.c
+++ b/mm/khugepaged.c
@@ -440,8 +440,12 @@ int khugepaged_enter_vma_merge(struct vm_area_struct *vma,
 		 * page fault if needed.
 		 */
 		return 0;
-	if (vma->vm_ops || (vm_flags & VM_NO_KHUGEPAGED))
-		/* khugepaged not yet working on file or special mappings */
+	if ((vma->vm_ops && !shmem_file(vma->vm_file)) ||
+	    (vm_flags & VM_NO_KHUGEPAGED))
+		/*
+		 * khugepaged not yet working on non-shmem file or special
+		 * mappings
+		 */
 		return 0;
 	hstart = (vma->vm_start + ~HPAGE_PMD_MASK) & HPAGE_PMD_MASK;
 	hend = vma->vm_end & HPAGE_PMD_MASK;
@@ -1517,6 +1521,8 @@ static void collapse_shmem(struct mm_struct *mm,
 		unlock_page(new_page);
 
 		*hpage = NULL;
+
+		khugepaged_pages_collapsed++;
 	} else {
 		/* Something went wrong: rollback changes to the radix-tree */
 		shmem_uncharge(mapping->host, nr_none);
-- 
1.8.3.1


^ permalink raw reply related	[flat|nested] 4+ messages in thread

* Re: [PATCH] mm: thp: register mm for khugepaged when merging vma for shmem
  2018-06-21 21:40 [PATCH] mm: thp: register mm for khugepaged when merging vma for shmem Yang Shi
@ 2018-06-21 22:10 ` Kirill A. Shutemov
  2018-06-21 22:24   ` Yang Shi
  0 siblings, 1 reply; 4+ messages in thread
From: Kirill A. Shutemov @ 2018-06-21 22:10 UTC (permalink / raw)
  To: Yang Shi; +Cc: hughd, kirill.shutemov, vbabka, akpm, linux-mm, linux-kernel

On Fri, Jun 22, 2018 at 05:40:47AM +0800, Yang Shi wrote:
> When merging anonymous page vma, if the size of vam can fit in at least

s/vam/vma/

> one hugepage, the mm will be registered for khugepaged for collapsing
> THP in the future.
> 
> But, it skips shmem vma. Doing so for shmem too when merging vma in
> order to increase the odd to collapse hugepage by khugepaged.

Good catch. Thanks.

I think the fix incomplete. We shouldn't require vma->anon_vma for shmem,
only for anonymous mappings. We don't support file-private THPs.

> Also increase the count of shmem THP collapse. It looks missed before.

Separate patch, please.

-- 
 Kirill A. Shutemov

^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: [PATCH] mm: thp: register mm for khugepaged when merging vma for shmem
  2018-06-21 22:10 ` Kirill A. Shutemov
@ 2018-06-21 22:24   ` Yang Shi
  2018-06-21 22:49     ` Yang Shi
  0 siblings, 1 reply; 4+ messages in thread
From: Yang Shi @ 2018-06-21 22:24 UTC (permalink / raw)
  To: Kirill A. Shutemov
  Cc: hughd, kirill.shutemov, vbabka, akpm, linux-mm, linux-kernel



On 6/21/18 3:10 PM, Kirill A. Shutemov wrote:
> On Fri, Jun 22, 2018 at 05:40:47AM +0800, Yang Shi wrote:
>> When merging anonymous page vma, if the size of vam can fit in at least
> s/vam/vma/
>
>> one hugepage, the mm will be registered for khugepaged for collapsing
>> THP in the future.
>>
>> But, it skips shmem vma. Doing so for shmem too when merging vma in
>> order to increase the odd to collapse hugepage by khugepaged.
> Good catch. Thanks.
>
> I think the fix incomplete. We shouldn't require vma->anon_vma for shmem,
> only for anonymous mappings. We don't support file-private THPs.

So you mean, shmem_file(vma->vm_file) && PageAnon(page)?

>
>> Also increase the count of shmem THP collapse. It looks missed before.
> Separate patch, please.

Sure.

Thanks,
Yang

>


^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: [PATCH] mm: thp: register mm for khugepaged when merging vma for shmem
  2018-06-21 22:24   ` Yang Shi
@ 2018-06-21 22:49     ` Yang Shi
  0 siblings, 0 replies; 4+ messages in thread
From: Yang Shi @ 2018-06-21 22:49 UTC (permalink / raw)
  To: Kirill A. Shutemov
  Cc: hughd, kirill.shutemov, vbabka, akpm, linux-mm, linux-kernel



On 6/21/18 3:24 PM, Yang Shi wrote:
>
>
> On 6/21/18 3:10 PM, Kirill A. Shutemov wrote:
>> On Fri, Jun 22, 2018 at 05:40:47AM +0800, Yang Shi wrote:
>>> When merging anonymous page vma, if the size of vam can fit in at least
>> s/vam/vma/
>>
>>> one hugepage, the mm will be registered for khugepaged for collapsing
>>> THP in the future.
>>>
>>> But, it skips shmem vma. Doing so for shmem too when merging vma in
>>> order to increase the odd to collapse hugepage by khugepaged.
>> Good catch. Thanks.
>>
>> I think the fix incomplete. We shouldn't require vma->anon_vma for 
>> shmem,
>> only for anonymous mappings. We don't support file-private THPs.
>
> So you mean, shmem_file(vma->vm_file) && PageAnon(page)?

I got your point. Please disregard the question.

>
>>
>>> Also increase the count of shmem THP collapse. It looks missed before.
>> Separate patch, please.
>
> Sure.
>
> Thanks,
> Yang
>
>>
>


^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2018-06-21 22:50 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2018-06-21 21:40 [PATCH] mm: thp: register mm for khugepaged when merging vma for shmem Yang Shi
2018-06-21 22:10 ` Kirill A. Shutemov
2018-06-21 22:24   ` Yang Shi
2018-06-21 22:49     ` Yang Shi

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.