git: e4d7f82bf50a - stable/13 - ACPI: change arguments to internal acpi_find_dsd()

From: Bjoern A. Zeeb <bz_at_FreeBSD.org>
Date: Mon, 18 Jul 2022 09:50:04 UTC
The branch stable/13 has been updated by bz:

URL: https://cgit.FreeBSD.org/src/commit/?id=e4d7f82bf50ae5954e59e63a8bf423b6727a7884

commit e4d7f82bf50ae5954e59e63a8bf423b6727a7884
Author:     Bjoern A. Zeeb <bz@FreeBSD.org>
AuthorDate: 2022-06-23 00:17:14 +0000
Commit:     Bjoern A. Zeeb <bz@FreeBSD.org>
CommitDate: 2022-07-18 00:43:32 +0000

    ACPI: change arguments to internal acpi_find_dsd()
    
    acpi_find_dsd() is not a bus function and we only need the acpi_device (ad).
    The only caller has already looked up the ad (from ivars) for us.
    Directly pass the ad to acpi_find_dsd() instead of bus, dev and remove
    the extra call to device_get_ivars(); the changed argument also means we
    now call AcpiEvaluateObject directly on the handle.
    
    This optimisation was done a while ago while debugging a driver which
    ended up with a bad bus, dev combination making the old version fail.
    
    Reviewed by:    mw
    Differential Revision: https://reviews.freebsd.org/D35558
    
    (cherry picked from commit 945eaca155fc0d48da8d11fc41b8b00f17254d90)
---
 sys/dev/acpica/acpi.c | 10 ++++------
 1 file changed, 4 insertions(+), 6 deletions(-)

diff --git a/sys/dev/acpica/acpi.c b/sys/dev/acpica/acpi.c
index 70e196399e0f..9005448ddee9 100644
--- a/sys/dev/acpica/acpi.c
+++ b/sys/dev/acpica/acpi.c
@@ -156,7 +156,7 @@ static ACPI_STATUS acpi_device_scan_cb(ACPI_HANDLE h, UINT32 level,
 		    void *context, void **retval);
 static ACPI_STATUS acpi_device_scan_children(device_t bus, device_t dev,
 		    int max_depth, acpi_scan_cb_t user_fn, void *arg);
-static ACPI_STATUS acpi_find_dsd(device_t bus, device_t dev);
+static ACPI_STATUS acpi_find_dsd(struct acpi_device *ad);
 static int	acpi_isa_pnp_probe(device_t bus, device_t child,
 		    struct isa_pnp_id *ids);
 static void	acpi_platform_osc(device_t dev);
@@ -1765,7 +1765,7 @@ acpi_device_get_prop(device_t bus, device_t dev, ACPI_STRING propname,
 		return (AE_BAD_PARAMETER);
 	if (ad->dsd_pkg == NULL) {
 		if (ad->dsd.Pointer == NULL) {
-			status = acpi_find_dsd(bus, dev);
+			status = acpi_find_dsd(ad);
 			if (ACPI_FAILURE(status))
 				return (status);
 		} else {
@@ -1794,18 +1794,16 @@ acpi_device_get_prop(device_t bus, device_t dev, ACPI_STRING propname,
 }
 
 static ACPI_STATUS
-acpi_find_dsd(device_t bus, device_t dev)
+acpi_find_dsd(struct acpi_device *ad)
 {
 	const ACPI_OBJECT *dsd, *guid, *pkg;
-	struct acpi_device *ad;
 	ACPI_STATUS status;
 
-	ad = device_get_ivars(dev);
 	ad->dsd.Length = ACPI_ALLOCATE_BUFFER;
 	ad->dsd.Pointer = NULL;
 	ad->dsd_pkg = NULL;
 
-	status = ACPI_EVALUATE_OBJECT(bus, dev, "_DSD", NULL, &ad->dsd);
+	status = AcpiEvaluateObject(ad->ad_handle, "_DSD", NULL, &ad->dsd);
 	if (ACPI_FAILURE(status))
 		return (status);