diff options
Diffstat (limited to 'include/linux/hrtimer.h')
-rw-r--r-- | include/linux/hrtimer.h | 13 |
1 files changed, 10 insertions, 3 deletions
diff --git a/include/linux/hrtimer.h b/include/linux/hrtimer.h index f79dcba4b2c1..8371b664b41f 100644 --- a/include/linux/hrtimer.h +++ b/include/linux/hrtimer.h | |||
@@ -301,9 +301,16 @@ static inline int hrtimer_is_queued(struct hrtimer *timer) | |||
301 | } | 301 | } |
302 | 302 | ||
303 | /* Forward a hrtimer so it expires after now: */ | 303 | /* Forward a hrtimer so it expires after now: */ |
304 | extern unsigned long | 304 | extern u64 |
305 | hrtimer_forward(struct hrtimer *timer, ktime_t now, ktime_t interval); | 305 | hrtimer_forward(struct hrtimer *timer, ktime_t now, ktime_t interval); |
306 | 306 | ||
307 | /* Forward a hrtimer so it expires after the hrtimer's current now */ | ||
308 | static inline u64 hrtimer_forward_now(struct hrtimer *timer, | ||
309 | ktime_t interval) | ||
310 | { | ||
311 | return hrtimer_forward(timer, timer->base->get_time(), interval); | ||
312 | } | ||
313 | |||
307 | /* Precise sleep: */ | 314 | /* Precise sleep: */ |
308 | extern long hrtimer_nanosleep(struct timespec *rqtp, | 315 | extern long hrtimer_nanosleep(struct timespec *rqtp, |
309 | struct timespec *rmtp, | 316 | struct timespec *rmtp, |
@@ -322,9 +329,9 @@ extern void hrtimer_run_pending(void); | |||
322 | extern void __init hrtimers_init(void); | 329 | extern void __init hrtimers_init(void); |
323 | 330 | ||
324 | #if BITS_PER_LONG < 64 | 331 | #if BITS_PER_LONG < 64 |
325 | extern unsigned long ktime_divns(const ktime_t kt, s64 div); | 332 | extern u64 ktime_divns(const ktime_t kt, s64 div); |
326 | #else /* BITS_PER_LONG < 64 */ | 333 | #else /* BITS_PER_LONG < 64 */ |
327 | # define ktime_divns(kt, div) (unsigned long)((kt).tv64 / (div)) | 334 | # define ktime_divns(kt, div) (u64)((kt).tv64 / (div)) |
328 | #endif | 335 | #endif |
329 | 336 | ||
330 | /* Show pending timers: */ | 337 | /* Show pending timers: */ |