Patch "ACPI: pfr_telemetry: use ACPI_FREE() to free acpi_object" has been added to the 6.1-stable tree

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

 



This is a note to let you know that I've just added the patch titled

    ACPI: pfr_telemetry: use ACPI_FREE() to free acpi_object

to the 6.1-stable tree which can be found at:
    http://www.kernel.org/git/?p=linux/kernel/git/stable/stable-queue.git;a=summary

The filename of the patch is:
     acpi-pfr_telemetry-use-acpi_free-to-free-acpi_object.patch
and it can be found in the queue-6.1 subdirectory.

If you, or anyone else, feels it should not be added to the stable tree,
please let <stable@xxxxxxxxxxxxxxx> know about it.



commit 4cffd253dd92375eddd9ab77a5aea5fd7b49447c
Author: Wang ShaoBo <bobo.shaobowang@xxxxxxxxxx>
Date:   Fri Nov 18 14:32:18 2022 +0800

    ACPI: pfr_telemetry: use ACPI_FREE() to free acpi_object
    
    [ Upstream commit 0f2aa7fc2a9aee05bafb965d5b1638d3e74b4c61 ]
    
    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: b0013e037a8b ("ACPI: Introduce Platform Firmware Runtime Telemetry driver")
    Signed-off-by: Wang ShaoBo <bobo.shaobowang@xxxxxxxxxx>
    Reviewed-by: Chen Yu <yu.c.chen@xxxxxxxxx>
    Signed-off-by: Rafael J. Wysocki <rafael.j.wysocki@xxxxxxxxx>
    Signed-off-by: Sasha Levin <sashal@xxxxxxxxxx>

diff --git a/drivers/acpi/pfr_telemetry.c b/drivers/acpi/pfr_telemetry.c
index 9abf350bd7a5..27fb6cdad75f 100644
--- a/drivers/acpi/pfr_telemetry.c
+++ b/drivers/acpi/pfr_telemetry.c
@@ -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;
 }



[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Index of Archives]     [Linux USB Devel]     [Linux Audio Users]     [Yosemite News]     [Linux Kernel]     [Linux SCSI]

  Powered by Linux