aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJoshua Bakita <jbakita@cs.unc.edu>2020-05-16 10:07:36 -0400
committerJoshua Bakita <jbakita@cs.unc.edu>2020-05-16 10:07:36 -0400
commitd0d2fa7abca1106c7bef5e0ee27d4911dd2b1509 (patch)
treee54b7f7d3c814670b9247c528262a7c4099fb858
parent7ec464fcc34e6387b660974cdfd4d91b38991ecb (diff)
Fix typo in BUG_ON() added by 77882c2d
-rw-r--r--litmus/sched_edfsc.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/litmus/sched_edfsc.c b/litmus/sched_edfsc.c
index c8ad77c1b3e8..7ab164cab3e1 100644
--- a/litmus/sched_edfsc.c
+++ b/litmus/sched_edfsc.c
@@ -253,7 +253,7 @@ static noinline void link_task_to_cpu(struct task_struct* linked,
253{ 253{
254 BUG_ON(linked && !is_realtime(linked)); 254 BUG_ON(linked && !is_realtime(linked));
255 BUG_ON(is_fixed(linked)); 255 BUG_ON(is_fixed(linked));
256 BUG_ON(is_container(linked) && task_rt(linked)->edfsc_params.id != entry->cpu); 256 BUG_ON(is_container(linked) && tsk_rt(linked)->edfsc_params.id != entry->cpu);
257 257
258 /* Currently linked task is set to be unlinked. */ 258 /* Currently linked task is set to be unlinked. */
259 if (entry->linked) 259 if (entry->linked)