* [v2] cpufreq: amd-pstate: fix the memory to free after epp exist
@ 2024-05-14 6:43 zhida312
2024-05-14 8:24 ` Yuan, Perry
0 siblings, 1 reply; 3+ messages in thread
From: zhida312 @ 2024-05-14 6:43 UTC (permalink / raw)
To: rafael, viresh.kumar
Cc: andypma, Huang Rui, Gautham R. Shenoy, Mario Limonciello,
Perry Yuan, linux-pm, linux-kernel
From: andypma <andypma.tencent.com>
the cpudata memory from kzmalloc in epp init function is
not free after epp exist, so we should free it.
Signed-off-by: andypma <andypma@tencent.com>
Changes since v1:
check whether it is empty before releasing.
set driver_data is NULL after free.
---
drivers/cpufreq/amd-pstate.c | 7 +++++++
1 file changed, 7 insertions(+)
diff --git a/drivers/cpufreq/amd-pstate.c b/drivers/cpufreq/amd-pstate.c
index 6a342b0c0140..e100c5b6c9b2 100644
--- a/drivers/cpufreq/amd-pstate.c
+++ b/drivers/cpufreq/amd-pstate.c
@@ -1441,6 +1441,13 @@ static int amd_pstate_epp_cpu_init(struct cpufreq_policy *policy)
static int amd_pstate_epp_cpu_exit(struct cpufreq_policy *policy)
{
+ struct amd_cpudata *cpudata = policy->driver_data;
+
+ if(cpudata) {
+ kfree(cpudata);
+ policy->driver_data = NULL;
+ }
+
pr_debug("CPU %d exiting\n", policy->cpu);
return 0;
}
--
2.33.0
^ permalink raw reply related [flat|nested] 3+ messages in thread
* RE: [v2] cpufreq: amd-pstate: fix the memory to free after epp exist
2024-05-14 6:43 [v2] cpufreq: amd-pstate: fix the memory to free after epp exist zhida312
@ 2024-05-14 8:24 ` Yuan, Perry
2024-05-14 8:30 ` Limonciello, Mario
0 siblings, 1 reply; 3+ messages in thread
From: Yuan, Perry @ 2024-05-14 8:24 UTC (permalink / raw)
To: zhida312@outlook.com
Cc: andypma, Huang, Ray, Shenoy, Gautham Ranjal, Limonciello, Mario,
linux-pm@vger.kernel.org, linux-kernel@vger.kernel.org,
viresh.kumar@linaro.org, rafael@kernel.org
[AMD Official Use Only - AMD Internal Distribution Only]
> -----Original Message-----
> From: zhida312@outlook.com <zhida312@outlook.com>
> Sent: Tuesday, May 14, 2024 2:43 PM
> To: rafael@kernel.org; viresh.kumar@linaro.org
> Cc: andypma <andypma@tencent.com>; Huang, Ray
> <Ray.Huang@amd.com>; Shenoy, Gautham Ranjal
> <gautham.shenoy@amd.com>; Limonciello, Mario
> <Mario.Limonciello@amd.com>; Yuan, Perry <Perry.Yuan@amd.com>; linux-
> pm@vger.kernel.org; linux-kernel@vger.kernel.org
> Subject: [v2] cpufreq: amd-pstate: fix the memory to free after epp exist
>
> From: andypma <andypma.tencent.com>
>
> the cpudata memory from kzmalloc in epp init function is not free after epp
> exist, so we should free it.
>
> Signed-off-by: andypma <andypma@tencent.com>
Looks like you need to fix the format of the `Signed-off-by` line in your commit, you need to ensure that it follows the correct format of including your full name and email address. Here's how you can fix it:
Signed-off-by: Your Full Name <your_email@example.com>
So maybe you want to change like this.
Signed-off-by: Andy Pma <andypma@tencent.com>
Perry.
>
> Changes since v1:
> check whether it is empty before releasing.
> set driver_data is NULL after free.
> ---
> drivers/cpufreq/amd-pstate.c | 7 +++++++
> 1 file changed, 7 insertions(+)
>
> diff --git a/drivers/cpufreq/amd-pstate.c b/drivers/cpufreq/amd-pstate.c
> index 6a342b0c0140..e100c5b6c9b2 100644
> --- a/drivers/cpufreq/amd-pstate.c
> +++ b/drivers/cpufreq/amd-pstate.c
> @@ -1441,6 +1441,13 @@ static int amd_pstate_epp_cpu_init(struct
> cpufreq_policy *policy)
>
> static int amd_pstate_epp_cpu_exit(struct cpufreq_policy *policy) {
> + struct amd_cpudata *cpudata = policy->driver_data;
> +
> + if(cpudata) {
> + kfree(cpudata);
> + policy->driver_data = NULL;
> + }
> +
> pr_debug("CPU %d exiting\n", policy->cpu);
> return 0;
> }
> --
> 2.33.0
^ permalink raw reply [flat|nested] 3+ messages in thread
* Re: [v2] cpufreq: amd-pstate: fix the memory to free after epp exist
2024-05-14 8:24 ` Yuan, Perry
@ 2024-05-14 8:30 ` Limonciello, Mario
0 siblings, 0 replies; 3+ messages in thread
From: Limonciello, Mario @ 2024-05-14 8:30 UTC (permalink / raw)
To: Yuan, Perry, zhida312@outlook.com
Cc: andypma, Huang, Ray, Shenoy, Gautham Ranjal,
linux-pm@vger.kernel.org, linux-kernel@vger.kernel.org,
viresh.kumar@linaro.org, rafael@kernel.org
On 5/14/2024 3:24 AM, Yuan, Perry wrote:
> [AMD Official Use Only - AMD Internal Distribution Only]
>
>> -----Original Message-----
>> From: zhida312@outlook.com <zhida312@outlook.com>
>> Sent: Tuesday, May 14, 2024 2:43 PM
>> To: rafael@kernel.org; viresh.kumar@linaro.org
>> Cc: andypma <andypma@tencent.com>; Huang, Ray
>> <Ray.Huang@amd.com>; Shenoy, Gautham Ranjal
>> <gautham.shenoy@amd.com>; Limonciello, Mario
>> <Mario.Limonciello@amd.com>; Yuan, Perry <Perry.Yuan@amd.com>; linux-
>> pm@vger.kernel.org; linux-kernel@vger.kernel.org
>> Subject: [v2] cpufreq: amd-pstate: fix the memory to free after epp exist
>>
>> From: andypma <andypma.tencent.com>
>>
>> the cpudata memory from kzmalloc in epp init function is not free after epp
>> exist, so we should free it.
>>
>> Signed-off-by: andypma <andypma@tencent.com>
>
> Looks like you need to fix the format of the `Signed-off-by` line in your commit, you need to ensure that it follows the correct format of including your full name and email address. Here's how you can fix it:
>
> Signed-off-by: Your Full Name <your_email@example.com>
>
> So maybe you want to change like this.
> Signed-off-by: Andy Pma <andypma@tencent.com>
>
> Perry.
>
>>
>> Changes since v1:
>> check whether it is empty before releasing.
>> set driver_data is NULL after free.
>> ---
>> drivers/cpufreq/amd-pstate.c | 7 +++++++
>> 1 file changed, 7 insertions(+)
>>
>> diff --git a/drivers/cpufreq/amd-pstate.c b/drivers/cpufreq/amd-pstate.c
>> index 6a342b0c0140..e100c5b6c9b2 100644
>> --- a/drivers/cpufreq/amd-pstate.c
>> +++ b/drivers/cpufreq/amd-pstate.c
>> @@ -1441,6 +1441,13 @@ static int amd_pstate_epp_cpu_init(struct
>> cpufreq_policy *policy)
>>
>> static int amd_pstate_epp_cpu_exit(struct cpufreq_policy *policy) {
>> + struct amd_cpudata *cpudata = policy->driver_data;
>> +
>> + if(cpudata) {
You want a space after the if
But isn't it safe to call kfree(cpudata) even if cpudata was already NULL?
>> + kfree(cpudata);
>> + policy->driver_data = NULL;
>> + }
>> +
>> pr_debug("CPU %d exiting\n", policy->cpu);
>> return 0;
>> }
>> --
>> 2.33.0
>
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2024-05-14 8:30 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-05-14 6:43 [v2] cpufreq: amd-pstate: fix the memory to free after epp exist zhida312
2024-05-14 8:24 ` Yuan, Perry
2024-05-14 8:30 ` Limonciello, Mario
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.