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 'irq-urgent-for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip

Pull irq fix from Thomas Gleixner:
"Add a missing resource release to an error path"

* 'irq-urgent-for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip:
genirq: Release resources in __setup_irq() error path

+3 -1
+3 -1
kernel/irq/manage.c
··· 1312 1312 ret = __irq_set_trigger(desc, 1313 1313 new->flags & IRQF_TRIGGER_MASK); 1314 1314 1315 - if (ret) 1315 + if (ret) { 1316 + irq_release_resources(desc); 1316 1317 goto out_mask; 1318 + } 1317 1319 } 1318 1320 1319 1321 desc->istate &= ~(IRQS_AUTODETECT | IRQS_SPURIOUS_DISABLED | \