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

Commit 91973de7 authored by Peter Oruba's avatar Peter Oruba Committed by Dave Jones
Browse files

[CPUFREQ] bugfix cpufreq in combination with performance governor



There is a frequency scaling issue that I encountered with the performance
governor in combination with CPU hotplug.

In cpufreq.c CPU frequency is reduced to its minimum before the CPU gets
unregistered and set offline.  Does that have a particular reason?

Since the (k8-)governor does not monitor CPU frequency that setting also
applies then to the remaining CPU as well and lets the system run on the
lowest frequency although performance is chose as the policy.

Signed-off-by: default avatarPeter Oruba <peter.oruba@amd.com>
Signed-off-by: default avatarAndrew Morton <akpm@linux-foundation.org>
Signed-off-by: default avatarDave Jones <davej@redhat.com>
parent aac22d0a
Loading
Loading
Loading
Loading
+0 −6
Original line number Diff line number Diff line
@@ -1687,7 +1687,6 @@ static int cpufreq_cpu_callback(struct notifier_block *nfb,
{
	unsigned int cpu = (unsigned long)hcpu;
	struct sys_device *sys_dev;
	struct cpufreq_policy *policy;

	sys_dev = get_cpu_sysdev(cpu);
	if (sys_dev) {
@@ -1701,11 +1700,6 @@ static int cpufreq_cpu_callback(struct notifier_block *nfb,
			if (unlikely(lock_policy_rwsem_write(cpu)))
				BUG();

			policy = cpufreq_cpu_data[cpu];
			if (policy) {
				__cpufreq_driver_target(policy, policy->min,
						CPUFREQ_RELATION_H);
			}
			__cpufreq_remove_dev(sys_dev);
			break;
		case CPU_DOWN_FAILED: