[PATCH 3/3] kernel: fix typo "overriden" in comment

From: Hemanth Selam

Date: Fri Sep 04 2026 - 09:49:10 EST


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@xxxxxxxxx>
---
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