From: Siddha, Suresh B Date: Sun, 10 Dec 2006 10:20:12 +0000 (-0800) Subject: [PATCH] sched domain: increase the SMT busy rebalance interval X-Git-Tag: v2.6.20-rc1~145^2~47 X-Git-Url: https://git.karo-electronics.de/?a=commitdiff_plain;h=ac7d550499e225efb51a53d0b00667f26b93bdff;p=karo-tx-linux.git [PATCH] sched domain: increase the SMT busy rebalance interval With SMT, if the logical processor is busy, load balance happens for every 8msec(min)-16msec(max). There is no need to do this often, as this is just for fairness(to maintain uniform runqueue lengths) and default time slice anyhow is 100msec. Appended patch increases this interval to 64msec(min)-128msec(max) when the logical processor is busy. Signed-off-by: Suresh Siddha Cc: Nick Piggin Acked-by: Ingo Molnar Signed-off-by: Andrew Morton Signed-off-by: Linus Torvalds --- diff --git a/include/linux/topology.h b/include/linux/topology.h index da508d1998e4..b93bb6cc6cc2 100644 --- a/include/linux/topology.h +++ b/include/linux/topology.h @@ -93,7 +93,7 @@ .groups = NULL, \ .min_interval = 1, \ .max_interval = 2, \ - .busy_factor = 8, \ + .busy_factor = 64, \ .imbalance_pct = 110, \ .cache_nice_tries = 0, \ .per_cpu_gain = 25, \