diff options
author | Linus Torvalds <torvalds@linux-foundation.org> | 2013-02-26 22:42:08 -0500 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2013-02-26 22:42:08 -0500 |
commit | dcad0fceae528e8007610308bad7e5a3370e5c39 (patch) | |
tree | 1af69697e0988e8dbdf42d915508bd58a1887b4f /include | |
parent | f8ef15d6b9d8e38729cd740a43919adf88468119 (diff) | |
parent | 7f6575f1fb963d5231afbceecd3feadb6ab58cd3 (diff) |
Merge branch 'sched-urgent-for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip
Pull scheduler fixes from Ingo Molnar.
* 'sched-urgent-for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip:
cputime: Use local_clock() for full dynticks cputime accounting
cputime: Constify timeval_to_cputime(timeval) argument
sched: Move RR_TIMESLICE from sysctl.h to rt.h
sched: Fix /proc/sched_debug failure on very very large systems
sched: Fix /proc/sched_stat failure on very very large systems
sched/core: Remove the obsolete and unused nr_uninterruptible() function
Diffstat (limited to 'include')
-rw-r--r-- | include/asm-generic/cputime_nsecs.h | 2 | ||||
-rw-r--r-- | include/linux/sched.h | 1 |
2 files changed, 1 insertions, 2 deletions
diff --git a/include/asm-generic/cputime_nsecs.h b/include/asm-generic/cputime_nsecs.h index b6485cafb7bd..a8ece9a33aef 100644 --- a/include/asm-generic/cputime_nsecs.h +++ b/include/asm-generic/cputime_nsecs.h | |||
@@ -76,7 +76,7 @@ static inline void cputime_to_timespec(const cputime_t ct, struct timespec *val) | |||
76 | /* | 76 | /* |
77 | * Convert cputime <-> timeval (msec) | 77 | * Convert cputime <-> timeval (msec) |
78 | */ | 78 | */ |
79 | static inline cputime_t timeval_to_cputime(struct timeval *val) | 79 | static inline cputime_t timeval_to_cputime(const struct timeval *val) |
80 | { | 80 | { |
81 | u64 ret = val->tv_sec * NSEC_PER_SEC + val->tv_usec * NSEC_PER_USEC; | 81 | u64 ret = val->tv_sec * NSEC_PER_SEC + val->tv_usec * NSEC_PER_USEC; |
82 | return (__force cputime_t) ret; | 82 | return (__force cputime_t) ret; |
diff --git a/include/linux/sched.h b/include/linux/sched.h index 0655570c67eb..6853bf947fde 100644 --- a/include/linux/sched.h +++ b/include/linux/sched.h | |||
@@ -99,7 +99,6 @@ extern int nr_threads; | |||
99 | DECLARE_PER_CPU(unsigned long, process_counts); | 99 | DECLARE_PER_CPU(unsigned long, process_counts); |
100 | extern int nr_processes(void); | 100 | extern int nr_processes(void); |
101 | extern unsigned long nr_running(void); | 101 | extern unsigned long nr_running(void); |
102 | extern unsigned long nr_uninterruptible(void); | ||
103 | extern unsigned long nr_iowait(void); | 102 | extern unsigned long nr_iowait(void); |
104 | extern unsigned long nr_iowait_cpu(int cpu); | 103 | extern unsigned long nr_iowait_cpu(int cpu); |
105 | extern unsigned long this_cpu_load(void); | 104 | extern unsigned long this_cpu_load(void); |