diff options
author | Ingo Molnar <mingo@elte.hu> | 2007-07-16 03:46:31 -0400 |
---|---|---|
committer | Ingo Molnar <mingo@elte.hu> | 2007-07-16 03:46:31 -0400 |
commit | e4af30be8fd0bed0e8f96e4e1ebd546a3dfa8f2b (patch) | |
tree | 83e4ee65d6481ae35efc86d56a6be0e2872dd5b1 /kernel/sched.c | |
parent | 5714d2de93fbb156c5e45fb101a2b4f0cae8fbb7 (diff) |
[PATCH] sched: prettify prio_to_wmult[]
prettify the prio_to_wmult[] array. (this could have saved us from the typos)
Signed-off-by: Ingo Molnar <mingo@elte.hu>
Diffstat (limited to 'kernel/sched.c')
-rw-r--r-- | kernel/sched.c | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/kernel/sched.c b/kernel/sched.c index 90d22b72cf81..1c8076676eb1 100644 --- a/kernel/sched.c +++ b/kernel/sched.c | |||
@@ -756,14 +756,14 @@ static const int prio_to_weight[40] = { | |||
756 | * into multiplications: | 756 | * into multiplications: |
757 | */ | 757 | */ |
758 | static const u32 prio_to_wmult[40] = { | 758 | static const u32 prio_to_wmult[40] = { |
759 | 48356, 60446, 75558, 94446, 118058, 147573, | 759 | /* -20 */ 48356, 60446, 75558, 94446, 118058, |
760 | 184467, 230589, 288233, 360285, 450347, | 760 | /* -15 */ 147573, 184467, 230589, 288233, 360285, |
761 | 562979, 703746, 879575, 1099582, 1374389, | 761 | /* -10 */ 450347, 562979, 703746, 879575, 1099582, |
762 | 1717986, 2147483, 2684354, 3355443, 4194304, | 762 | /* -5 */ 1374389, 1717986, 2147483, 2684354, 3355443, |
763 | 5244160, 6557201, 8196502, 10250518, 12782640, | 763 | /* 0 */ 4194304, 5244160, 6557201, 8196502, 10250518, |
764 | 16025997, 19976592, 24970740, 31350126, 39045157, | 764 | /* 5 */ 12782640, 16025997, 19976592, 24970740, 31350126, |
765 | 49367440, 61356675, 76695844, 95443717, 119304647, | 765 | /* 10 */ 39045157, 49367440, 61356675, 76695844, 95443717, |
766 | 148102320, 186737708, 238609294, 286331153, | 766 | /* 15 */ 119304647, 148102320, 186737708, 238609294, 286331153, |
767 | }; | 767 | }; |
768 | 768 | ||
769 | static inline void | 769 | static inline void |