diff options
author | Jeremy Erickson <jerickso@cs.unc.edu> | 2011-01-21 16:08:23 -0500 |
---|---|---|
committer | Jonathan Herman <hermanjl@cs.unc.edu> | 2011-08-25 14:41:21 -0400 |
commit | 77282ed493834665c45c8ff86c9980e90840b01e (patch) | |
tree | d9dbe44fb1b10618bb2ad2078f6ad70004cf47dd | |
parent | 6fd354d2c50c0ffdf5896939164b091f57f0be05 (diff) |
Fix variable name to make it compile
-rw-r--r-- | litmus/sched_mc.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/litmus/sched_mc.c b/litmus/sched_mc.c index ead9402350de..0f5da078c597 100644 --- a/litmus/sched_mc.c +++ b/litmus/sched_mc.c | |||
@@ -741,7 +741,7 @@ static void mc_tick(struct task_struct* t) | |||
741 | if (is_ghost(t)) { | 741 | if (is_ghost(t)) { |
742 | raw_spin_lock_irqsave(&global_lock, flags); | 742 | raw_spin_lock_irqsave(&global_lock, flags); |
743 | update_ghost_time(t); | 743 | update_ghost_time(t); |
744 | raw_spin_lock_irqrestore(&global_lock, flags); | 744 | raw_spin_unlock_irqrestore(&global_lock, flags); |
745 | } | 745 | } |
746 | if (is_realtime(t) && budget_enforced(t) && budget_exhausted(t)) { | 746 | if (is_realtime(t) && budget_enforced(t) && budget_exhausted(t)) { |
747 | if (!is_np(t)) { | 747 | if (!is_np(t)) { |