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

Commit 59e99856 authored by Colin Cross's avatar Colin Cross Committed by Rafael J. Wysocki
Browse files

cpuidle: coupled: disable interrupts after entering safe state



Calling cpuidle_enter_state is expected to return with interrupts
enabled, but interrupts must be disabled before starting the
ready loop synchronization stage.  Call local_irq_disable after
each call to cpuidle_enter_state for the safe state.

Tested-by: default avatarStephen Warren <swarren@nvidia.com>
Signed-off-by: default avatarColin Cross <ccross@android.com>
Signed-off-by: default avatarRafael J. Wysocki <rafael.j.wysocki@intel.com>
parent 51f245b8
Loading
Loading
Loading
Loading
+2 −0
Original line number Diff line number Diff line
@@ -460,6 +460,7 @@ int cpuidle_enter_state_coupled(struct cpuidle_device *dev,
		}
		entered_state = cpuidle_enter_state(dev, drv,
			dev->safe_state_index);
		local_irq_disable();
	}

	/* Read barrier ensures online_count is read after prevent is cleared */
@@ -485,6 +486,7 @@ int cpuidle_enter_state_coupled(struct cpuidle_device *dev,

		entered_state = cpuidle_enter_state(dev, drv,
			dev->safe_state_index);
		local_irq_disable();
	}

	if (cpuidle_coupled_clear_pokes(dev->cpu)) {