diff options
| -rw-r--r-- | kernel/sched/cpufreq_schedutil.c | 6 | 
1 files changed, 1 insertions, 5 deletions
| diff --git a/kernel/sched/cpufreq_schedutil.c b/kernel/sched/cpufreq_schedutil.c index e13df951aca7..d7e5194a820d 100644 --- a/kernel/sched/cpufreq_schedutil.c +++ b/kernel/sched/cpufreq_schedutil.c @@ -511,11 +511,7 @@ static int sugov_kthread_create(struct sugov_policy *sg_policy)  	}  	sg_policy->thread = thread; - -	/* Kthread is bound to all CPUs by default */ -	if (!policy->dvfs_possible_from_any_cpu) -		kthread_bind_mask(thread, policy->related_cpus); - +	kthread_bind_mask(thread, policy->related_cpus);  	init_irq_work(&sg_policy->irq_work, sugov_irq_work);  	mutex_init(&sg_policy->work_lock); | 
