diff mbox series

coresight: Break to error handler if connection can't be made

Message ID 20250402-james-cs-ret-break-fix-v1-1-83907d9f6b38@linaro.org (mailing list archive)
State New
Headers show
Series coresight: Break to error handler if connection can't be made | expand

Commit Message

James Clark April 2, 2025, 1:07 p.m. UTC
Change the return to a break so that the of_node_put()s in the error
handler are hit on failure.

Fixes: 3d4ff657e454 ("coresight: Dynamically add connections")
Reported-by: Dan Carpenter <dan.carpenter@linaro.org>
Closes: https://lore.kernel.org/linux-arm-kernel/3b026b3f-2cb2-49ef-aa20-8b14220f5324@stanley.mountain/
Signed-off-by: James Clark <james.clark@linaro.org>
---
 drivers/hwtracing/coresight/coresight-platform.c | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)


---
base-commit: 5442d22da7dbff3ba8c6720fc6f23ea4934d402d
change-id: 20250402-james-cs-ret-break-fix-ad38103af5f6

Best regards,

Comments

Leo Yan April 2, 2025, 2:54 p.m. UTC | #1
On Wed, Apr 02, 2025 at 02:07:59PM +0100, James Clark wrote:
> Change the return to a break so that the of_node_put()s in the error
> handler are hit on failure.
> 
> Fixes: 3d4ff657e454 ("coresight: Dynamically add connections")
> Reported-by: Dan Carpenter <dan.carpenter@linaro.org>
> Closes: https://lore.kernel.org/linux-arm-kernel/3b026b3f-2cb2-49ef-aa20-8b14220f5324@stanley.mountain/
> Signed-off-by: James Clark <james.clark@linaro.org>

Reviewed-by: Leo Yan <leo.yan@arm.com>
diff mbox series

Patch

diff --git a/drivers/hwtracing/coresight/coresight-platform.c b/drivers/hwtracing/coresight/coresight-platform.c
index 8192ba3279f0..39851a13ff89 100644
--- a/drivers/hwtracing/coresight/coresight-platform.c
+++ b/drivers/hwtracing/coresight/coresight-platform.c
@@ -267,7 +267,8 @@  static int of_coresight_parse_endpoint(struct device *dev,
 		new_conn = coresight_add_out_conn(dev, pdata, &conn);
 		if (IS_ERR_VALUE(new_conn)) {
 			fwnode_handle_put(conn.dest_fwnode);
-			return PTR_ERR(new_conn);
+			ret = PTR_ERR(new_conn);
+			break;
 		}
 		/* Connection record updated */
 	} while (0);