diff options
| author | Anton Blanchard <anton@samba.org> | 2005-01-07 21:45:08 -0800 |
|---|---|---|
| committer | Linus Torvalds <torvalds@evo.osdl.org> | 2005-01-07 21:45:08 -0800 |
| commit | e2da107359e98f523c97ca046df4ed77fe8613a8 (patch) | |
| tree | 89c66eeb3c83856d963f389b5e1763c15f290ac7 /include/linux | |
| parent | fbdaac3d81774c2003ac0025d33dd1142ab3d1b3 (diff) | |
[PATCH] sched: reset cache_hot_time
Reset cache_hot_time to sane values (in the ms range). Some recent changes
resulted in values in the us range.
Signed-off-by: Anton Blanchard <anton@samba.org>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
Diffstat (limited to 'include/linux')
| -rw-r--r-- | include/linux/topology.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/linux/topology.h b/include/linux/topology.h index 15877fd926d7..23542ccd680b 100644 --- a/include/linux/topology.h +++ b/include/linux/topology.h @@ -116,7 +116,7 @@ static inline int __next_node_with_cpus(int node) .max_interval = 4, \ .busy_factor = 64, \ .imbalance_pct = 125, \ - .cache_hot_time = (5*1000/2), \ + .cache_hot_time = (5*1000000/2), \ .cache_nice_tries = 1, \ .per_cpu_gain = 100, \ .flags = SD_LOAD_BALANCE \ |
