diff options
Diffstat (limited to 'include/linux/sched/topology.h')
| -rw-r--r-- | include/linux/sched/topology.h | 17 | 
1 files changed, 16 insertions, 1 deletions
| diff --git a/include/linux/sched/topology.h b/include/linux/sched/topology.h index 6b9976180c1e..c31d3a47a47c 100644 --- a/include/linux/sched/topology.h +++ b/include/linux/sched/topology.h @@ -89,7 +89,6 @@ struct sched_domain {  	unsigned int newidle_idx;  	unsigned int wake_idx;  	unsigned int forkexec_idx; -	unsigned int smt_gain;  	int nohz_idle;			/* NOHZ IDLE status */  	int flags;			/* See SD_* */ @@ -202,6 +201,14 @@ extern void set_sched_topology(struct sched_domain_topology_level *tl);  # define SD_INIT_NAME(type)  #endif +#ifndef arch_scale_cpu_capacity +static __always_inline +unsigned long arch_scale_cpu_capacity(struct sched_domain *sd, int cpu) +{ +	return SCHED_CAPACITY_SCALE; +} +#endif +  #else /* CONFIG_SMP */  struct sched_domain_attr; @@ -217,6 +224,14 @@ static inline bool cpus_share_cache(int this_cpu, int that_cpu)  	return true;  } +#ifndef arch_scale_cpu_capacity +static __always_inline +unsigned long arch_scale_cpu_capacity(void __always_unused *sd, int cpu) +{ +	return SCHED_CAPACITY_SCALE; +} +#endif +  #endif	/* !CONFIG_SMP */  static inline int task_node(const struct task_struct *p) | 
