diff options
author | Jonathan Herman <hermanjl@cs.unc.edu> | 2011-09-30 21:36:51 -0400 |
---|---|---|
committer | Jonathan Herman <hermanjl@cs.unc.edu> | 2011-09-30 21:36:51 -0400 |
commit | 3cbebe44aefbb312b004c7d428748e98dfa18e41 (patch) | |
tree | 271722b3de44df303bd8c4bd0511a4d86b0b33d6 /litmus/sched_mc_ce.c | |
parent | b0466ecb422692bd0d30764075af834101849bd2 (diff) |
Bug fix for cancel events
Diffstat (limited to 'litmus/sched_mc_ce.c')
-rw-r--r-- | litmus/sched_mc_ce.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/litmus/sched_mc_ce.c b/litmus/sched_mc_ce.c index 5125df9572ba..ffcc25873581 100644 --- a/litmus/sched_mc_ce.c +++ b/litmus/sched_mc_ce.c | |||
@@ -577,7 +577,7 @@ static int cancel_all_timers(void) | |||
577 | cancel_res = hrtimer_cancel(&ce_data->timer); | 577 | cancel_res = hrtimer_cancel(&ce_data->timer); |
578 | atomic_set(&ce_data->timer_info.state, | 578 | atomic_set(&ce_data->timer_info.state, |
579 | HRTIMER_START_ON_INACTIVE); | 579 | HRTIMER_START_ON_INACTIVE); |
580 | ret = ret || cancel_res; | 580 | ret = ret || cancel_res; |
581 | #endif | 581 | #endif |
582 | } | 582 | } |
583 | return ret; | 583 | return ret; |