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

Pull irq fix from Ingo Molnar:
"Fix a double free bug in the init error path of the GICv3 irqchip
driver"

* tag 'irq-urgent-2024-04-28' of git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip:
irqchip/gic-v3-its: Prevent double free on error

+2 -7
+2 -7
drivers/irqchip/irq-gic-v3-its.c
··· 4567 4567 irqd_set_resend_when_in_progress(irq_get_irq_data(virq + i)); 4568 4568 } 4569 4569 4570 - if (err) { 4571 - if (i > 0) 4572 - its_vpe_irq_domain_free(domain, virq, i); 4573 - 4574 - its_lpi_free(bitmap, base, nr_ids); 4575 - its_free_prop_table(vprop_page); 4576 - } 4570 + if (err) 4571 + its_vpe_irq_domain_free(domain, virq, i); 4577 4572 4578 4573 return err; 4579 4574 }