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 tag 'for-linus-4.4-1' of git://git.code.sf.net/p/openipmi/linux-ipmi

Pull IPMI fix from Corey Minyard:
"Fix an Oops if an interrupt occurs at startup. This can happen on
some hardware"

* tag 'for-linus-4.4-1' of git://git.code.sf.net/p/openipmi/linux-ipmi:
ipmi: move timer init to before irq is setup

+4 -4
+4 -4
drivers/char/ipmi/ipmi_si_intf.c
··· 1230 1230 1231 1231 new_smi->intf = intf; 1232 1232 1233 - /* Try to claim any interrupts. */ 1234 - if (new_smi->irq_setup) 1235 - new_smi->irq_setup(new_smi); 1236 - 1237 1233 /* Set up the timer that drives the interface. */ 1238 1234 setup_timer(&new_smi->si_timer, smi_timeout, (long)new_smi); 1239 1235 smi_mod_timer(new_smi, jiffies + SI_TIMEOUT_JIFFIES); 1236 + 1237 + /* Try to claim any interrupts. */ 1238 + if (new_smi->irq_setup) 1239 + new_smi->irq_setup(new_smi); 1240 1240 1241 1241 /* 1242 1242 * Check if the user forcefully enabled the daemon.