Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

Merge branch 'timers-urgent-for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip

Pull timer fix from Thomas Gleixner:
"A single fix to make the cs5535 clock event driver robust agaist
spurious interrupts"

* 'timers-urgent-for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip:
clockevents/drivers/cs5535: Improve resilience to spurious interrupts

+2 -1
+2 -1
drivers/clocksource/cs5535-clockevt.c
··· 117 117 /* Turn off the clock (and clear the event) */ 118 118 disable_timer(cs5535_event_clock); 119 119 120 - if (clockevent_state_shutdown(&cs5535_clockevent)) 120 + if (clockevent_state_detached(&cs5535_clockevent) || 121 + clockevent_state_shutdown(&cs5535_clockevent)) 121 122 return IRQ_HANDLED; 122 123 123 124 /* Clear the counter */