projects
/
platform
/
kernel
/
linux-stable.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
7fd0d2d
)
sched: fix niced_granularity() shift
author
Ingo Molnar
<mingo@elte.hu>
Wed, 5 Sep 2007 12:32:49 +0000
(14:32 +0200)
committer
Ingo Molnar
<mingo@elte.hu>
Wed, 5 Sep 2007 12:32:49 +0000
(14:32 +0200)
fix niced_granularity(). This resulted in under-scheduling for
CPU-bound negative nice level tasks (and this in turn caused
higher than necessary latencies in nice-0 tasks).
Signed-off-by: Ingo Molnar <mingo@elte.hu>
kernel/sched_fair.c
patch
|
blob
|
history
diff --git
a/kernel/sched_fair.c
b/kernel/sched_fair.c
index
ce39282
..
810b52d
100644
(file)
--- a/
kernel/sched_fair.c
+++ b/
kernel/sched_fair.c
@@
-291,7
+291,7
@@
niced_granularity(struct sched_entity *curr, unsigned long granularity)
/*
* It will always fit into 'long':
*/
- return (long) (tmp >>
WMULT_SHIFT
);
+ return (long) (tmp >>
(WMULT_SHIFT-NICE_0_SHIFT)
);
}
static inline void