* [PATCH] ACPI / AC: Introduce the use of the managed version of kzalloc
@ 2014-05-04 12:35 Himangi Saraogi
2014-05-05 3:30 ` Lan Tianyu
0 siblings, 1 reply; 2+ messages in thread
From: Himangi Saraogi @ 2014-05-04 12:35 UTC (permalink / raw)
To: rjw, lenb; +Cc: linux-acpi, linux-kernel
This patch moves data allocated using kzalloc to managed data allocated
using devm_kzalloc and cleans now unnecessary kfrees in probe and remove
functions.
The following Coccinelle semantic patch was used for making the change:
@platform@
identifier p, probefn, removefn;
@@
struct platform_driver p = {
.probe = probefn,
.remove = removefn,
};
@prb@
identifier platform.probefn, pdev;
expression e, e1, e2;
@@
probefn(struct platform_device *pdev, ...) {
<+...
- e = kzalloc(e1, e2)
+ e = devm_kzalloc(&pdev->dev, e1, e2)
...
?-kfree(e);
...+>
}
@rem depends on prb@
identifier platform.removefn;
expression e;
@@
removefn(...) {
<...
- kfree(e);
...>
}
Signed-off-by: Himangi Saraogi <himangi774@gmail.com>
---
drivers/acpi/ac.c | 7 +------
1 file changed, 1 insertion(+), 6 deletions(-)
diff --git a/drivers/acpi/ac.c b/drivers/acpi/ac.c
index 2c01c1d..98b613a 100644
--- a/drivers/acpi/ac.c
+++ b/drivers/acpi/ac.c
@@ -205,7 +205,7 @@ static int acpi_ac_probe(struct platform_device *pdev)
if (!adev)
return -ENODEV;
- ac = kzalloc(sizeof(struct acpi_ac), GFP_KERNEL);
+ ac = devm_kzalloc(&pdev->dev, sizeof(struct acpi_ac), GFP_KERNEL);
if (!ac)
return -ENOMEM;
@@ -240,9 +240,6 @@ static int acpi_ac_probe(struct platform_device *pdev)
ac->battery_nb.notifier_call = acpi_ac_battery_notify;
register_acpi_notifier(&ac->battery_nb);
end:
- if (result)
- kfree(ac);
-
dmi_check_system(ac_dmi_table);
return result;
}
@@ -287,8 +284,6 @@ static int acpi_ac_remove(struct platform_device *pdev)
power_supply_unregister(&ac->charger);
unregister_acpi_notifier(&ac->battery_nb);
- kfree(ac);
-
return 0;
}
--
1.9.1
^ permalink raw reply related [flat|nested] 2+ messages in thread
* Re: [PATCH] ACPI / AC: Introduce the use of the managed version of kzalloc
2014-05-04 12:35 [PATCH] ACPI / AC: Introduce the use of the managed version of kzalloc Himangi Saraogi
@ 2014-05-05 3:30 ` Lan Tianyu
0 siblings, 0 replies; 2+ messages in thread
From: Lan Tianyu @ 2014-05-05 3:30 UTC (permalink / raw)
To: Himangi Saraogi
Cc: Rafael J. Wysocki, Len Brown, linux-acpi@vger.kernel.org,
linux-kernel@vger kernel org
2014-05-04 20:35 GMT+08:00 Himangi Saraogi <himangi774@gmail.com>:
> This patch moves data allocated using kzalloc to managed data allocated
> using devm_kzalloc and cleans now unnecessary kfrees in probe and remove
> functions.
Acked-by: Lan Tianyu <tianyu.lan@intel.com>
>
> The following Coccinelle semantic patch was used for making the change:
> @platform@
> identifier p, probefn, removefn;
> @@
> struct platform_driver p = {
> .probe = probefn,
> .remove = removefn,
> };
>
> @prb@
> identifier platform.probefn, pdev;
> expression e, e1, e2;
> @@
> probefn(struct platform_device *pdev, ...) {
> <+...
> - e = kzalloc(e1, e2)
> + e = devm_kzalloc(&pdev->dev, e1, e2)
> ...
> ?-kfree(e);
> ...+>
> }
>
> @rem depends on prb@
> identifier platform.removefn;
> expression e;
> @@
> removefn(...) {
> <...
> - kfree(e);
> ...>
> }
>
> Signed-off-by: Himangi Saraogi <himangi774@gmail.com>
> ---
> drivers/acpi/ac.c | 7 +------
> 1 file changed, 1 insertion(+), 6 deletions(-)
>
> diff --git a/drivers/acpi/ac.c b/drivers/acpi/ac.c
> index 2c01c1d..98b613a 100644
> --- a/drivers/acpi/ac.c
> +++ b/drivers/acpi/ac.c
> @@ -205,7 +205,7 @@ static int acpi_ac_probe(struct platform_device *pdev)
> if (!adev)
> return -ENODEV;
>
> - ac = kzalloc(sizeof(struct acpi_ac), GFP_KERNEL);
> + ac = devm_kzalloc(&pdev->dev, sizeof(struct acpi_ac), GFP_KERNEL);
> if (!ac)
> return -ENOMEM;
>
> @@ -240,9 +240,6 @@ static int acpi_ac_probe(struct platform_device *pdev)
> ac->battery_nb.notifier_call = acpi_ac_battery_notify;
> register_acpi_notifier(&ac->battery_nb);
> end:
> - if (result)
> - kfree(ac);
> -
> dmi_check_system(ac_dmi_table);
> return result;
> }
> @@ -287,8 +284,6 @@ static int acpi_ac_remove(struct platform_device *pdev)
> power_supply_unregister(&ac->charger);
> unregister_acpi_notifier(&ac->battery_nb);
>
> - kfree(ac);
> -
> return 0;
> }
>
> --
> 1.9.1
>
> --
> To unsubscribe from this list: send the line "unsubscribe linux-acpi" in
> the body of a message to majordomo@vger.kernel.org
> More majordomo info at http://vger.kernel.org/majordomo-info.html
--
Best regards
Tianyu Lan
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2014-05-05 3:30 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2014-05-04 12:35 [PATCH] ACPI / AC: Introduce the use of the managed version of kzalloc Himangi Saraogi
2014-05-05 3:30 ` Lan Tianyu
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox