Skip to content

Commit

Permalink
alarmtimer: Rename alarmtimer_remove to alarmtimer_dequeue
Browse files Browse the repository at this point in the history
Now that alarmtimer_remove has been simplified, change
its name to _dequeue to better match its paired _enqueue
function.

Cc: Arve Hjønnevåg <arve@android.com>
Cc: Colin Cross <ccross@android.com>
Cc: Thomas Gleixner <tglx@linutronix.de>
Signed-off-by: John Stultz <john.stultz@linaro.org>
  • Loading branch information
John Stultz committed Sep 24, 2012
1 parent a269eb5 commit a65bcc1
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions kernel/time/alarmtimer.c
Original file line number Diff line number Diff line change
Expand Up @@ -145,15 +145,15 @@ static void alarmtimer_enqueue(struct alarm_base *base, struct alarm *alarm)
}

/**
* alarmtimer_remove - Removes an alarm timer from an alarm_base timerqueue
* alarmtimer_dequeue - Removes an alarm timer from an alarm_base timerqueue
* @base: pointer to the base where the timer is running
* @alarm: pointer to alarm being removed
*
* Removes alarm to a alarm_base timerqueue
*
* Must hold base->lock when calling.
*/
static void alarmtimer_remove(struct alarm_base *base, struct alarm *alarm)
static void alarmtimer_dequeue(struct alarm_base *base, struct alarm *alarm)
{
if (!(alarm->state & ALARMTIMER_STATE_ENQUEUED))
return;
Expand Down Expand Up @@ -181,7 +181,7 @@ static enum hrtimer_restart alarmtimer_fired(struct hrtimer *timer)
int restart = ALARMTIMER_NORESTART;

spin_lock_irqsave(&base->lock, flags);
alarmtimer_remove(base, alarm);
alarmtimer_dequeue(base, alarm);
spin_unlock_irqrestore(&base->lock, flags);

if (alarm->function)
Expand Down Expand Up @@ -340,7 +340,7 @@ int alarm_try_to_cancel(struct alarm *alarm)
spin_lock_irqsave(&base->lock, flags);
ret = hrtimer_try_to_cancel(&alarm->timer);
if (ret >= 0)
alarmtimer_remove(base, alarm);
alarmtimer_dequeue(base, alarm);
spin_unlock_irqrestore(&base->lock, flags);
return ret;
}
Expand Down

0 comments on commit a65bcc1

Please sign in to comment.