diff options
-rw-r--r-- | kernel/sched.c | 3 | ||||
-rw-r--r-- | kernel/sched_fair.c | 16 |
2 files changed, 15 insertions, 4 deletions
diff --git a/kernel/sched.c b/kernel/sched.c index a8845516ace6..17b4d226ee0d 100644 --- a/kernel/sched.c +++ b/kernel/sched.c | |||
@@ -6331,6 +6331,9 @@ migration_call(struct notifier_block *nfb, unsigned long action, void *hcpu) | |||
6331 | break; | 6331 | break; |
6332 | #endif | 6332 | #endif |
6333 | } | 6333 | } |
6334 | |||
6335 | update_max_interval(); | ||
6336 | |||
6334 | return NOTIFY_OK; | 6337 | return NOTIFY_OK; |
6335 | } | 6338 | } |
6336 | 6339 | ||
diff --git a/kernel/sched_fair.c b/kernel/sched_fair.c index c7ec5c8e7b44..80ecd09452e0 100644 --- a/kernel/sched_fair.c +++ b/kernel/sched_fair.c | |||
@@ -3820,6 +3820,17 @@ void select_nohz_load_balancer(int stop_tick) | |||
3820 | 3820 | ||
3821 | static DEFINE_SPINLOCK(balancing); | 3821 | static DEFINE_SPINLOCK(balancing); |
3822 | 3822 | ||
3823 | static unsigned long __read_mostly max_load_balance_interval = HZ/10; | ||
3824 | |||
3825 | /* | ||
3826 | * Scale the max load_balance interval with the number of CPUs in the system. | ||
3827 | * This trades load-balance latency on larger machines for less cross talk. | ||
3828 | */ | ||
3829 | static void update_max_interval(void) | ||
3830 | { | ||
3831 | max_load_balance_interval = HZ*num_online_cpus()/10; | ||
3832 | } | ||
3833 | |||
3823 | /* | 3834 | /* |
3824 | * It checks each scheduling domain to see if it is due to be balanced, | 3835 | * It checks each scheduling domain to see if it is due to be balanced, |
3825 | * and initiates a balancing operation if so. | 3836 | * and initiates a balancing operation if so. |
@@ -3849,10 +3860,7 @@ static void rebalance_domains(int cpu, enum cpu_idle_type idle) | |||
3849 | 3860 | ||
3850 | /* scale ms to jiffies */ | 3861 | /* scale ms to jiffies */ |
3851 | interval = msecs_to_jiffies(interval); | 3862 | interval = msecs_to_jiffies(interval); |
3852 | if (unlikely(!interval)) | 3863 | interval = clamp(interval, 1UL, max_load_balance_interval); |
3853 | interval = 1; | ||
3854 | if (interval > HZ*num_online_cpus()/10) | ||
3855 | interval = HZ*num_online_cpus()/10; | ||
3856 | 3864 | ||
3857 | need_serialize = sd->flags & SD_SERIALIZE; | 3865 | need_serialize = sd->flags & SD_SERIALIZE; |
3858 | 3866 | ||