diff options
Diffstat (limited to 'include/linux/topology.h')
-rw-r--r-- | include/linux/topology.h | 43 |
1 files changed, 33 insertions, 10 deletions
diff --git a/include/linux/topology.h b/include/linux/topology.h index 486bec23f986..da508d1998e4 100644 --- a/include/linux/topology.h +++ b/include/linux/topology.h | |||
@@ -115,6 +115,38 @@ | |||
115 | #endif | 115 | #endif |
116 | #endif /* CONFIG_SCHED_SMT */ | 116 | #endif /* CONFIG_SCHED_SMT */ |
117 | 117 | ||
118 | #ifdef CONFIG_SCHED_MC | ||
119 | /* Common values for MC siblings. for now mostly derived from SD_CPU_INIT */ | ||
120 | #ifndef SD_MC_INIT | ||
121 | #define SD_MC_INIT (struct sched_domain) { \ | ||
122 | .span = CPU_MASK_NONE, \ | ||
123 | .parent = NULL, \ | ||
124 | .child = NULL, \ | ||
125 | .groups = NULL, \ | ||
126 | .min_interval = 1, \ | ||
127 | .max_interval = 4, \ | ||
128 | .busy_factor = 64, \ | ||
129 | .imbalance_pct = 125, \ | ||
130 | .cache_nice_tries = 1, \ | ||
131 | .per_cpu_gain = 100, \ | ||
132 | .busy_idx = 2, \ | ||
133 | .idle_idx = 1, \ | ||
134 | .newidle_idx = 2, \ | ||
135 | .wake_idx = 1, \ | ||
136 | .forkexec_idx = 1, \ | ||
137 | .flags = SD_LOAD_BALANCE \ | ||
138 | | SD_BALANCE_NEWIDLE \ | ||
139 | | SD_BALANCE_EXEC \ | ||
140 | | SD_WAKE_AFFINE \ | ||
141 | | SD_SHARE_PKG_RESOURCES\ | ||
142 | | BALANCE_FOR_MC_POWER, \ | ||
143 | .last_balance = jiffies, \ | ||
144 | .balance_interval = 1, \ | ||
145 | .nr_balance_failed = 0, \ | ||
146 | } | ||
147 | #endif | ||
148 | #endif /* CONFIG_SCHED_MC */ | ||
149 | |||
118 | /* Common values for CPUs */ | 150 | /* Common values for CPUs */ |
119 | #ifndef SD_CPU_INIT | 151 | #ifndef SD_CPU_INIT |
120 | #define SD_CPU_INIT (struct sched_domain) { \ | 152 | #define SD_CPU_INIT (struct sched_domain) { \ |
@@ -137,7 +169,7 @@ | |||
137 | | SD_BALANCE_NEWIDLE \ | 169 | | SD_BALANCE_NEWIDLE \ |
138 | | SD_BALANCE_EXEC \ | 170 | | SD_BALANCE_EXEC \ |
139 | | SD_WAKE_AFFINE \ | 171 | | SD_WAKE_AFFINE \ |
140 | | BALANCE_FOR_POWER, \ | 172 | | BALANCE_FOR_PKG_POWER,\ |
141 | .last_balance = jiffies, \ | 173 | .last_balance = jiffies, \ |
142 | .balance_interval = 1, \ | 174 | .balance_interval = 1, \ |
143 | .nr_balance_failed = 0, \ | 175 | .nr_balance_failed = 0, \ |
@@ -168,15 +200,6 @@ | |||
168 | .nr_balance_failed = 0, \ | 200 | .nr_balance_failed = 0, \ |
169 | } | 201 | } |
170 | 202 | ||
171 | #ifdef CONFIG_SCHED_MC | ||
172 | #ifndef SD_MC_INIT | ||
173 | /* for now its same as SD_CPU_INIT. | ||
174 | * TBD: Tune Domain parameters! | ||
175 | */ | ||
176 | #define SD_MC_INIT SD_CPU_INIT | ||
177 | #endif | ||
178 | #endif | ||
179 | |||
180 | #ifdef CONFIG_NUMA | 203 | #ifdef CONFIG_NUMA |
181 | #ifndef SD_NODE_INIT | 204 | #ifndef SD_NODE_INIT |
182 | #error Please define an appropriate SD_NODE_INIT in include/asm/topology.h!!! | 205 | #error Please define an appropriate SD_NODE_INIT in include/asm/topology.h!!! |