diff options
author | Arjan van de Ven <arjan@linux.intel.com> | 2008-09-07 13:47:46 -0400 |
---|---|---|
committer | Arjan van de Ven <arjan@linux.intel.com> | 2008-09-07 13:58:01 -0400 |
commit | da8f2e170ea94cc20f8ebbc8ee8d127edb8f12f1 (patch) | |
tree | 08d25027a7769cd250aca5b516a3d8c95e4385be /include/linux/hrtimer.h | |
parent | 2ec02270c00f94b08fddfb68c37510a9fb47ac7c (diff) |
hrtimer: add a hrtimer_start_range() function
this patch adds a _range version of hrtimer_start() so that range timers
can be created; the hrtimer_start() function is just a wrapper around this.
In addition, hrtimer_start_expires() will now preserve existing ranges.
Signed-off-by: Arjan van de Ven <arjan@linux.intel.com>
Diffstat (limited to 'include/linux/hrtimer.h')
-rw-r--r-- | include/linux/hrtimer.h | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/include/linux/hrtimer.h b/include/linux/hrtimer.h index 4c1a834b9849..1c0473e8ecb4 100644 --- a/include/linux/hrtimer.h +++ b/include/linux/hrtimer.h | |||
@@ -350,13 +350,20 @@ static inline void destroy_hrtimer_on_stack(struct hrtimer *timer) { } | |||
350 | /* Basic timer operations: */ | 350 | /* Basic timer operations: */ |
351 | extern int hrtimer_start(struct hrtimer *timer, ktime_t tim, | 351 | extern int hrtimer_start(struct hrtimer *timer, ktime_t tim, |
352 | const enum hrtimer_mode mode); | 352 | const enum hrtimer_mode mode); |
353 | extern int hrtimer_start_range_ns(struct hrtimer *timer, ktime_t tim, | ||
354 | unsigned long range_ns, const enum hrtimer_mode mode); | ||
353 | extern int hrtimer_cancel(struct hrtimer *timer); | 355 | extern int hrtimer_cancel(struct hrtimer *timer); |
354 | extern int hrtimer_try_to_cancel(struct hrtimer *timer); | 356 | extern int hrtimer_try_to_cancel(struct hrtimer *timer); |
355 | 357 | ||
356 | static inline int hrtimer_start_expires(struct hrtimer *timer, | 358 | static inline int hrtimer_start_expires(struct hrtimer *timer, |
357 | enum hrtimer_mode mode) | 359 | enum hrtimer_mode mode) |
358 | { | 360 | { |
359 | return hrtimer_start(timer, hrtimer_get_expires(timer), mode); | 361 | unsigned long delta; |
362 | ktime_t soft, hard; | ||
363 | soft = hrtimer_get_softexpires(timer); | ||
364 | hard = hrtimer_get_expires(timer); | ||
365 | delta = ktime_to_ns(ktime_sub(hard, soft)); | ||
366 | return hrtimer_start_range_ns(timer, hrtimer_get_expires(timer), delta, mode); | ||
360 | } | 367 | } |
361 | 368 | ||
362 | static inline int hrtimer_restart(struct hrtimer *timer) | 369 | static inline int hrtimer_restart(struct hrtimer *timer) |