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-2026-01-18' of git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip

Pull irq fix from Ingo Molnar:
"Fix a riscv-imsic irqchip driver regression"

* tag 'irq-urgent-2026-01-18' of git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip:
irqchip/riscv-imsic: Revert "Remove redundant irq_data lookups"

+2 -2
+2 -2
drivers/irqchip/irq-riscv-imsic-platform.c
··· 158 158 tmp_vec.local_id = new_vec->local_id; 159 159 160 160 /* Point device to the temporary vector */ 161 - imsic_msi_update_msg(d, &tmp_vec); 161 + imsic_msi_update_msg(irq_get_irq_data(d->irq), &tmp_vec); 162 162 } 163 163 164 164 /* Point device to the new vector */ 165 - imsic_msi_update_msg(d, new_vec); 165 + imsic_msi_update_msg(irq_get_irq_data(d->irq), new_vec); 166 166 167 167 /* Update irq descriptors with the new vector */ 168 168 d->chip_data = new_vec;