Skip to content

Commit f0e4609

Browse files
ysungregkh
authored andcommitted
dmaengine: idxd: Fix refcount underflow on module unload
[ Upstream commit b7cb9a0 ] A recent refactor introduced a misplaced put_device() call, resulting in a reference count underflow during module unload. There is no need to add additional put_device() calls for idxd groups, engines, or workqueues. Although the commit claims: "Note, this also fixes the missing put_device() for idxd groups, engines, and wqs." It appears no such omission actually existed. The required cleanup is already handled by the call chain: idxd_unregister_devices() -> device_unregister() -> put_device() Extend idxd_cleanup() to handle the remaining necessary cleanup and remove idxd_cleanup_internals(), which duplicates deallocation logic for idxd, engines, groups, and workqueues. Memory management is also properly handled through the Linux device model. Fixes: a409e91 ("dmaengine: idxd: Refactor remove call with idxd_cleanup() helper") Signed-off-by: Yi Sun <yi.sun@intel.com> Tested-by: Shuai Xue <xueshuai@linux.alibaba.com> Reviewed-by: Dave Jiang <dave.jiang@intel.com> Acked-by: Vinicius Costa Gomes <vinicius.gomes@intel.com> Link: https://lore.kernel.org/r/20250729150313.1934101-3-yi.sun@intel.com Signed-off-by: Vinod Koul <vkoul@kernel.org> Signed-off-by: Sasha Levin <sashal@kernel.org>
1 parent 0e95ee7 commit f0e4609

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

drivers/dma/idxd/init.c

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -904,7 +904,10 @@ static void idxd_remove(struct pci_dev *pdev)
904904
device_unregister(idxd_confdev(idxd));
905905
idxd_shutdown(pdev);
906906
idxd_device_remove_debugfs(idxd);
907-
idxd_cleanup(idxd);
907+
perfmon_pmu_remove(idxd);
908+
idxd_cleanup_interrupts(idxd);
909+
if (device_pasid_enabled(idxd))
910+
idxd_disable_system_pasid(idxd);
908911
pci_iounmap(pdev, idxd->reg_base);
909912
put_device(idxd_confdev(idxd));
910913
pci_disable_device(pdev);

0 commit comments

Comments
 (0)