aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJon Medhurst <tixy@linaro.org>2016-06-02 11:09:13 +0100
committerArvind Chauhan <arvind.chauhan@arm.com>2017-10-31 12:59:04 +0530
commit6d8e95c41fc035f85ec7db0f59f9c31d35a6dece (patch)
treefd34d2959769c83d3848334c438ad8fccded5112
parent5969c2c441983917f18b9c9f1711fff580318ebf (diff)
arm: Default bL switcher to off if we have EAS or bLMP
Energy Aware Scheduling and big.LITTLE MP are both intended as better solutions than the big.LITTLE switcher for managing big.LITTLE systems. Signed-off-by: Jon Medhurst <tixy@linaro.org>
-rw-r--r--arch/arm/common/bL_switcher.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/arm/common/bL_switcher.c b/arch/arm/common/bL_switcher.c
index 37dc0fe1093f..acf7b74ca73c 100644
--- a/arch/arm/common/bL_switcher.c
+++ b/arch/arm/common/bL_switcher.c
@@ -772,7 +772,7 @@ static int bL_switcher_hotplug_callback(struct notifier_block *nfb,
return NOTIFY_DONE;
}
-static bool no_bL_switcher;
+static bool no_bL_switcher = IS_ENABLED(CONFIG_SCHED_TUNE) || IS_ENABLED(CONFIG_SCHED_HMP);
core_param(no_bL_switcher, no_bL_switcher, bool, 0644);
static int __init bL_switcher_init(void)