mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git
synced 2025-01-01 10:45:49 +00:00
ACPI: pfr_telemetry: use ACPI_FREE() to free acpi_object
[ Upstream commit0f2aa7fc2a
] acpi_evaluate_dsm_typed()/acpi_evaluate_dsm() should be coupled with ACPI_FREE() to free the ACPI memory, because we need to track the allocation of acpi_object when ACPI_DBG_TRACK_ALLOCATIONS enabled, so use ACPI_FREE() instead of kfree(). Fixes:b0013e037a
("ACPI: Introduce Platform Firmware Runtime Telemetry driver") Signed-off-by: Wang ShaoBo <bobo.shaobowang@huawei.com> Reviewed-by: Chen Yu <yu.c.chen@intel.com> Signed-off-by: Rafael J. Wysocki <rafael.j.wysocki@intel.com> Signed-off-by: Sasha Levin <sashal@kernel.org>
This commit is contained in:
parent
ba3ffb758c
commit
2497afa882
@ -144,7 +144,7 @@ static int get_pfrt_log_data_info(struct pfrt_log_data_info *data_info,
|
||||
ret = 0;
|
||||
|
||||
free_acpi_buffer:
|
||||
kfree(out_obj);
|
||||
ACPI_FREE(out_obj);
|
||||
|
||||
return ret;
|
||||
}
|
||||
@ -180,7 +180,7 @@ static int set_pfrt_log_level(int level, struct pfrt_log_device *pfrt_log_dev)
|
||||
ret = -EBUSY;
|
||||
}
|
||||
|
||||
kfree(out_obj);
|
||||
ACPI_FREE(out_obj);
|
||||
|
||||
return ret;
|
||||
}
|
||||
@ -218,7 +218,7 @@ static int get_pfrt_log_level(struct pfrt_log_device *pfrt_log_dev)
|
||||
ret = obj->integer.value;
|
||||
|
||||
free_acpi_buffer:
|
||||
kfree(out_obj);
|
||||
ACPI_FREE(out_obj);
|
||||
|
||||
return ret;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user