diff options
-rw-r--r-- | include/linux/ktime.h | 21 | ||||
-rw-r--r-- | kernel/hrtimer.c | 24 |
2 files changed, 45 insertions, 0 deletions
diff --git a/include/linux/ktime.h b/include/linux/ktime.h index dae7143644fe..a6ddec141f96 100644 --- a/include/linux/ktime.h +++ b/include/linux/ktime.h | |||
@@ -102,6 +102,13 @@ static inline ktime_t ktime_set(const long secs, const unsigned long nsecs) | |||
102 | #define ktime_add_ns(kt, nsval) \ | 102 | #define ktime_add_ns(kt, nsval) \ |
103 | ({ (ktime_t){ .tv64 = (kt).tv64 + (nsval) }; }) | 103 | ({ (ktime_t){ .tv64 = (kt).tv64 + (nsval) }; }) |
104 | 104 | ||
105 | /* | ||
106 | * Subtract a scalar nanosecod from a ktime_t variable | ||
107 | * res = kt - nsval: | ||
108 | */ | ||
109 | #define ktime_sub_ns(kt, nsval) \ | ||
110 | ({ (ktime_t){ .tv64 = (kt).tv64 - (nsval) }; }) | ||
111 | |||
105 | /* convert a timespec to ktime_t format: */ | 112 | /* convert a timespec to ktime_t format: */ |
106 | static inline ktime_t timespec_to_ktime(struct timespec ts) | 113 | static inline ktime_t timespec_to_ktime(struct timespec ts) |
107 | { | 114 | { |
@@ -200,6 +207,15 @@ static inline ktime_t ktime_add(const ktime_t add1, const ktime_t add2) | |||
200 | extern ktime_t ktime_add_ns(const ktime_t kt, u64 nsec); | 207 | extern ktime_t ktime_add_ns(const ktime_t kt, u64 nsec); |
201 | 208 | ||
202 | /** | 209 | /** |
210 | * ktime_sub_ns - Subtract a scalar nanoseconds value from a ktime_t variable | ||
211 | * @kt: minuend | ||
212 | * @nsec: the scalar nsec value to subtract | ||
213 | * | ||
214 | * Returns the subtraction of @nsec from @kt in ktime_t format | ||
215 | */ | ||
216 | extern ktime_t ktime_sub_ns(const ktime_t kt, u64 nsec); | ||
217 | |||
218 | /** | ||
203 | * timespec_to_ktime - convert a timespec to ktime_t format | 219 | * timespec_to_ktime - convert a timespec to ktime_t format |
204 | * @ts: the timespec variable to convert | 220 | * @ts: the timespec variable to convert |
205 | * | 221 | * |
@@ -289,6 +305,11 @@ static inline ktime_t ktime_add_us(const ktime_t kt, const u64 usec) | |||
289 | return ktime_add_ns(kt, usec * 1000); | 305 | return ktime_add_ns(kt, usec * 1000); |
290 | } | 306 | } |
291 | 307 | ||
308 | static inline ktime_t ktime_sub_us(const ktime_t kt, const u64 usec) | ||
309 | { | ||
310 | return ktime_sub_ns(kt, usec * 1000); | ||
311 | } | ||
312 | |||
292 | /* | 313 | /* |
293 | * The resolution of the clocks. The resolution value is returned in | 314 | * The resolution of the clocks. The resolution value is returned in |
294 | * the clock_getres() system call to give application programmers an | 315 | * the clock_getres() system call to give application programmers an |
diff --git a/kernel/hrtimer.c b/kernel/hrtimer.c index c21ca6bfaa66..dc8a4451d79b 100644 --- a/kernel/hrtimer.c +++ b/kernel/hrtimer.c | |||
@@ -277,6 +277,30 @@ ktime_t ktime_add_ns(const ktime_t kt, u64 nsec) | |||
277 | } | 277 | } |
278 | 278 | ||
279 | EXPORT_SYMBOL_GPL(ktime_add_ns); | 279 | EXPORT_SYMBOL_GPL(ktime_add_ns); |
280 | |||
281 | /** | ||
282 | * ktime_sub_ns - Subtract a scalar nanoseconds value from a ktime_t variable | ||
283 | * @kt: minuend | ||
284 | * @nsec: the scalar nsec value to subtract | ||
285 | * | ||
286 | * Returns the subtraction of @nsec from @kt in ktime_t format | ||
287 | */ | ||
288 | ktime_t ktime_sub_ns(const ktime_t kt, u64 nsec) | ||
289 | { | ||
290 | ktime_t tmp; | ||
291 | |||
292 | if (likely(nsec < NSEC_PER_SEC)) { | ||
293 | tmp.tv64 = nsec; | ||
294 | } else { | ||
295 | unsigned long rem = do_div(nsec, NSEC_PER_SEC); | ||
296 | |||
297 | tmp = ktime_set((long)nsec, rem); | ||
298 | } | ||
299 | |||
300 | return ktime_sub(kt, tmp); | ||
301 | } | ||
302 | |||
303 | EXPORT_SYMBOL_GPL(ktime_sub_ns); | ||
280 | # endif /* !CONFIG_KTIME_SCALAR */ | 304 | # endif /* !CONFIG_KTIME_SCALAR */ |
281 | 305 | ||
282 | /* | 306 | /* |