Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 3735d524 authored by Konrad Rzeszutek Wilk's avatar Konrad Rzeszutek Wilk Committed by Rafael J. Wysocki
Browse files

intel_idle: Check cpu_idle_get_driver() for NULL before dereferencing it.



If the machine is booted without any cpu_idle driver set
(b/c disable_cpuidle() has been called) we should follow
other users of cpu_idle API and check the return value
for NULL before using it.

Reported-and-tested-by: default avatarMark van Dijk <mark@internecto.net>
Suggested-by: default avatarJan Beulich <JBeulich@suse.com>
Signed-off-by: default avatarKonrad Rzeszutek Wilk <konrad.wilk@oracle.com>
Signed-off-by: default avatarRafael J. Wysocki <rjw@sisk.pl>
parent 5fbbb90d
Loading
Loading
Loading
Loading
+2 −1
Original line number Diff line number Diff line
@@ -606,8 +606,9 @@ static int __init intel_idle_init(void)
	intel_idle_cpuidle_driver_init();
	retval = cpuidle_register_driver(&intel_idle_driver);
	if (retval) {
		struct cpuidle_driver *drv = cpuidle_get_driver();
		printk(KERN_DEBUG PREFIX "intel_idle yielding to %s",
			cpuidle_get_driver()->name);
			drv ? drv->name : "none");
		return retval;
	}