Commit d3562573 authored by MarileneGarcia's avatar MarileneGarcia Committed by Lee Jones
Browse files

leds: powernv: Replace of_node_put to __free



Use __free for device_node values, and thus drop calls to
of_node_put.

The variable attribute __free adds a scope based cleanup to
the device node. The goal is to reduce memory management issues
in the kernel code.

The of_node_put calls were removed, and the
for_each_available_child_of_node was replaced to the equivalent
for_each_available_child_of_node_scoped which use the __free.

Suggested-by: default avatarJulia Lawall <julia.lawall@inria.fr>
Signed-off-by: default avatarMarileneGarcia <marilene.agarcia@gmail.com>
Link: https://lore.kernel.org/r/20240601031713.1307859-1-marilene.agarcia@gmail.com


Signed-off-by: default avatarLee Jones <lee@kernel.org>
parent e786348b
Loading
Loading
Loading
Loading
+9 −19
Original line number Diff line number Diff line
@@ -246,29 +246,25 @@ static int powernv_led_classdev(struct platform_device *pdev,
	const char *cur = NULL;
	int rc = -1;
	struct property *p;
	struct device_node *np;
	struct powernv_led_data *powernv_led;
	struct device *dev = &pdev->dev;

	for_each_available_child_of_node(led_node, np) {
	for_each_available_child_of_node_scoped(led_node, np) {
		p = of_find_property(np, "led-types", NULL);

		while ((cur = of_prop_next_string(p, cur)) != NULL) {
			powernv_led = devm_kzalloc(dev, sizeof(*powernv_led),
						   GFP_KERNEL);
			if (!powernv_led) {
				of_node_put(np);
			if (!powernv_led)
				return -ENOMEM;
			}

			powernv_led->common = powernv_led_common;
			powernv_led->loc_code = (char *)np->name;

			rc = powernv_led_create(dev, powernv_led, cur);
			if (rc) {
				of_node_put(np);
			if (rc)
				return rc;
			}

		} /* while end */
	}

@@ -278,12 +274,11 @@ static int powernv_led_classdev(struct platform_device *pdev,
/* Platform driver probe */
static int powernv_led_probe(struct platform_device *pdev)
{
	struct device_node *led_node;
	struct powernv_led_common *powernv_led_common;
	struct device *dev = &pdev->dev;
	int rc;
	struct device_node *led_node
		__free(device_node) = of_find_node_by_path("/ibm,opal/leds");

	led_node = of_find_node_by_path("/ibm,opal/leds");
	if (!led_node) {
		dev_err(dev, "%s: LED parent device node not found\n",
			__func__);
@@ -292,20 +287,15 @@ static int powernv_led_probe(struct platform_device *pdev)

	powernv_led_common = devm_kzalloc(dev, sizeof(*powernv_led_common),
					  GFP_KERNEL);
	if (!powernv_led_common) {
		rc = -ENOMEM;
		goto out;
	}
	if (!powernv_led_common)
		return -ENOMEM;

	mutex_init(&powernv_led_common->lock);
	powernv_led_common->max_led_type = cpu_to_be64(OPAL_SLOT_LED_TYPE_MAX);

	platform_set_drvdata(pdev, powernv_led_common);

	rc = powernv_led_classdev(pdev, led_node, powernv_led_common);
out:
	of_node_put(led_node);
	return rc;
	return powernv_led_classdev(pdev, led_node, powernv_led_common);
}

/* Platform driver remove */