The Linux Kernel Mailing List
 help / color / mirror / Atom feed
* [PATCH] fujitsu-laptop: remove unnecessary input_free_device calls
@ 2010-07-02  1:42 Axel Lin
  2010-07-02  2:06 ` Jonathan Woithe
  2010-07-02  6:20 ` Dmitry Torokhov
  0 siblings, 2 replies; 4+ messages in thread
From: Axel Lin @ 2010-07-02  1:42 UTC (permalink / raw)
  To: linux-kernel
  Cc: Jonathan Woithe, Matthew Garrett, Len Brown, Andrew Morton,
	Stefani Seibold, Andi Kleen, platform-driver-x86

input_free_device should only be used if input_register_device()
was not called yet or if it failed.
This patch removes unnecessary input_free_device calls.

Signed-off-by: Axel Lin <axel.lin@gmail.com>
---
 drivers/platform/x86/fujitsu-laptop.c |   21 ++++++++-------------
 1 files changed, 8 insertions(+), 13 deletions(-)

diff --git a/drivers/platform/x86/fujitsu-laptop.c b/drivers/platform/x86/fujitsu-laptop.c
index e325aeb..dab1a0e 100644
--- a/drivers/platform/x86/fujitsu-laptop.c
+++ b/drivers/platform/x86/fujitsu-laptop.c
@@ -686,8 +686,10 @@ static int acpi_fujitsu_add(struct acpi_device *device)
 	set_bit(KEY_UNKNOWN, input->keybit);
 
 	error = input_register_device(input);
-	if (error)
-		goto err_free_input_dev;
+	if (error) {
+		input_free_device(input);
+		goto err_stop;
+	}
 
 	result = acpi_bus_get_power(fujitsu->acpi_handle, &state);
 	if (result) {
@@ -725,8 +727,6 @@ static int acpi_fujitsu_add(struct acpi_device *device)
 
 err_unregister_input_dev:
 	input_unregister_device(input);
-err_free_input_dev:
-	input_free_device(input);
 err_stop:
 	return result;
 }
@@ -737,9 +737,6 @@ static int acpi_fujitsu_remove(struct acpi_device *device, int type)
 	struct input_dev *input = fujitsu->input;
 
 	input_unregister_device(input);
-
-	input_free_device(input);
-
 	fujitsu->acpi_handle = NULL;
 
 	return 0;
@@ -855,8 +852,10 @@ static int acpi_fujitsu_hotkey_add(struct acpi_device *device)
 	set_bit(KEY_UNKNOWN, input->keybit);
 
 	error = input_register_device(input);
-	if (error)
-		goto err_free_input_dev;
+	if (error) {
+		input_free_device(input);
+		goto err_free_fifo;
+	}
 
 	result = acpi_bus_get_power(fujitsu_hotkey->acpi_handle, &state);
 	if (result) {
@@ -930,8 +929,6 @@ static int acpi_fujitsu_hotkey_add(struct acpi_device *device)
 
 err_unregister_input_dev:
 	input_unregister_device(input);
-err_free_input_dev:
-	input_free_device(input);
 err_free_fifo:
 	kfifo_free(&fujitsu_hotkey->fifo);
 err_stop:
@@ -953,8 +950,6 @@ static int acpi_fujitsu_hotkey_remove(struct acpi_device *device, int type)
 
 	input_unregister_device(input);
 
-	input_free_device(input);
-
 	kfifo_free(&fujitsu_hotkey->fifo);
 
 	fujitsu_hotkey->acpi_handle = NULL;
-- 
1.5.4.3




^ permalink raw reply related	[flat|nested] 4+ messages in thread

* Re: [PATCH] fujitsu-laptop: remove unnecessary input_free_device calls
  2010-07-02  1:42 [PATCH] fujitsu-laptop: remove unnecessary input_free_device calls Axel Lin
@ 2010-07-02  2:06 ` Jonathan Woithe
  2010-07-02  6:20 ` Dmitry Torokhov
  1 sibling, 0 replies; 4+ messages in thread
From: Jonathan Woithe @ 2010-07-02  2:06 UTC (permalink / raw)
  To: Axel Lin
  Cc: linux-kernel, Jonathan Woithe, Matthew Garrett, Len Brown,
	Andrew Morton, Stefani Seibold, Andi Kleen, platform-driver-x86

> input_free_device should only be used if input_register_device()
> was not called yet or if it failed.
>
> This patch removes unnecessary input_free_device calls.

Yes, indeed.  Good catch.  The patch looks good to me - thanks.

Acked-by: Jonathan Woithe <jwoithe@physics.adelaide.edu.au>

> Signed-off-by: Axel Lin <axel.lin@gmail.com>
> ---
>  drivers/platform/x86/fujitsu-laptop.c |   21 ++++++++-------------
>  1 files changed, 8 insertions(+), 13 deletions(-)
> 
> diff --git a/drivers/platform/x86/fujitsu-laptop.c b/drivers/platform/x86/fujitsu-laptop.c
> index e325aeb..dab1a0e 100644
> --- a/drivers/platform/x86/fujitsu-laptop.c
> +++ b/drivers/platform/x86/fujitsu-laptop.c
> @@ -686,8 +686,10 @@ static int acpi_fujitsu_add(struct acpi_device *device)
>  	set_bit(KEY_UNKNOWN, input->keybit);
>  
>  	error = input_register_device(input);
> -	if (error)
> -		goto err_free_input_dev;
> +	if (error) {
> +		input_free_device(input);
> +		goto err_stop;
> +	}
>  
>  	result = acpi_bus_get_power(fujitsu->acpi_handle, &state);
>  	if (result) {
> @@ -725,8 +727,6 @@ static int acpi_fujitsu_add(struct acpi_device *device)
>  
>  err_unregister_input_dev:
>  	input_unregister_device(input);
> -err_free_input_dev:
> -	input_free_device(input);
>  err_stop:
>  	return result;
>  }
> @@ -737,9 +737,6 @@ static int acpi_fujitsu_remove(struct acpi_device *device, int type)
>  	struct input_dev *input = fujitsu->input;
>  
>  	input_unregister_device(input);
> -
> -	input_free_device(input);
> -
>  	fujitsu->acpi_handle = NULL;
>  
>  	return 0;
> @@ -855,8 +852,10 @@ static int acpi_fujitsu_hotkey_add(struct acpi_device *device)
>  	set_bit(KEY_UNKNOWN, input->keybit);
>  
>  	error = input_register_device(input);
> -	if (error)
> -		goto err_free_input_dev;
> +	if (error) {
> +		input_free_device(input);
> +		goto err_free_fifo;
> +	}
>  
>  	result = acpi_bus_get_power(fujitsu_hotkey->acpi_handle, &state);
>  	if (result) {
> @@ -930,8 +929,6 @@ static int acpi_fujitsu_hotkey_add(struct acpi_device *device)
>  
>  err_unregister_input_dev:
>  	input_unregister_device(input);
> -err_free_input_dev:
> -	input_free_device(input);
>  err_free_fifo:
>  	kfifo_free(&fujitsu_hotkey->fifo);
>  err_stop:
> @@ -953,8 +950,6 @@ static int acpi_fujitsu_hotkey_remove(struct acpi_device *device, int type)
>  
>  	input_unregister_device(input);
>  
> -	input_free_device(input);
> -
>  	kfifo_free(&fujitsu_hotkey->fifo);
>  
>  	fujitsu_hotkey->acpi_handle = NULL;
> -- 
> 1.5.4.3
> 
> 
> 

^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: [PATCH] fujitsu-laptop: remove unnecessary input_free_device calls
  2010-07-02  1:42 [PATCH] fujitsu-laptop: remove unnecessary input_free_device calls Axel Lin
  2010-07-02  2:06 ` Jonathan Woithe
@ 2010-07-02  6:20 ` Dmitry Torokhov
  2010-07-02  7:20   ` Axel Lin
  1 sibling, 1 reply; 4+ messages in thread
From: Dmitry Torokhov @ 2010-07-02  6:20 UTC (permalink / raw)
  To: Axel Lin
  Cc: linux-kernel, Jonathan Woithe, Matthew Garrett, Len Brown,
	Andrew Morton, Stefani Seibold, Andi Kleen, platform-driver-x86

Hi Axel,

On Fri, Jul 02, 2010 at 09:42:57AM +0800, Axel Lin wrote:
> input_free_device should only be used if input_register_device()
> was not called yet or if it failed.
> This patch removes unnecessary input_free_device calls.
> 
> Signed-off-by: Axel Lin <axel.lin@gmail.com>
> ---
>  drivers/platform/x86/fujitsu-laptop.c |   21 ++++++++-------------
>  1 files changed, 8 insertions(+), 13 deletions(-)
> 
> diff --git a/drivers/platform/x86/fujitsu-laptop.c b/drivers/platform/x86/fujitsu-laptop.c
> index e325aeb..dab1a0e 100644
> --- a/drivers/platform/x86/fujitsu-laptop.c
> +++ b/drivers/platform/x86/fujitsu-laptop.c
> @@ -686,8 +686,10 @@ static int acpi_fujitsu_add(struct acpi_device *device)
>  	set_bit(KEY_UNKNOWN, input->keybit);
>  
>  	error = input_register_device(input);
> -	if (error)
> -		goto err_free_input_dev;
> +	if (error) {
> +		input_free_device(input);
> +		goto err_stop;
> +	}

Instead of using mixed in-line and goto style cleanup I prefer doig the
following:

 err_unregister_input_dev:
	input_unregister_device(input);
	input = NULL; <-- !!!
 err_free_input_dev:
	input_free_device(input);

input_free_device() happily accepts NULL pointers.

Otherwise the patch looks good.

Thanks.

-- 
Dmitry

^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: [PATCH] fujitsu-laptop: remove unnecessary input_free_device  calls
  2010-07-02  6:20 ` Dmitry Torokhov
@ 2010-07-02  7:20   ` Axel Lin
  0 siblings, 0 replies; 4+ messages in thread
From: Axel Lin @ 2010-07-02  7:20 UTC (permalink / raw)
  To: Dmitry Torokhov
  Cc: linux-kernel, Jonathan Woithe, Matthew Garrett, Len Brown,
	Andrew Morton, Stefani Seibold, Andi Kleen, platform-driver-x86

hi Dmitry,

2010/7/2 Dmitry Torokhov <dmitry.torokhov@gmail.com>:
> Hi Axel,
>
> On Fri, Jul 02, 2010 at 09:42:57AM +0800, Axel Lin wrote:
>> input_free_device should only be used if input_register_device()
>> was not called yet or if it failed.
>> This patch removes unnecessary input_free_device calls.
>>
>> Signed-off-by: Axel Lin <axel.lin@gmail.com>
>> ---
>>  drivers/platform/x86/fujitsu-laptop.c |   21 ++++++++-------------
>>  1 files changed, 8 insertions(+), 13 deletions(-)
>>
>> diff --git a/drivers/platform/x86/fujitsu-laptop.c b/drivers/platform/x86/fujitsu-laptop.c
>> index e325aeb..dab1a0e 100644
>> --- a/drivers/platform/x86/fujitsu-laptop.c
>> +++ b/drivers/platform/x86/fujitsu-laptop.c
>> @@ -686,8 +686,10 @@ static int acpi_fujitsu_add(struct acpi_device *device)
>>       set_bit(KEY_UNKNOWN, input->keybit);
>>
>>       error = input_register_device(input);
>> -     if (error)
>> -             goto err_free_input_dev;
>> +     if (error) {
>> +             input_free_device(input);
>> +             goto err_stop;
>> +     }
>
> Instead of using mixed in-line and goto style cleanup I prefer doig the
> following:
>
>  err_unregister_input_dev:
>        input_unregister_device(input);
>        input = NULL; <-- !!!
>  err_free_input_dev:
>        input_free_device(input);
>
> input_free_device() happily accepts NULL pointers.

Thanks for the review. I will send a revised patch.

Regards,
Axel
>
> Otherwise the patch looks good.
>
> Thanks.
>
> --
> Dmitry
>

^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2010-07-02  7:20 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2010-07-02  1:42 [PATCH] fujitsu-laptop: remove unnecessary input_free_device calls Axel Lin
2010-07-02  2:06 ` Jonathan Woithe
2010-07-02  6:20 ` Dmitry Torokhov
2010-07-02  7:20   ` Axel Lin

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox