diff options
author | Thomas Gleixner <tglx@linutronix.de> | 2013-02-21 22:51:37 +0000 |
---|---|---|
committer | John Stultz <john.stultz@linaro.org> | 2013-03-22 16:20:00 -0700 |
commit | 7e40672d930b369c1984457233ec5557aa53bfb8 (patch) | |
tree | 7e87231ebdf0898f939e8b2b88ca48d1e4309eab /include/linux | |
parent | eb93e4d93093615c60cb7dd3dcb24e46bd7d62d4 (diff) | |
download | linux-7e40672d930b369c1984457233ec5557aa53bfb8.tar.gz linux-7e40672d930b369c1984457233ec5557aa53bfb8.tar.bz2 linux-7e40672d930b369c1984457233ec5557aa53bfb8.zip |
timekeeping: Move lock out of timekeeper struct
Make the lock a separate entity. Preparatory patch for shadow
timekeeper structure.
Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
[Merged with CLOCK_TAI changes]
Signed-off-by: John Stultz <john.stultz@linaro.org>
Diffstat (limited to 'include/linux')
-rw-r--r-- | include/linux/timekeeper_internal.h | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/include/linux/timekeeper_internal.h b/include/linux/timekeeper_internal.h index 26700d870506..a151bd70e52b 100644 --- a/include/linux/timekeeper_internal.h +++ b/include/linux/timekeeper_internal.h @@ -67,8 +67,6 @@ struct timekeeper { /* Offset clock monotonic -> clock tai */ ktime_t offs_tai; - /* Seqlock for all timekeeper values */ - seqlock_t lock; }; static inline struct timespec tk_xtime(struct timekeeper *tk) |