Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > linux.kernel > #1474603
| From | Srinivas Pandruvada <srinivas.pandruvada@linux.intel.com> |
|---|---|
| Newsgroups | linux.kernel |
| Subject | [PATCH v2 4/8] sched, x86: use arch_update_cpu_topology to indicate x86 need sched domain rebuild |
| Date | 2016-09-01 23:10 +0200 |
| Message-ID | <scHph-70l-79@gated-at.bofh.it> (permalink) |
| References | <scHpf-70l-11@gated-at.bofh.it> |
| Organization | linux.* mail to news gateway |
From: Tim Chen <tim.c.chen@linux.intel.com>
Provides x86 with arch_update_cpu_topology function. This function
allows us to indicate that a condition is detected that the sched
domain of x86 needs a complete rebuild. This is done by setting the
x86_topology_update flag.
Signed-off-by: Tim Chen <tim.c.chen@linux.intel.com>
Signed-off-by: Srinivas Pandruvada <srinivas.pandruvada@linux.intel.com>
---
arch/x86/include/asm/topology.h | 2 ++
arch/x86/kernel/smpboot.c | 11 +++++++++++
2 files changed, 13 insertions(+)
diff --git a/arch/x86/include/asm/topology.h b/arch/x86/include/asm/topology.h
index 0bcf3b7..8d6df77 100644
--- a/arch/x86/include/asm/topology.h
+++ b/arch/x86/include/asm/topology.h
@@ -147,6 +147,8 @@ struct pci_bus;
int x86_pci_root_bus_node(int bus);
void x86_pci_root_bus_resources(int bus, struct list_head *resources);
+extern bool x86_topology_update;
+
#ifdef CONFIG_SCHED_ITMT
extern unsigned int __read_mostly sysctl_sched_itmt_enabled;
#endif /* CONFIG_SCHED_ITMT */
diff --git a/arch/x86/kernel/smpboot.c b/arch/x86/kernel/smpboot.c
index 292df31..737b9edf 100644
--- a/arch/x86/kernel/smpboot.c
+++ b/arch/x86/kernel/smpboot.c
@@ -110,6 +110,17 @@ static bool logical_packages_frozen __read_mostly;
int __max_smt_threads __read_mostly;
unsigned int __read_mostly sysctl_sched_itmt_enabled;
+/* Flag to indicate if a complete sched domain rebuild is required */
+bool x86_topology_update;
+
+int arch_update_cpu_topology(void)
+{
+ if (x86_topology_update) {
+ x86_topology_update = false;
+ return 1;
+ } else
+ return 0;
+}
static inline void smpboot_setup_warm_reset_vector(unsigned long start_eip)
{
--
2.7.4
Back to linux.kernel | Previous | Next — Previous in thread | Next in thread | Find similar | Unroll thread
[PATCH v2 0/8] Support IntelĀ® Turbo Boost Max Technology 3.0 Srinivas Pandruvada <srinivas.pandruvada@linux.intel.com> - 2016-09-01 23:10 +0200
[PATCH v2 4/8] sched, x86: use arch_update_cpu_topology to indicate x86 need sched domain rebuild Srinivas Pandruvada <srinivas.pandruvada@linux.intel.com> - 2016-09-01 23:10 +0200
[PATCH v2 6/8] acpi: bus: Enable HWP CPPC objects Srinivas Pandruvada <srinivas.pandruvada@linux.intel.com> - 2016-09-01 23:20 +0200
[PATCH v2 8/8] cpufreq: intel_pstate: Use CPPC to get max performance Srinivas Pandruvada <srinivas.pandruvada@linux.intel.com> - 2016-09-01 23:20 +0200
[PATCH v2 3/8] x86, cpu: provide a function topology_num_packages to enumerate #packages Srinivas Pandruvada <srinivas.pandruvada@linux.intel.com> - 2016-09-01 23:20 +0200
[PATCH v2 2/8] sched: Extend scheduler's asym packing Srinivas Pandruvada <srinivas.pandruvada@linux.intel.com> - 2016-09-01 23:30 +0200
Re: [PATCH v2 2/8] sched: Extend scheduler's asym packing Peter Zijlstra <peterz@infradead.org> - 2016-09-08 10:10 +0200
Re: [PATCH v2 2/8] sched: Extend scheduler's asym packing Tim Chen <tim.c.chen@linux.intel.com> - 2016-09-08 20:10 +0200
Re: [PATCH v2 2/8] sched: Extend scheduler's asym packing Peter Zijlstra <peterz@infradead.org> - 2016-09-08 20:30 +0200
Re: [PATCH v2 0/8] Support IntelĀ® Turbo Boost Max Technology 3.0 Peter Zijlstra <peterz@infradead.org> - 2016-09-08 10:10 +0200
csiph-web