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

Commit 251accf9 authored by Joel Fernandes's avatar Joel Fernandes Committed by Rafael J. Wysocki
Browse files

cpufreq: schedutil: Use unsigned int for iowait boost



Make iowait_boost and iowait_boost_max as unsigned int since its unit
is kHz and this is consistent with struct cpufreq_policy.  Also change
the local variables in sugov_iowait_boost() to match this.

Signed-off-by: default avatarJoel Fernandes <joelaf@google.com>
Signed-off-by: default avatarRafael J. Wysocki <rafael.j.wysocki@intel.com>
parent a5a0809b
Loading
Loading
Loading
Loading
+3 −3
Original line number Diff line number Diff line
@@ -54,8 +54,8 @@ struct sugov_cpu {
	struct sugov_policy *sg_policy;

	bool iowait_boost_pending;
	unsigned long iowait_boost;
	unsigned long iowait_boost_max;
	unsigned int iowait_boost;
	unsigned int iowait_boost_max;
	u64 last_update;

	/* The fields below are only needed when sharing a policy. */
@@ -196,7 +196,7 @@ static void sugov_set_iowait_boost(struct sugov_cpu *sg_cpu, u64 time,
static void sugov_iowait_boost(struct sugov_cpu *sg_cpu, unsigned long *util,
			       unsigned long *max)
{
	unsigned long boost_util, boost_max;
	unsigned int boost_util, boost_max;

	if (!sg_cpu->iowait_boost)
		return;