]> git.ipfire.org Git - thirdparty/kernel/stable.git/commitdiff
slimbus: core: fix device reference leak on report present
authorJohan Hovold <johan@kernel.org>
Wed, 26 Nov 2025 14:53:26 +0000 (15:53 +0100)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Fri, 30 Jan 2026 09:27:39 +0000 (10:27 +0100)
commit 9391380eb91ea5ac792aae9273535c8da5b9aa01 upstream.

Slimbus devices can be allocated dynamically upon reception of
report-present messages.

Make sure to drop the reference taken when looking up already registered
devices.

Note that this requires taking an extra reference in case the device has
not yet been registered and has to be allocated.

Fixes: 46a2bb5a7f7e ("slimbus: core: Add slim controllers support")
Cc: stable@vger.kernel.org # 4.16
Signed-off-by: Johan Hovold <johan@kernel.org>
Link: https://patch.msgid.link/20251126145329.5022-4-johan@kernel.org
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/slimbus/core.c

index ef3f2a53075067faea3ae926d2a381ad6b0bfc0b..fdc099abd2cca08bb04b4bd6413e8c7367415a53 100644 (file)
@@ -378,6 +378,8 @@ struct slim_device *slim_get_device(struct slim_controller *ctrl,
                sbdev = slim_alloc_device(ctrl, e_addr, NULL);
                if (!sbdev)
                        return ERR_PTR(-ENOMEM);
+
+               get_device(&sbdev->dev);
        }
 
        return sbdev;
@@ -512,6 +514,7 @@ int slim_device_report_present(struct slim_controller *ctrl,
                ret = slim_device_alloc_laddr(sbdev, true);
        }
 
+       put_device(&sbdev->dev);
 out_put_rpm:
        pm_runtime_mark_last_busy(ctrl->dev);
        pm_runtime_put_autosuspend(ctrl->dev);