linux-mm.kvack.org archive mirror
 help / color / mirror / Atom feed
From: Muchun Song <songmuchun@bytedance.com>
To: Yihao Han <hanyihao@vivo.com>
Cc: SeongJae Park <sj@kernel.org>,
	Andrew Morton <akpm@linux-foundation.org>,
	 Linux Memory Management List <linux-mm@kvack.org>,
	LKML <linux-kernel@vger.kernel.org>,
	kernel@vivo.com
Subject: Re: [PATCH] mm/damon/vaddr: remove swap_ranges() and replace it with swap()
Date: Thu, 11 Nov 2021 11:37:36 +0800	[thread overview]
Message-ID: <CAMZfGtWVVLKO76OmtVp+xOL1waTxBb05tvWXgsnf=k7nFF4J2A@mail.gmail.com> (raw)
In-Reply-To: <20211111032204.3721-1-hanyihao@vivo.com>

On Thu, Nov 11, 2021 at 11:22 AM Yihao Han <hanyihao@vivo.com> wrote:
>
> Remove 'swap_ranges()' and replace it with the macro 'swap()'
> defined in 'include/linux/minmax.h' to simplify code and improve efficiency
>
> Reviewed-by: SeongJae Park <sj@kernel.org>
> Reviewed-by: Muchun Song <songmuchun@bytedance.com>
> Signed-off-by: Yihao Han <hanyihao@vivo.com>

Actually, I and SeongJae didn't provide Reviewed-by in the
previous thread. But this patch looks good to me, so

Reviewed-by: Muchun Song <songmuchun@bytedance.com>

BTW, the subject missed a "v2" tag (and changes log
should include what you have changed since v1).

Thanks.

> ---
>  mm/damon/vaddr.c | 16 +++-------------
>  1 file changed, 3 insertions(+), 13 deletions(-)
>
> diff --git a/mm/damon/vaddr.c b/mm/damon/vaddr.c
> index 35fe49080ee9..814dc811d7c4 100644
> --- a/mm/damon/vaddr.c
> +++ b/mm/damon/vaddr.c
> @@ -97,16 +97,6 @@ static unsigned long sz_range(struct damon_addr_range *r)
>         return r->end - r->start;
>  }
>
> -static void swap_ranges(struct damon_addr_range *r1,
> -                       struct damon_addr_range *r2)
> -{
> -       struct damon_addr_range tmp;
> -
> -       tmp = *r1;
> -       *r1 = *r2;
> -       *r2 = tmp;
> -}
> -
>  /*
>   * Find three regions separated by two biggest unmapped regions
>   *
> @@ -145,9 +135,9 @@ static int __damon_va_three_regions(struct vm_area_struct *vma,
>                 gap.start = last_vma->vm_end;
>                 gap.end = vma->vm_start;
>                 if (sz_range(&gap) > sz_range(&second_gap)) {
> -                       swap_ranges(&gap, &second_gap);
> +                       swap(gap, second_gap);
>                         if (sz_range(&second_gap) > sz_range(&first_gap))
> -                               swap_ranges(&second_gap, &first_gap);
> +                               swap(second_gap, first_gap);
>                 }
>  next:
>                 last_vma = vma;
> @@ -158,7 +148,7 @@ static int __damon_va_three_regions(struct vm_area_struct *vma,
>
>         /* Sort the two biggest gaps by address */
>         if (first_gap.start > second_gap.start)
> -               swap_ranges(&first_gap, &second_gap);
> +               swap(first_gap, second_gap);
>
>         /* Store the result */
>         regions[0].start = ALIGN(start, DAMON_MIN_REGION);
> --
> 2.17.1
>


      reply	other threads:[~2021-11-11  3:38 UTC|newest]

Thread overview: 2+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2021-11-11  3:22 Yihao Han
2021-11-11  3:37 ` Muchun Song [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='CAMZfGtWVVLKO76OmtVp+xOL1waTxBb05tvWXgsnf=k7nFF4J2A@mail.gmail.com' \
    --to=songmuchun@bytedance.com \
    --cc=akpm@linux-foundation.org \
    --cc=hanyihao@vivo.com \
    --cc=kernel@vivo.com \
    --cc=linux-kernel@vger.kernel.org \
    --cc=linux-mm@kvack.org \
    --cc=sj@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