Skip to content

Commit

Permalink
[PATCH] hrtimers: remove state field
Browse files Browse the repository at this point in the history
Remove the state field and encode this information in the rb_node similiar to
normal timer.

Signed-off-by: Roman Zippel <zippel@linux-m68k.org>
Acked-by: Ingo Molnar <mingo@elte.hu>
Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
  • Loading branch information
Roman Zippel authored and Linus Torvalds committed Mar 26, 2006
1 parent 432569b commit b75f7a5
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 18 deletions.
11 changes: 2 additions & 9 deletions include/linux/hrtimer.h
Original file line number Diff line number Diff line change
Expand Up @@ -34,13 +34,7 @@ enum hrtimer_restart {
HRTIMER_RESTART,
};

/*
* Timer states:
*/
enum hrtimer_state {
HRTIMER_INACTIVE, /* Timer is inactive */
HRTIMER_PENDING, /* Timer is pending */
};
#define HRTIMER_INACTIVE ((void *)1UL)

struct hrtimer_base;

Expand All @@ -61,7 +55,6 @@ struct hrtimer_base;
struct hrtimer {
struct rb_node node;
ktime_t expires;
enum hrtimer_state state;
int (*function)(void *);
void *data;
struct hrtimer_base *base;
Expand Down Expand Up @@ -124,7 +117,7 @@ extern ktime_t hrtimer_get_next_event(void);

static inline int hrtimer_active(const struct hrtimer *timer)
{
return timer->state == HRTIMER_PENDING;
return timer->node.rb_parent != HRTIMER_INACTIVE;
}

/* Forward a hrtimer so it expires after now: */
Expand Down
14 changes: 5 additions & 9 deletions kernel/hrtimer.c
Original file line number Diff line number Diff line change
Expand Up @@ -374,8 +374,6 @@ static void enqueue_hrtimer(struct hrtimer *timer, struct hrtimer_base *base)
rb_link_node(&timer->node, parent, link);
rb_insert_color(&timer->node, &base->active);

timer->state = HRTIMER_PENDING;

if (!base->first || timer->expires.tv64 <
rb_entry(base->first, struct hrtimer, node)->expires.tv64)
base->first = &timer->node;
Expand All @@ -395,6 +393,7 @@ static void __remove_hrtimer(struct hrtimer *timer, struct hrtimer_base *base)
if (base->first == &timer->node)
base->first = rb_next(&timer->node);
rb_erase(&timer->node, &base->active);
timer->node.rb_parent = HRTIMER_INACTIVE;
}

/*
Expand All @@ -405,7 +404,6 @@ remove_hrtimer(struct hrtimer *timer, struct hrtimer_base *base)
{
if (hrtimer_active(timer)) {
__remove_hrtimer(timer, base);
timer->state = HRTIMER_INACTIVE;
return 1;
}
return 0;
Expand Down Expand Up @@ -579,6 +577,7 @@ void hrtimer_init(struct hrtimer *timer, clockid_t clock_id,
clock_id = CLOCK_MONOTONIC;

timer->base = &bases[clock_id];
timer->node.rb_parent = HRTIMER_INACTIVE;
}

/**
Expand Down Expand Up @@ -625,20 +624,17 @@ static inline void run_hrtimer_queue(struct hrtimer_base *base)
fn = timer->function;
data = timer->data;
set_curr_timer(base, timer);
timer->state = HRTIMER_INACTIVE;
__remove_hrtimer(timer, base);
spin_unlock_irq(&base->lock);

restart = fn(data);

spin_lock_irq(&base->lock);

/* Another CPU has added back the timer */
if (timer->state != HRTIMER_INACTIVE)
continue;

if (restart != HRTIMER_NORESTART)
if (restart != HRTIMER_NORESTART) {
BUG_ON(hrtimer_active(timer));
enqueue_hrtimer(timer, base);
}
}
set_curr_timer(base, NULL);
spin_unlock_irq(&base->lock);
Expand Down

0 comments on commit b75f7a5

Please sign in to comment.