summaryrefslogtreecommitdiff
path: root/kernel
diff options
context:
space:
mode:
authorTodd Poynor <toddpoynor@google.com>2013-05-10 17:10:42 -0700
committerNitin Garg <nitin.garg@freescale.com>2014-04-21 22:35:15 -0500
commit32b5e575e00d3a79c25bd3455f8549532914129b (patch)
tree75522d67b730aa4440101cd401ff093bace05e92 /kernel
parent20440355c8283c0be1a429d4dd6f6ee02dc2bd71 (diff)
alarmtimer: add alarm_forward_now
Similar to hrtimer_forward_now, move the expires time forward to an interval from the current time of the associated clock. Change-Id: I73fed223321167507b6eddcb7a57d235ffcfc1be Signed-off-by: Todd Poynor <toddpoynor@google.com>
Diffstat (limited to 'kernel')
-rw-r--r--kernel/time/alarmtimer.c6
1 files changed, 6 insertions, 0 deletions
diff --git a/kernel/time/alarmtimer.c b/kernel/time/alarmtimer.c
index 75bf72b8ca9c..a607e380bce5 100644
--- a/kernel/time/alarmtimer.c
+++ b/kernel/time/alarmtimer.c
@@ -406,6 +406,12 @@ u64 alarm_forward(struct alarm *alarm, ktime_t now, ktime_t interval)
return overrun;
}
+u64 alarm_forward_now(struct alarm *alarm, ktime_t interval)
+{
+ struct alarm_base *base = &alarm_bases[alarm->type];
+
+ return alarm_forward(alarm, base->gettime(), interval);
+}