* [PATCH 0/3] elf: fix typos in comments
@ 2026-09-04 12:20 Hemanth Selam
2026-09-04 12:20 ` [PATCH 1/3] elf: fix typo "accomodate" in comment Hemanth Selam
` (2 more replies)
0 siblings, 3 replies; 5+ messages in thread
From: Hemanth Selam @ 2026-09-04 12:20 UTC (permalink / raw)
Cc: linux-kernel
This corrects 3 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 (3):
elf: fix typo "accomodate" in comment
seccomp: fix typo "overriden" in comment
kernel: fix typo "overriden" in comment
include/uapi/linux/elf.h | 2 +-
include/uapi/linux/seccomp.h | 2 +-
kernel/fork.c | 2 +-
3 files changed, 3 insertions(+), 3 deletions(-)
--
2.48.1
^ permalink raw reply [flat|nested] 5+ messages in thread* [PATCH 1/3] elf: fix typo "accomodate" in comment 2026-09-04 12:20 [PATCH 0/3] elf: fix typos in comments Hemanth Selam @ 2026-09-04 12:20 ` Hemanth Selam 2026-09-04 12:20 ` [PATCH 2/3] seccomp: fix typo "overriden" " Hemanth Selam 2026-09-04 12:20 ` [PATCH 3/3] kernel: " Hemanth Selam 2 siblings, 0 replies; 5+ messages in thread From: Hemanth Selam @ 2026-09-04 12:20 UTC (permalink / raw) To: Kees Cook; +Cc: linux-kernel, linux-mm Correct "accomodate" to "accommodate", 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/linux/elf.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/uapi/linux/elf.h b/include/uapi/linux/elf.h index ee30dcd80901..91995dbd3ad3 100644 --- a/include/uapi/linux/elf.h +++ b/include/uapi/linux/elf.h @@ -408,7 +408,7 @@ typedef struct elf64_shdr { #define NT_AUXV 6 /* * Note to userspace developers: size of NT_SIGINFO note may increase - * in the future to accomodate more fields, don't assume it is fixed! + * in the future to accommodate more fields, don't assume it is fixed! */ #define NN_SIGINFO "CORE" #define NT_SIGINFO 0x53494749 -- 2.48.1 ^ permalink raw reply [flat|nested] 5+ messages in thread
* [PATCH 2/3] seccomp: fix typo "overriden" in comment 2026-09-04 12:20 [PATCH 0/3] elf: fix typos in comments Hemanth Selam 2026-09-04 12:20 ` [PATCH 1/3] elf: fix typo "accomodate" in comment Hemanth Selam @ 2026-09-04 12:20 ` Hemanth Selam 2026-09-04 12:20 ` [PATCH 3/3] kernel: " Hemanth Selam 2 siblings, 0 replies; 5+ messages in thread From: Hemanth Selam @ 2026-09-04 12:20 UTC (permalink / raw) To: Kees Cook, Andy Lutomirski, Will Drewry; +Cc: linux-kernel Correct "overriden" to "overridden", 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/linux/seccomp.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/uapi/linux/seccomp.h b/include/uapi/linux/seccomp.h index dbfc9b37fcae..6d9158152360 100644 --- a/include/uapi/linux/seccomp.h +++ b/include/uapi/linux/seccomp.h @@ -104,7 +104,7 @@ struct seccomp_notif { * SECCOMP_IOCTL_NOTIF_SEND from earlier filters, essentially allowing all * such filtered syscalls to be executed by sending the response * SECCOMP_USER_NOTIF_FLAG_CONTINUE. Note that SECCOMP_RET_TRACE can equally - * be overriden by SECCOMP_USER_NOTIF_FLAG_CONTINUE. + * be overridden by SECCOMP_USER_NOTIF_FLAG_CONTINUE. */ #define SECCOMP_USER_NOTIF_FLAG_CONTINUE (1UL << 0) -- 2.48.1 ^ permalink raw reply [flat|nested] 5+ messages in thread
* [PATCH 3/3] kernel: fix typo "overriden" in comment 2026-09-04 12:20 [PATCH 0/3] elf: fix typos in comments Hemanth Selam 2026-09-04 12:20 ` [PATCH 1/3] elf: fix typo "accomodate" in comment Hemanth Selam 2026-09-04 12:20 ` [PATCH 2/3] seccomp: fix typo "overriden" " Hemanth Selam @ 2026-09-04 12:20 ` Hemanth Selam 2026-09-04 14:52 ` Lorenzo Stoakes (ARM) 2 siblings, 1 reply; 5+ messages in thread From: Hemanth Selam @ 2026-09-04 12:20 UTC (permalink / raw) To: Andrew Morton, David Hildenbrand, Lorenzo Stoakes, Liam R. Howlett, Vlastimil Babka, Mike Rapoport, Suren Baghdasaryan, Michal Hocko, Ingo Molnar, Peter Zijlstra, Juri Lelli, Vincent Guittot, Dietmar Eggemann, Steven Rostedt, Ben Segall, Mel Gorman, Valentin Schneider, K Prateek Nayak, Kees Cook Cc: linux-kernel, linux-mm Correct "overriden" to "overridden", 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> --- kernel/fork.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/kernel/fork.c b/kernel/fork.c index 416758c8a3d4..6d3340d34234 100644 --- a/kernel/fork.c +++ b/kernel/fork.c @@ -3266,7 +3266,7 @@ int ksys_unshare(unsigned long unshare_flags) if (unshare_flags & CLONE_NEWNS) unshare_flags |= CLONE_FS; - /* No unsharing with overriden fs state */ + /* No unsharing with overridden fs state */ VFS_WARN_ON_ONCE(unshare_flags & (CLONE_NEWNS | CLONE_FS) && current->fs != current->real_fs); -- 2.48.1 ^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [PATCH 3/3] kernel: fix typo "overriden" in comment 2026-09-04 12:20 ` [PATCH 3/3] kernel: " Hemanth Selam @ 2026-09-04 14:52 ` Lorenzo Stoakes (ARM) 0 siblings, 0 replies; 5+ messages in thread From: Lorenzo Stoakes (ARM) @ 2026-09-04 14:52 UTC (permalink / raw) To: Hemanth Selam Cc: Andrew Morton, David Hildenbrand, Liam R. Howlett, Vlastimil Babka, Mike Rapoport, Suren Baghdasaryan, Michal Hocko, Ingo Molnar, Peter Zijlstra, Juri Lelli, Vincent Guittot, Dietmar Eggemann, Steven Rostedt, Ben Segall, Mel Gorman, Valentin Schneider, K Prateek Nayak, Kees Cook, linux-kernel, linux-mm Another orphaned email, please always cc everybody on everything. I can't review stuff like this esp. not for purposes of typo fixes thanks :) On Fri, Sep 04, 2026 at 05:50:52PM +0530, Hemanth Selam wrote: > Correct "overriden" to "overridden", 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> > --- > kernel/fork.c | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > > diff --git a/kernel/fork.c b/kernel/fork.c > index 416758c8a3d4..6d3340d34234 100644 > --- a/kernel/fork.c > +++ b/kernel/fork.c > @@ -3266,7 +3266,7 @@ int ksys_unshare(unsigned long unshare_flags) > if (unshare_flags & CLONE_NEWNS) > unshare_flags |= CLONE_FS; > > - /* No unsharing with overriden fs state */ > + /* No unsharing with overridden fs state */ > VFS_WARN_ON_ONCE(unshare_flags & (CLONE_NEWNS | CLONE_FS) && > current->fs != current->real_fs); > > -- > 2.48.1 > -- Cheers, Lorenzo ^ permalink raw reply [flat|nested] 5+ messages in thread
end of thread, other threads:[~2026-09-04 14:53 UTC | newest] Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed) -- links below jump to the message on this page -- 2026-09-04 12:20 [PATCH 0/3] elf: fix typos in comments Hemanth Selam 2026-09-04 12:20 ` [PATCH 1/3] elf: fix typo "accomodate" in comment Hemanth Selam 2026-09-04 12:20 ` [PATCH 2/3] seccomp: fix typo "overriden" " Hemanth Selam 2026-09-04 12:20 ` [PATCH 3/3] kernel: " Hemanth Selam 2026-09-04 14:52 ` 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®