blob: 61d41fe765f49045ce275a9f461c8aca62a441e1 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
diff --git a/kernel/sched/fair.c b/kernel/sched/fair.c
--- a/kernel/sched/fair.c
+++ b/kernel/sched/fair.c
@@ -76,19 +76,10 @@
*
* (default: 0.70 msec * (1 + ilog(ncpus)), units: nanoseconds)
*/
-#ifdef CONFIG_CACHY
-unsigned int sysctl_sched_base_slice = 400000ULL;
-static unsigned int normalized_sysctl_sched_base_slice = 400000ULL;
-#else
unsigned int sysctl_sched_base_slice = 700000ULL;
static unsigned int normalized_sysctl_sched_base_slice = 700000ULL;
-#endif /* CONFIG_CACHY */
-#ifdef CONFIG_CACHY
-__read_mostly unsigned int sysctl_sched_migration_cost = 400000UL;
-#else
__read_mostly unsigned int sysctl_sched_migration_cost = 500000UL;
-#endif
static int __init setup_sched_thermal_decay_shift(char *str)
{
|