]> git.ipfire.org Git - thirdparty/kernel/linux.git/commit
PCI: mediatek: Fix IRQ domain leak when MSI allocation fails
authorHaotian Zhang <vulab@iscas.ac.cn>
Wed, 19 Nov 2025 02:33:08 +0000 (10:33 +0800)
committerManivannan Sadhasivam <mani@kernel.org>
Thu, 18 Dec 2025 08:06:56 +0000 (13:36 +0530)
commit7f0cdcddf8bef1c8c18f9be6708073fd3790a20f
tree27b8fa9d1c51b582cc84e794134699f9c76bdb50
parent8f0b4cce4481fb22653697cced8d0d04027cb1e8
PCI: mediatek: Fix IRQ domain leak when MSI allocation fails

In mtk_pcie_init_irq_domain(), if mtk_pcie_allocate_msi_domains()
fails after port->irq_domain has been successfully created via
irq_domain_create_linear(), the function returns directly without
cleaning up the allocated IRQ domain, resulting in a resource leak.

Add irq_domain_remove() call in the error path to properly release the
INTx IRQ domain before returning the error.

Fixes: 43e6409db64d ("PCI: mediatek: Add MSI support for MT2712 and MT7622")
Signed-off-by: Haotian Zhang <vulab@iscas.ac.cn>
Signed-off-by: Manivannan Sadhasivam <mani@kernel.org>
Link: https://patch.msgid.link/20251119023308.476-1-vulab@iscas.ac.cn
drivers/pci/controller/pcie-mediatek.c