[<prev] [next>] [day] [month] [year] [list]
Message-Id: <1571359769-32040-1-git-send-email-zhenzhong.duan@oracle.com>
Date: Fri, 18 Oct 2019 08:49:29 +0800
From: Zhenzhong Duan <zhenzhong.duan@...cle.com>
To: linux-kernel@...r.kernel.org
Cc: rjw@...ysocki.net, daniel.lezcano@...aro.org,
linux-pm@...r.kernel.org, mtosatti@...hat.com,
Zhenzhong Duan <zhenzhong.duan@...cle.com>,
Joao Martins <joao.m.martins@...cle.com>
Subject: [PATCH v2] cpuidle-haltpoll: make haltpoll aware of 'idle=' override
Currenly haltpoll isn't aware of the 'idle=' override, the priority is
'idle=poll' > haltpoll > 'idle=halt'. When 'idle=poll' is used, cpuidle
driver is bypassed but current_driver in sys still shows 'haltpoll'.
When 'idle=halt' is used, haltpoll take precedence and make 'idle=halt'
no effect.
Add a check to not load haltpoll driver if there is 'idle='.
Signed-off-by: Zhenzhong Duan <zhenzhong.duan@...cle.com>
Signed-off-by: Joao Martins <joao.m.martins@...cle.com>
---
v2: remove #if guard per Rafael
drivers/cpuidle/cpuidle-haltpoll.c | 4 ++++
1 file changed, 4 insertions(+)
diff --git a/drivers/cpuidle/cpuidle-haltpoll.c b/drivers/cpuidle/cpuidle-haltpoll.c
index 932390b..b0ce9bc 100644
--- a/drivers/cpuidle/cpuidle-haltpoll.c
+++ b/drivers/cpuidle/cpuidle-haltpoll.c
@@ -95,6 +95,10 @@ static int __init haltpoll_init(void)
int ret;
struct cpuidle_driver *drv = &haltpoll_driver;
+ /* Do not load haltpoll if idle= is passed */
+ if (boot_option_idle_override != IDLE_NO_OVERRIDE)
+ return -ENODEV;
+
cpuidle_poll_state_init(drv);
if (!kvm_para_available() ||
--
1.8.3.1
Powered by blists - more mailing lists