linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] thermal: int340x: fix memory leak in int3400_notify()
@ 2022-02-22  2:00 Chuansheng Liu
  2022-02-22 12:34 ` Rafael J. Wysocki
  0 siblings, 1 reply; 7+ messages in thread
From: Chuansheng Liu @ 2022-02-22  2:00 UTC (permalink / raw)
  To: linux-kernel; +Cc: rafael, srinivas.pandruvada, rui.zhang

It is easy to hit the below memory leaks in my TigerLake platform:

--
unreferenced object 0xffff927c8b91dbc0 (size 32):
  comm "kworker/0:2", pid 112, jiffies 4294893323 (age 83.604s)
  hex dump (first 32 bytes):
    4e 41 4d 45 3d 49 4e 54 33 34 30 30 20 54 68 65  NAME=INT3400 The
    72 6d 61 6c 00 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b a5  rmal.kkkkkkkkkk.
  backtrace:
    [<ffffffff9c502c3e>] __kmalloc_track_caller+0x2fe/0x4a0
    [<ffffffff9c7b7c15>] kvasprintf+0x65/0xd0
    [<ffffffff9c7b7d6e>] kasprintf+0x4e/0x70
    [<ffffffffc04cb662>] int3400_notify+0x82/0x120 [int3400_thermal]
    [<ffffffff9c8b7358>] acpi_ev_notify_dispatch+0x54/0x71
    [<ffffffff9c88f1a7>] acpi_os_execute_deferred+0x17/0x30
    [<ffffffff9c2c2c0a>] process_one_work+0x21a/0x3f0
    [<ffffffff9c2c2e2a>] worker_thread+0x4a/0x3b0
    [<ffffffff9c2cb4dd>] kthread+0xfd/0x130
    [<ffffffff9c201c1f>] ret_from_fork+0x1f/0x30
---

Fix it by calling kfree() accordingly.

Signed-off-by: Chuansheng Liu <chuansheng.liu@intel.com>
---
 drivers/thermal/intel/int340x_thermal/int3400_thermal.c | 4 ++++
 1 file changed, 4 insertions(+)

diff --git a/drivers/thermal/intel/int340x_thermal/int3400_thermal.c b/drivers/thermal/intel/int340x_thermal/int3400_thermal.c
index 72acb1f61849..4f478812cb51 100644
--- a/drivers/thermal/intel/int340x_thermal/int3400_thermal.c
+++ b/drivers/thermal/intel/int340x_thermal/int3400_thermal.c
@@ -404,6 +404,10 @@ static void int3400_notify(acpi_handle handle,
 	thermal_prop[3] = kasprintf(GFP_KERNEL, "EVENT=%d", therm_event);
 	thermal_prop[4] = NULL;
 	kobject_uevent_env(&priv->thermal->device.kobj, KOBJ_CHANGE, thermal_prop);
+	kfree(thermal_prop[0]);
+	kfree(thermal_prop[1]);
+	kfree(thermal_prop[2]);
+	kfree(thermal_prop[3]);
 }
 
 static int int3400_thermal_get_temp(struct thermal_zone_device *thermal,
-- 
2.25.0.rc2


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

* Re: [PATCH] thermal: int340x: fix memory leak in int3400_notify()
  2022-02-22  2:00 [PATCH] thermal: int340x: fix memory leak in int3400_notify() Chuansheng Liu
@ 2022-02-22 12:34 ` Rafael J. Wysocki
  2022-02-22 15:42   ` srinivas pandruvada
  0 siblings, 1 reply; 7+ messages in thread
From: Rafael J. Wysocki @ 2022-02-22 12:34 UTC (permalink / raw)
  To: Chuansheng Liu
  Cc: Linux Kernel Mailing List, Rafael J. Wysocki,
	Srinivas Pandruvada, Zhang, Rui

Please resend this with a CC to linux-pm@vger.kernel.org.  Thanks!

On Tue, Feb 22, 2022 at 3:13 AM Chuansheng Liu <chuansheng.liu@intel.com> wrote:
>
> It is easy to hit the below memory leaks in my TigerLake platform:
>
> --
> unreferenced object 0xffff927c8b91dbc0 (size 32):
>   comm "kworker/0:2", pid 112, jiffies 4294893323 (age 83.604s)
>   hex dump (first 32 bytes):
>     4e 41 4d 45 3d 49 4e 54 33 34 30 30 20 54 68 65  NAME=INT3400 The
>     72 6d 61 6c 00 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b a5  rmal.kkkkkkkkkk.
>   backtrace:
>     [<ffffffff9c502c3e>] __kmalloc_track_caller+0x2fe/0x4a0
>     [<ffffffff9c7b7c15>] kvasprintf+0x65/0xd0
>     [<ffffffff9c7b7d6e>] kasprintf+0x4e/0x70
>     [<ffffffffc04cb662>] int3400_notify+0x82/0x120 [int3400_thermal]
>     [<ffffffff9c8b7358>] acpi_ev_notify_dispatch+0x54/0x71
>     [<ffffffff9c88f1a7>] acpi_os_execute_deferred+0x17/0x30
>     [<ffffffff9c2c2c0a>] process_one_work+0x21a/0x3f0
>     [<ffffffff9c2c2e2a>] worker_thread+0x4a/0x3b0
>     [<ffffffff9c2cb4dd>] kthread+0xfd/0x130
>     [<ffffffff9c201c1f>] ret_from_fork+0x1f/0x30
> ---
>
> Fix it by calling kfree() accordingly.
>
> Signed-off-by: Chuansheng Liu <chuansheng.liu@intel.com>
> ---
>  drivers/thermal/intel/int340x_thermal/int3400_thermal.c | 4 ++++
>  1 file changed, 4 insertions(+)
>
> diff --git a/drivers/thermal/intel/int340x_thermal/int3400_thermal.c b/drivers/thermal/intel/int340x_thermal/int3400_thermal.c
> index 72acb1f61849..4f478812cb51 100644
> --- a/drivers/thermal/intel/int340x_thermal/int3400_thermal.c
> +++ b/drivers/thermal/intel/int340x_thermal/int3400_thermal.c
> @@ -404,6 +404,10 @@ static void int3400_notify(acpi_handle handle,
>         thermal_prop[3] = kasprintf(GFP_KERNEL, "EVENT=%d", therm_event);
>         thermal_prop[4] = NULL;
>         kobject_uevent_env(&priv->thermal->device.kobj, KOBJ_CHANGE, thermal_prop);
> +       kfree(thermal_prop[0]);
> +       kfree(thermal_prop[1]);
> +       kfree(thermal_prop[2]);
> +       kfree(thermal_prop[3]);
>  }
>
>  static int int3400_thermal_get_temp(struct thermal_zone_device *thermal,
> --
> 2.25.0.rc2
>

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

* Re: [PATCH] thermal: int340x: fix memory leak in int3400_notify()
  2022-02-22 12:34 ` Rafael J. Wysocki
@ 2022-02-22 15:42   ` srinivas pandruvada
  2022-02-22 16:18     ` srinivas pandruvada
  0 siblings, 1 reply; 7+ messages in thread
From: srinivas pandruvada @ 2022-02-22 15:42 UTC (permalink / raw)
  To: Rafael J. Wysocki, Chuansheng Liu; +Cc: Linux Kernel Mailing List, Zhang, Rui

On Tue, 2022-02-22 at 13:34 +0100, Rafael J. Wysocki wrote:
> Please resend this with a CC to linux-pm@vger.kernel.org.  Thanks!
> 
> On Tue, Feb 22, 2022 at 3:13 AM Chuansheng Liu
> <chuansheng.liu@intel.com> wrote:
> > 
> > It is easy to hit the below memory leaks in my TigerLake platform:
> > 
> > --
> > unreferenced object 0xffff927c8b91dbc0 (size 32):
> >   comm "kworker/0:2", pid 112, jiffies 4294893323 (age 83.604s)
> >   hex dump (first 32 bytes):
> >     4e 41 4d 45 3d 49 4e 54 33 34 30 30 20 54 68 65  NAME=INT3400
> > The
> >     72 6d 61 6c 00 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b a5 
> > rmal.kkkkkkkkkk.
> >   backtrace:
> >     [<ffffffff9c502c3e>] __kmalloc_track_caller+0x2fe/0x4a0
> >     [<ffffffff9c7b7c15>] kvasprintf+0x65/0xd0
> >     [<ffffffff9c7b7d6e>] kasprintf+0x4e/0x70
> >     [<ffffffffc04cb662>] int3400_notify+0x82/0x120
> > [int3400_thermal]
> >     [<ffffffff9c8b7358>] acpi_ev_notify_dispatch+0x54/0x71
> >     [<ffffffff9c88f1a7>] acpi_os_execute_deferred+0x17/0x30
> >     [<ffffffff9c2c2c0a>] process_one_work+0x21a/0x3f0
> >     [<ffffffff9c2c2e2a>] worker_thread+0x4a/0x3b0
> >     [<ffffffff9c2cb4dd>] kthread+0xfd/0x130
> >     [<ffffffff9c201c1f>] ret_from_fork+0x1f/0x30
> > ---
> > 
> > Fix it by calling kfree() accordingly.
> > 
> > Signed-off-by: Chuansheng Liu <chuansheng.liu@intel.com>
Please cc to stable

> > ---
> >  drivers/thermal/intel/int340x_thermal/int3400_thermal.c | 4 ++++
> >  1 file changed, 4 insertions(+)
> > 
> > diff --git
> > a/drivers/thermal/intel/int340x_thermal/int3400_thermal.c
> > b/drivers/thermal/intel/int340x_thermal/int3400_thermal.c
> > index 72acb1f61849..4f478812cb51 100644
> > --- a/drivers/thermal/intel/int340x_thermal/int3400_thermal.c
> > +++ b/drivers/thermal/intel/int340x_thermal/int3400_thermal.c
> > @@ -404,6 +404,10 @@ static void int3400_notify(acpi_handle handle,
> >         thermal_prop[3] = kasprintf(GFP_KERNEL, "EVENT=%d",
> > therm_event);
> >         thermal_prop[4] = NULL;
> >         kobject_uevent_env(&priv->thermal->device.kobj,
> > KOBJ_CHANGE, thermal_prop);
> > +       kfree(thermal_prop[0]);
> > +       kfree(thermal_prop[1]);
> > +       kfree(thermal_prop[2]);
> > +       kfree(thermal_prop[3]);
> >  }
> > 
> >  static int int3400_thermal_get_temp(struct thermal_zone_device
> > *thermal,
> > --
> > 2.25.0.rc2
> > 


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

* Re: [PATCH] thermal: int340x: fix memory leak in int3400_notify()
  2022-02-22 15:42   ` srinivas pandruvada
@ 2022-02-22 16:18     ` srinivas pandruvada
  0 siblings, 0 replies; 7+ messages in thread
From: srinivas pandruvada @ 2022-02-22 16:18 UTC (permalink / raw)
  To: Rafael J. Wysocki, Chuansheng Liu; +Cc: Linux Kernel Mailing List, Zhang, Rui

On Tue, 2022-02-22 at 07:42 -0800, srinivas pandruvada wrote:
> On Tue, 2022-02-22 at 13:34 +0100, Rafael J. Wysocki wrote:
> > Please resend this with a CC to linux-pm@vger.kernel.org.  Thanks!
> > 
> > On Tue, Feb 22, 2022 at 3:13 AM Chuansheng Liu
> > <chuansheng.liu@intel.com> wrote:
> > > 
> > > It is easy to hit the below memory leaks in my TigerLake
> > > platform:
> > > 
> > > --
> > > unreferenced object 0xffff927c8b91dbc0 (size 32):
> > >   comm "kworker/0:2", pid 112, jiffies 4294893323 (age 83.604s)
> > >   hex dump (first 32 bytes):
> > >     4e 41 4d 45 3d 49 4e 54 33 34 30 30 20 54 68 65  NAME=INT3400
> > > The
> > >     72 6d 61 6c 00 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b a5 
> > > rmal.kkkkkkkkkk.
> > >   backtrace:
> > >     [<ffffffff9c502c3e>] __kmalloc_track_caller+0x2fe/0x4a0
> > >     [<ffffffff9c7b7c15>] kvasprintf+0x65/0xd0
> > >     [<ffffffff9c7b7d6e>] kasprintf+0x4e/0x70
> > >     [<ffffffffc04cb662>] int3400_notify+0x82/0x120
> > > [int3400_thermal]
> > >     [<ffffffff9c8b7358>] acpi_ev_notify_dispatch+0x54/0x71
> > >     [<ffffffff9c88f1a7>] acpi_os_execute_deferred+0x17/0x30
> > >     [<ffffffff9c2c2c0a>] process_one_work+0x21a/0x3f0
> > >     [<ffffffff9c2c2e2a>] worker_thread+0x4a/0x3b0
> > >     [<ffffffff9c2cb4dd>] kthread+0xfd/0x130
> > >     [<ffffffff9c201c1f>] ret_from_fork+0x1f/0x30
> > > ---
> > > 
> > > Fix it by calling kfree() accordingly.
> > > 
> > > Signed-off-by: Chuansheng Liu <chuansheng.liu@intel.com>
> Please cc to stable
Also
Fixes: 38e44da59130 ("thermal: int3400_thermal: process "thermal table
changed" event")

> 
> > > ---
> > >  drivers/thermal/intel/int340x_thermal/int3400_thermal.c | 4 ++++
> > >  1 file changed, 4 insertions(+)
> > > 
> > > diff --git
> > > a/drivers/thermal/intel/int340x_thermal/int3400_thermal.c
> > > b/drivers/thermal/intel/int340x_thermal/int3400_thermal.c
> > > index 72acb1f61849..4f478812cb51 100644
> > > --- a/drivers/thermal/intel/int340x_thermal/int3400_thermal.c
> > > +++ b/drivers/thermal/intel/int340x_thermal/int3400_thermal.c
> > > @@ -404,6 +404,10 @@ static void int3400_notify(acpi_handle
> > > handle,
> > >         thermal_prop[3] = kasprintf(GFP_KERNEL, "EVENT=%d",
> > > therm_event);
> > >         thermal_prop[4] = NULL;
> > >         kobject_uevent_env(&priv->thermal->device.kobj,
> > > KOBJ_CHANGE, thermal_prop);
> > > +       kfree(thermal_prop[0]);
> > > +       kfree(thermal_prop[1]);
> > > +       kfree(thermal_prop[2]);
> > > +       kfree(thermal_prop[3]);
> > >  }
> > > 
> > >  static int int3400_thermal_get_temp(struct thermal_zone_device
> > > *thermal,
> > > --
> > > 2.25.0.rc2
> > > 
> 


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

* Re: [PATCH] thermal: int340x: fix memory leak in int3400_notify()
  2022-02-24 19:16 ` Rafael J. Wysocki
@ 2022-02-24 20:15   ` srinivas pandruvada
  0 siblings, 0 replies; 7+ messages in thread
From: srinivas pandruvada @ 2022-02-24 20:15 UTC (permalink / raw)
  To: Rafael J. Wysocki, Chuansheng Liu; +Cc: Linux Kernel Mailing List, Linux PM

On Thu, 2022-02-24 at 20:16 +0100, Rafael J. Wysocki wrote:
> On Wed, Feb 23, 2022 at 1:33 AM Chuansheng Liu
> <chuansheng.liu@intel.com> wrote:
> > 
> > It is easy to hit the below memory leaks in my TigerLake platform:
> > 
> > --
> > unreferenced object 0xffff927c8b91dbc0 (size 32):
> >   comm "kworker/0:2", pid 112, jiffies 4294893323 (age 83.604s)
> >   hex dump (first 32 bytes):
> >     4e 41 4d 45 3d 49 4e 54 33 34 30 30 20 54 68 65  NAME=INT3400
> > The
> >     72 6d 61 6c 00 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b a5 
> > rmal.kkkkkkkkkk.
> >   backtrace:
> >     [<ffffffff9c502c3e>] __kmalloc_track_caller+0x2fe/0x4a0
> >     [<ffffffff9c7b7c15>] kvasprintf+0x65/0xd0
> >     [<ffffffff9c7b7d6e>] kasprintf+0x4e/0x70
> >     [<ffffffffc04cb662>] int3400_notify+0x82/0x120
> > [int3400_thermal]
> >     [<ffffffff9c8b7358>] acpi_ev_notify_dispatch+0x54/0x71
> >     [<ffffffff9c88f1a7>] acpi_os_execute_deferred+0x17/0x30
> >     [<ffffffff9c2c2c0a>] process_one_work+0x21a/0x3f0
> >     [<ffffffff9c2c2e2a>] worker_thread+0x4a/0x3b0
> >     [<ffffffff9c2cb4dd>] kthread+0xfd/0x130
> >     [<ffffffff9c201c1f>] ret_from_fork+0x1f/0x30
> > ---
> > 
> > Fix it by calling kfree() accordingly.
> > 
> > Fixes: 38e44da59130 ("thermal: int3400_thermal: process "thermal
> > table
> > changed" event")
> > 
> > Cc: linux-pm@vger.kernel.org
> > Cc: stable@vger.kernel.org
> > Cc: rafael@kernel.org
> > Cc: srinivas.pandruvada@linux.intel.com
> > Signed-off-by: Chuansheng Liu <chuansheng.liu@intel.com>
> 
> Applied as a fix for 5.17-rc, thanks!
> 
> Srinivas, any concerns?
None.

Thanks,
Srinivas

> 
> > ---
> >  drivers/thermal/intel/int340x_thermal/int3400_thermal.c | 4 ++++
> >  1 file changed, 4 insertions(+)
> > 
> > diff --git
> > a/drivers/thermal/intel/int340x_thermal/int3400_thermal.c
> > b/drivers/thermal/intel/int340x_thermal/int3400_thermal.c
> > index 72acb1f61849..4f478812cb51 100644
> > --- a/drivers/thermal/intel/int340x_thermal/int3400_thermal.c
> > +++ b/drivers/thermal/intel/int340x_thermal/int3400_thermal.c
> > @@ -404,6 +404,10 @@ static void int3400_notify(acpi_handle handle,
> >         thermal_prop[3] = kasprintf(GFP_KERNEL, "EVENT=%d",
> > therm_event);
> >         thermal_prop[4] = NULL;
> >         kobject_uevent_env(&priv->thermal->device.kobj,
> > KOBJ_CHANGE, thermal_prop);
> > +       kfree(thermal_prop[0]);
> > +       kfree(thermal_prop[1]);
> > +       kfree(thermal_prop[2]);
> > +       kfree(thermal_prop[3]);
> >  }
> > 
> >  static int int3400_thermal_get_temp(struct thermal_zone_device
> > *thermal,
> > --
> > 2.25.0.rc2
> > 


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

* Re: [PATCH] thermal: int340x: fix memory leak in int3400_notify()
  2022-02-23  0:20 Chuansheng Liu
@ 2022-02-24 19:16 ` Rafael J. Wysocki
  2022-02-24 20:15   ` srinivas pandruvada
  0 siblings, 1 reply; 7+ messages in thread
From: Rafael J. Wysocki @ 2022-02-24 19:16 UTC (permalink / raw)
  To: Chuansheng Liu, Srinivas Pandruvada
  Cc: Linux Kernel Mailing List, Linux PM, Rafael J. Wysocki

On Wed, Feb 23, 2022 at 1:33 AM Chuansheng Liu <chuansheng.liu@intel.com> wrote:
>
> It is easy to hit the below memory leaks in my TigerLake platform:
>
> --
> unreferenced object 0xffff927c8b91dbc0 (size 32):
>   comm "kworker/0:2", pid 112, jiffies 4294893323 (age 83.604s)
>   hex dump (first 32 bytes):
>     4e 41 4d 45 3d 49 4e 54 33 34 30 30 20 54 68 65  NAME=INT3400 The
>     72 6d 61 6c 00 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b a5  rmal.kkkkkkkkkk.
>   backtrace:
>     [<ffffffff9c502c3e>] __kmalloc_track_caller+0x2fe/0x4a0
>     [<ffffffff9c7b7c15>] kvasprintf+0x65/0xd0
>     [<ffffffff9c7b7d6e>] kasprintf+0x4e/0x70
>     [<ffffffffc04cb662>] int3400_notify+0x82/0x120 [int3400_thermal]
>     [<ffffffff9c8b7358>] acpi_ev_notify_dispatch+0x54/0x71
>     [<ffffffff9c88f1a7>] acpi_os_execute_deferred+0x17/0x30
>     [<ffffffff9c2c2c0a>] process_one_work+0x21a/0x3f0
>     [<ffffffff9c2c2e2a>] worker_thread+0x4a/0x3b0
>     [<ffffffff9c2cb4dd>] kthread+0xfd/0x130
>     [<ffffffff9c201c1f>] ret_from_fork+0x1f/0x30
> ---
>
> Fix it by calling kfree() accordingly.
>
> Fixes: 38e44da59130 ("thermal: int3400_thermal: process "thermal table
> changed" event")
>
> Cc: linux-pm@vger.kernel.org
> Cc: stable@vger.kernel.org
> Cc: rafael@kernel.org
> Cc: srinivas.pandruvada@linux.intel.com
> Signed-off-by: Chuansheng Liu <chuansheng.liu@intel.com>

Applied as a fix for 5.17-rc, thanks!

Srinivas, any concerns?

> ---
>  drivers/thermal/intel/int340x_thermal/int3400_thermal.c | 4 ++++
>  1 file changed, 4 insertions(+)
>
> diff --git a/drivers/thermal/intel/int340x_thermal/int3400_thermal.c b/drivers/thermal/intel/int340x_thermal/int3400_thermal.c
> index 72acb1f61849..4f478812cb51 100644
> --- a/drivers/thermal/intel/int340x_thermal/int3400_thermal.c
> +++ b/drivers/thermal/intel/int340x_thermal/int3400_thermal.c
> @@ -404,6 +404,10 @@ static void int3400_notify(acpi_handle handle,
>         thermal_prop[3] = kasprintf(GFP_KERNEL, "EVENT=%d", therm_event);
>         thermal_prop[4] = NULL;
>         kobject_uevent_env(&priv->thermal->device.kobj, KOBJ_CHANGE, thermal_prop);
> +       kfree(thermal_prop[0]);
> +       kfree(thermal_prop[1]);
> +       kfree(thermal_prop[2]);
> +       kfree(thermal_prop[3]);
>  }
>
>  static int int3400_thermal_get_temp(struct thermal_zone_device *thermal,
> --
> 2.25.0.rc2
>

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

* [PATCH] thermal: int340x: fix memory leak in int3400_notify()
@ 2022-02-23  0:20 Chuansheng Liu
  2022-02-24 19:16 ` Rafael J. Wysocki
  0 siblings, 1 reply; 7+ messages in thread
From: Chuansheng Liu @ 2022-02-23  0:20 UTC (permalink / raw)
  To: linux-kernel; +Cc: linux-pm, stable, rafael, srinivas.pandruvada

It is easy to hit the below memory leaks in my TigerLake platform:

--
unreferenced object 0xffff927c8b91dbc0 (size 32):
  comm "kworker/0:2", pid 112, jiffies 4294893323 (age 83.604s)
  hex dump (first 32 bytes):
    4e 41 4d 45 3d 49 4e 54 33 34 30 30 20 54 68 65  NAME=INT3400 The
    72 6d 61 6c 00 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b a5  rmal.kkkkkkkkkk.
  backtrace:
    [<ffffffff9c502c3e>] __kmalloc_track_caller+0x2fe/0x4a0
    [<ffffffff9c7b7c15>] kvasprintf+0x65/0xd0
    [<ffffffff9c7b7d6e>] kasprintf+0x4e/0x70
    [<ffffffffc04cb662>] int3400_notify+0x82/0x120 [int3400_thermal]
    [<ffffffff9c8b7358>] acpi_ev_notify_dispatch+0x54/0x71
    [<ffffffff9c88f1a7>] acpi_os_execute_deferred+0x17/0x30
    [<ffffffff9c2c2c0a>] process_one_work+0x21a/0x3f0
    [<ffffffff9c2c2e2a>] worker_thread+0x4a/0x3b0
    [<ffffffff9c2cb4dd>] kthread+0xfd/0x130
    [<ffffffff9c201c1f>] ret_from_fork+0x1f/0x30
---

Fix it by calling kfree() accordingly.

Fixes: 38e44da59130 ("thermal: int3400_thermal: process "thermal table
changed" event")

Cc: linux-pm@vger.kernel.org
Cc: stable@vger.kernel.org
Cc: rafael@kernel.org
Cc: srinivas.pandruvada@linux.intel.com
Signed-off-by: Chuansheng Liu <chuansheng.liu@intel.com>
---
 drivers/thermal/intel/int340x_thermal/int3400_thermal.c | 4 ++++
 1 file changed, 4 insertions(+)

diff --git a/drivers/thermal/intel/int340x_thermal/int3400_thermal.c b/drivers/thermal/intel/int340x_thermal/int3400_thermal.c
index 72acb1f61849..4f478812cb51 100644
--- a/drivers/thermal/intel/int340x_thermal/int3400_thermal.c
+++ b/drivers/thermal/intel/int340x_thermal/int3400_thermal.c
@@ -404,6 +404,10 @@ static void int3400_notify(acpi_handle handle,
 	thermal_prop[3] = kasprintf(GFP_KERNEL, "EVENT=%d", therm_event);
 	thermal_prop[4] = NULL;
 	kobject_uevent_env(&priv->thermal->device.kobj, KOBJ_CHANGE, thermal_prop);
+	kfree(thermal_prop[0]);
+	kfree(thermal_prop[1]);
+	kfree(thermal_prop[2]);
+	kfree(thermal_prop[3]);
 }
 
 static int int3400_thermal_get_temp(struct thermal_zone_device *thermal,
-- 
2.25.0.rc2


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

end of thread, other threads:[~2022-02-24 20:15 UTC | newest]

Thread overview: 7+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-02-22  2:00 [PATCH] thermal: int340x: fix memory leak in int3400_notify() Chuansheng Liu
2022-02-22 12:34 ` Rafael J. Wysocki
2022-02-22 15:42   ` srinivas pandruvada
2022-02-22 16:18     ` srinivas pandruvada
2022-02-23  0:20 Chuansheng Liu
2022-02-24 19:16 ` Rafael J. Wysocki
2022-02-24 20:15   ` srinivas pandruvada

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).