Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1752763Ab3GAHLU (ORCPT ); Mon, 1 Jul 2013 03:11:20 -0400 Received: from na3sys009aog134.obsmtp.com ([74.125.149.83]:60091 "EHLO na3sys009aog134.obsmtp.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1752457Ab3GAHLS (ORCPT ); Mon, 1 Jul 2013 03:11:18 -0400 From: Lei Wen To: Paul Turner , Alex Shi , Peter Zijlstra , Ingo Molnar , , , Subject: [PATCH 1/2] sched: add trace events for task and rq usage tracking Date: Mon, 1 Jul 2013 15:10:32 +0800 Message-ID: <1372662634-12833-2-git-send-email-leiwen@marvell.com> X-Mailer: git-send-email 1.7.10.4 In-Reply-To: <1372662634-12833-1-git-send-email-leiwen@marvell.com> References: <1372662634-12833-1-git-send-email-leiwen@marvell.com> MIME-Version: 1.0 Content-Type: text/plain Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 6285 Lines: 197 Since we could track task in the entity level now, we may want to investigate tasks' running status by recording the trace info, so that could make some tuning if needed. Signed-off-by: Lei Wen --- include/trace/events/sched.h | 73 ++++++++++++++++++++++++++++++++++++++++++ kernel/sched/fair.c | 29 +++++++++++++++-- 2 files changed, 100 insertions(+), 2 deletions(-) diff --git a/include/trace/events/sched.h b/include/trace/events/sched.h index e5586ca..8f1af65 100644 --- a/include/trace/events/sched.h +++ b/include/trace/events/sched.h @@ -430,6 +430,79 @@ TRACE_EVENT(sched_pi_setprio, __entry->oldprio, __entry->newprio) ); +TRACE_EVENT(sched_task_weighted_load, + + TP_PROTO(struct task_struct *tsk, unsigned long load, unsigned long weight), + + TP_ARGS(tsk, load, weight), + + TP_STRUCT__entry( + __field(pid_t, pid) + __field(int, cpu) + __field(unsigned long, load) + __field(unsigned long, weight) + ), + + TP_fast_assign( + __entry->pid = tsk->pid; + __entry->cpu = task_thread_info(tsk)->cpu; + __entry->load = load; + __entry->weight= weight; + ), + + TP_printk("cpu=%d pid=%d load=%lu weight=%lu", + __entry->cpu, __entry->pid, + __entry->load, __entry->weight) +); + +TRACE_EVENT(sched_cfs_rq_runnable_load, + + TP_PROTO(int cpu, unsigned long load, unsigned long total), + + TP_ARGS(cpu, load, total), + + TP_STRUCT__entry( + __field(int, cpu) + __field(unsigned long, load) + __field(unsigned long, total) + ), + + TP_fast_assign( + __entry->cpu = cpu; + __entry->load = load; + __entry->total = total; + ), + + TP_printk("cpu=%d avg=%lu total=%lu", + __entry->cpu, + __entry->load, + __entry->total) +); + +TRACE_EVENT(sched_cfs_rq_blocked_load, + + TP_PROTO(int cpu, unsigned long load, unsigned long total), + + TP_ARGS(cpu, load, total), + + TP_STRUCT__entry( + __field(int, cpu) + __field(unsigned long, load) + __field(unsigned long, total) + ), + + TP_fast_assign( + __entry->cpu = cpu; + __entry->load = load; + __entry->total = total; + ), + + TP_printk("cpu=%d avg=%lu total=%lu", + __entry->cpu, + __entry->load, + __entry->total) +); + #endif /* _TRACE_SCHED_H */ /* This part must be outside protection */ diff --git a/kernel/sched/fair.c b/kernel/sched/fair.c index f77f9c5..07bd74c 100644 --- a/kernel/sched/fair.c +++ b/kernel/sched/fair.c @@ -1346,6 +1346,7 @@ static inline u64 __synchronize_entity_decay(struct sched_entity *se) return 0; se->avg.load_avg_contrib = decay_load(se->avg.load_avg_contrib, decays); + trace_sched_task_weighted_load(task_of(se), se->avg.load_avg_contrib, se->load.weight); se->avg.decay_count = 0; return decays; @@ -1445,6 +1446,7 @@ static inline void __update_task_entity_contrib(struct sched_entity *se) contrib = se->avg.runnable_avg_sum * scale_load_down(se->load.weight); contrib /= (se->avg.runnable_avg_period + 1); se->avg.load_avg_contrib = scale_load(contrib); + trace_sched_task_weighted_load(task_of(se), se->avg.load_avg_contrib, se->load.weight); } /* Compute the current contribution to load_avg by se, return any delta */ @@ -1498,10 +1500,16 @@ static inline void update_entity_load_avg(struct sched_entity *se, if (!update_cfs_rq) return; - if (se->on_rq) + if (se->on_rq) { cfs_rq->runnable_load_avg += contrib_delta; - else + trace_sched_cfs_rq_runnable_load(cpu_of(rq_of(cfs_rq)), + cfs_rq->runnable_load_avg, cfs_rq->load.weight); + } else { subtract_blocked_load_contrib(cfs_rq, -contrib_delta); + trace_sched_cfs_rq_blocked_load(cpu_of(rq_of(cfs_rq)), + cfs_rq->blocked_load_avg, + cfs_rq->blocked_load_avg + cfs_rq->runnable_load_avg); + } } /* @@ -1531,6 +1539,9 @@ static void update_cfs_rq_blocked_load(struct cfs_rq *cfs_rq, int force_update) } __update_cfs_rq_tg_load_contrib(cfs_rq, force_update); + trace_sched_cfs_rq_blocked_load(cpu_of(rq_of(cfs_rq)), + cfs_rq->blocked_load_avg, + cfs_rq->blocked_load_avg + cfs_rq->runnable_load_avg); } static inline void update_rq_runnable_avg(struct rq *rq, int runnable) @@ -1584,10 +1595,15 @@ static inline void enqueue_entity_load_avg(struct cfs_rq *cfs_rq, /* migrated tasks did not contribute to our blocked load */ if (wakeup) { subtract_blocked_load_contrib(cfs_rq, se->avg.load_avg_contrib); + trace_sched_cfs_rq_blocked_load(cpu_of(rq_of(cfs_rq)), + cfs_rq->blocked_load_avg, + cfs_rq->blocked_load_avg + cfs_rq->runnable_load_avg); update_entity_load_avg(se, 0); } cfs_rq->runnable_load_avg += se->avg.load_avg_contrib; + trace_sched_cfs_rq_runnable_load(cpu_of(rq_of(cfs_rq)), + cfs_rq->runnable_load_avg, cfs_rq->load.weight); /* we force update consideration on load-balancer moves */ update_cfs_rq_blocked_load(cfs_rq, !wakeup); } @@ -1608,6 +1624,9 @@ static inline void dequeue_entity_load_avg(struct cfs_rq *cfs_rq, cfs_rq->runnable_load_avg -= se->avg.load_avg_contrib; if (sleep) { cfs_rq->blocked_load_avg += se->avg.load_avg_contrib; + trace_sched_cfs_rq_blocked_load(cpu_of(rq_of(cfs_rq)), + cfs_rq->blocked_load_avg, + cfs_rq->blocked_load_avg + cfs_rq->runnable_load_avg); se->avg.decay_count = atomic64_read(&cfs_rq->decay_counter); } /* migrations, e.g. sleep=0 leave decay_count == 0 */ } @@ -5894,6 +5913,9 @@ static void switched_from_fair(struct rq *rq, struct task_struct *p) __synchronize_entity_decay(&p->se); subtract_blocked_load_contrib(cfs_rq, p->se.avg.load_avg_contrib); + trace_sched_cfs_rq_blocked_load(cpu_of(rq_of(cfs_rq)), + cfs_rq->blocked_load_avg, + cfs_rq->blocked_load_avg + cfs_rq->runnable_load_avg); } #endif } @@ -5994,6 +6016,9 @@ static void task_move_group_fair(struct task_struct *p, int on_rq) */ p->se.avg.decay_count = atomic64_read(&cfs_rq->decay_counter); cfs_rq->blocked_load_avg += p->se.avg.load_avg_contrib; + trace_sched_cfs_rq_blocked_load(cpu_of(rq_of(cfs_rq)), + cfs_rq->blocked_load_avg, + cfs_rq->blocked_load_avg + cfs_rq->runnable_load_avg); #endif } } -- 1.7.10.4 -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/