mirror of https://lore.kernel.org/lkml/
 help / color / mirror / Atom feed
* [PATCH v4] cpufreq: amd-pstate: fix the memory to free after epp exist
@ 2024-05-16  6:30 zhida312
  2024-05-16  7:47 ` Limonciello, Mario
  2024-05-16  8:28 ` Yuan, Perry
  0 siblings, 2 replies; 5+ messages in thread
From: zhida312 @ 2024-05-16  6:30 UTC (permalink / raw)
  To: rafael, viresh.kumar
  Cc: Peng Ma, 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: Peng Ma <andypma@tencent.com>

Changes from v3 to v4:
	update subject used git command "git format-patch -1 -v x"

Changes from v2 to v3:
	update Signed-off-by to Peng Ma <andypma@tencent.com>.
	set a space between if and "(".

Changes from v1 to v2:
	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..1b7e82a0ad2e 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.41.0


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

end of thread, other threads:[~2024-05-16  8:42 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2024-05-16  6:30 [PATCH v4] cpufreq: amd-pstate: fix the memory to free after epp exist zhida312
2024-05-16  7:47 ` Limonciello, Mario
2024-05-16  8:23   ` Rafael J. Wysocki
2024-05-16  8:28 ` Yuan, Perry
2024-05-16  8:42   ` Rafael J. Wysocki

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

all inboxes | Powered by JetHome®