summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHemanth Selam <hemanth.selam@gmail.com>2026-09-07 12:19:43 +0530
committerTejun Heo <tj@kernel.org>2026-09-08 07:11:39 -1000
commit97c50e21e4ddfc91185d548c29c33ba631acbdc8 (patch)
tree5de281d1985b0a3e428a79528e48198e9fd35b8e
parent117c658adb0fb9276966a86fd4c2ed112640a0ee (diff)
downloadlinux-next-97c50e21e4ddfc91185d548c29c33ba631acbdc8.tar.gz
linux-next-97c50e21e4ddfc91185d548c29c33ba631acbdc8.zip
tools/sched_ext: Fix repeated word 'be' in comment
Drop the second 'be', reported by checkpatch.pl as a possible repeated word. Only touches a comment, no code changes. Assisted-by: Cursor:claude-opus-5 Signed-off-by: Hemanth Selam <hemanth.selam@gmail.com> Signed-off-by: Tejun Heo <tj@kernel.org>
-rw-r--r--tools/sched_ext/include/scx/common.bpf.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/sched_ext/include/scx/common.bpf.h b/tools/sched_ext/include/scx/common.bpf.h
index 76f5e025e107..9660b43d612c 100644
--- a/tools/sched_ext/include/scx/common.bpf.h
+++ b/tools/sched_ext/include/scx/common.bpf.h
@@ -306,7 +306,7 @@ BPF_PROG(name, ##args)
* Similar to MEMBER_VPTR() but is intended for use with arrays where the
* element count needs to be explicit.
* It can be used in cases where a global array is defined with an initial
- * size but is intended to be be resized before loading the BPF program.
+ * size but is intended to be resized before loading the BPF program.
* Without this version of the macro, MEMBER_VPTR() will use the compile time
* size of the array to compute the max, which will result in rejection by
* the verifier.