diff options
author | Viresh Kumar <viresh.kumar@linaro.org> | 2016-11-24 03:21:11 -0500 |
---|---|---|
committer | Rafael J. Wysocki <rafael.j.wysocki@intel.com> | 2016-11-24 15:50:59 -0500 |
commit | d06e622d3d9206e6a2cc45a0f9a3256da8773ff4 (patch) | |
tree | 47817924ad26079151c601b0758fda93fd7fdeac | |
parent | 21ef57297b15a49b0c4dd4e7135c1a08e9a29a1c (diff) |
cpufreq: schedutil: Rectify comment in sugov_irq_work() function
This patch rectifies a comment present in sugov_irq_work() function to
follow proper grammar.
Suggested-by: Ingo Molnar <mingo@kernel.org>
Signed-off-by: Viresh Kumar <viresh.kumar@linaro.org>
Acked-by: Ingo Molnar <mingo@kernel.org>
Signed-off-by: Rafael J. Wysocki <rafael.j.wysocki@intel.com>
-rw-r--r-- | kernel/sched/cpufreq_schedutil.c | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/kernel/sched/cpufreq_schedutil.c b/kernel/sched/cpufreq_schedutil.c index 42a220e78f00..fd4659313640 100644 --- a/kernel/sched/cpufreq_schedutil.c +++ b/kernel/sched/cpufreq_schedutil.c | |||
@@ -315,15 +315,15 @@ static void sugov_irq_work(struct irq_work *irq_work) | |||
315 | sg_policy = container_of(irq_work, struct sugov_policy, irq_work); | 315 | sg_policy = container_of(irq_work, struct sugov_policy, irq_work); |
316 | 316 | ||
317 | /* | 317 | /* |
318 | * For Real Time and Deadline tasks, schedutil governor shoots the | 318 | * For RT and deadline tasks, the schedutil governor shoots the |
319 | * frequency to maximum. And special care must be taken to ensure that | 319 | * frequency to maximum. Special care must be taken to ensure that this |
320 | * this kthread doesn't result in that. | 320 | * kthread doesn't result in the same behavior. |
321 | * | 321 | * |
322 | * This is (mostly) guaranteed by the work_in_progress flag. The flag is | 322 | * This is (mostly) guaranteed by the work_in_progress flag. The flag is |
323 | * updated only at the end of the sugov_work() and before that schedutil | 323 | * updated only at the end of the sugov_work() function and before that |
324 | * rejects all other frequency scaling requests. | 324 | * the schedutil governor rejects all other frequency scaling requests. |
325 | * | 325 | * |
326 | * Though there is a very rare case where the RT thread yields right | 326 | * There is a very rare case though, where the RT thread yields right |
327 | * after the work_in_progress flag is cleared. The effects of that are | 327 | * after the work_in_progress flag is cleared. The effects of that are |
328 | * neglected for now. | 328 | * neglected for now. |
329 | */ | 329 | */ |