linux-mm.kvack.org archive mirror
 help / color / mirror / Atom feed
From: Peter Xu <peterx@redhat.com>
To: Li Xinhai <lixinhai.lxh@gmail.com>
Cc: linux-mm@kvack.org, akpm@linux-foundation.org,
	Mike Kravetz <mike.kravetz@oracle.com>
Subject: Re: [PATCH] mm/hugetlb.c: fix unnecessary address expansion of pmd sharing
Date: Wed, 30 Dec 2020 13:42:19 -0500	[thread overview]
Message-ID: <20201230184219.GB6605@xz-x1> (raw)
In-Reply-To: <20201229042125.2663029-1-lixinhai.lxh@gmail.com>

On Tue, Dec 29, 2020 at 12:21:25PM +0800, Li Xinhai wrote:
> The current code would unnecessarily expand the address range. Consider
> one example, (start, end) = (1G-2M, 3G+2M), and  (vm_start, vm_end) =
> (1G-4M, 3G+4M), the expected adjustment should be keep (1G-2M, 3G+2M)
> without expand. But the current result will be (1G-4M, 3G+4M). Actually,
> the range (1G-4M, 1G) and (3G, 3G+4M) would never been involved in pmd
> sharing.
> 
> After this patch, if pud aligned *start across vm_start, then we know the
> *start and vm_start are in same pud_index, and vm_start is not pud
> aligned, so don't adjust *start. Same logic applied to *end.
> 
> Fixes: commit 75802ca66354 ("mm/hugetlb: fix calculation of adjust_range_if_pmd_sharing_possible")
> Cc: Mike Kravetz <mike.kravetz@oracle.com>
> Cc: Peter Xu <peterx@redhat.com>
> Signed-off-by: Li Xinhai <lixinhai.lxh@gmail.com>
> ---
>  mm/hugetlb.c | 13 +++++++++----
>  1 file changed, 9 insertions(+), 4 deletions(-)
> 
> diff --git a/mm/hugetlb.c b/mm/hugetlb.c
> index cbf32d2824fd..d1e9ea55b7e6 100644
> --- a/mm/hugetlb.c
> +++ b/mm/hugetlb.c
> @@ -5249,11 +5249,16 @@ void adjust_range_if_pmd_sharing_possible(struct vm_area_struct *vma,
>  	a_end = ALIGN(*end, PUD_SIZE);
>  
>  	/*
> -	 * Intersect the range with the vma range, since pmd sharing won't be
> -	 * across vma after all
> +	 * If the PUD aligned address across vma range, then it means the
> +	 * vm_start/vm_end is not PUD aligned. In that case, we must don't
> +	 * adjust range because pmd sharing is not possbile at the start and/or
> +	 * end part of vma.
>  	 */
> -	*start = max(vma->vm_start, a_start);
> -	*end = min(vma->vm_end, a_end);
> +	if (a_start >= vma->vm_start)
> +		*start = a_start;
> +
> +	if (a_end <= vma->vm_end)
> +		*end = a_end;
>  }

Looks correct, thanks.

Reviewed-by: Peter Xu <peterx@redhat.com>

-- 
Peter Xu



      parent reply	other threads:[~2020-12-30 18:42 UTC|newest]

Thread overview: 12+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2020-12-29  4:21 Li Xinhai
2020-12-29 19:21 ` Andrew Morton
2020-12-29 21:20 ` Mike Kravetz
2020-12-31 17:56   ` Mike Kravetz
2021-01-02 11:56     ` Li Xinhai
2021-01-04  3:55       ` Mike Kravetz
2021-01-04  7:10         ` Li Xinhai
2021-01-04 18:59           ` Mike Kravetz
2021-01-05  2:10             ` Li Xinhai
2021-01-05  2:38               ` Li Xinhai
2021-01-05 18:20                 ` Mike Kravetz
2020-12-30 18:42 ` Peter Xu [this message]

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=20201230184219.GB6605@xz-x1 \
    --to=peterx@redhat.com \
    --cc=akpm@linux-foundation.org \
    --cc=linux-mm@kvack.org \
    --cc=lixinhai.lxh@gmail.com \
    --cc=mike.kravetz@oracle.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