summaryrefslogtreecommitdiffstats
path: root/kernel/sched
diff options
context:
space:
mode:
authorDouglas RAILLARD <douglas.raillard@arm.com>2019-08-07 11:33:40 -0400
committerRafael J. Wysocki <rafael.j.wysocki@intel.com>2019-08-28 05:26:46 -0400
commit77c84dd1881d0f0176cb678d770bfbda26c54390 (patch)
treebfe1225eb5659eb42302a6f2abd87a20107b28fa /kernel/sched
parente9a7cc1d97f13f11970f7c484bdfc0502efc4223 (diff)
sched/cpufreq: Align trace event behavior of fast switching
Fast switching path only emits an event for the CPU of interest, whereas the regular path emits an event for all the CPUs that had their frequency changed, i.e. all the CPUs sharing the same policy. With the current behavior, looking at cpu_frequency event for a given CPU that is using the fast switching path will not give the correct frequency signal. Signed-off-by: Douglas RAILLARD <douglas.raillard@arm.com> Acked-by: Peter Zijlstra (Intel) <peterz@infradead.org> Signed-off-by: Rafael J. Wysocki <rafael.j.wysocki@intel.com>
Diffstat (limited to 'kernel/sched')
-rw-r--r--kernel/sched/cpufreq_schedutil.c7
1 files changed, 6 insertions, 1 deletions
diff --git a/kernel/sched/cpufreq_schedutil.c b/kernel/sched/cpufreq_schedutil.c
index 867b4bb6d4be..b03ca2f73713 100644
--- a/kernel/sched/cpufreq_schedutil.c
+++ b/kernel/sched/cpufreq_schedutil.c
@@ -117,6 +117,7 @@ static void sugov_fast_switch(struct sugov_policy *sg_policy, u64 time,
117 unsigned int next_freq) 117 unsigned int next_freq)
118{ 118{
119 struct cpufreq_policy *policy = sg_policy->policy; 119 struct cpufreq_policy *policy = sg_policy->policy;
120 int cpu;
120 121
121 if (!sugov_update_next_freq(sg_policy, time, next_freq)) 122 if (!sugov_update_next_freq(sg_policy, time, next_freq))
122 return; 123 return;
@@ -126,7 +127,11 @@ static void sugov_fast_switch(struct sugov_policy *sg_policy, u64 time,
126 return; 127 return;
127 128
128 policy->cur = next_freq; 129 policy->cur = next_freq;
129 trace_cpu_frequency(next_freq, smp_processor_id()); 130
131 if (trace_cpu_frequency_enabled()) {
132 for_each_cpu(cpu, policy->cpus)
133 trace_cpu_frequency(next_freq, cpu);
134 }
130} 135}
131 136
132static void sugov_deferred_update(struct sugov_policy *sg_policy, u64 time, 137static void sugov_deferred_update(struct sugov_policy *sg_policy, u64 time,