diff options
author | Torben Hohn <torbenh@gmx.de> | 2011-01-27 10:00:32 -0500 |
---|---|---|
committer | Thomas Gleixner <tglx@linutronix.de> | 2011-01-31 13:26:50 -0500 |
commit | e2830b5c1b2b2217894370a3b95af87d4a958401 (patch) | |
tree | 9eec3de82a30fffc32beae7826e4a356220c52f7 /include | |
parent | d12b0e24c56c6fb2398609f26858e5278d688840 (diff) |
time: Make do_timer() and xtime_lock local to kernel/time/
All callers of do_timer() are converted to xtime_update(). The only
users of xtime_lock are in kernel/time/. Make both local to
kernel/time/ and remove them from the global header files.
[ tglx: Reuse tick-internal.h instead of creating another local header
file. Massaged changelog ]
Signed-off-by: Torben Hohn <torbenh@gmx.de>
Cc: Peter Zijlstra <peterz@infradead.org>
Cc: johnstul@us.ibm.com
Cc: yong.zhang0@gmail.com
Cc: hch@infradead.org
Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
Diffstat (limited to 'include')
-rw-r--r-- | include/linux/sched.h | 1 | ||||
-rw-r--r-- | include/linux/time.h | 2 |
2 files changed, 0 insertions, 3 deletions
diff --git a/include/linux/sched.h b/include/linux/sched.h index 9d9a0787eed3..cdef640aa446 100644 --- a/include/linux/sched.h +++ b/include/linux/sched.h | |||
@@ -2049,7 +2049,6 @@ extern void release_uids(struct user_namespace *ns); | |||
2049 | 2049 | ||
2050 | #include <asm/current.h> | 2050 | #include <asm/current.h> |
2051 | 2051 | ||
2052 | extern void do_timer(unsigned long ticks); | ||
2053 | extern void xtime_update(unsigned long ticks); | 2052 | extern void xtime_update(unsigned long ticks); |
2054 | 2053 | ||
2055 | extern int wake_up_state(struct task_struct *tsk, unsigned int state); | 2054 | extern int wake_up_state(struct task_struct *tsk, unsigned int state); |
diff --git a/include/linux/time.h b/include/linux/time.h index ce29c86882b1..38c5206c2673 100644 --- a/include/linux/time.h +++ b/include/linux/time.h | |||
@@ -113,8 +113,6 @@ static inline struct timespec timespec_sub(struct timespec lhs, | |||
113 | #define timespec_valid(ts) \ | 113 | #define timespec_valid(ts) \ |
114 | (((ts)->tv_sec >= 0) && (((unsigned long) (ts)->tv_nsec) < NSEC_PER_SEC)) | 114 | (((ts)->tv_sec >= 0) && (((unsigned long) (ts)->tv_nsec) < NSEC_PER_SEC)) |
115 | 115 | ||
116 | extern seqlock_t xtime_lock; | ||
117 | |||
118 | extern void read_persistent_clock(struct timespec *ts); | 116 | extern void read_persistent_clock(struct timespec *ts); |
119 | extern void read_boot_clock(struct timespec *ts); | 117 | extern void read_boot_clock(struct timespec *ts); |
120 | extern int update_persistent_clock(struct timespec now); | 118 | extern int update_persistent_clock(struct timespec now); |