[PATCH] mm/hugetlb: fix misspelled parameter names in comment

Zhenghui Hao posted 1 patch 1 week, 2 days ago
mm/hugetlb.c | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
[PATCH] mm/hugetlb: fix misspelled parameter names in comment
Posted by Zhenghui Hao 1 week, 2 days ago
The comment above hugepages_setup() refers to "hugepagsz" and
"default_hugepagsz", but the parameters parsed by this code are
"hugepagesz" and "default_hugepagesz".  Fix the spelling and also drop
the redundant spaces so the comment reads normally.

No functional change.

Signed-off-by: Zhenghui Hao <zhenghui.hao@qq.com>
---
 mm/hugetlb.c | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/mm/hugetlb.c b/mm/hugetlb.c
index 4f6f58bf3db6..68b97893a376 100644
--- a/mm/hugetlb.c
+++ b/mm/hugetlb.c
@@ -4268,9 +4268,9 @@ static __init void hugetlb_parse_params(void)
 
 /*
  * hugepages command line processing
- * hugepages normally follows a valid hugepagsz or default_hugepagsz
- * specification.  If not, ignore the hugepages value.  hugepages can also
- * be the first huge page command line  option in which case it implicitly
+ * hugepages normally follows a valid hugepagesz or default_hugepagesz
+ * specification. If not, ignore the hugepages value. hugepages can also
+ * be the first huge page command line option in which case it implicitly
  * specifies the number of huge pages for the default size.
  */
 static int __init hugepages_setup(char *s)
-- 
2.53.0
Re: [PATCH] mm/hugetlb: fix misspelled parameter names in comment
Posted by SJ Park 1 week, 2 days ago
On Tue, 15 Sep 2026 16:20:29 +0800 Zhenghui Hao <zhenghui.hao@qq.com> wrote:

> The comment above hugepages_setup() refers to "hugepagsz" and
> "default_hugepagsz", but the parameters parsed by this code are
> "hugepagesz" and "default_hugepagesz".  Fix the spelling and also drop
> the redundant spaces so the comment reads normally.
> 
> No functional change.

Looks good to me.

> 
> Signed-off-by: Zhenghui Hao <zhenghui.hao@qq.com>

Reviewed-by: SJ Park <sj@kernel.org>


Thanks,
SJ

[...]
Re: [PATCH] mm/hugetlb: fix misspelled parameter names in comment
Posted by Muchun Song 1 week, 2 days ago

> On Sep 15, 2026, at 16:20, Zhenghui Hao <zhenghui.hao@qq.com> wrote:
> 
> The comment above hugepages_setup() refers to "hugepagsz" and
> "default_hugepagsz", but the parameters parsed by this code are
> "hugepagesz" and "default_hugepagesz".  Fix the spelling and also drop
> the redundant spaces so the comment reads normally.
> 
> No functional change.
> 
> Signed-off-by: Zhenghui Hao <zhenghui.hao@qq.com>

Thanks. This makes tree-wide searches for these command-line
parameters more reliable.

Acked-by: Muchun Song <muchun.song@linux.dev>