Searched hist:cab3ecaed5cdcc9c36a96874b4c45056a46ece45 (Results 1 – 2 of 2) sorted by relevance
/openbmc/linux/kernel/sched/ |
H A D | topology.c | diff cab3ecaed5cdcc9c36a96874b4c45056a46ece45 Tue Jun 13 03:20:09 CDT 2023 Hao Jia <jiahao.os@bytedance.com> sched/core: Fixed missing rq clock update before calling set_rq_offline()
When using a cpufreq governor that uses cpufreq_add_update_util_hook(), it is possible to trigger a missing update_rq_clock() warning for the CPU hotplug path:
rq_attach_root() set_rq_offline() rq_offline_rt() __disable_runtime() sched_rt_rq_enqueue() enqueue_top_rt_rq() cpufreq_update_util() data->func(data, rq_clock(rq), flags)
Move update_rq_clock() from sched_cpu_deactivate() (one of it's callers) into set_rq_offline() such that it covers all set_rq_offline() usage.
Additionally change rq_attach_root() to use rq_lock_irqsave() so that it will properly manage the runqueue clock flags.
Suggested-by: Ben Segall <bsegall@google.com> Signed-off-by: Hao Jia <jiahao.os@bytedance.com> Signed-off-by: Peter Zijlstra (Intel) <peterz@infradead.org> Reviewed-by: Vincent Guittot <vincent.guittot@linaro.org> Link: https://lkml.kernel.org/r/20230613082012.49615-2-jiahao.os@bytedance.com
|
H A D | core.c | diff cab3ecaed5cdcc9c36a96874b4c45056a46ece45 Tue Jun 13 03:20:09 CDT 2023 Hao Jia <jiahao.os@bytedance.com> sched/core: Fixed missing rq clock update before calling set_rq_offline()
When using a cpufreq governor that uses cpufreq_add_update_util_hook(), it is possible to trigger a missing update_rq_clock() warning for the CPU hotplug path:
rq_attach_root() set_rq_offline() rq_offline_rt() __disable_runtime() sched_rt_rq_enqueue() enqueue_top_rt_rq() cpufreq_update_util() data->func(data, rq_clock(rq), flags)
Move update_rq_clock() from sched_cpu_deactivate() (one of it's callers) into set_rq_offline() such that it covers all set_rq_offline() usage.
Additionally change rq_attach_root() to use rq_lock_irqsave() so that it will properly manage the runqueue clock flags.
Suggested-by: Ben Segall <bsegall@google.com> Signed-off-by: Hao Jia <jiahao.os@bytedance.com> Signed-off-by: Peter Zijlstra (Intel) <peterz@infradead.org> Reviewed-by: Vincent Guittot <vincent.guittot@linaro.org> Link: https://lkml.kernel.org/r/20230613082012.49615-2-jiahao.os@bytedance.com
|