diff mbox

nfit: use devm_add_action_or_reset()

Message ID 1467606771-21704-1-git-send-email-vikas.cha.sajjan@hpe.com (mailing list archive)
State Accepted
Commit d932dd2ccda0
Headers show

Commit Message

Sajjan, Vikas C July 4, 2016, 4:32 a.m. UTC
If devm_add_action() fails, we are explicitly calling the cleanup to free
the resources allocated. Lets use the helper devm_add_action_or_reset()
and return directly in case of error, since the cleanup function
has been already called by the helper if there was any error.

Signed-off-by: Vikas C Sajjan <vikas.cha.sajjan@hpe.com>
---
 drivers/acpi/nfit.c | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

Comments

Johannes Thumshirn July 4, 2016, 7:31 a.m. UTC | #1
On Mon, Jul 04, 2016 at 10:02:51AM +0530, Vikas C Sajjan wrote:
> If devm_add_action() fails, we are explicitly calling the cleanup to free
> the resources allocated. Lets use the helper devm_add_action_or_reset()
> and return directly in case of error, since the cleanup function
> has been already called by the helper if there was any error.
> 
> Signed-off-by: Vikas C Sajjan <vikas.cha.sajjan@hpe.com>

Reviewed-by: Johannes Thumshirn <jthumshirn@suse.de>
joeyli July 4, 2016, 7:54 a.m. UTC | #2
On Mon, Jul 04, 2016 at 10:02:51AM +0530, Vikas C Sajjan wrote:
> If devm_add_action() fails, we are explicitly calling the cleanup to free
> the resources allocated. Lets use the helper devm_add_action_or_reset()
> and return directly in case of error, since the cleanup function
> has been already called by the helper if there was any error.
> 
> Signed-off-by: Vikas C Sajjan <vikas.cha.sajjan@hpe.com>
> ---
>  drivers/acpi/nfit.c | 8 ++++----
>  1 file changed, 4 insertions(+), 4 deletions(-)
> 
> diff --git a/drivers/acpi/nfit.c b/drivers/acpi/nfit.c
> index c2ad967..44ebe1e 100644
> --- a/drivers/acpi/nfit.c
> +++ b/drivers/acpi/nfit.c
> @@ -1920,11 +1920,11 @@ static int acpi_nfit_insert_resource(struct acpi_nfit_desc *acpi_desc,
>  	if (ret)
>  		return ret;
>  
> -	ret = devm_add_action(acpi_desc->dev, acpi_nfit_remove_resource, res);
> -	if (ret) {
> -		remove_resource(res);
> +	ret = devm_add_action_or_reset(acpi_desc->dev,
> +					acpi_nfit_remove_resource,
> +					res);
> +	if (ret)
>  		return ret;
> -	}
>  
>  	return 0;
>  }
> -- 
> 1.9.1
>

Reviewed-by: Lee, Chun-Yi <jlee@suse.com>

Joey Lee
Dan Williams July 6, 2016, 10:18 p.m. UTC | #3
Thanks, applied.

On Mon, Jul 4, 2016 at 12:54 AM, joeyli <jlee@suse.com> wrote:
> On Mon, Jul 04, 2016 at 10:02:51AM +0530, Vikas C Sajjan wrote:
>> If devm_add_action() fails, we are explicitly calling the cleanup to free
>> the resources allocated. Lets use the helper devm_add_action_or_reset()
>> and return directly in case of error, since the cleanup function
>> has been already called by the helper if there was any error.
>>
>> Signed-off-by: Vikas C Sajjan <vikas.cha.sajjan@hpe.com>
>> ---
>>  drivers/acpi/nfit.c | 8 ++++----
>>  1 file changed, 4 insertions(+), 4 deletions(-)
>>
>> diff --git a/drivers/acpi/nfit.c b/drivers/acpi/nfit.c
>> index c2ad967..44ebe1e 100644
>> --- a/drivers/acpi/nfit.c
>> +++ b/drivers/acpi/nfit.c
>> @@ -1920,11 +1920,11 @@ static int acpi_nfit_insert_resource(struct acpi_nfit_desc *acpi_desc,
>>       if (ret)
>>               return ret;
>>
>> -     ret = devm_add_action(acpi_desc->dev, acpi_nfit_remove_resource, res);
>> -     if (ret) {
>> -             remove_resource(res);
>> +     ret = devm_add_action_or_reset(acpi_desc->dev,
>> +                                     acpi_nfit_remove_resource,
>> +                                     res);
>> +     if (ret)
>>               return ret;
>> -     }
>>
>>       return 0;
>>  }
>> --
>> 1.9.1
>>
>
> Reviewed-by: Lee, Chun-Yi <jlee@suse.com>
>
> Joey Lee
Sajjan, Vikas C July 7, 2016, 4:02 a.m. UTC | #4
-----Original Message-----
From: Dan Williams [mailto:dan.j.williams@intel.com] 
Sent: Thursday, July 07, 2016 3:48 AM
To: joeyli <jlee@suse.com>
Cc: Sajjan, Vikas C <vikas.cha.sajjan@hpe.com>; Ross Zwisler <ross.zwisler@linux.intel.com>; linux-nvdimm@lists.01.org; Linux ACPI <linux-acpi@vger.kernel.org>; Knippers, Linda <linda.knippers@hpe.com>
Subject: Re: [PATCH] nfit: use devm_add_action_or_reset()

Thanks, applied.

Thank you, Dan.

On Mon, Jul 4, 2016 at 12:54 AM, joeyli <jlee@suse.com> wrote:
> On Mon, Jul 04, 2016 at 10:02:51AM +0530, Vikas C Sajjan wrote:
>> If devm_add_action() fails, we are explicitly calling the cleanup to 
>> free the resources allocated. Lets use the helper 
>> devm_add_action_or_reset() and return directly in case of error, 
>> since the cleanup function has been already called by the helper if there was any error.
>>
>> Signed-off-by: Vikas C Sajjan <vikas.cha.sajjan@hpe.com>
>> ---
>>  drivers/acpi/nfit.c | 8 ++++----
>>  1 file changed, 4 insertions(+), 4 deletions(-)
>>
>> diff --git a/drivers/acpi/nfit.c b/drivers/acpi/nfit.c index 
>> c2ad967..44ebe1e 100644
>> --- a/drivers/acpi/nfit.c
>> +++ b/drivers/acpi/nfit.c
>> @@ -1920,11 +1920,11 @@ static int acpi_nfit_insert_resource(struct acpi_nfit_desc *acpi_desc,
>>       if (ret)
>>               return ret;
>>
>> -     ret = devm_add_action(acpi_desc->dev, acpi_nfit_remove_resource, res);
>> -     if (ret) {
>> -             remove_resource(res);
>> +     ret = devm_add_action_or_reset(acpi_desc->dev,
>> +                                     acpi_nfit_remove_resource,
>> +                                     res);
>> +     if (ret)
>>               return ret;
>> -     }
>>
>>       return 0;
>>  }
>> --
>> 1.9.1
>>
>
> Reviewed-by: Lee, Chun-Yi <jlee@suse.com>
>
> Joey Lee
diff mbox

Patch

diff --git a/drivers/acpi/nfit.c b/drivers/acpi/nfit.c
index c2ad967..44ebe1e 100644
--- a/drivers/acpi/nfit.c
+++ b/drivers/acpi/nfit.c
@@ -1920,11 +1920,11 @@  static int acpi_nfit_insert_resource(struct acpi_nfit_desc *acpi_desc,
 	if (ret)
 		return ret;
 
-	ret = devm_add_action(acpi_desc->dev, acpi_nfit_remove_resource, res);
-	if (ret) {
-		remove_resource(res);
+	ret = devm_add_action_or_reset(acpi_desc->dev,
+					acpi_nfit_remove_resource,
+					res);
+	if (ret)
 		return ret;
-	}
 
 	return 0;
 }