diff options
| author | Christian Loehle <[email protected]> | 2025-07-08 16:12:51 +0000 |
|---|---|---|
| committer | Tejun Heo <[email protected]> | 2025-07-17 18:17:26 +0000 |
| commit | ae96bba1ca0000ebb3f3ced64c9367e2a223d69e (patch) | |
| tree | c7e5b289ee95dd0157402c60bc5cf40cf39b2a2a | |
| parent | sched_ext: Drop kfuncs marked for removal in 6.15 (diff) | |
| download | kernel-ae96bba1ca0000ebb3f3ced64c9367e2a223d69e.tar.gz kernel-ae96bba1ca0000ebb3f3ced64c9367e2a223d69e.zip | |
sched_ext: Fix scx_bpf_reenqueue_local() reference
The comment mentions bpf_scx_reenqueue_local(), but the function
is provided for the BPF program implementing scx, as such the
naming convention is scx_bpf_reenqueue_local(), fix the comment.
Signed-off-by: Christian Loehle <[email protected]>
Signed-off-by: Tejun Heo <[email protected]>
| -rw-r--r-- | kernel/sched/ext.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/kernel/sched/ext.c b/kernel/sched/ext.c index 512474eabea6..b083ca426e89 100644 --- a/kernel/sched/ext.c +++ b/kernel/sched/ext.c @@ -911,7 +911,7 @@ enum scx_enq_flags { /* * The task being enqueued was previously enqueued on the current CPU's * %SCX_DSQ_LOCAL, but was removed from it in a call to the - * bpf_scx_reenqueue_local() kfunc. If bpf_scx_reenqueue_local() was + * scx_bpf_reenqueue_local() kfunc. If scx_bpf_reenqueue_local() was * invoked in a ->cpu_release() callback, and the task is again * dispatched back to %SCX_LOCAL_DSQ by this current ->enqueue(), the * task will not be scheduled on the CPU until at least the next invocation |
