aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/kernel/sched/stop_task.c
diff options
context:
space:
mode:
authorSteven Rostedt (VMware) <rostedt@goodmis.org>2019-12-19 16:44:54 -0500
committerPeter Zijlstra <peterz@infradead.org>2020-06-25 13:45:44 +0200
commita87e749e8fa1aaef9b4db32e21c2795e69ce67bf (patch)
tree967673dca41b3244195d574490bf8bd7c9cc4a70 /kernel/sched/stop_task.c
parentsched: Have sched_class_highest define by vmlinux.lds.h (diff)
downloadwireguard-linux-a87e749e8fa1aaef9b4db32e21c2795e69ce67bf.tar.xz
wireguard-linux-a87e749e8fa1aaef9b4db32e21c2795e69ce67bf.zip
sched: Remove struct sched_class::next field
Now that the sched_class descriptors are defined in order via the linker script vmlinux.lds.h, there's no reason to have a "next" pointer to the previous priroity structure. The order of the sturctures can be aligned as an array, and used to index and find the next sched_class descriptor. Signed-off-by: Steven Rostedt (VMware) <rostedt@goodmis.org> Signed-off-by: Peter Zijlstra (Intel) <peterz@infradead.org> Link: https://lkml.kernel.org/r/20191219214558.845353593@goodmis.org
Diffstat (limited to 'kernel/sched/stop_task.c')
-rw-r--r--kernel/sched/stop_task.c1
1 files changed, 0 insertions, 1 deletions
diff --git a/kernel/sched/stop_task.c b/kernel/sched/stop_task.c
index f4bbd54caae0..394bc8126a1e 100644
--- a/kernel/sched/stop_task.c
+++ b/kernel/sched/stop_task.c
@@ -111,7 +111,6 @@ static void update_curr_stop(struct rq *rq)
*/
const struct sched_class stop_sched_class
__attribute__((section("__stop_sched_class"))) = {
- .next = &dl_sched_class,
.enqueue_task = enqueue_task_stop,
.dequeue_task = dequeue_task_stop,