diff options
author | Torben Hohn <torbenh@gmx.de> | 2011-01-27 18:00:32 +0300 |
---|---|---|
committer | Thomas Gleixner <tglx@linutronix.de> | 2011-01-31 21:26:50 +0300 |
commit | e2830b5c1b2b2217894370a3b95af87d4a958401 (patch) | |
tree | 9eec3de82a30fffc32beae7826e4a356220c52f7 /include/linux/time.h | |
parent | d12b0e24c56c6fb2398609f26858e5278d688840 (diff) | |
download | linux-e2830b5c1b2b2217894370a3b95af87d4a958401.tar.xz |
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/linux/time.h')
-rw-r--r-- | include/linux/time.h | 2 |
1 files changed, 0 insertions, 2 deletions
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, #define timespec_valid(ts) \ (((ts)->tv_sec >= 0) && (((unsigned long) (ts)->tv_nsec) < NSEC_PER_SEC)) -extern seqlock_t xtime_lock; - extern void read_persistent_clock(struct timespec *ts); extern void read_boot_clock(struct timespec *ts); extern int update_persistent_clock(struct timespec now); |