From: David Hildenbrand <david@redhat.com>
To: Miaohe Lin <linmiaohe@huawei.com>, akpm@linux-foundation.org
Cc: ziy@nvidia.com, william.kucharski@oracle.com,
willy@infradead.org, yang.shi@linux.alibaba.com,
aneesh.kumar@linux.ibm.com, rcampbell@nvidia.com,
songliubraving@fb.com, kirill.shutemov@linux.intel.com,
riel@surriel.com, hannes@cmpxchg.org, minchan@kernel.org,
linux-kernel@vger.kernel.org, linux-mm@kvack.org
Subject: Re: [PATCH v2 3/5] mm/huge_memory.c: add missing read-only THP checking in transparent_hugepage_enabled()
Date: Fri, 30 Apr 2021 09:49:08 +0200 [thread overview]
Message-ID: <9c340151-6dbb-504c-e205-3edda6a5aff8@redhat.com> (raw)
In-Reply-To: <9b511ad9-0ba1-e896-4eb5-0e91ca4b97ab@huawei.com>
On 30.04.21 03:57, Miaohe Lin wrote:
> On 2021/4/29 22:57, David Hildenbrand wrote:
>> On 29.04.21 15:26, Miaohe Lin wrote:
>>> Since commit 99cb0dbd47a1 ("mm,thp: add read-only THP support for
>>> (non-shmem) FS"), read-only THP file mapping is supported. But it
>>> forgot to add checking for it in transparent_hugepage_enabled().
>>> To fix it, we add checking for read-only THP file mapping and also
>>> introduce helper transhuge_vma_enabled() to check whether thp is
>>> enabled for specified vma to reduce duplicated code.
>>>
>>> Fixes: 99cb0dbd47a1 ("mm,thp: add read-only THP support for (non-shmem) FS")
>>> Signed-off-by: Miaohe Lin <linmiaohe@huawei.com>
>>> ---
>>> include/linux/huge_mm.h | 21 +++++++++++++++++----
>>> mm/huge_memory.c | 6 ++++++
>>> mm/khugepaged.c | 4 +---
>>> mm/shmem.c | 3 +--
>>> 4 files changed, 25 insertions(+), 9 deletions(-)
>>>
>>> diff --git a/include/linux/huge_mm.h b/include/linux/huge_mm.h
>>> index 0a526f211fec..f460b74619fc 100644
>>> --- a/include/linux/huge_mm.h
>>> +++ b/include/linux/huge_mm.h
>>> @@ -115,6 +115,16 @@ extern struct kobj_attribute shmem_enabled_attr;
>>> extern unsigned long transparent_hugepage_flags;
>>> +static inline bool transhuge_vma_enabled(struct vm_area_struct *vma,
>>> + unsigned long vm_flags)
>>
>> You're passing the vma already, why do you pass vma->vm_flags separately? It's sufficient to pass in the vma only.
>>
>
> Many thanks for comment! IMO, vm_flags may not always equal to vma->vm_flags. When hugepage_vma_check()
> is called from collapse_pte_mapped_thp, vma_flags = vma->vm_flags | VM_HUGEPAGE. So I think we should
> pass vm_flags here.
Oh, sorry, I missed the hugepage_vma_check() user. That's unfortunate.
>>> static inline void prep_transhuge_page(struct page *page) {}
>>> static inline bool is_transparent_hugepage(struct page *page)
>>> diff --git a/mm/huge_memory.c b/mm/huge_memory.c
>>> index 76ca1eb2a223..e24a96de2e37 100644
>>> --- a/mm/huge_memory.c
>>> +++ b/mm/huge_memory.c
>>> @@ -68,12 +68,18 @@ bool transparent_hugepage_enabled(struct vm_area_struct *vma)
>>> /* The addr is used to check if the vma size fits */
>>> unsigned long addr = (vma->vm_end & HPAGE_PMD_MASK) - HPAGE_PMD_SIZE;
>>> + if (!transhuge_vma_enabled(vma, vma->vm_flags))
>>> + return false;
>>> if (!transhuge_vma_suitable(vma, addr))
>>> return false;
>>> if (vma_is_anonymous(vma))
>>> return __transparent_hugepage_enabled(vma);
>>> if (vma_is_shmem(vma))
>>> return shmem_huge_enabled(vma);
>>> + if (IS_ENABLED(CONFIG_READ_ONLY_THP_FOR_FS) && vma->vm_file &&
>>> + !inode_is_open_for_write(vma->vm_file->f_inode) &&
>>> + (vma->vm_flags & VM_EXEC))
>>> + return true;
>>
>> Nit: I'm really wondering why we have 3 different functions that sound like they are doing the same thing
>>
>> transparent_hugepage_enabled(vma)
>> transhuge_vma_enabled()
>> transhuge_vma_suitable()
>>
>> Which check belongs where? Does it really have to be that complicated?
>>
>
> IMO, transhuge_vma_suitable() checks whether pgoff , vm_start and vm_end is possible for thp.
> transhuge_vma_enabled() checks whether thp is explicitly disabled through madvise.
> And transparent_hugepage_enabled() use these helpers to get the conclusion whether thp is
> enabled for specified vma.
>
> Any suggestions?
transparent_hugepage_enabled() vs. transhuge_vma_enabled() is really
sub-optimal naming. I guess "transparent_hugepage_active()" would have
been clearer (enabled + suitable + applicable). Cannot really give a
good suggestion here on how to name transhuge_vma_enabled() differently.
We now have
transparent_hugepage_enabled()
-> transhuge_vma_enabled()
-> __transparent_hugepage_enabled() -> transhuge_vma_enabled()
-> shmem_huge_enabled() -> transhuge_vma_enabled()
That looks sub-optimal as well. Maybe we should have a
static inline bool file_thp_enabled(struct vma *vma)
{
return transhuge_vma_enabled() &&
IS_ENABLED(CONFIG_READ_ONLY_THP_FOR_FS) &&
!inode_is_open_for_write(vma->vm_file->f_inode) &&
(vma->vm_flags & VM_EXEC))
}
and in transparent_hugepage_enabled() only do a
if (vma->vm_file)
return file_thp_enabled(vma);
Or move the transhuge_vma_enabled() check completely to
transparent_hugepage_enabled() if possible.
--
Thanks,
David / dhildenb
next prev parent reply other threads:[~2021-04-30 7:49 UTC|newest]
Thread overview: 16+ messages / expand[flat|nested] mbox.gz Atom feed top
2021-04-29 13:26 [PATCH v2 0/5] Cleanup and fixup for huge_memory Miaohe Lin
2021-04-29 13:26 ` [PATCH v2 1/5] mm/huge_memory.c: remove dedicated macro HPAGE_CACHE_INDEX_MASK Miaohe Lin
2021-04-29 14:48 ` David Hildenbrand
2021-04-30 1:39 ` Miaohe Lin
2021-04-29 13:26 ` [PATCH v2 2/5] mm/huge_memory.c: use page->deferred_list Miaohe Lin
2021-04-29 14:52 ` David Hildenbrand
2021-04-29 13:26 ` [PATCH v2 3/5] mm/huge_memory.c: add missing read-only THP checking in transparent_hugepage_enabled() Miaohe Lin
2021-04-29 14:57 ` David Hildenbrand
2021-04-29 16:23 ` Yang Shi
2021-04-30 1:57 ` Miaohe Lin
2021-04-30 7:49 ` David Hildenbrand [this message]
2021-04-30 8:20 ` Miaohe Lin
2021-04-29 13:26 ` [PATCH v2 4/5] mm/huge_memory.c: remove unnecessary tlb_remove_page_size() for huge zero pmd Miaohe Lin
2021-04-29 15:02 ` David Hildenbrand
2021-04-29 17:55 ` Yang Shi
2021-04-29 13:26 ` [PATCH v2 5/5] mm/huge_memory.c: don't discard hugepage if other processes are mapping it Miaohe Lin
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=9c340151-6dbb-504c-e205-3edda6a5aff8@redhat.com \
--to=david@redhat.com \
--cc=akpm@linux-foundation.org \
--cc=aneesh.kumar@linux.ibm.com \
--cc=hannes@cmpxchg.org \
--cc=kirill.shutemov@linux.intel.com \
--cc=linmiaohe@huawei.com \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-mm@kvack.org \
--cc=minchan@kernel.org \
--cc=rcampbell@nvidia.com \
--cc=riel@surriel.com \
--cc=songliubraving@fb.com \
--cc=william.kucharski@oracle.com \
--cc=willy@infradead.org \
--cc=yang.shi@linux.alibaba.com \
--cc=ziy@nvidia.com \
/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