summaryrefslogtreecommitdiff
path: root/kernel
diff options
context:
space:
mode:
authorShardul Deshpande <iamsharduld@gmail.com>2026-06-12 23:46:32 +0530
committerAndrew Morton <akpm@linux-foundation.org>2026-06-17 15:37:47 -0700
commit07669b0abe4ce76c716e8437e198e1337cf43d1f (patch)
treea3c44715c0521062c2bd6d0669a992220975496a /kernel
parent452a8467be8143747292218212671deeb186d2ae (diff)
downloadlwn-07669b0abe4ce76c716e8437e198e1337cf43d1f.tar.gz
lwn-07669b0abe4ce76c716e8437e198e1337cf43d1f.zip
treewide: fix transposed "sign" typos and update spelling.txt
Several comments transpose the letters in "assigned" and "unsigned", spelling them with "sing" instead of "sign". Correct all of them. Of these, the misspelling of "assigned" is not yet flagged by checkpatch, so also add it to scripts/spelling.txt. The remaining matches of `grep -ri singed` are RISINGEDGE register and enum names, not typos. Link: https://lore.kernel.org/20260612181633.734458-1-iamsharduld@gmail.com Signed-off-by: Shardul Deshpande <iamsharduld@gmail.com> Suggested-by: Andrew Morton <akpm@linux-foundation.org> Reviewed-by: SeongJae Park <sj@kernel.org> Cc: Joe Perches <joe@perches.com> Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Diffstat (limited to 'kernel')
-rw-r--r--kernel/bpf/helpers.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/kernel/bpf/helpers.c b/kernel/bpf/helpers.c
index b5314c9fed3c..6f56ba88fb61 100644
--- a/kernel/bpf/helpers.c
+++ b/kernel/bpf/helpers.c
@@ -3601,7 +3601,7 @@ __bpf_kfunc int bpf_copy_from_user_task_str(void *dst, u32 dst__sz,
return ret + 1;
}
-/* Keep unsinged long in prototype so that kfunc is usable when emitted to
+/* Keep unsigned long in prototype so that kfunc is usable when emitted to
* vmlinux.h in BPF programs directly, but note that while in BPF prog, the
* unsigned long always points to 8-byte region on stack, the kernel may only
* read and write the 4-bytes on 32-bit.