diff options
author | Feng Tang <feng.tang@intel.com> | 2013-01-15 11:09:47 -0500 |
---|---|---|
committer | John Stultz <john.stultz@linaro.org> | 2013-01-15 21:16:07 -0500 |
commit | 31ade30692dc9680bfc95700d794818fa3f754ac (patch) | |
tree | cb436c839b890d04f589b49f75cb0df59315158e /include/linux/time.h | |
parent | f0dbe81f0e7c39783ad25d9084bbcda131508993 (diff) |
timekeeping: Add persistent_clock_exist flag
In current kernel, there are several places which need to check
whether there is a persistent clock for the platform. Current check
is done by calling the read_persistent_clock() and validating its
return value.
So one optimization is to do the check only once in timekeeping_init(),
and use a flag persistent_clock_exist to record it.
v2: Add a has_persistent_clock() helper function, as suggested by John.
Cc: Thomas Gleixner <tglx@linutronix.de>
Cc: John Stultz <john.stultz@linaro.org>
Signed-off-by: Feng Tang <feng.tang@intel.com>
Signed-off-by: John Stultz <john.stultz@linaro.org>
Diffstat (limited to 'include/linux/time.h')
-rw-r--r-- | include/linux/time.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/include/linux/time.h b/include/linux/time.h index 0015aea4c4a7..dfbc4e82e8ba 100644 --- a/include/linux/time.h +++ b/include/linux/time.h | |||
@@ -115,6 +115,12 @@ static inline bool timespec_valid_strict(const struct timespec *ts) | |||
115 | return true; | 115 | return true; |
116 | } | 116 | } |
117 | 117 | ||
118 | extern bool persistent_clock_exist; | ||
119 | static inline bool has_persistent_clock(void) | ||
120 | { | ||
121 | return persistent_clock_exist; | ||
122 | } | ||
123 | |||
118 | extern void read_persistent_clock(struct timespec *ts); | 124 | extern void read_persistent_clock(struct timespec *ts); |
119 | extern void read_boot_clock(struct timespec *ts); | 125 | extern void read_boot_clock(struct timespec *ts); |
120 | extern int update_persistent_clock(struct timespec now); | 126 | extern int update_persistent_clock(struct timespec now); |