aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorThomas Gleixner <tglx@linutronix.de>2014-07-16 17:04:16 -0400
committerJohn Stultz <john.stultz@linaro.org>2014-07-23 13:17:59 -0400
commitb82c817e2d16e818c472eb71019de521816000a3 (patch)
tree2d35c8db2aac6e285c14c5db633d17875c929d76
parentf5264d5d5a0729306cc792d84432b97785d2662a (diff)
timekeeping; Use ktime_t based data for ktime_get_boottime()
Signed-off-by: Thomas Gleixner <tglx@linutronix.de> Signed-off-by: John Stultz <john.stultz@linaro.org>
-rw-r--r--include/linux/timekeeping.h12
-rw-r--r--kernel/time/timekeeping.c17
2 files changed, 11 insertions, 18 deletions
diff --git a/include/linux/timekeeping.h b/include/linux/timekeeping.h
index 68e6678a743b..2fc606203c8c 100644
--- a/include/linux/timekeeping.h
+++ b/include/linux/timekeeping.h
@@ -108,7 +108,6 @@ enum tk_offsets {
108 108
109extern ktime_t ktime_get(void); 109extern ktime_t ktime_get(void);
110extern ktime_t ktime_get_with_offset(enum tk_offsets offs); 110extern ktime_t ktime_get_with_offset(enum tk_offsets offs);
111extern ktime_t ktime_get_boottime(void);
112extern ktime_t ktime_get_monotonic_offset(void); 111extern ktime_t ktime_get_monotonic_offset(void);
113extern ktime_t ktime_get_clocktai(void); 112extern ktime_t ktime_get_clocktai(void);
114 113
@@ -120,6 +119,17 @@ static inline ktime_t ktime_get_real(void)
120 return ktime_get_with_offset(TK_OFFS_REAL); 119 return ktime_get_with_offset(TK_OFFS_REAL);
121} 120}
122 121
122/**
123 * ktime_get_boottime - Returns monotonic time since boot in ktime_t format
124 *
125 * This is similar to CLOCK_MONTONIC/ktime_get, but also includes the
126 * time spent in suspend.
127 */
128static inline ktime_t ktime_get_boottime(void)
129{
130 return ktime_get_with_offset(TK_OFFS_BOOT);
131}
132
123/* 133/*
124 * RTC specific 134 * RTC specific
125 */ 135 */
diff --git a/kernel/time/timekeeping.c b/kernel/time/timekeeping.c
index 56db2e16970a..5e60aa09af79 100644
--- a/kernel/time/timekeeping.c
+++ b/kernel/time/timekeeping.c
@@ -1566,23 +1566,6 @@ void get_monotonic_boottime(struct timespec *ts)
1566EXPORT_SYMBOL_GPL(get_monotonic_boottime); 1566EXPORT_SYMBOL_GPL(get_monotonic_boottime);
1567 1567
1568/** 1568/**
1569 * ktime_get_boottime - Returns monotonic time since boot in a ktime
1570 *
1571 * Returns the monotonic time since boot in a ktime
1572 *
1573 * This is similar to CLOCK_MONTONIC/ktime_get, but also
1574 * includes the time spent in suspend.
1575 */
1576ktime_t ktime_get_boottime(void)
1577{
1578 struct timespec ts;
1579
1580 get_monotonic_boottime(&ts);
1581 return timespec_to_ktime(ts);
1582}
1583EXPORT_SYMBOL_GPL(ktime_get_boottime);
1584
1585/**
1586 * monotonic_to_bootbased - Convert the monotonic time to boot based. 1569 * monotonic_to_bootbased - Convert the monotonic time to boot based.
1587 * @ts: pointer to the timespec to be converted 1570 * @ts: pointer to the timespec to be converted
1588 */ 1571 */