From: Yin Fengwei <fengwei.yin@intel.com>
To: Mike Kravetz <mike.kravetz@oracle.com>, <linux-mm@kvack.org>,
<linux-kernel@vger.kernel.org>
Cc: Naoya Horiguchi <naoya.horiguchi@linux.dev>,
David Hildenbrand <david@redhat.com>,
Axel Rasmussen <axelrasmussen@google.com>,
Mina Almasry <almasrymina@google.com>,
Michal Hocko <mhocko@suse.com>, Peter Xu <peterx@redhat.com>,
Andrea Arcangeli <aarcange@redhat.com>,
Shuah Khan <shuah@kernel.org>, Mike Rapoport <rppt@kernel.org>,
Andrew Morton <akpm@linux-foundation.org>
Subject: Re: [PATCH v3 1/3] mm: enable MADV_DONTNEED for hugetlb mappings
Date: Thu, 17 Feb 2022 16:32:15 +0800 [thread overview]
Message-ID: <57fa170a-253b-932f-0261-b4905881d888@intel.com> (raw)
In-Reply-To: <20220215002348.128823-2-mike.kravetz@oracle.com>
On 2022/2/15 08:23, Mike Kravetz wrote:
> MADV_DONTNEED is currently disabled for hugetlb mappings. This
> certainly makes sense in shared file mappings as the pagecache maintains
> a reference to the page and it will never be freed. However, it could
> be useful to unmap and free pages in private mappings. In addition,
> userfaultfd minor fault users may be able to simplify code by using
> MADV_DONTNEED.
>
> The primary thing preventing MADV_DONTNEED from working on hugetlb
> mappings is a check in can_madv_lru_vma(). To allow support for hugetlb
> mappings create and use a new routine madvise_dontneed_free_valid_vma()
> that allows hugetlb mappings in this specific case.
>
> For normal mappings, madvise requires the start address be PAGE aligned
> and rounds up length to the next multiple of PAGE_SIZE. Do similarly
In man page of mmap, NOTE for "Huge page (Huge TLB) mappings":
"For munmap(), addr, and length must both be a multiple of the
underlying huge page size."
Should we apply same rule to MADV_DONTNEED? Thanks.
Regards
Yin, Fengwei
> for hugetlb mappings: require start address be huge page size aligned and
> round up length to the next multiple of huge page size. Use the new
> madvise_dontneed_free_valid_vma routine to check alignment and round up
> length/end. zap_page_range requires this alignment for hugetlb vmas
> otherwise we will hit BUGs.
>
> Signed-off-by: Mike Kravetz <mike.kravetz@oracle.com>
> ---
> mm/madvise.c | 33 ++++++++++++++++++++++++++++++---
> 1 file changed, 30 insertions(+), 3 deletions(-)
>
> diff --git a/mm/madvise.c b/mm/madvise.c
> index bed872a2ad5f..ede6affa1350 100644
> --- a/mm/madvise.c
> +++ b/mm/madvise.c
> @@ -554,9 +554,14 @@ static void madvise_cold_page_range(struct mmu_gather *tlb,
> tlb_end_vma(tlb, vma);
> }
>
> +static inline bool can_madv_lru_non_huge_vma(struct vm_area_struct *vma)
> +{
> + return !(vma->vm_flags & (VM_LOCKED|VM_PFNMAP));
> +}
> +
> static inline bool can_madv_lru_vma(struct vm_area_struct *vma)
> {
> - return !(vma->vm_flags & (VM_LOCKED|VM_HUGETLB|VM_PFNMAP));
> + return can_madv_lru_non_huge_vma(vma) && !is_vm_hugetlb_page(vma);
> }
>
> static long madvise_cold(struct vm_area_struct *vma,
> @@ -829,6 +834,23 @@ static long madvise_dontneed_single_vma(struct vm_area_struct *vma,
> return 0;
> }
>
> +static bool madvise_dontneed_free_valid_vma(struct vm_area_struct *vma,
> + unsigned long start,
> + unsigned long *end,
> + int behavior)
> +{
> + if (!is_vm_hugetlb_page(vma))
> + return can_madv_lru_non_huge_vma(vma);
> +
> + if (behavior != MADV_DONTNEED)
> + return false;
> + if (start & ~huge_page_mask(hstate_vma(vma)))
> + return false;
> +
> + *end = ALIGN(*end, huge_page_size(hstate_vma(vma)));
> + return true;
> +}
> +
> static long madvise_dontneed_free(struct vm_area_struct *vma,
> struct vm_area_struct **prev,
> unsigned long start, unsigned long end,
> @@ -837,7 +859,7 @@ static long madvise_dontneed_free(struct vm_area_struct *vma,
> struct mm_struct *mm = vma->vm_mm;
>
> *prev = vma;
> - if (!can_madv_lru_vma(vma))
> + if (!madvise_dontneed_free_valid_vma(vma, start, &end, behavior))
> return -EINVAL;
>
> if (!userfaultfd_remove(vma, start, end)) {
> @@ -859,7 +881,12 @@ static long madvise_dontneed_free(struct vm_area_struct *vma,
> */
> return -ENOMEM;
> }
> - if (!can_madv_lru_vma(vma))
> + /*
> + * Potential end adjustment for hugetlb vma is OK as
> + * the check below keeps end within vma.
> + */
> + if (!madvise_dontneed_free_valid_vma(vma, start, &end,
> + behavior))
> return -EINVAL;
> if (end > vma->vm_end) {
> /*
next prev parent reply other threads:[~2022-02-17 8:33 UTC|newest]
Thread overview: 7+ messages / expand[flat|nested] mbox.gz Atom feed top
2022-02-15 0:23 [PATCH v3 0/3] Add hugetlb MADV_DONTNEED support Mike Kravetz
2022-02-15 0:23 ` [PATCH v3 1/3] mm: enable MADV_DONTNEED for hugetlb mappings Mike Kravetz
2022-02-17 8:32 ` Yin Fengwei [this message]
2022-02-17 8:58 ` David Hildenbrand
2022-02-18 0:39 ` Yin Fengwei
2022-02-15 0:23 ` [PATCH v3 2/3] selftests/vm: add hugetlb madvise MADV_DONTNEED MADV_REMOVE test Mike Kravetz
2022-02-15 0:23 ` [PATCH v3 3/3] userfaultfd/selftests: enable hugetlb remap and remove event testing Mike Kravetz
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=57fa170a-253b-932f-0261-b4905881d888@intel.com \
--to=fengwei.yin@intel.com \
--cc=aarcange@redhat.com \
--cc=akpm@linux-foundation.org \
--cc=almasrymina@google.com \
--cc=axelrasmussen@google.com \
--cc=david@redhat.com \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-mm@kvack.org \
--cc=mhocko@suse.com \
--cc=mike.kravetz@oracle.com \
--cc=naoya.horiguchi@linux.dev \
--cc=peterx@redhat.com \
--cc=rppt@kernel.org \
--cc=shuah@kernel.org \
/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
all inboxes | Powered by JetHome®