* [PATCH 0/5] asm-generic: fix typos in comments
@ 2026-09-04 10:48 Hemanth Selam
2026-09-04 10:48 ` [PATCH 1/5] asm-generic: fix typo "explicity" in comment Hemanth Selam
` (4 more replies)
0 siblings, 5 replies; 12+ messages in thread
From: Hemanth Selam @ 2026-09-04 10:48 UTC (permalink / raw)
Cc: linux-kernel
This corrects 5 misspellings in comments. Each is a separate patch so
that any one of them can be dropped without touching the rest.
Nothing outside comments changes. Every touched C file was checked by
dropping its comments, replacing each string literal with a placeholder
and collapsing whitespace; what remained was identical before and after,
so the compiled code cannot differ.
The mistakes were found with scripts/checkpatch.pl against the list in
scripts/spelling.txt. The scanning, the edits and the changelogs were
produced with Cursor running the claude-opus-5 model, from a request to
find and fix spelling mistakes across the tree, and every correction was
then re-checked by the comparison described above. Words that name an
identifier were left alone deliberately, even when they read as typos,
because correcting the prose would make the comment disagree with the
code it describes.
Tested by building x86_64 defconfig at v7.3-rc1-269-gbc35965f6940, which
is clean. Nothing else was built, so any patch touching code that
x86_64 defconfig does not compile has been read but not compiled.
Hemanth Selam (5):
asm-generic: fix typo "explicity" in comment
char: fix typo "funcion" in comment
lib: fix typos in comments
mm: fix typo "mergable" in comment
tools/testing: fix typo "mergable" in comment
drivers/char/mem.c | 2 +-
include/linux/mm.h | 2 +-
include/uapi/asm-generic/mman-common.h | 2 +-
lib/flex_proportions.c | 2 +-
lib/rcuref.c | 4 ++--
lib/textsearch.c | 2 +-
tools/testing/vma/include/dup.h | 2 +-
7 files changed, 8 insertions(+), 8 deletions(-)
--
2.48.1
^ permalink raw reply [flat|nested] 12+ messages in thread
* [PATCH 1/5] asm-generic: fix typo "explicity" in comment
2026-09-04 10:48 [PATCH 0/5] asm-generic: fix typos in comments Hemanth Selam
@ 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
` (3 subsequent siblings)
4 siblings, 2 replies; 12+ 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 [flat|nested] 12+ messages in thread
* [PATCH 2/5] char: fix typo "funcion" in comment
2026-09-04 10:48 [PATCH 0/5] asm-generic: fix typos in comments Hemanth Selam
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 3/5] lib: fix typos in comments Hemanth Selam
` (2 subsequent siblings)
4 siblings, 1 reply; 12+ 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 [flat|nested] 12+ messages in thread
* [PATCH 3/5] lib: fix typos in comments
2026-09-04 10:48 [PATCH 0/5] asm-generic: fix typos in comments Hemanth Selam
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 10:48 ` [PATCH 4/5] mm: fix typo "mergable" in comment Hemanth Selam
2026-09-04 10:48 ` [PATCH 5/5] tools/testing: " Hemanth Selam
4 siblings, 0 replies; 12+ messages in thread
From: Hemanth Selam @ 2026-09-04 10:48 UTC (permalink / raw)
To: Andrew Morton; +Cc: linux-kernel
Fix typos in comments, 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>
---
lib/flex_proportions.c | 2 +-
lib/rcuref.c | 4 ++--
lib/textsearch.c | 2 +-
3 files changed, 4 insertions(+), 4 deletions(-)
diff --git a/lib/flex_proportions.c b/lib/flex_proportions.c
index 012d5614efb9..21d074dcec2e 100644
--- a/lib/flex_proportions.c
+++ b/lib/flex_proportions.c
@@ -54,7 +54,7 @@ void fprop_global_destroy(struct fprop_global *p)
}
/*
- * Declare @periods new periods. It is upto the caller to make sure period
+ * Declare @periods new periods. It is up to the caller to make sure period
* transitions cannot happen in parallel.
*
* The function returns true if the proportions are still defined and false
diff --git a/lib/rcuref.c b/lib/rcuref.c
index 5bd726b71e39..55f7796703c7 100644
--- a/lib/rcuref.c
+++ b/lib/rcuref.c
@@ -4,7 +4,7 @@
* rcuref - A scalable reference count implementation for RCU managed objects
*
* rcuref is provided to replace open coded reference count implementations
- * based on atomic_t. It protects explicitely RCU managed objects which can
+ * based on atomic_t. It protects explicitly RCU managed objects which can
* be visible even after the last reference has been dropped and the object
* is heading towards destruction.
*
@@ -147,7 +147,7 @@
* All reference count increment/decrement operations are unconditional and
* only verified after the fact. This optimizes for the good case and takes
* the occasional race vs. a dead or already saturated refcount into
- * account. The saturation and dead zones are large enough to accomodate
+ * account. The saturation and dead zones are large enough to accommodate
* for that.
*
* Memory ordering
diff --git a/lib/textsearch.c b/lib/textsearch.c
index f68dea8806be..3ac47026d6ab 100644
--- a/lib/textsearch.c
+++ b/lib/textsearch.c
@@ -60,7 +60,7 @@
* to perform case insensitive matching. But it might slow down
* performance of algorithm, so you should use it at own your risk.
* The returned configuration may then be used for an arbitrary
- * amount of times and even in parallel as long as a separate struct
+ * number of times and even in parallel as long as a separate struct
* ts_state variable is provided to every instance.
*
* The actual search is performed by either calling
--
2.48.1
^ permalink raw reply [flat|nested] 12+ messages in thread
* [PATCH 4/5] mm: fix typo "mergable" in comment
2026-09-04 10:48 [PATCH 0/5] asm-generic: fix typos in comments Hemanth Selam
` (2 preceding siblings ...)
2026-09-04 10:48 ` [PATCH 3/5] lib: fix typos in comments 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
4 siblings, 1 reply; 12+ 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 [flat|nested] 12+ messages in thread
* [PATCH 5/5] tools/testing: fix typo "mergable" in comment
2026-09-04 10:48 [PATCH 0/5] asm-generic: fix typos in comments Hemanth Selam
` (3 preceding siblings ...)
2026-09-04 10:48 ` [PATCH 4/5] mm: fix typo "mergable" in comment Hemanth Selam
@ 2026-09-04 10:48 ` Hemanth Selam
2026-09-04 11:37 ` Lorenzo Stoakes (ARM)
4 siblings, 1 reply; 12+ 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 [flat|nested] 12+ 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; 12+ 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] 12+ 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; 12+ 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] 12+ 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" in comment Hemanth Selam
@ 2026-09-04 11:35 ` Lorenzo Stoakes (ARM)
0 siblings, 0 replies; 12+ 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] 12+ 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; 12+ 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] 12+ 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; 12+ 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] 12+ 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; 12+ 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] 12+ messages in thread
end of thread, other threads:[~2026-09-04 23:59 UTC | newest]
Thread overview: 12+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2026-09-04 10:48 [PATCH 0/5] asm-generic: fix typos in comments Hemanth Selam
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 3/5] lib: fix typos in comments Hemanth Selam
2026-09-04 10:48 ` [PATCH 4/5] mm: fix typo "mergable" in comment 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
all inboxes | Powered by JetHome®