Skip to content

Commit 3325254

Browse files
committed
Merge tag 'pm-5.0-rc5' of git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm
Pull power management fixes from Rafael Wysocki: "These fix a PM-runtime framework regression introduced by the recent switch-over of device autosuspend to hrtimers and a mistake in the "poll idle state" code introduced by a recent change in it. Specifics: - Since ktime_get() turns out to be problematic for device autosuspend in the PM-runtime framework, make it use ktime_get_mono_fast_ns() instead (Vincent Guittot). - Fix an initial value of a local variable in the "poll idle state" code that makes it behave not exactly as expected when all idle states except for the "polling" one are disabled (Doug Smythies)" * tag 'pm-5.0-rc5' of git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm: cpuidle: poll_state: Fix default time limit PM-runtime: Fix deadlock with ktime_get()
2 parents 4771eec + cbffab6 commit 3325254

File tree

3 files changed

+7
-7
lines changed

3 files changed

+7
-7
lines changed

drivers/base/power/runtime.c

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -130,7 +130,7 @@ u64 pm_runtime_autosuspend_expiration(struct device *dev)
130130
{
131131
int autosuspend_delay;
132132
u64 last_busy, expires = 0;
133-
u64 now = ktime_to_ns(ktime_get());
133+
u64 now = ktime_get_mono_fast_ns();
134134

135135
if (!dev->power.use_autosuspend)
136136
goto out;
@@ -909,7 +909,7 @@ static enum hrtimer_restart pm_suspend_timer_fn(struct hrtimer *timer)
909909
* If 'expires' is after the current time, we've been called
910910
* too early.
911911
*/
912-
if (expires > 0 && expires < ktime_to_ns(ktime_get())) {
912+
if (expires > 0 && expires < ktime_get_mono_fast_ns()) {
913913
dev->power.timer_expires = 0;
914914
rpm_suspend(dev, dev->power.timer_autosuspends ?
915915
(RPM_ASYNC | RPM_AUTO) : RPM_ASYNC);
@@ -928,7 +928,7 @@ static enum hrtimer_restart pm_suspend_timer_fn(struct hrtimer *timer)
928928
int pm_schedule_suspend(struct device *dev, unsigned int delay)
929929
{
930930
unsigned long flags;
931-
ktime_t expires;
931+
u64 expires;
932932
int retval;
933933

934934
spin_lock_irqsave(&dev->power.lock, flags);
@@ -945,8 +945,8 @@ int pm_schedule_suspend(struct device *dev, unsigned int delay)
945945
/* Other scheduled or pending requests need to be canceled. */
946946
pm_runtime_cancel_pending(dev);
947947

948-
expires = ktime_add(ktime_get(), ms_to_ktime(delay));
949-
dev->power.timer_expires = ktime_to_ns(expires);
948+
expires = ktime_get_mono_fast_ns() + (u64)delay * NSEC_PER_MSEC;
949+
dev->power.timer_expires = expires;
950950
dev->power.timer_autosuspends = 0;
951951
hrtimer_start(&dev->power.suspend_timer, expires, HRTIMER_MODE_ABS);
952952

drivers/cpuidle/poll_state.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ static int __cpuidle poll_idle(struct cpuidle_device *dev,
2121
local_irq_enable();
2222
if (!current_set_polling_and_test()) {
2323
unsigned int loop_count = 0;
24-
u64 limit = TICK_USEC;
24+
u64 limit = TICK_NSEC;
2525
int i;
2626

2727
for (i = 1; i < drv->state_count; i++) {

include/linux/pm_runtime.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -105,7 +105,7 @@ static inline bool pm_runtime_callbacks_present(struct device *dev)
105105

106106
static inline void pm_runtime_mark_last_busy(struct device *dev)
107107
{
108-
WRITE_ONCE(dev->power.last_busy, ktime_to_ns(ktime_get()));
108+
WRITE_ONCE(dev->power.last_busy, ktime_get_mono_fast_ns());
109109
}
110110

111111
static inline bool pm_runtime_is_irq_safe(struct device *dev)

0 commit comments

Comments
 (0)