Skip to content

Commit

Permalink
devfreq_boost: Mark boost kthreads as performance critical
Browse files Browse the repository at this point in the history
* The boost kthreads are performance critical for obvious reasons.

fix commit 157d93a.

Signed-off-by: Shashank Patil <[email protected]>
  • Loading branch information
itsshashanksp committed May 28, 2024
1 parent 24cefd3 commit 60187e9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion drivers/devfreq/devfreq_boost.c
Original file line number Diff line number Diff line change
Expand Up @@ -333,7 +333,7 @@ static int __init devfreq_boost_init(void)
for (i = 0; i < DEVFREQ_MAX; i++) {
struct boost_dev *b = d->devices + i;

thread[i] = kthread_run_perf_critical(devfreq_boost_thread, b,
thread[i] = kthread_run_perf_critical(cpu_perf_mask, devfreq_boost_thread, b,
"devfreq_boostd/%d", i);
if (IS_ERR(thread[i])) {
ret = PTR_ERR(thread[i]);
Expand Down

0 comments on commit 60187e9

Please sign in to comment.