diff options
author | Peter Zijlstra <a.p.zijlstra@chello.nl> | 2008-11-10 09:46:32 (GMT) |
---|---|---|
committer | Ingo Molnar <mingo@elte.hu> | 2008-11-10 09:51:51 (GMT) |
commit | 5ac5c4d604bf894ef672a7971d03fefdc7ea7e49 (patch) | |
tree | ee7b71de46c0c71dec9e9ebb0efd2e66ce1c7a6d /kernel/sched.c | |
parent | f7160c7573615ec82c691e294cf80d920b5d588d (diff) | |
download | linux-5ac5c4d604bf894ef672a7971d03fefdc7ea7e49.tar.xz |
sched: clean up debug info
Impact: clean up and fix debug info printout
While looking over the sched_debug code I noticed that we printed the rq
schedstats for every cfs_rq, ammend this.
Also change nr_spead_over into an int, and fix a little buglet in
min_vruntime printing.
Signed-off-by: Peter Zijlstra <a.p.zijlstra@chello.nl>
Signed-off-by: Ingo Molnar <mingo@elte.hu>
Diffstat (limited to 'kernel/sched.c')
-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 57c933f..f314924 100644 --- a/kernel/sched.c +++ b/kernel/sched.c @@ -399,7 +399,7 @@ struct cfs_rq { */ struct sched_entity *curr, *next, *last; - unsigned long nr_spread_over; + unsigned int nr_spread_over; #ifdef CONFIG_FAIR_GROUP_SCHED struct rq *rq; /* cpu runqueue to which this cfs_rq is attached */ |