From: Baolin Wang <baolin.wang@linux.alibaba.com>
To: "Maíra Canal" <mcanal@igalia.com>,
"Jonathan Corbet" <corbet@lwn.net>,
"Andrew Morton" <akpm@linux-foundation.org>,
"Hugh Dickins" <hughd@google.com>,
"Barry Song" <baohua@kernel.org>,
"David Hildenbrand" <david@redhat.com>,
"Ryan Roberts" <ryan.roberts@arm.com>,
"Lance Yang" <ioworker0@gmail.com>
Cc: linux-mm@kvack.org, dri-devel@lists.freedesktop.org,
linux-doc@vger.kernel.org, linux-kernel@vger.kernel.org,
kernel-dev@igalia.com
Subject: Re: [PATCH v5 3/5] mm: move ``get_order_from_str()`` to internal.h
Date: Mon, 4 Nov 2024 10:25:31 +0800 [thread overview]
Message-ID: <9d5ce0af-6fca-422f-b1f8-650879f8ff5a@linux.alibaba.com> (raw)
In-Reply-To: <20241101165719.1074234-5-mcanal@igalia.com>
On 2024/11/2 00:54, Maíra Canal wrote:
> In order to implement a kernel parameter similar to ``thp_anon=`` for
> shmem, we'll need the function ``get_order_from_str()``.
>
> Instead of duplicating the function, move the function to a shared
> header, in which both mm/shmem.c and mm/huge_memory.c will be able to
> use it.
>
> Signed-off-by: Maíra Canal <mcanal@igalia.com>
> ---
> mm/huge_memory.c | 38 +++++++++++++++-----------------------
> mm/internal.h | 22 ++++++++++++++++++++++
> 2 files changed, 37 insertions(+), 23 deletions(-)
>
> diff --git a/mm/huge_memory.c b/mm/huge_memory.c
> index f92068864469..a6edbd8c4f49 100644
> --- a/mm/huge_memory.c
> +++ b/mm/huge_memory.c
> @@ -958,26 +958,6 @@ static int __init setup_transparent_hugepage(char *str)
> }
> __setup("transparent_hugepage=", setup_transparent_hugepage);
>
> -static inline int get_order_from_str(const char *size_str)
> -{
> - unsigned long size;
> - char *endptr;
> - int order;
> -
> - size = memparse(size_str, &endptr);
> -
> - if (!is_power_of_2(size))
> - goto err;
> - order = get_order(size);
> - if (BIT(order) & ~THP_ORDERS_ALL_ANON)
> - goto err;
> -
> - return order;
> -err:
> - pr_err("invalid size %s in thp_anon boot parameter\n", size_str);
> - return -EINVAL;
> -}
> -
> static char str_dup[PAGE_SIZE] __initdata;
> static int __init setup_thp_anon(char *str)
> {
> @@ -1007,10 +987,22 @@ static int __init setup_thp_anon(char *str)
> start_size = strsep(&subtoken, "-");
> end_size = subtoken;
>
> - start = get_order_from_str(start_size);
> - end = get_order_from_str(end_size);
> + start = get_order_from_str(start_size, THP_ORDERS_ALL_ANON);
> + end = get_order_from_str(end_size, THP_ORDERS_ALL_ANON);
> } else {
> - start = end = get_order_from_str(subtoken);
> + start_size = end_size = subtoken;
> + start = end = get_order_from_str(subtoken,
> + THP_ORDERS_ALL_ANON);
> + }
> +
> + if (start == -EINVAL) {
> + pr_err("invalid size %s in thp_anon boot parameter\n", start_size);
> + goto err;
> + }
> +
> + if (end == -EINVAL) {
> + pr_err("invalid size %s in thp_anon boot parameter\n", end_size);
> + goto err;
> }
There are already checks for ‘start’ and ‘end’ below, and will print
error messages if error occurs. So I suspect whether these repeated
checks and error infor are helpful.
Anyway, I don't have a strong preference.
Reviewed-by: Baolin Wang <baolin.wang@linux.alibaba.com>
next prev parent reply other threads:[~2024-11-04 2:25 UTC|newest]
Thread overview: 10+ messages / expand[flat|nested] mbox.gz Atom feed top
2024-11-01 16:54 [PATCH v5 0/5] mm: add more kernel parameters to control mTHP Maíra Canal
2024-11-01 16:54 ` [PATCH v5 1/5] mm: fix docs for the kernel parameter ``thp_anon=`` Maíra Canal
2024-11-01 16:54 ` [PATCH v5 2/5] mm: shmem: control THP support through the kernel command line Maíra Canal
2024-11-01 16:54 ` [PATCH v5 3/5] mm: move ``get_order_from_str()`` to internal.h Maíra Canal
2024-11-04 2:25 ` Baolin Wang [this message]
2024-11-04 11:16 ` Maíra Canal
2024-11-01 16:54 ` [PATCH v5 4/5] mm: shmem: override mTHP shmem default with a kernel parameter Maíra Canal
2024-11-04 2:33 ` Baolin Wang
2024-11-01 16:54 ` [PATCH v5 5/5] mm: huge_memory: Use strscpy() instead of strcpy() Maíra Canal
2024-11-01 18:30 ` [PATCH v5 0/5] mm: add more kernel parameters to control mTHP Andrew Morton
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=9d5ce0af-6fca-422f-b1f8-650879f8ff5a@linux.alibaba.com \
--to=baolin.wang@linux.alibaba.com \
--cc=akpm@linux-foundation.org \
--cc=baohua@kernel.org \
--cc=corbet@lwn.net \
--cc=david@redhat.com \
--cc=dri-devel@lists.freedesktop.org \
--cc=hughd@google.com \
--cc=ioworker0@gmail.com \
--cc=kernel-dev@igalia.com \
--cc=linux-doc@vger.kernel.org \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-mm@kvack.org \
--cc=mcanal@igalia.com \
--cc=ryan.roberts@arm.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