Skip to content

Commit 02cfdc9

Browse files
pdxChenIngo Molnar
authored andcommitted
sched/x86: Remove unnecessary TBM3 check to update topology
Scheduling to the max performance core is enabled by default for Turbo Boost Maxt Technology 3.0 capable platforms. Remove the useless sysctl_sched_itmt_enabled check to update sched topology for adding the prioritized core scheduling flag. Signed-off-by: Tim Chen <tim.c.chen@linux.intel.com> Cc: Peter Zijlstra <peterz@infradead.org> Cc: Mike Galbraith <efault@gmx.de> Cc: Linus Torvalds <torvalds@linux-foundation.org> Cc: Peter Zijlstra <peterz@infradead.org> Cc: Srinivas Pandruvada <srinivas.pandruvada@linux.intel.com> Cc: Thomas Gleixner <tglx@linutronix.de> Cc: bp@suse.de Cc: jolsa@redhat.com Cc: linux-acpi@vger.kernel.org Cc: linux-pm@vger.kernel.org Cc: rjw@rjwysocki.net Link: http://lkml.kernel.org/r/1484778629-4404-1-git-send-email-tim.c.chen@linux.intel.com Signed-off-by: Ingo Molnar <mingo@kernel.org>
1 parent f21860b commit 02cfdc9

File tree

1 file changed

+2
-4
lines changed

1 file changed

+2
-4
lines changed

arch/x86/kernel/itmt.c

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -132,10 +132,8 @@ int sched_set_itmt_support(void)
132132

133133
sysctl_sched_itmt_enabled = 1;
134134

135-
if (sysctl_sched_itmt_enabled) {
136-
x86_topology_update = true;
137-
rebuild_sched_domains();
138-
}
135+
x86_topology_update = true;
136+
rebuild_sched_domains();
139137

140138
mutex_unlock(&itmt_update_mutex);
141139

0 commit comments

Comments
 (0)