* [PATCH 1/5] asm-generic: fix typo "explicity" in comment
[not found] <20260904104854.25272-1-hemanth.selam@gmail.com>
@ 2026-09-04 10:48 ` Hemanth Selam
2026-09-04 11:33 ` Lorenzo Stoakes (ARM)
2026-09-04 23:59 ` SJ Park
2026-09-04 10:48 ` [PATCH 2/5] char: fix typo "funcion" " Hemanth Selam
` (2 subsequent siblings)
3 siblings, 2 replies; 10+ messages in thread
From: Hemanth Selam @ 2026-09-04 10:48 UTC (permalink / raw)
To: Andrew Morton, Liam R. Howlett, Lorenzo Stoakes,
David Hildenbrand, Vlastimil Babka, Jann Horn, Arnd Bergmann
Cc: linux-kernel, linux-mm, linux-arch
Correct "explicity" to "Explicitly", reported by scripts/checkpatch.pl
using the misspelling list in scripts/spelling.txt. Only touches comments,
no code changes.
Assisted-by: Cursor:claude-opus-5
Signed-off-by: Hemanth Selam <hemanth.selam@gmail.com>
---
include/uapi/asm-generic/mman-common.h | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/include/uapi/asm-generic/mman-common.h b/include/uapi/asm-generic/mman-common.h
index ef1c27fa3c57..cf1418649b3a 100644
--- a/include/uapi/asm-generic/mman-common.h
+++ b/include/uapi/asm-generic/mman-common.h
@@ -62,7 +62,7 @@
#define MADV_HUGEPAGE 14 /* Worth backing with hugepages */
#define MADV_NOHUGEPAGE 15 /* Not worth backing with hugepages */
-#define MADV_DONTDUMP 16 /* Explicity exclude from the core dump,
+#define MADV_DONTDUMP 16 /* Explicitly exclude from the core dump,
overrides the coredump filter bits */
#define MADV_DODUMP 17 /* Clear the MADV_DONTDUMP flag */
--
2.48.1
^ permalink raw reply related [flat|nested] 10+ messages in thread
* [PATCH 2/5] char: fix typo "funcion" in comment
[not found] <20260904104854.25272-1-hemanth.selam@gmail.com>
2026-09-04 10:48 ` [PATCH 1/5] asm-generic: fix typo "explicity" in comment Hemanth Selam
@ 2026-09-04 10:48 ` Hemanth Selam
2026-09-04 11:34 ` Lorenzo Stoakes (ARM)
2026-09-04 10:48 ` [PATCH 4/5] mm: fix typo "mergable" " Hemanth Selam
2026-09-04 10:48 ` [PATCH 5/5] tools/testing: " Hemanth Selam
3 siblings, 1 reply; 10+ messages in thread
From: Hemanth Selam @ 2026-09-04 10:48 UTC (permalink / raw)
To: Andrew Morton, David Hildenbrand, Lorenzo Stoakes,
Liam R. Howlett, Vlastimil Babka, Mike Rapoport,
Suren Baghdasaryan, Michal Hocko, Jann Horn, Pedro Falcato,
Arnd Bergmann, Greg Kroah-Hartman
Cc: linux-kernel, linux-mm
Correct "funcion" to "function", reported by scripts/checkpatch.pl using
the misspelling list in scripts/spelling.txt. Only touches comments, no
code changes.
Assisted-by: Cursor:claude-opus-5
Signed-off-by: Hemanth Selam <hemanth.selam@gmail.com>
---
drivers/char/mem.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/drivers/char/mem.c b/drivers/char/mem.c
index 63253d1de5d7..f9db486d7029 100644
--- a/drivers/char/mem.c
+++ b/drivers/char/mem.c
@@ -76,7 +76,7 @@ static inline bool should_stop_iteration(void)
}
/*
- * This funcion reads the *physical* memory. The f_pos points directly to the
+ * This function reads the *physical* memory. The f_pos points directly to the
* memory location.
*/
static ssize_t read_mem(struct file *file, char __user *buf,
--
2.48.1
^ permalink raw reply related [flat|nested] 10+ messages in thread
* [PATCH 4/5] mm: fix typo "mergable" in comment
[not found] <20260904104854.25272-1-hemanth.selam@gmail.com>
2026-09-04 10:48 ` [PATCH 1/5] asm-generic: fix typo "explicity" in comment Hemanth Selam
2026-09-04 10:48 ` [PATCH 2/5] char: fix typo "funcion" " Hemanth Selam
@ 2026-09-04 10:48 ` Hemanth Selam
2026-09-04 11:35 ` Lorenzo Stoakes (ARM)
2026-09-04 10:48 ` [PATCH 5/5] tools/testing: " Hemanth Selam
3 siblings, 1 reply; 10+ messages in thread
From: Hemanth Selam @ 2026-09-04 10:48 UTC (permalink / raw)
To: Andrew Morton, David Hildenbrand, Lorenzo Stoakes,
Liam R. Howlett, Vlastimil Babka, Mike Rapoport,
Suren Baghdasaryan, Michal Hocko
Cc: linux-kernel, linux-mm
Correct "mergable" to "mergeable", reported by scripts/checkpatch.pl using
the misspelling list in scripts/spelling.txt. Only touches comments, no
code changes.
Assisted-by: Cursor:claude-opus-5
Signed-off-by: Hemanth Selam <hemanth.selam@gmail.com>
---
include/linux/mm.h | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/include/linux/mm.h b/include/linux/mm.h
index dd09c438fa23..5c856b78ddc2 100644
--- a/include/linux/mm.h
+++ b/include/linux/mm.h
@@ -587,7 +587,7 @@ enum {
#define VMA_ACCESS_FLAGS mk_vma_flags(VMA_READ_BIT, VMA_WRITE_BIT, VMA_EXEC_BIT)
/*
- * Special vmas that are non-mergable, non-mlock()able.
+ * Special vmas that are non-mergeable, non-mlock()able.
*/
#define VMA_SPECIAL_FLAGS mk_vma_flags(VMA_IO_BIT, VMA_DONTEXPAND_BIT, \
--
2.48.1
^ permalink raw reply related [flat|nested] 10+ messages in thread
* [PATCH 5/5] tools/testing: fix typo "mergable" in comment
[not found] <20260904104854.25272-1-hemanth.selam@gmail.com>
` (2 preceding siblings ...)
2026-09-04 10:48 ` [PATCH 4/5] mm: fix typo "mergable" " Hemanth Selam
@ 2026-09-04 10:48 ` Hemanth Selam
2026-09-04 11:37 ` Lorenzo Stoakes (ARM)
3 siblings, 1 reply; 10+ messages in thread
From: Hemanth Selam @ 2026-09-04 10:48 UTC (permalink / raw)
To: Andrew Morton, Liam R. Howlett, Lorenzo Stoakes, Vlastimil Babka,
Jann Horn, Pedro Falcato
Cc: linux-kernel, linux-mm
Correct "mergable" to "mergeable", reported by scripts/checkpatch.pl using
the misspelling list in scripts/spelling.txt. Only touches comments, no
code changes.
Assisted-by: Cursor:claude-opus-5
Signed-off-by: Hemanth Selam <hemanth.selam@gmail.com>
---
tools/testing/vma/include/dup.h | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/tools/testing/vma/include/dup.h b/tools/testing/vma/include/dup.h
index 4c58487b764e..302a6774fca5 100644
--- a/tools/testing/vma/include/dup.h
+++ b/tools/testing/vma/include/dup.h
@@ -353,7 +353,7 @@ enum {
#define VMA_ACCESS_FLAGS mk_vma_flags(VMA_READ_BIT, VMA_WRITE_BIT, VMA_EXEC_BIT)
/*
- * Special vmas that are non-mergable, non-mlock()able.
+ * Special vmas that are non-mergeable, non-mlock()able.
*/
#define VM_SPECIAL (VM_IO | VM_DONTEXPAND | VM_PFNMAP | VM_MIXEDMAP)
--
2.48.1
^ permalink raw reply related [flat|nested] 10+ messages in thread
* Re: [PATCH 1/5] asm-generic: fix typo "explicity" in comment
2026-09-04 10:48 ` [PATCH 1/5] asm-generic: fix typo "explicity" in comment Hemanth Selam
@ 2026-09-04 11:33 ` Lorenzo Stoakes (ARM)
2026-09-04 21:58 ` Randy Dunlap
2026-09-04 23:59 ` SJ Park
1 sibling, 1 reply; 10+ messages in thread
From: Lorenzo Stoakes (ARM) @ 2026-09-04 11:33 UTC (permalink / raw)
To: Hemanth Selam
Cc: Andrew Morton, Liam R. Howlett, David Hildenbrand,
Vlastimil Babka, Jann Horn, Arnd Bergmann, linux-kernel, linux-mm,
linux-arch
On Fri, Sep 04, 2026 at 04:18:46PM +0530, Hemanth Selam wrote:
> Correct "explicity" to "Explicitly", reported by scripts/checkpatch.pl
> using the misspelling list in scripts/spelling.txt. Only touches comments,
> no code changes.
>
> Assisted-by: Cursor:claude-opus-5
Thanks for acking the LLM usage! Appreciated.
> Signed-off-by: Hemanth Selam <hemanth.selam@gmail.com>
Please make sure to cc everybody on every single patch. It makes it a nightmare
to deal with your series given the volume of mail I get.
I may have to write a bot to auto send this :)
Anyway LGTM so:
Reviewed-by: Lorenzo Stoakes (ARM) <ljs@kernel.org>
> ---
> include/uapi/asm-generic/mman-common.h | 2 +-
> 1 file changed, 1 insertion(+), 1 deletion(-)
>
> diff --git a/include/uapi/asm-generic/mman-common.h b/include/uapi/asm-generic/mman-common.h
> index ef1c27fa3c57..cf1418649b3a 100644
> --- a/include/uapi/asm-generic/mman-common.h
> +++ b/include/uapi/asm-generic/mman-common.h
> @@ -62,7 +62,7 @@
> #define MADV_HUGEPAGE 14 /* Worth backing with hugepages */
> #define MADV_NOHUGEPAGE 15 /* Not worth backing with hugepages */
>
> -#define MADV_DONTDUMP 16 /* Explicity exclude from the core dump,
> +#define MADV_DONTDUMP 16 /* Explicitly exclude from the core dump,
> overrides the coredump filter bits */
> #define MADV_DODUMP 17 /* Clear the MADV_DONTDUMP flag */
>
> --
> 2.48.1
>
--
Cheers, Lorenzo
^ permalink raw reply [flat|nested] 10+ messages in thread
* Re: [PATCH 2/5] char: fix typo "funcion" in comment
2026-09-04 10:48 ` [PATCH 2/5] char: fix typo "funcion" " Hemanth Selam
@ 2026-09-04 11:34 ` Lorenzo Stoakes (ARM)
0 siblings, 0 replies; 10+ messages in thread
From: Lorenzo Stoakes (ARM) @ 2026-09-04 11:34 UTC (permalink / raw)
To: Hemanth Selam
Cc: Andrew Morton, David Hildenbrand, Liam R. Howlett,
Vlastimil Babka, Mike Rapoport, Suren Baghdasaryan, Michal Hocko,
Jann Horn, Pedro Falcato, Arnd Bergmann, Greg Kroah-Hartman,
linux-kernel, linux-mm
On Fri, Sep 04, 2026 at 04:18:47PM +0530, Hemanth Selam wrote:
> Correct "funcion" to "function", reported by scripts/checkpatch.pl using
> the misspelling list in scripts/spelling.txt. Only touches comments, no
> code changes.
>
> Assisted-by: Cursor:claude-opus-5
> Signed-off-by: Hemanth Selam <hemanth.selam@gmail.com>
This file has been moved into mm/ in a recent series of mine, but I guess it
should all come out in the wash anyway one way or another.
Anyway LGTM so:
Reviewed-by: Lorenzo Stoakes (ARM) <ljs@kernel.org>
> ---
> drivers/char/mem.c | 2 +-
> 1 file changed, 1 insertion(+), 1 deletion(-)
>
> diff --git a/drivers/char/mem.c b/drivers/char/mem.c
> index 63253d1de5d7..f9db486d7029 100644
> --- a/drivers/char/mem.c
> +++ b/drivers/char/mem.c
> @@ -76,7 +76,7 @@ static inline bool should_stop_iteration(void)
> }
>
> /*
> - * This funcion reads the *physical* memory. The f_pos points directly to the
> + * This function reads the *physical* memory. The f_pos points directly to the
> * memory location.
> */
> static ssize_t read_mem(struct file *file, char __user *buf,
> --
> 2.48.1
>
--
Cheers, Lorenzo
^ permalink raw reply [flat|nested] 10+ messages in thread
* Re: [PATCH 4/5] mm: fix typo "mergable" in comment
2026-09-04 10:48 ` [PATCH 4/5] mm: fix typo "mergable" " Hemanth Selam
@ 2026-09-04 11:35 ` Lorenzo Stoakes (ARM)
0 siblings, 0 replies; 10+ messages in thread
From: Lorenzo Stoakes (ARM) @ 2026-09-04 11:35 UTC (permalink / raw)
To: Hemanth Selam
Cc: Andrew Morton, David Hildenbrand, Liam R. Howlett,
Vlastimil Babka, Mike Rapoport, Suren Baghdasaryan, Michal Hocko,
linux-kernel, linux-mm
On Fri, Sep 04, 2026 at 04:18:49PM +0530, Hemanth Selam wrote:
> Correct "mergable" to "mergeable", reported by scripts/checkpatch.pl using
> the misspelling list in scripts/spelling.txt. Only touches comments, no
> code changes.
>
> Assisted-by: Cursor:claude-opus-5
> Signed-off-by: Hemanth Selam <hemanth.selam@gmail.com>
LGTM so:
Reviewed-by: Lorenzo Stoakes (ARM) <ljs@kernel.org>
> ---
> include/linux/mm.h | 2 +-
> 1 file changed, 1 insertion(+), 1 deletion(-)
>
> diff --git a/include/linux/mm.h b/include/linux/mm.h
> index dd09c438fa23..5c856b78ddc2 100644
> --- a/include/linux/mm.h
> +++ b/include/linux/mm.h
> @@ -587,7 +587,7 @@ enum {
> #define VMA_ACCESS_FLAGS mk_vma_flags(VMA_READ_BIT, VMA_WRITE_BIT, VMA_EXEC_BIT)
>
> /*
> - * Special vmas that are non-mergable, non-mlock()able.
> + * Special vmas that are non-mergeable, non-mlock()able.
> */
>
> #define VMA_SPECIAL_FLAGS mk_vma_flags(VMA_IO_BIT, VMA_DONTEXPAND_BIT, \
> --
> 2.48.1
>
--
Cheers, Lorenzo
^ permalink raw reply [flat|nested] 10+ messages in thread
* Re: [PATCH 5/5] tools/testing: fix typo "mergable" in comment
2026-09-04 10:48 ` [PATCH 5/5] tools/testing: " Hemanth Selam
@ 2026-09-04 11:37 ` Lorenzo Stoakes (ARM)
0 siblings, 0 replies; 10+ messages in thread
From: Lorenzo Stoakes (ARM) @ 2026-09-04 11:37 UTC (permalink / raw)
To: Hemanth Selam
Cc: Andrew Morton, Liam R. Howlett, Vlastimil Babka, Jann Horn,
Pedro Falcato, linux-kernel, linux-mm
On Fri, Sep 04, 2026 at 04:18:50PM +0530, Hemanth Selam wrote:
> Correct "mergable" to "mergeable", reported by scripts/checkpatch.pl using
> the misspelling list in scripts/spelling.txt. Only touches comments, no
> code changes.
>
> Assisted-by: Cursor:claude-opus-5
> Signed-off-by: Hemanth Selam <hemanth.selam@gmail.com>
This one I'd drop, as a series of mine I'm going to send soon removes it from
the kernel altogether, and I don't want conflicts on a typo fix :)
Thanks!
> ---
> tools/testing/vma/include/dup.h | 2 +-
> 1 file changed, 1 insertion(+), 1 deletion(-)
>
> diff --git a/tools/testing/vma/include/dup.h b/tools/testing/vma/include/dup.h
> index 4c58487b764e..302a6774fca5 100644
> --- a/tools/testing/vma/include/dup.h
> +++ b/tools/testing/vma/include/dup.h
> @@ -353,7 +353,7 @@ enum {
> #define VMA_ACCESS_FLAGS mk_vma_flags(VMA_READ_BIT, VMA_WRITE_BIT, VMA_EXEC_BIT)
>
> /*
> - * Special vmas that are non-mergable, non-mlock()able.
> + * Special vmas that are non-mergeable, non-mlock()able.
> */
> #define VM_SPECIAL (VM_IO | VM_DONTEXPAND | VM_PFNMAP | VM_MIXEDMAP)
>
> --
> 2.48.1
>
--
Cheers, Lorenzo
^ permalink raw reply [flat|nested] 10+ messages in thread
* Re: [PATCH 1/5] asm-generic: fix typo "explicity" in comment
2026-09-04 11:33 ` Lorenzo Stoakes (ARM)
@ 2026-09-04 21:58 ` Randy Dunlap
0 siblings, 0 replies; 10+ messages in thread
From: Randy Dunlap @ 2026-09-04 21:58 UTC (permalink / raw)
To: Lorenzo Stoakes (ARM), Hemanth Selam
Cc: Andrew Morton, Liam R. Howlett, David Hildenbrand,
Vlastimil Babka, Jann Horn, Arnd Bergmann, linux-kernel, linux-mm,
linux-arch
On 9/4/26 4:33 AM, Lorenzo Stoakes (ARM) wrote:
> On Fri, Sep 04, 2026 at 04:18:46PM +0530, Hemanth Selam wrote:
>> Correct "explicity" to "Explicitly", reported by scripts/checkpatch.pl
>> using the misspelling list in scripts/spelling.txt. Only touches comments,
>> no code changes.
>>
>> Assisted-by: Cursor:claude-opus-5
>
> Thanks for acking the LLM usage! Appreciated.
I agree, but I find myself wondering what the LLM did here.
checkpatch reported the misspelling.
Does it take an LLM to use the correct spelling?
>> Signed-off-by: Hemanth Selam <hemanth.selam@gmail.com>
>
> Please make sure to cc everybody on every single patch. It makes it a nightmare
> to deal with your series given the volume of mail I get.
>
> I may have to write a bot to auto send this :)
>
> Anyway LGTM so:
>
> Reviewed-by: Lorenzo Stoakes (ARM) <ljs@kernel.org>
Reviewed-by: Randy Dunlap <rdunlap@infradead.org>
Thanks.
>
>> ---
>> include/uapi/asm-generic/mman-common.h | 2 +-
>> 1 file changed, 1 insertion(+), 1 deletion(-)
>>
>> diff --git a/include/uapi/asm-generic/mman-common.h b/include/uapi/asm-generic/mman-common.h
>> index ef1c27fa3c57..cf1418649b3a 100644
>> --- a/include/uapi/asm-generic/mman-common.h
>> +++ b/include/uapi/asm-generic/mman-common.h
>> @@ -62,7 +62,7 @@
>> #define MADV_HUGEPAGE 14 /* Worth backing with hugepages */
>> #define MADV_NOHUGEPAGE 15 /* Not worth backing with hugepages */
>>
>> -#define MADV_DONTDUMP 16 /* Explicity exclude from the core dump,
>> +#define MADV_DONTDUMP 16 /* Explicitly exclude from the core dump,
>> overrides the coredump filter bits */
>> #define MADV_DODUMP 17 /* Clear the MADV_DONTDUMP flag */
>>
>> --
>> 2.48.1
>>
>
> --
> Cheers, Lorenzo
>
--
~Randy
^ permalink raw reply [flat|nested] 10+ messages in thread
* Re: [PATCH 1/5] asm-generic: fix typo "explicity" in comment
2026-09-04 10:48 ` [PATCH 1/5] asm-generic: fix typo "explicity" in comment Hemanth Selam
2026-09-04 11:33 ` Lorenzo Stoakes (ARM)
@ 2026-09-04 23:59 ` SJ Park
1 sibling, 0 replies; 10+ messages in thread
From: SJ Park @ 2026-09-04 23:59 UTC (permalink / raw)
To: Hemanth Selam
Cc: SJ Park, Andrew Morton, Liam R. Howlett, Lorenzo Stoakes,
David Hildenbrand, Vlastimil Babka, Jann Horn, Arnd Bergmann,
linux-kernel, linux-mm, linux-arch
On Fri, 4 Sep 2026 16:18:46 +0530 Hemanth Selam <hemanth.selam@gmail.com> wrote:
> Correct "explicity" to "Explicitly", reported by scripts/checkpatch.pl
Too trivial, but 's/explicity/Explicity/'
> using the misspelling list in scripts/spelling.txt.
Again, too trivial, but I think mentioning spelling.txt is not necessary. LLMs
might disagree.
> Only touches comments,
> no code changes.
Anyway good catch, and looks correct to me. Thank you for fixing this.
>
> Assisted-by: Cursor:claude-opus-5
> Signed-off-by: Hemanth Selam <hemanth.selam@gmail.com>
Reviewed-by: SJ Park <sj@kernel.org>
Thanks,
SJ
[...]
^ permalink raw reply [flat|nested] 10+ messages in thread
end of thread, other threads:[~2026-09-04 23:59 UTC | newest]
Thread overview: 10+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
[not found] <20260904104854.25272-1-hemanth.selam@gmail.com>
2026-09-04 10:48 ` [PATCH 1/5] asm-generic: fix typo "explicity" in comment Hemanth Selam
2026-09-04 11:33 ` Lorenzo Stoakes (ARM)
2026-09-04 21:58 ` Randy Dunlap
2026-09-04 23:59 ` SJ Park
2026-09-04 10:48 ` [PATCH 2/5] char: fix typo "funcion" " Hemanth Selam
2026-09-04 11:34 ` Lorenzo Stoakes (ARM)
2026-09-04 10:48 ` [PATCH 4/5] mm: fix typo "mergable" " Hemanth Selam
2026-09-04 11:35 ` Lorenzo Stoakes (ARM)
2026-09-04 10:48 ` [PATCH 5/5] tools/testing: " Hemanth Selam
2026-09-04 11:37 ` Lorenzo Stoakes (ARM)
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox