提交 24cd5d11 编写于 作者: I Ingo Molnar 提交者: Thomas Gleixner

ftrace: trace curr/next tasks

Signed-off-by: NIngo Molnar <mingo@elte.hu>
Signed-off-by: NThomas Gleixner <tglx@linutronix.de>
上级 4e655519
......@@ -2398,8 +2398,8 @@ static int sched_balance_self(int cpu, int flag)
void ftrace_all_fair_tasks(void *__rq, void *__tr, void *__data)
{
struct sched_entity *se;
struct task_struct *p;
struct sched_entity *se;
struct rb_node *curr;
struct rq *rq = __rq;
......@@ -2407,6 +2407,17 @@ void ftrace_all_fair_tasks(void *__rq, void *__tr, void *__data)
if (!curr)
return;
if (rq->cfs.curr) {
p = task_of(rq->cfs.curr);
__trace_special(__tr, __data,
p->pid, p->se.vruntime, p->se.sum_exec_runtime);
}
if (rq->cfs.next) {
p = task_of(rq->cfs.next);
__trace_special(__tr, __data,
p->pid, p->se.vruntime, p->se.sum_exec_runtime);
}
while (curr) {
se = rb_entry(curr, struct sched_entity, run_node);
if (!entity_is_task(se))
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册