diff options
Diffstat (limited to 'include/linux/sched.h')
| -rw-r--r-- | include/linux/sched.h | 45 |
1 files changed, 28 insertions, 17 deletions
diff --git a/include/linux/sched.h b/include/linux/sched.h index 75e6e60bf583..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 */ |
| @@ -1421,17 +1426,17 @@ struct task_struct { | |||
| 1421 | #endif | 1426 | #endif |
| 1422 | #ifdef CONFIG_TRACE_IRQFLAGS | 1427 | #ifdef CONFIG_TRACE_IRQFLAGS |
| 1423 | unsigned int irq_events; | 1428 | unsigned int irq_events; |
| 1424 | int hardirqs_enabled; | ||
| 1425 | unsigned long hardirq_enable_ip; | 1429 | unsigned long hardirq_enable_ip; |
| 1426 | unsigned int hardirq_enable_event; | ||
| 1427 | unsigned long hardirq_disable_ip; | 1430 | unsigned long hardirq_disable_ip; |
| 1431 | unsigned int hardirq_enable_event; | ||
| 1428 | unsigned int hardirq_disable_event; | 1432 | unsigned int hardirq_disable_event; |
| 1429 | int softirqs_enabled; | 1433 | int hardirqs_enabled; |
| 1434 | int hardirq_context; | ||
| 1430 | unsigned long softirq_disable_ip; | 1435 | unsigned long softirq_disable_ip; |
| 1431 | unsigned int softirq_disable_event; | ||
| 1432 | unsigned long softirq_enable_ip; | 1436 | unsigned long softirq_enable_ip; |
| 1437 | unsigned int softirq_disable_event; | ||
| 1433 | unsigned int softirq_enable_event; | 1438 | unsigned int softirq_enable_event; |
| 1434 | int hardirq_context; | 1439 | int softirqs_enabled; |
| 1435 | int softirq_context; | 1440 | int softirq_context; |
| 1436 | #endif | 1441 | #endif |
| 1437 | #ifdef CONFIG_LOCKDEP | 1442 | #ifdef CONFIG_LOCKDEP |
| @@ -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 |
| @@ -2086,11 +2090,18 @@ static inline int is_si_special(const struct siginfo *info) | |||
| 2086 | return info <= SEND_SIG_FORCED; | 2090 | return info <= SEND_SIG_FORCED; |
| 2087 | } | 2091 | } |
| 2088 | 2092 | ||
| 2089 | /* True if we are on the alternate signal stack. */ | 2093 | /* |
| 2090 | 2094 | * True if we are on the alternate signal stack. | |
| 2095 | */ | ||
| 2091 | static inline int on_sig_stack(unsigned long sp) | 2096 | static inline int on_sig_stack(unsigned long sp) |
| 2092 | { | 2097 | { |
| 2093 | return (sp - current->sas_ss_sp < current->sas_ss_size); | 2098 | #ifdef CONFIG_STACK_GROWSUP |
| 2099 | return sp >= current->sas_ss_sp && | ||
| 2100 | sp - current->sas_ss_sp < current->sas_ss_size; | ||
| 2101 | #else | ||
| 2102 | return sp > current->sas_ss_sp && | ||
| 2103 | sp - current->sas_ss_sp <= current->sas_ss_size; | ||
| 2104 | #endif | ||
| 2094 | } | 2105 | } |
| 2095 | 2106 | ||
| 2096 | static inline int sas_ss_flags(unsigned long sp) | 2107 | static inline int sas_ss_flags(unsigned long sp) |
