Re: [PATCH v2] drm: bridge: cdns-mhdp8546: Fix PM reference leak in

2021-05-31 Thread Robert Foss
Added r-b tag and merged to drm-misc next. https://cgit.freedesktop.org/drm/drm-misc/log/?h=drm-misc-next Thanks for the submission, and sorry about making you jump through all those hoops. On Mon, 31 May 2021 at 15:47, Yu Kuai wrote: > > pm_runtime_get_sync will increment pm usage counter even

Re: [PATCH V2] drm: bridge: cdns-mhdp8546: Fix PM reference leak in cdns_mhdp_probe()

2021-05-31 Thread yukuai (C)
On 2021/05/31 18:54, Robert Foss wrote: Hey Yu, I'm not finding your this patch with the correct tags. I'd expect the subject: [PATCH v2] drm: bridge: cdns-mhdp8546: Fix PM reference leak in cdns_mhdp_probe() Can you please resubmit using this title, just to be sure I merge the rig

[PATCH v2] drm: bridge: cdns-mhdp8546: Fix PM reference leak in

2021-05-31 Thread Yu Kuai
pm_runtime_get_sync will increment pm usage counter even it failed. Forgetting to putting operation will result in reference leak here. Fix it by replacing it with pm_runtime_resume_and_get to keep usage counter balanced. Reported-by: Hulk Robot Signed-off-by: Yu Kuai --- changes in V2: - chang

Re: [PATCH V2] drm: bridge: cdns-mhdp8546: Fix PM reference leak in cdns_mhdp_probe()

2021-05-31 Thread Robert Foss
Hey Yu, I'm not finding your this patch with the correct tags. I'd expect the subject: [PATCH v2] drm: bridge: cdns-mhdp8546: Fix PM reference leak in cdns_mhdp_probe() Can you please resubmit using this title, just to be sure I merge the right version of this code. On Sat, 29 May 202

[PATCH V2] drm: bridge: cdns-mhdp8546: Fix PM reference leak in cdns_mhdp_probe()

2021-05-29 Thread Yu Kuai
pm_runtime_get_sync will increment pm usage counter even it failed. Forgetting to putting operation will result in reference leak here. Fix it by replacing it with pm_runtime_resume_and_get to keep usage counter balanced. Reported-by: Hulk Robot Signed-off-by: Yu Kuai --- changes in V2: - chang