From: Miaohe Lin <linmiaohe@huawei.com>
To: Peter Xu <peterx@redhat.com>
Cc: Wei Zhang <wzam@amazon.com>, Matthew Wilcox <willy@infradead.org>,
"Linus Torvalds" <torvalds@linux-foundation.org>,
Jason Gunthorpe <jgg@ziepe.ca>,
"Gal Pressman" <galpress@amazon.com>,
Christoph Hellwig <hch@lst.de>,
"Andrea Arcangeli" <aarcange@redhat.com>, Jan Kara <jack@suse.cz>,
Kirill Shutemov <kirill@shutemov.name>,
David Gibson <david@gibson.dropbear.id.au>,
"Mike Rapoport" <rppt@linux.vnet.ibm.com>,
Mike Kravetz <mike.kravetz@oracle.com>,
Kirill Tkhai <ktkhai@virtuozzo.com>, Jann Horn <jannh@google.com>,
"Andrew Morton" <akpm@linux-foundation.org>,
<linux-kernel@vger.kernel.org>, <linux-mm@kvack.org>
Subject: Re: [PATCH 1/4] hugetlb: Dedup the code to add a new file_region
Date: Thu, 4 Feb 2021 09:59:46 +0800 [thread overview]
Message-ID: <0b1f73fb-e51b-c86d-1abe-ad92ddef6b99@huawei.com> (raw)
In-Reply-To: <20210203210832.113685-2-peterx@redhat.com>
Hi:
On 2021/2/4 5:08, Peter Xu wrote:
> Introduce hugetlb_resv_map_add() helper to add a new file_region rather than
> duplication the similar code twice in add_reservation_in_range().
>
This cleanup is also in my plan. But I was too sluggish to do this. Many thanks for doing this.
Reviewed-by: Miaohe Lin <linmiaohe@huawei.com>
> Signed-off-by: Peter Xu <peterx@redhat.com>
> ---
> mm/hugetlb.c | 51 +++++++++++++++++++++++++++------------------------
> 1 file changed, 27 insertions(+), 24 deletions(-)
>
> diff --git a/mm/hugetlb.c b/mm/hugetlb.c
> index 18f6ee317900..d2859c2aecc9 100644
> --- a/mm/hugetlb.c
> +++ b/mm/hugetlb.c
> @@ -321,6 +321,24 @@ static void coalesce_file_region(struct resv_map *resv, struct file_region *rg)
> }
> }
>
> +static inline long
> +hugetlb_resv_map_add(struct resv_map *map, struct file_region *rg, long from,
> + long to, struct hstate *h, struct hugetlb_cgroup *cg,
> + long *regions_needed)
> +{
> + struct file_region *nrg;
> +
> + if (!regions_needed) {
> + nrg = get_file_region_entry_from_cache(map, from, to);
> + record_hugetlb_cgroup_uncharge_info(cg, h, map, nrg);
> + list_add(&nrg->link, rg->link.prev);
> + coalesce_file_region(map, nrg);
> + } else
> + *regions_needed += 1;
> +
> + return to - from;
> +}
> +
> /*
> * Must be called with resv->lock held.
> *
> @@ -336,7 +354,7 @@ static long add_reservation_in_range(struct resv_map *resv, long f, long t,
> long add = 0;
> struct list_head *head = &resv->regions;
> long last_accounted_offset = f;
> - struct file_region *rg = NULL, *trg = NULL, *nrg = NULL;
> + struct file_region *rg = NULL, *trg = NULL;
>
> if (regions_needed)
> *regions_needed = 0;
> @@ -365,18 +383,11 @@ static long add_reservation_in_range(struct resv_map *resv, long f, long t,
> /* Add an entry for last_accounted_offset -> rg->from, and
> * update last_accounted_offset.
> */
> - if (rg->from > last_accounted_offset) {
> - add += rg->from - last_accounted_offset;
> - if (!regions_needed) {
> - nrg = get_file_region_entry_from_cache(
> - resv, last_accounted_offset, rg->from);
> - record_hugetlb_cgroup_uncharge_info(h_cg, h,
> - resv, nrg);
> - list_add(&nrg->link, rg->link.prev);
> - coalesce_file_region(resv, nrg);
> - } else
> - *regions_needed += 1;
> - }
> + if (rg->from > last_accounted_offset)
> + add += hugetlb_resv_map_add(resv, rg,
> + last_accounted_offset,
> + rg->from, h, h_cg,
> + regions_needed);
>
> last_accounted_offset = rg->to;
> }
> @@ -384,17 +395,9 @@ static long add_reservation_in_range(struct resv_map *resv, long f, long t,
> /* Handle the case where our range extends beyond
> * last_accounted_offset.
> */
> - if (last_accounted_offset < t) {
> - add += t - last_accounted_offset;
> - if (!regions_needed) {
> - nrg = get_file_region_entry_from_cache(
> - resv, last_accounted_offset, t);
> - record_hugetlb_cgroup_uncharge_info(h_cg, h, resv, nrg);
> - list_add(&nrg->link, rg->link.prev);
> - coalesce_file_region(resv, nrg);
> - } else
> - *regions_needed += 1;
> - }
> + if (last_accounted_offset < t)
> + add += hugetlb_resv_map_add(resv, rg, last_accounted_offset,
> + t, h, h_cg, regions_needed);
>
> VM_BUG_ON(add < 0);
> return add;
>
next prev parent reply other threads:[~2021-02-04 2:00 UTC|newest]
Thread overview: 14+ messages / expand[flat|nested] mbox.gz Atom feed top
2021-02-03 21:08 [PATCH 0/4] mm/hugetlb: Early cow on fork, and a few cleanups Peter Xu
2021-02-03 21:08 ` [PATCH 1/4] hugetlb: Dedup the code to add a new file_region Peter Xu
2021-02-03 23:01 ` Mike Kravetz
2021-02-04 1:59 ` Miaohe Lin [this message]
2021-02-03 21:08 ` [PATCH 2/4] hugetlg: Break earlier in add_reservation_in_range() when we can Peter Xu
2021-02-04 0:45 ` Mike Kravetz
2021-02-04 2:20 ` Miaohe Lin
2021-02-03 21:08 ` [PATCH 3/4] mm: Introduce page_needs_cow_for_dma() for deciding whether cow Peter Xu
2021-02-03 21:08 ` [PATCH 4/4] hugetlb: Do early cow when page pinned on src mm Peter Xu
2021-02-03 21:15 ` Linus Torvalds
2021-02-03 22:08 ` Peter Xu
2021-02-03 22:04 ` Mike Kravetz
2021-02-03 22:30 ` Peter Xu
2021-02-04 14:32 ` [PATCH 0/4] mm/hugetlb: Early cow on fork, and a few cleanups Gal Pressman
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=0b1f73fb-e51b-c86d-1abe-ad92ddef6b99@huawei.com \
--to=linmiaohe@huawei.com \
--cc=aarcange@redhat.com \
--cc=akpm@linux-foundation.org \
--cc=david@gibson.dropbear.id.au \
--cc=galpress@amazon.com \
--cc=hch@lst.de \
--cc=jack@suse.cz \
--cc=jannh@google.com \
--cc=jgg@ziepe.ca \
--cc=kirill@shutemov.name \
--cc=ktkhai@virtuozzo.com \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-mm@kvack.org \
--cc=mike.kravetz@oracle.com \
--cc=peterx@redhat.com \
--cc=rppt@linux.vnet.ibm.com \
--cc=torvalds@linux-foundation.org \
--cc=willy@infradead.org \
--cc=wzam@amazon.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