diff options
Diffstat (limited to 'include/linux/sched.h')
| -rw-r--r-- | include/linux/sched.h | 22 |
1 files changed, 13 insertions, 9 deletions
diff --git a/include/linux/sched.h b/include/linux/sched.h index 882dc48163b4..89115ec7d43f 100644 --- a/include/linux/sched.h +++ b/include/linux/sched.h | |||
| @@ -145,7 +145,6 @@ extern unsigned long this_cpu_load(void); | |||
| 145 | 145 | ||
| 146 | 146 | ||
| 147 | extern void calc_global_load(void); | 147 | extern void calc_global_load(void); |
| 148 | extern u64 cpu_nr_migrations(int cpu); | ||
| 149 | 148 | ||
| 150 | extern unsigned long get_parent_ip(unsigned long addr); | 149 | extern unsigned long get_parent_ip(unsigned long addr); |
| 151 | 150 | ||
| @@ -171,8 +170,6 @@ print_cfs_rq(struct seq_file *m, int cpu, struct cfs_rq *cfs_rq) | |||
| 171 | } | 170 | } |
| 172 | #endif | 171 | #endif |
| 173 | 172 | ||
| 174 | extern unsigned long long time_sync_thresh; | ||
| 175 | |||
| 176 | /* | 173 | /* |
| 177 | * Task state bitmask. NOTE! These bits are also | 174 | * Task state bitmask. NOTE! These bits are also |
| 178 | * encoded in fs/proc/array.c: get_task_state(). | 175 | * encoded in fs/proc/array.c: get_task_state(). |
| @@ -349,7 +346,6 @@ extern signed long schedule_timeout(signed long timeout); | |||
| 349 | extern signed long schedule_timeout_interruptible(signed long timeout); | 346 | extern signed long schedule_timeout_interruptible(signed long timeout); |
| 350 | extern signed long schedule_timeout_killable(signed long timeout); | 347 | extern signed long schedule_timeout_killable(signed long timeout); |
| 351 | extern signed long schedule_timeout_uninterruptible(signed long timeout); | 348 | extern signed long schedule_timeout_uninterruptible(signed long timeout); |
| 352 | asmlinkage void __schedule(void); | ||
| 353 | asmlinkage void schedule(void); | 349 | asmlinkage void schedule(void); |
| 354 | extern int mutex_spin_on_owner(struct mutex *lock, struct thread_info *owner); | 350 | extern int mutex_spin_on_owner(struct mutex *lock, struct thread_info *owner); |
| 355 | 351 | ||
| @@ -628,6 +624,9 @@ struct signal_struct { | |||
| 628 | cputime_t utime, stime, cutime, cstime; | 624 | cputime_t utime, stime, cutime, cstime; |
| 629 | cputime_t gtime; | 625 | cputime_t gtime; |
| 630 | cputime_t cgtime; | 626 | cputime_t cgtime; |
| 627 | #ifndef CONFIG_VIRT_CPU_ACCOUNTING | ||
| 628 | cputime_t prev_utime, prev_stime; | ||
| 629 | #endif | ||
| 631 | unsigned long nvcsw, nivcsw, cnvcsw, cnivcsw; | 630 | unsigned long nvcsw, nivcsw, cnvcsw, cnivcsw; |
| 632 | unsigned long min_flt, maj_flt, cmin_flt, cmaj_flt; | 631 | unsigned long min_flt, maj_flt, cmin_flt, cmaj_flt; |
| 633 | unsigned long inblock, oublock, cinblock, coublock; | 632 | unsigned long inblock, oublock, cinblock, coublock; |
| @@ -1013,9 +1012,13 @@ static inline struct cpumask *sched_domain_span(struct sched_domain *sd) | |||
| 1013 | return to_cpumask(sd->span); | 1012 | return to_cpumask(sd->span); |
| 1014 | } | 1013 | } |
| 1015 | 1014 | ||
| 1016 | extern void partition_sched_domains(int ndoms_new, struct cpumask *doms_new, | 1015 | extern void partition_sched_domains(int ndoms_new, cpumask_var_t doms_new[], |
| 1017 | struct sched_domain_attr *dattr_new); | 1016 | struct sched_domain_attr *dattr_new); |
| 1018 | 1017 | ||
| 1018 | /* Allocate an array of sched domains, for partition_sched_domains(). */ | ||
| 1019 | cpumask_var_t *alloc_sched_domains(unsigned int ndoms); | ||
| 1020 | void free_sched_domains(cpumask_var_t doms[], unsigned int ndoms); | ||
| 1021 | |||
| 1019 | /* Test a flag in parent sched domain */ | 1022 | /* Test a flag in parent sched domain */ |
| 1020 | static inline int test_sd_parent(struct sched_domain *sd, int flag) | 1023 | static inline int test_sd_parent(struct sched_domain *sd, int flag) |
| 1021 | { | 1024 | { |
| @@ -1033,7 +1036,7 @@ unsigned long default_scale_smt_power(struct sched_domain *sd, int cpu); | |||
| 1033 | struct sched_domain_attr; | 1036 | struct sched_domain_attr; |
| 1034 | 1037 | ||
| 1035 | static inline void | 1038 | static inline void |
| 1036 | partition_sched_domains(int ndoms_new, struct cpumask *doms_new, | 1039 | partition_sched_domains(int ndoms_new, cpumask_var_t doms_new[], |
| 1037 | struct sched_domain_attr *dattr_new) | 1040 | struct sched_domain_attr *dattr_new) |
| 1038 | { | 1041 | { |
| 1039 | } | 1042 | } |
| @@ -1331,7 +1334,9 @@ struct task_struct { | |||
| 1331 | 1334 | ||
| 1332 | cputime_t utime, stime, utimescaled, stimescaled; | 1335 | cputime_t utime, stime, utimescaled, stimescaled; |
| 1333 | cputime_t gtime; | 1336 | cputime_t gtime; |
| 1337 | #ifndef CONFIG_VIRT_CPU_ACCOUNTING | ||
| 1334 | cputime_t prev_utime, prev_stime; | 1338 | cputime_t prev_utime, prev_stime; |
| 1339 | #endif | ||
| 1335 | unsigned long nvcsw, nivcsw; /* context switch counts */ | 1340 | unsigned long nvcsw, nivcsw; /* context switch counts */ |
| 1336 | struct timespec start_time; /* monotonic time */ | 1341 | struct timespec start_time; /* monotonic time */ |
| 1337 | struct timespec real_start_time; /* boot based time */ | 1342 | struct timespec real_start_time; /* boot based time */ |
| @@ -1720,9 +1725,8 @@ static inline void put_task_struct(struct task_struct *t) | |||
| 1720 | __put_task_struct(t); | 1725 | __put_task_struct(t); |
| 1721 | } | 1726 | } |
| 1722 | 1727 | ||
| 1723 | extern cputime_t task_utime(struct task_struct *p); | 1728 | extern void task_times(struct task_struct *p, cputime_t *ut, cputime_t *st); |
| 1724 | extern cputime_t task_stime(struct task_struct *p); | 1729 | extern void thread_group_times(struct task_struct *p, cputime_t *ut, cputime_t *st); |
| 1725 | extern cputime_t task_gtime(struct task_struct *p); | ||
| 1726 | 1730 | ||
| 1727 | /* | 1731 | /* |
| 1728 | * Per process flags | 1732 | * Per process flags |
