From f3c6919207ebade88fe40377b6a8b69294b4d35f Mon Sep 17 00:00:00 2001 From: Liang Luo Date: Thu, 9 Jul 2026 16:02:05 +0800 Subject: [PATCH] sched_ext: Fix typo in scx_bpf_dsq_insert() comment The comment for scx_bpf_dsq_insert() references "@dsp_id" in the description body, but the parameter is named "@dsq_id" in both the parameter list and the function signature. Signed-off-by: Liang Luo Acked-by: Andrea Righi Signed-off-by: Tejun Heo --- kernel/sched/ext/ext.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/kernel/sched/ext/ext.c b/kernel/sched/ext/ext.c index 1a0ec985da77..29fa9f30aaaa 100644 --- a/kernel/sched/ext/ext.c +++ b/kernel/sched/ext/ext.c @@ -7764,7 +7764,7 @@ __bpf_kfunc_start_defs(); * When called from ops.select_cpu() or ops.enqueue(), it's for direct dispatch * and @p must match the task being enqueued. * - * When called from ops.select_cpu(), @enq_flags and @dsp_id are stored, and @p + * When called from ops.select_cpu(), @enq_flags and @dsq_id are stored, and @p * will be directly inserted into the corresponding dispatch queue after * ops.select_cpu() returns. If @p is inserted into SCX_DSQ_LOCAL, it will be * inserted into the local DSQ of the CPU returned by ops.select_cpu().