|
@@ -5,6 +5,7 @@
|
|
|
#define _LINUX_ARCH_TOPOLOGY_H_
|
|
|
|
|
|
#include <linux/types.h>
|
|
|
+#include <linux/percpu.h>
|
|
|
|
|
|
void topology_normalize_cpu_scale(void);
|
|
|
|
|
@@ -16,4 +17,12 @@ unsigned long topology_get_cpu_scale(struct sched_domain *sd, int cpu);
|
|
|
|
|
|
void topology_set_cpu_scale(unsigned int cpu, unsigned long capacity);
|
|
|
|
|
|
+DECLARE_PER_CPU(unsigned long, freq_scale);
|
|
|
+
|
|
|
+static inline
|
|
|
+unsigned long topology_get_freq_scale(struct sched_domain *sd, int cpu)
|
|
|
+{
|
|
|
+ return per_cpu(freq_scale, cpu);
|
|
|
+}
|
|
|
+
|
|
|
#endif /* _LINUX_ARCH_TOPOLOGY_H_ */
|