Gitweb:     
http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=a5968df8737eda477d9d1038f5428ebd4d0884e1
Commit:     a5968df8737eda477d9d1038f5428ebd4d0884e1
Parent:     e127031f4f76dc367c5d2f9d883715730dd82f7d
Author:     Ingo Molnar <[EMAIL PROTECTED]>
AuthorDate: Wed Jul 11 21:21:47 2007 +0200
Committer:  Linus Torvalds <[EMAIL PROTECTED]>
CommitDate: Fri Jul 13 10:10:08 2007 -0700

    [PATCH] sched: allow larger granularity
    
    Allow granularity up to 100 msecs, instead of 10 msecs.
    (needed on larger boxes)
    
    Signed-off-by: Ingo Molnar <[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 2ab7fa8..9088c2d 100644
--- a/kernel/sched.c
+++ b/kernel/sched.c
@@ -4778,7 +4778,7 @@ cpumask_t nohz_cpu_mask = CPU_MASK_NONE;
 static inline void sched_init_granularity(void)
 {
        unsigned int factor = 1 + ilog2(num_online_cpus());
-       const unsigned long gran_limit = 10000000;
+       const unsigned long gran_limit = 100000000;
 
        sysctl_sched_granularity *= factor;
        if (sysctl_sched_granularity > gran_limit)
-
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