diff options
Diffstat (limited to 'include')
-rw-r--r-- | include/linux/sched.h | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/include/linux/sched.h b/include/linux/sched.h index 4ce5c603c51a..2b95aa9f779b 100644 --- a/include/linux/sched.h +++ b/include/linux/sched.h | |||
@@ -786,6 +786,11 @@ struct sched_group { | |||
786 | u32 reciprocal_cpu_power; | 786 | u32 reciprocal_cpu_power; |
787 | }; | 787 | }; |
788 | 788 | ||
789 | static inline struct cpumask *sched_group_cpus(struct sched_group *sg) | ||
790 | { | ||
791 | return &sg->cpumask; | ||
792 | } | ||
793 | |||
789 | enum sched_domain_level { | 794 | enum sched_domain_level { |
790 | SD_LV_NONE = 0, | 795 | SD_LV_NONE = 0, |
791 | SD_LV_SIBLING, | 796 | SD_LV_SIBLING, |
@@ -866,6 +871,11 @@ struct sched_domain { | |||
866 | #endif | 871 | #endif |
867 | }; | 872 | }; |
868 | 873 | ||
874 | static inline struct cpumask *sched_domain_span(struct sched_domain *sd) | ||
875 | { | ||
876 | return &sd->span; | ||
877 | } | ||
878 | |||
869 | extern void partition_sched_domains(int ndoms_new, cpumask_t *doms_new, | 879 | extern void partition_sched_domains(int ndoms_new, cpumask_t *doms_new, |
870 | struct sched_domain_attr *dattr_new); | 880 | struct sched_domain_attr *dattr_new); |
871 | extern int arch_reinit_sched_domains(void); | 881 | extern int arch_reinit_sched_domains(void); |