OSDN Git Service

perf: arm_dsu: Fix hotplug callback leak in dsu_pmu_init()
authorYuan Can <yuancan@huawei.com>
Tue, 15 Nov 2022 07:02:06 +0000 (07:02 +0000)
committerWill Deacon <will@kernel.org>
Tue, 15 Nov 2022 13:45:01 +0000 (13:45 +0000)
commitfacafab7611f7b872c6b9eeaff53461ef11f482e
tree1cfd4bc397f27d70aba4ee77a2af641e7d7e1e6c
parentf0c4d9fc9cc9462659728d168387191387e903cc
perf: arm_dsu: Fix hotplug callback leak in dsu_pmu_init()

dsu_pmu_init() won't remove the callback added by cpuhp_setup_state_multi()
when platform_driver_register() failed. Remove the callback by
cpuhp_remove_multi_state() in fail path.

Similar to the handling of arm_ccn_init() in commit 26242b330093 ("bus:
arm-ccn: Prevent hotplug callback leak")

Fixes: 7520fa99246d ("perf: ARM DynamIQ Shared Unit PMU support")
Signed-off-by: Yuan Can <yuancan@huawei.com>
Acked-by: Suzuki K Poulose <suzuki.poulose@arm.com>
Link: https://lore.kernel.org/r/20221115070207.32634-2-yuancan@huawei.com
Signed-off-by: Will Deacon <will@kernel.org>
drivers/perf/arm_dsu_pmu.c