diff options
author | Peter Zijlstra <a.p.zijlstra@chello.nl> | 2008-05-12 21:20:53 +0200 |
---|---|---|
committer | Thomas Gleixner <tglx@linutronix.de> | 2008-05-23 21:09:02 +0200 |
commit | 5429db2d26a59903c81a4f6c6dae7eb9daaea5fc (patch) | |
tree | fb3319487fd29f04cc51107e953aacb6a0647b6d | |
parent | bac524d3f3dfeffa3a9d44f2c64035b88bcaacb4 (diff) | |
download | blackbird-op-linux-5429db2d26a59903c81a4f6c6dae7eb9daaea5fc.tar.gz blackbird-op-linux-5429db2d26a59903c81a4f6c6dae7eb9daaea5fc.zip |
ftrace: fix wakeup callback
Signed-off-by: Peter Zijlstra <a.p.zijlstra@chello.nl>
Signed-off-by: Ingo Molnar <mingo@elte.hu>
Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
-rw-r--r-- | kernel/sched.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/kernel/sched.c b/kernel/sched.c index 3bc7c5362998..1ec3fb2efee6 100644 --- a/kernel/sched.c +++ b/kernel/sched.c @@ -2533,7 +2533,6 @@ static int try_to_wake_up(struct task_struct *p, unsigned int state, int sync) out_activate: #endif /* CONFIG_SMP */ - ftrace_wake_up_task(rq, p, rq->curr); schedstat_inc(p, se.nr_wakeups); if (sync) schedstat_inc(p, se.nr_wakeups_sync); @@ -2548,6 +2547,7 @@ out_activate: success = 1; out_running: + ftrace_wake_up_task(rq, p, rq->curr); check_preempt_curr(rq, p); p->state = TASK_RUNNING; |