Skip to content

Commit

Permalink
[PATCH] hrtimers: pass current time to hrtimer_forward()
Browse files Browse the repository at this point in the history
Pass current time to hrtimer_forward().  This allows to use the softirq time
in the timer base when the forward function is called from the timer callback.
 Other places pass current time with a call to timer->base->get_time().

Signed-off-by: Roman Zippel <[email protected]>
Signed-off-by: Thomas Gleixner <[email protected]>
Signed-off-by: Andrew Morton <[email protected]>
Signed-off-by: Linus Torvalds <[email protected]>
  • Loading branch information
Roman Zippel authored and Linus Torvalds committed Mar 26, 2006
1 parent 92127c7 commit 44f2147
Show file tree
Hide file tree
Showing 4 changed files with 17 additions and 10 deletions.
3 changes: 2 additions & 1 deletion include/linux/hrtimer.h
Original file line number Diff line number Diff line change
Expand Up @@ -130,7 +130,8 @@ static inline int hrtimer_active(const struct hrtimer *timer)
}

/* Forward a hrtimer so it expires after now: */
extern unsigned long hrtimer_forward(struct hrtimer *timer, ktime_t interval);
extern unsigned long
hrtimer_forward(struct hrtimer *timer, ktime_t now, ktime_t interval);

/* Precise sleep: */
extern long hrtimer_nanosleep(struct timespec *rqtp,
Expand Down
7 changes: 3 additions & 4 deletions kernel/hrtimer.c
Original file line number Diff line number Diff line change
Expand Up @@ -301,18 +301,17 @@ void unlock_hrtimer_base(const struct hrtimer *timer, unsigned long *flags)
* hrtimer_forward - forward the timer expiry
*
* @timer: hrtimer to forward
* @now: forward past this time
* @interval: the interval to forward
*
* Forward the timer expiry so it will expire in the future.
* Returns the number of overruns.
*/
unsigned long
hrtimer_forward(struct hrtimer *timer, ktime_t interval)
hrtimer_forward(struct hrtimer *timer, ktime_t now, ktime_t interval)
{
unsigned long orun = 1;
ktime_t delta, now;

now = timer->base->get_time();
ktime_t delta;

delta = ktime_sub(now, timer->expires);

Expand Down
3 changes: 2 additions & 1 deletion kernel/itimer.c
Original file line number Diff line number Diff line change
Expand Up @@ -136,7 +136,8 @@ int it_real_fn(void *data)

if (tsk->signal->it_real_incr.tv64 != 0) {
hrtimer_forward(&tsk->signal->real_timer,
tsk->signal->it_real_incr);
tsk->signal->real_timer.base->softirq_time,
tsk->signal->it_real_incr);

return HRTIMER_RESTART;
}
Expand Down
14 changes: 10 additions & 4 deletions kernel/posix-timers.c
Original file line number Diff line number Diff line change
Expand Up @@ -251,15 +251,18 @@ __initcall(init_posix_timers);

static void schedule_next_timer(struct k_itimer *timr)
{
struct hrtimer *timer = &timr->it.real.timer;

if (timr->it.real.interval.tv64 == 0)
return;

timr->it_overrun += hrtimer_forward(&timr->it.real.timer,
timr->it_overrun += hrtimer_forward(timer, timer->base->get_time(),
timr->it.real.interval);

timr->it_overrun_last = timr->it_overrun;
timr->it_overrun = -1;
++timr->it_requeue_pending;
hrtimer_restart(&timr->it.real.timer);
hrtimer_restart(timer);
}

/*
Expand Down Expand Up @@ -334,6 +337,7 @@ EXPORT_SYMBOL_GPL(posix_timer_event);
static int posix_timer_fn(void *data)
{
struct k_itimer *timr = data;
struct hrtimer *timer = &timr->it.real.timer;
unsigned long flags;
int si_private = 0;
int ret = HRTIMER_NORESTART;
Expand All @@ -351,7 +355,8 @@ static int posix_timer_fn(void *data)
*/
if (timr->it.real.interval.tv64 != 0) {
timr->it_overrun +=
hrtimer_forward(&timr->it.real.timer,
hrtimer_forward(timer,
timer->base->softirq_time,
timr->it.real.interval);
ret = HRTIMER_RESTART;
++timr->it_requeue_pending;
Expand Down Expand Up @@ -623,7 +628,8 @@ common_timer_get(struct k_itimer *timr, struct itimerspec *cur_setting)
if (timr->it_requeue_pending & REQUEUE_PENDING ||
(timr->it_sigev_notify & ~SIGEV_THREAD_ID) == SIGEV_NONE) {
timr->it_overrun +=
hrtimer_forward(timer, timr->it.real.interval);
hrtimer_forward(timer, timer->base->get_time(),
timr->it.real.interval);
remaining = hrtimer_get_remaining(timer);
}
calci:
Expand Down

0 comments on commit 44f2147

Please sign in to comment.