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

Commit 2adefe85 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: Reset last evaluated jiffy in idle callback"

parents f107882f 9aa44be6
Loading
Loading
Loading
Loading
+3 −1
Original line number Diff line number Diff line
@@ -502,9 +502,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(pcpu);
		}
	}

	up_read(&pcpu->enable_sem);
}