All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] input/serio: Fix refcount leak bug in i8042-sparcio
@ 2022-06-19  7:30 Liang He
  2022-07-09  4:49 ` Dmitry Torokhov
  0 siblings, 1 reply; 5+ messages in thread
From: Liang He @ 2022-06-19  7:30 UTC (permalink / raw)
  To: dmitry.torokhov; +Cc: windhl, linux-input, linux-kernel

In i8042_platform_init() and i8042_platform_exit(), we need call
of_node_put() to keep refcount balance.

Signed-off-by: Liang He <windhl@126.com>
---
 drivers/input/serio/i8042-sparcio.h | 4 ++++
 1 file changed, 4 insertions(+)

diff --git a/drivers/input/serio/i8042-sparcio.h b/drivers/input/serio/i8042-sparcio.h
index fce76812843b..a2a9db9220d7 100644
--- a/drivers/input/serio/i8042-sparcio.h
+++ b/drivers/input/serio/i8042-sparcio.h
@@ -108,6 +108,8 @@ static int __init i8042_platform_init(void)
 	struct device_node *root = of_find_node_by_path("/");
 	const char *name = of_get_property(root, "name", NULL);
 
+	of_node_put(root);
+
 	if (name && !strcmp(name, "SUNW,JavaStation-1")) {
 		/* Hardcoded values for MrCoffee.  */
 		i8042_kbd_irq = i8042_aux_irq = 13 | 0x20;
@@ -139,6 +141,8 @@ static inline void i8042_platform_exit(void)
 	struct device_node *root = of_find_node_by_path("/");
 	const char *name = of_get_property(root, "name", NULL);
 
+	of_node_put(root);
+
 	if (!name || strcmp(name, "SUNW,JavaStation-1"))
 		platform_driver_unregister(&sparc_i8042_driver);
 }
-- 
2.25.1


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

* Re: [PATCH] input/serio: Fix refcount leak bug in i8042-sparcio
  2022-06-19  7:30 [PATCH] input/serio: Fix refcount leak bug in i8042-sparcio Liang He
@ 2022-07-09  4:49 ` Dmitry Torokhov
  2022-07-10  1:37   ` Liang He
  0 siblings, 1 reply; 5+ messages in thread
From: Dmitry Torokhov @ 2022-07-09  4:49 UTC (permalink / raw)
  To: Liang He; +Cc: linux-input, linux-kernel

Hi Liang,

On Sun, Jun 19, 2022 at 03:30:36PM +0800, Liang He wrote:
> In i8042_platform_init() and i8042_platform_exit(), we need call
> of_node_put() to keep refcount balance.
> 
> Signed-off-by: Liang He <windhl@126.com>
> ---
>  drivers/input/serio/i8042-sparcio.h | 4 ++++
>  1 file changed, 4 insertions(+)
> 
> diff --git a/drivers/input/serio/i8042-sparcio.h b/drivers/input/serio/i8042-sparcio.h
> index fce76812843b..a2a9db9220d7 100644
> --- a/drivers/input/serio/i8042-sparcio.h
> +++ b/drivers/input/serio/i8042-sparcio.h
> @@ -108,6 +108,8 @@ static int __init i8042_platform_init(void)
>  	struct device_node *root = of_find_node_by_path("/");
>  	const char *name = of_get_property(root, "name", NULL);
>  
> +	of_node_put(root);
> +
>  	if (name && !strcmp(name, "SUNW,JavaStation-1")) {
>  		/* Hardcoded values for MrCoffee.  */
>  		i8042_kbd_irq = i8042_aux_irq = 13 | 0x20;
> @@ -139,6 +141,8 @@ static inline void i8042_platform_exit(void)
>  	struct device_node *root = of_find_node_by_path("/");
>  	const char *name = of_get_property(root, "name", NULL);
>  
> +	of_node_put(root);
> +
>  	if (!name || strcmp(name, "SUNW,JavaStation-1"))
>  		platform_driver_unregister(&sparc_i8042_driver);
>  }

There already was an attempt to fix this issue in a slightly better way,
unfortunately the original author did not finish the work:

https://lore.kernel.org/all/20181212163548.23723-1-tiny.windzz@gmail.com/

Thanks.

-- 
Dmitry

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

* Re:Re: [PATCH] input/serio: Fix refcount leak bug in i8042-sparcio
  2022-07-09  4:49 ` Dmitry Torokhov
@ 2022-07-10  1:37   ` Liang He
  2022-07-11  3:19     ` Dmitry Torokhov
  0 siblings, 1 reply; 5+ messages in thread
From: Liang He @ 2022-07-10  1:37 UTC (permalink / raw)
  To: Dmitry Torokhov; +Cc: linux-input, linux-kernel






At 2022-07-09 12:49:23, "Dmitry Torokhov" <dmitry.torokhov@gmail.com> wrote:
>Hi Liang,
>
>On Sun, Jun 19, 2022 at 03:30:36PM +0800, Liang He wrote:
>> In i8042_platform_init() and i8042_platform_exit(), we need call
>> of_node_put() to keep refcount balance.
>> 
>> Signed-off-by: Liang He <windhl@126.com>
>> ---
>>  drivers/input/serio/i8042-sparcio.h | 4 ++++
>>  1 file changed, 4 insertions(+)
>> 
>> diff --git a/drivers/input/serio/i8042-sparcio.h b/drivers/input/serio/i8042-sparcio.h
>> index fce76812843b..a2a9db9220d7 100644
>> --- a/drivers/input/serio/i8042-sparcio.h
>> +++ b/drivers/input/serio/i8042-sparcio.h
>> @@ -108,6 +108,8 @@ static int __init i8042_platform_init(void)
>>  	struct device_node *root = of_find_node_by_path("/");
>>  	const char *name = of_get_property(root, "name", NULL);
>>  
>> +	of_node_put(root);
>> +
>>  	if (name && !strcmp(name, "SUNW,JavaStation-1")) {
>>  		/* Hardcoded values for MrCoffee.  */
>>  		i8042_kbd_irq = i8042_aux_irq = 13 | 0x20;
>> @@ -139,6 +141,8 @@ static inline void i8042_platform_exit(void)
>>  	struct device_node *root = of_find_node_by_path("/");
>>  	const char *name = of_get_property(root, "name", NULL);
>>  
>> +	of_node_put(root);
>> +
>>  	if (!name || strcmp(name, "SUNW,JavaStation-1"))
>>  		platform_driver_unregister(&sparc_i8042_driver);
>>  }
>
>There already was an attempt to fix this issue in a slightly better way,
>unfortunately the original author did not finish the work:
>
>https://lore.kernel.org/all/20181212163548.23723-1-tiny.windzz@gmail.com/
>
>Thanks.
>
>-- 
>Dmitry

Hi, Dmirtry,

Thanks for reviewing my patch code.

The Li's patch adds a helper and is better than mine.

Thanks again,

Liang 

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

* Re: Re: [PATCH] input/serio: Fix refcount leak bug in i8042-sparcio
  2022-07-10  1:37   ` Liang He
@ 2022-07-11  3:19     ` Dmitry Torokhov
  2022-07-11  4:57       ` Liang He
  0 siblings, 1 reply; 5+ messages in thread
From: Dmitry Torokhov @ 2022-07-11  3:19 UTC (permalink / raw)
  To: Liang He; +Cc: linux-input, linux-kernel

On Sun, Jul 10, 2022 at 09:37:10AM +0800, Liang He wrote:
> At 2022-07-09 12:49:23, "Dmitry Torokhov" <dmitry.torokhov@gmail.com> wrote:
> >Hi Liang,
> >
> >On Sun, Jun 19, 2022 at 03:30:36PM +0800, Liang He wrote:
> >> In i8042_platform_init() and i8042_platform_exit(), we need call
> >> of_node_put() to keep refcount balance.
> >> 
> >> Signed-off-by: Liang He <windhl@126.com>
> >> ---
> >>  drivers/input/serio/i8042-sparcio.h | 4 ++++
> >>  1 file changed, 4 insertions(+)
> >> 
> >> diff --git a/drivers/input/serio/i8042-sparcio.h b/drivers/input/serio/i8042-sparcio.h
> >> index fce76812843b..a2a9db9220d7 100644
> >> --- a/drivers/input/serio/i8042-sparcio.h
> >> +++ b/drivers/input/serio/i8042-sparcio.h
> >> @@ -108,6 +108,8 @@ static int __init i8042_platform_init(void)
> >>  	struct device_node *root = of_find_node_by_path("/");
> >>  	const char *name = of_get_property(root, "name", NULL);
> >>  
> >> +	of_node_put(root);
> >> +
> >>  	if (name && !strcmp(name, "SUNW,JavaStation-1")) {
> >>  		/* Hardcoded values for MrCoffee.  */
> >>  		i8042_kbd_irq = i8042_aux_irq = 13 | 0x20;
> >> @@ -139,6 +141,8 @@ static inline void i8042_platform_exit(void)
> >>  	struct device_node *root = of_find_node_by_path("/");
> >>  	const char *name = of_get_property(root, "name", NULL);
> >>  
> >> +	of_node_put(root);
> >> +
> >>  	if (!name || strcmp(name, "SUNW,JavaStation-1"))
> >>  		platform_driver_unregister(&sparc_i8042_driver);
> >>  }
> >
> >There already was an attempt to fix this issue in a slightly better way,
> >unfortunately the original author did not finish the work:
> >
> >https://lore.kernel.org/all/20181212163548.23723-1-tiny.windzz@gmail.com/
> >
> >Thanks.
> >
> >-- 
> >Dmitry
> 
> Hi, Dmirtry,
> 
> Thanks for reviewing my patch code.
> 
> The Li's patch adds a helper and is better than mine.

Right, however there is a compile error in Li's version. It would be
great if someone could finish their work.

Thanks.

-- 
Dmitry

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

* Re:Re: Re: [PATCH] input/serio: Fix refcount leak bug in i8042-sparcio
  2022-07-11  3:19     ` Dmitry Torokhov
@ 2022-07-11  4:57       ` Liang He
  0 siblings, 0 replies; 5+ messages in thread
From: Liang He @ 2022-07-11  4:57 UTC (permalink / raw)
  To: Dmitry Torokhov; +Cc: linux-input, linux-kernel





At 2022-07-11 11:19:20, "Dmitry Torokhov" <dmitry.torokhov@gmail.com> wrote:
>On Sun, Jul 10, 2022 at 09:37:10AM +0800, Liang He wrote:
>> At 2022-07-09 12:49:23, "Dmitry Torokhov" <dmitry.torokhov@gmail.com> wrote:
>> >Hi Liang,
>> >
>> >On Sun, Jun 19, 2022 at 03:30:36PM +0800, Liang He wrote:
>> >> In i8042_platform_init() and i8042_platform_exit(), we need call
>> >> of_node_put() to keep refcount balance.
>> >> 
>> >> Signed-off-by: Liang He <windhl@126.com>
>> >> ---
>> >>  drivers/input/serio/i8042-sparcio.h | 4 ++++
>> >>  1 file changed, 4 insertions(+)
>> >> 
>> >> diff --git a/drivers/input/serio/i8042-sparcio.h b/drivers/input/serio/i8042-sparcio.h
>> >> index fce76812843b..a2a9db9220d7 100644
>> >> --- a/drivers/input/serio/i8042-sparcio.h
>> >> +++ b/drivers/input/serio/i8042-sparcio.h
>> >> @@ -108,6 +108,8 @@ static int __init i8042_platform_init(void)
>> >>  	struct device_node *root = of_find_node_by_path("/");
>> >>  	const char *name = of_get_property(root, "name", NULL);
>> >>  
>> >> +	of_node_put(root);
>> >> +
>> >>  	if (name && !strcmp(name, "SUNW,JavaStation-1")) {
>> >>  		/* Hardcoded values for MrCoffee.  */
>> >>  		i8042_kbd_irq = i8042_aux_irq = 13 | 0x20;
>> >> @@ -139,6 +141,8 @@ static inline void i8042_platform_exit(void)
>> >>  	struct device_node *root = of_find_node_by_path("/");
>> >>  	const char *name = of_get_property(root, "name", NULL);
>> >>  
>> >> +	of_node_put(root);
>> >> +
>> >>  	if (!name || strcmp(name, "SUNW,JavaStation-1"))
>> >>  		platform_driver_unregister(&sparc_i8042_driver);
>> >>  }
>> >
>> >There already was an attempt to fix this issue in a slightly better way,
>> >unfortunately the original author did not finish the work:
>> >
>> >https://lore.kernel.org/all/20181212163548.23723-1-tiny.windzz@gmail.com/
>> >
>> >Thanks.
>> >
>> >-- 
>> >Dmitry
>> 
>> Hi, Dmirtry,
>> 
>> Thanks for reviewing my patch code.
>> 
>> The Li's patch adds a helper and is better than mine.
>
>Right, however there is a compile error in Li's version. It would be
>great if someone could finish their work.
>
>Thanks.
>
>-- 
>Dmitry


Thanks, 

I'd like to continue Li's work and complete it soon.

Liang

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

end of thread, other threads:[~2022-07-11  4:58 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-06-19  7:30 [PATCH] input/serio: Fix refcount leak bug in i8042-sparcio Liang He
2022-07-09  4:49 ` Dmitry Torokhov
2022-07-10  1:37   ` Liang He
2022-07-11  3:19     ` Dmitry Torokhov
2022-07-11  4:57       ` Liang He

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.