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

Commit a6a59cec authored by Linux Build Service Account's avatar Linux Build Service Account Committed by Gerrit - the friendly Code Review server
Browse files

Merge "cpufreq: interactive_pro: Reset last evaluated jiffy in idle callback"

parents 86aa506d 03eb3f1f
Loading
Loading
Loading
Loading
+3 −1
Original line number Diff line number Diff line
@@ -555,9 +555,11 @@ static void cpufreq_interactive_idle_start(void)
		 * min indefinitely.  This should probably be a quirk of
		 * the CPUFreq driver.
		 */
		if (!pending)
		if (!pending) {
			pcpu->last_evaluated_jiffy = get_jiffies_64();
			cpufreq_interactive_timer_resched(smp_processor_id());
		}
	}

	up_read(&pcpu->enable_sem);
}