From: David Hildenbrand <david@redhat.com>
To: Miaohe Lin <linmiaohe@huawei.com>, akpm@linux-foundation.org
Cc: linux-mm@kvack.org, linux-kernel@vger.kernel.org
Subject: Re: [PATCH] hugetlb_cgroup: use helper pages_per_huge_page() in hugetlb_cgroup
Date: Fri, 5 Feb 2021 09:47:20 +0100 [thread overview]
Message-ID: <e1991759-c036-0b94-465f-fe9e58c1c322@redhat.com> (raw)
In-Reply-To: <20210205084513.29624-1-linmiaohe@huawei.com>
On 05.02.21 09:45, Miaohe Lin wrote:
> We could use helper function pages_per_huge_page() to get the number of
> pages in a hstate to simplify the code slightly.
>
> Signed-off-by: Miaohe Lin <linmiaohe@huawei.com>
> ---
> mm/hugetlb_cgroup.c | 6 +++---
> 1 file changed, 3 insertions(+), 3 deletions(-)
>
> diff --git a/mm/hugetlb_cgroup.c b/mm/hugetlb_cgroup.c
> index 8909e075d441..86b5cc128584 100644
> --- a/mm/hugetlb_cgroup.c
> +++ b/mm/hugetlb_cgroup.c
> @@ -113,7 +113,7 @@ static void hugetlb_cgroup_init(struct hugetlb_cgroup *h_cgroup,
> rsvd_parent);
>
> limit = round_down(PAGE_COUNTER_MAX,
> - 1 << huge_page_order(&hstates[idx]));
> + pages_per_huge_page(&hstates[idx]));
>
> ret = page_counter_set_max(
> hugetlb_cgroup_counter_from_cgroup(h_cgroup, idx),
> @@ -466,7 +466,7 @@ static int hugetlb_cgroup_read_u64_max(struct seq_file *seq, void *v)
> counter = &h_cg->hugepage[idx];
>
> limit = round_down(PAGE_COUNTER_MAX,
> - 1 << huge_page_order(&hstates[idx]));
> + pages_per_huge_page(&hstates[idx]));
>
> switch (MEMFILE_ATTR(cft->private)) {
> case RES_RSVD_USAGE:
> @@ -513,7 +513,7 @@ static ssize_t hugetlb_cgroup_write(struct kernfs_open_file *of,
> return ret;
>
> idx = MEMFILE_IDX(of_cft(of)->private);
> - nr_pages = round_down(nr_pages, 1 << huge_page_order(&hstates[idx]));
> + nr_pages = round_down(nr_pages, pages_per_huge_page(&hstates[idx]));
>
> switch (MEMFILE_ATTR(of_cft(of)->private)) {
> case RES_RSVD_LIMIT:
>
Reviewed-by: David Hildenbrand <david@redhat.com>
--
Thanks,
David / dhildenb
prev parent reply other threads:[~2021-02-05 8:47 UTC|newest]
Thread overview: 2+ messages / expand[flat|nested] mbox.gz Atom feed top
2021-02-05 8:45 Miaohe Lin
2021-02-05 8:47 ` David Hildenbrand [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=e1991759-c036-0b94-465f-fe9e58c1c322@redhat.com \
--to=david@redhat.com \
--cc=akpm@linux-foundation.org \
--cc=linmiaohe@huawei.com \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-mm@kvack.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