aboutsummaryrefslogtreecommitdiffstats
path: root/kernel/sched.c
diff options
context:
space:
mode:
authorIngo Molnar <mingo@elte.hu>2007-10-15 11:00:10 -0400
committerIngo Molnar <mingo@elte.hu>2007-10-15 11:00:10 -0400
commitb8efb56172bc55082b8490778b07ef73eea0b551 (patch)
tree2d70e91af4cbd470904ebb4e28ad558c29e73092 /kernel/sched.c
parentde8d585a12aef40676f12ddc63e97daaf7752ba1 (diff)
sched debug: BKL usage statistics
add per task and per rq BKL usage statistics. Signed-off-by: Ingo Molnar <mingo@elte.hu> Signed-off-by: Peter Zijlstra <a.p.zijlstra@chello.nl> Reviewed-by: Thomas Gleixner <tglx@linutronix.de>
Diffstat (limited to 'kernel/sched.c')
-rw-r--r--kernel/sched.c9
1 files changed, 9 insertions, 0 deletions
diff --git a/kernel/sched.c b/kernel/sched.c
index f33608e9e1a2..5004dff91850 100644
--- a/kernel/sched.c
+++ b/kernel/sched.c
@@ -356,6 +356,9 @@ struct rq {
356 /* try_to_wake_up() stats */ 356 /* try_to_wake_up() stats */
357 unsigned long ttwu_cnt; 357 unsigned long ttwu_cnt;
358 unsigned long ttwu_local; 358 unsigned long ttwu_local;
359
360 /* BKL stats */
361 unsigned long bkl_cnt;
359#endif 362#endif
360 struct lock_class_key rq_lock_key; 363 struct lock_class_key rq_lock_key;
361}; 364};
@@ -3414,6 +3417,12 @@ static inline void schedule_debug(struct task_struct *prev)
3414 profile_hit(SCHED_PROFILING, __builtin_return_address(0)); 3417 profile_hit(SCHED_PROFILING, __builtin_return_address(0));
3415 3418
3416 schedstat_inc(this_rq(), sched_cnt); 3419 schedstat_inc(this_rq(), sched_cnt);
3420#ifdef CONFIG_SCHEDSTATS
3421 if (unlikely(prev->lock_depth >= 0)) {
3422 schedstat_inc(this_rq(), bkl_cnt);
3423 schedstat_inc(prev, sched_info.bkl_cnt);
3424 }
3425#endif
3417} 3426}
3418 3427
3419/* 3428/*