mirror of
https://github.com/adulau/aha.git
synced 2024-12-27 11:16:11 +00:00
hrtimers: simplify hrtimer_peek_ahead_timers()
Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
This commit is contained in:
parent
e1dd7bc585
commit
643bdf68f9
1 changed files with 3 additions and 9 deletions
|
@ -1394,22 +1394,16 @@ void hrtimer_interrupt(struct clock_event_device *dev)
|
|||
*/
|
||||
void hrtimer_peek_ahead_timers(void)
|
||||
{
|
||||
unsigned long flags;
|
||||
struct tick_device *td;
|
||||
struct clock_event_device *dev;
|
||||
unsigned long flags;
|
||||
|
||||
if (!hrtimer_hres_active())
|
||||
return;
|
||||
|
||||
local_irq_save(flags);
|
||||
td = &__get_cpu_var(tick_cpu_device);
|
||||
if (!td)
|
||||
goto out;
|
||||
dev = td->evtdev;
|
||||
if (!dev)
|
||||
goto out;
|
||||
hrtimer_interrupt(dev);
|
||||
out:
|
||||
if (td && td->evtdev)
|
||||
hrtimer_interrupt(td->evtdev);
|
||||
local_irq_restore(flags);
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue