Name
hrtimer_forward —
forward the timer expiry
Synopsis
u64 hrtimer_forward ( | struct hrtimer * timer, |
| ktime_t now, |
| ktime_t interval) ; |
Arguments
timer
hrtimer to forward
now
forward past this time
interval
the interval to forward
Description
Forward the timer expiry so it will expire in the future.
Returns the number of overruns.
Can be safely called from the callback function of timer
. If
called from other contexts timer
must neither be enqueued nor
running the callback and the caller needs to take care of
serialization.
Note
This only updates the timer expiry value and does not requeue
the timer.