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

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

Pull timer fix from Thomas Gleixner:
"Prevent NULL pointer dereferencing in the tick broadcast code. Old
bug, which got unearthed by the hotplug ordering problem"

* 'timers-urgent-for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip:
tick/broadcast: Prevent NULL pointer dereference

+3
+3
kernel/time/tick-broadcast.c
··· 871 871 { 872 872 int cpu = smp_processor_id(); 873 873 874 + if (!bc) 875 + return; 876 + 874 877 /* Set it up only once ! */ 875 878 if (bc->event_handler != tick_handle_oneshot_broadcast) { 876 879 int was_periodic = clockevent_state_periodic(bc);