Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

sched_ext: Add missing cfi stub for ops.tick

The cfi stub for ops.tick was missing which will fail scheduler loading
after pending BPF changes. Add it.

Signed-off-by: Tejun Heo <tj@kernel.org>

+2
+2
kernel/sched/ext.c
··· 5051 5051 static void enqueue_stub(struct task_struct *p, u64 enq_flags) {} 5052 5052 static void dequeue_stub(struct task_struct *p, u64 enq_flags) {} 5053 5053 static void dispatch_stub(s32 prev_cpu, struct task_struct *p) {} 5054 + static void tick_stub(struct task_struct *p) {} 5054 5055 static void runnable_stub(struct task_struct *p, u64 enq_flags) {} 5055 5056 static void running_stub(struct task_struct *p) {} 5056 5057 static void stopping_stub(struct task_struct *p, bool runnable) {} ··· 5080 5079 .enqueue = enqueue_stub, 5081 5080 .dequeue = dequeue_stub, 5082 5081 .dispatch = dispatch_stub, 5082 + .tick = tick_stub, 5083 5083 .runnable = runnable_stub, 5084 5084 .running = running_stub, 5085 5085 .stopping = stopping_stub,