From: Richard Cochran Date: Wed, 6 Apr 2016 21:00:56 +0000 (-0400) Subject: intel_idle: Propagate hot plug errors. X-Git-Tag: v4.9.8~2331^2~1^3~3 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=08820546e4c30c84d0a1f1a49df055e1719c07ea;p=platform%2Fkernel%2Flinux-rpi3.git intel_idle: Propagate hot plug errors. If a cpuidle registration error occurs during the hot plug notifier callback, we should really inform the hot plug machinery instead of just ignoring the error. This patch changes the callback to properly return on error. Signed-off-by: Richard Cochran Signed-off-by: Len Brown Signed-off-by: Rafael J. Wysocki --- diff --git a/drivers/idle/intel_idle.c b/drivers/idle/intel_idle.c index 4418cfa..8420ba1 100644 --- a/drivers/idle/intel_idle.c +++ b/drivers/idle/intel_idle.c @@ -818,8 +818,11 @@ static int cpu_hotplug_notify(struct notifier_block *n, * driver in this case */ dev = per_cpu_ptr(intel_idle_cpuidle_devices, hotcpu); - if (!dev->registered) - intel_idle_cpu_init(hotcpu); + if (dev->registered) + break; + + if (intel_idle_cpu_init(hotcpu)) + return NOTIFY_BAD; break; }