diff options
Diffstat (limited to 'include/linux/timekeeper_internal.h')
| -rw-r--r-- | include/linux/timekeeper_internal.h | 7 | 
1 files changed, 5 insertions, 2 deletions
diff --git a/include/linux/timekeeper_internal.h b/include/linux/timekeeper_internal.h index e1d558e237e..a151bd70e52 100644 --- a/include/linux/timekeeper_internal.h +++ b/include/linux/timekeeper_internal.h @@ -62,8 +62,11 @@ struct timekeeper {  	ktime_t			offs_boot;  	/* The raw monotonic time for the CLOCK_MONOTONIC_RAW posix clock. */  	struct timespec		raw_time; -	/* Seqlock for all timekeeper values */ -	seqlock_t		lock; +	/* The current UTC to TAI offset in seconds */ +	s32			tai_offset; +	/* Offset clock monotonic -> clock tai */ +	ktime_t			offs_tai; +  };  static inline struct timespec tk_xtime(struct timekeeper *tk)  |