Gitweb:     
http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=4fd885170bf13841ada921495b7b00c4b9971cf9
Commit:     4fd885170bf13841ada921495b7b00c4b9971cf9
Parent:     af09f1e4b3214569de93bc9309c35014e5c8a3d0
Author:     Thomas Gleixner <[EMAIL PROTECTED]>
AuthorDate: Fri Jul 13 21:43:55 2007 +0200
Committer:  Linus Torvalds <[EMAIL PROTECTED]>
CommitDate: Fri Jul 13 16:45:43 2007 -0700

    CFS: Fix missing digit off in wmult table
    
    Roman Zippel noticed another inconsistency of the wmult table.
    
    wmult[16] has a missing digit.
    
    Signed-off-by: Thomas Gleixner <[EMAIL PROTECTED]>
    Signed-off-by: Linus Torvalds <[EMAIL PROTECTED]>
---
 kernel/sched.c |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/kernel/sched.c b/kernel/sched.c
index 0559665..3332bbb 100644
--- a/kernel/sched.c
+++ b/kernel/sched.c
@@ -750,7 +750,7 @@ static const u32 prio_to_wmult[40] = {
        48356,   60446,   75558,   94446,  118058,  147573,
        184467,  230589,  288233,  360285,  450347,
        562979,  703746,  879575, 1099582, 1374389,
-       717986, 2147483, 2684354, 3355443, 4194304,
+       1717986, 2147483, 2684354, 3355443, 4194304,
        5244160, 6557201, 8196502, 10250518, 12782640,
        16025997, 19976592, 24970740, 31350126, 39045157,
        49367440, 61356675, 76695844, 95443717, 119304647,
-
To unsubscribe from this list: send the line "unsubscribe git-commits-head" in
the body of a message to [EMAIL PROTECTED]
More majordomo info at  http://vger.kernel.org/majordomo-info.html

Reply via email to