mirror of https://lore.kernel.org/lkml/
 help / color / mirror / Atom feed
* [PATCH v1 1/2] regulator: core: Release coupled_rdevs on regulator_init_coupling() error
@ 2019-10-25  0:22 Dmitry Osipenko
  2019-10-25  0:22 ` [PATCH v1 2/2] regulator: core: Allow generic coupling only for always-on regulators Dmitry Osipenko
  2019-10-28 14:56 ` Applied "regulator: core: Release coupled_rdevs on regulator_init_coupling() error" " Mark Brown
  0 siblings, 2 replies; 4+ messages in thread
From: Dmitry Osipenko @ 2019-10-25  0:22 UTC (permalink / raw)
  To: Mark Brown; +Cc: linux-kernel

This patch fixes memory leak which should happen if regulator's coupling
fails to initialize.

Fixes: d8ca7d184b33 ("regulator: core: Introduce API for regulators coupling customization")
Signed-off-by: Dmitry Osipenko <digetx@gmail.com>
---
 drivers/regulator/core.c | 1 +
 1 file changed, 1 insertion(+)

diff --git a/drivers/regulator/core.c b/drivers/regulator/core.c
index a46be221dbdc..51ce280c1ce1 100644
--- a/drivers/regulator/core.c
+++ b/drivers/regulator/core.c
@@ -5198,6 +5198,7 @@ regulator_register(const struct regulator_desc *regulator_desc,
 	regulator_remove_coupling(rdev);
 	mutex_unlock(&regulator_list_mutex);
 wash:
+	kfree(rdev->coupling_desc.coupled_rdevs);
 	kfree(rdev->constraints);
 	mutex_lock(&regulator_list_mutex);
 	regulator_ena_gpio_free(rdev);
-- 
2.23.0


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

end of thread, other threads:[~2019-10-28 14:57 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2019-10-25  0:22 [PATCH v1 1/2] regulator: core: Release coupled_rdevs on regulator_init_coupling() error Dmitry Osipenko
2019-10-25  0:22 ` [PATCH v1 2/2] regulator: core: Allow generic coupling only for always-on regulators Dmitry Osipenko
2019-10-28 14:56   ` Applied "regulator: core: Allow generic coupling only for always-on regulators" to the regulator tree Mark Brown
2019-10-28 14:56 ` Applied "regulator: core: Release coupled_rdevs on regulator_init_coupling() error" " Mark Brown

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

Powered by JetHome