From vulab at iscas.ac.cn Mon Dec 8 14:36:06 2025 From: vulab at iscas.ac.cn (Wentao Liang) Date: Mon, 8 Dec 2025 03:36:06 +0000 Subject: [PATCH] fsi: master-gpio: Fix reference count leak in probe error path Message-ID: <20251208033606.10647-1-vulab@iscas.ac.cn> The function of_node_get() returns a node pointer with its refcount incremented, but in the error path of the fsi_master_gpio_probe(), this reference is not released before freeing the master structure, causing a refcount leak. Add the missing of_node_put() in the error handling path to properly release the device tree node reference. Fixes: 8ef9ccf81044 ("fsi: master-gpio: Add missing release function") Cc: stable at vger.kernel.org Signed-off-by: Wentao Liang --- drivers/fsi/fsi-master-gpio.c | 1 + 1 file changed, 1 insertion(+) diff --git a/drivers/fsi/fsi-master-gpio.c b/drivers/fsi/fsi-master-gpio.c index 69de0b5b9cbd..ae9e156284d0 100644 --- a/drivers/fsi/fsi-master-gpio.c +++ b/drivers/fsi/fsi-master-gpio.c @@ -861,6 +861,7 @@ static int fsi_master_gpio_probe(struct platform_device *pdev) } return 0; err_free: + of_node_put(master->master.dev.of_node); kfree(master); return rc; } -- 2.34.1