diff options
Diffstat (limited to 'include/linux/sched/topology.h')
| -rw-r--r-- | include/linux/sched/topology.h | 10 | 
1 files changed, 9 insertions, 1 deletions
diff --git a/include/linux/sched/topology.h b/include/linux/sched/topology.h index f341163fedc9..95253ad792b0 100644 --- a/include/linux/sched/topology.h +++ b/include/linux/sched/topology.h @@ -142,7 +142,7 @@ struct sched_domain {  	 * by attaching extra space to the end of the structure,  	 * depending on how many CPUs the kernel has booted up with)  	 */ -	unsigned long span[0]; +	unsigned long span[];  };  static inline struct cpumask *sched_domain_span(struct sched_domain *sd) @@ -225,6 +225,14 @@ unsigned long arch_scale_cpu_capacity(int cpu)  }  #endif +#ifndef arch_scale_thermal_pressure +static __always_inline +unsigned long arch_scale_thermal_pressure(int cpu) +{ +	return 0; +} +#endif +  static inline int task_node(const struct task_struct *p)  {  	return cpu_to_node(task_cpu(p));  |