public inbox for linux-kernel@vger.kernel.org
 help / color / mirror / Atom feed
* [PATCH] media: ipu-bridge: Add missing acpi_dev_put() in ipu_bridge_get_ivsc_acpi_dev()
@ 2023-09-29  9:31 Geert Uytterhoeven
  2023-10-01  9:25 ` Andy Shevchenko
  0 siblings, 1 reply; 2+ messages in thread
From: Geert Uytterhoeven @ 2023-09-29  9:31 UTC (permalink / raw)
  To: Wentong Wu, Mauro Carvalho Chehab, Sakari Ailus, Andy Shevchenko
  Cc: linux-media, linux-kernel, Geert Uytterhoeven

In ipu_bridge_get_ivsc_acpi_dev(), the "ivsc_adev" acpi_device pointer
from the outer loop is handed over to the caller, which takes proper
care of its reference count.
However, the "consumer" acpi_device pointer from the inner loop is lost,
without decrementing its reference count.

Fix this by adding the missing call to acpi_dev_put().

Fixes: c66821f381aed2c7 ("media: pci: intel: Add IVSC support for IPU bridge driver")
Signed-off-by: Geert Uytterhoeven <geert+renesas@glider.be>
---
Compile-tested only.

This driver really likes nesting loops: the above inner loop is actually
5 levels deep, of which 3 levels use for_each_acpi_*().  And all of that
is done twice:

ipu_bridge_init
    ipu_bridge_ivsc_is_ready
        for (i = 0; i < ARRAY_SIZE(ipu_supported_sensors); i++)
            for_each_acpi_dev_match(sensor_adev, cfg->hid, NULL, -1)
                for (i = 0; i < ARRAY_SIZE(ivsc_acpi_ids); i++)
                    for_each_acpi_dev_match(ivsc_adev, acpi_id->id, NULL, -1)
                        for_each_acpi_consumer_dev(ivsc_adev, consumer)

    ipu_bridge_connect_sensors
        for (i = 0; i < ARRAY_SIZE(ipu_supported_sensors); i++)
                for_each_acpi_dev_match(adev, cfg->hid, NULL, -1)
                    for (i = 0; i < ARRAY_SIZE(ivsc_acpi_ids); i++)
                        for_each_acpi_dev_match(ivsc_adev, acpi_id->id, NULL, -1)
                            for_each_acpi_consumer_dev(ivsc_adev, consumer)
---
 drivers/media/pci/intel/ipu-bridge.c | 4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

diff --git a/drivers/media/pci/intel/ipu-bridge.c b/drivers/media/pci/intel/ipu-bridge.c
index 1bde8b6e0b1121a8..e38198e259c03ce9 100644
--- a/drivers/media/pci/intel/ipu-bridge.c
+++ b/drivers/media/pci/intel/ipu-bridge.c
@@ -107,8 +107,10 @@ static struct acpi_device *ipu_bridge_get_ivsc_acpi_dev(struct acpi_device *adev
 		for_each_acpi_dev_match(ivsc_adev, acpi_id->id, NULL, -1)
 			/* camera sensor depends on IVSC in DSDT if exist */
 			for_each_acpi_consumer_dev(ivsc_adev, consumer)
-				if (consumer->handle == handle)
+				if (consumer->handle == handle) {
+					acpi_dev_put(consumer);
 					return ivsc_adev;
+				}
 	}
 
 	return NULL;
-- 
2.34.1


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

end of thread, other threads:[~2023-10-01  9:26 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2023-09-29  9:31 [PATCH] media: ipu-bridge: Add missing acpi_dev_put() in ipu_bridge_get_ivsc_acpi_dev() Geert Uytterhoeven
2023-10-01  9:25 ` Andy Shevchenko

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