* [PATCH] regulator: ab8500 - fix the logic to remove already registered regulators in error path
@ 2010-08-14 13:44 Axel Lin
2010-08-14 14:34 ` Sundar R IYER
` (3 more replies)
0 siblings, 4 replies; 6+ messages in thread
From: Axel Lin @ 2010-08-14 13:44 UTC (permalink / raw)
To: linux-kernel; +Cc: Liam Girdwood, Mark Brown, Sundar R Iyer
In current implementation, ab8500_regulator_info[0].regulator is not
unregistered if the error happen at i > 0.
This patch fixes the resource leak and also improves the readability.
Signed-off-by: Axel Lin <axel.lin@gmail.com>
---
I think this change is better ( in readability ) than simply change "while (i > 0)" to "while (i >= 0)".
drivers/regulator/ab8500.c | 4 +---
1 files changed, 1 insertions(+), 3 deletions(-)
diff --git a/drivers/regulator/ab8500.c b/drivers/regulator/ab8500.c
index dc3f1a4..775688e 100644
--- a/drivers/regulator/ab8500.c
+++ b/drivers/regulator/ab8500.c
@@ -368,11 +368,9 @@ static __devinit int ab8500_regulator_probe(struct platform_device *pdev)
dev_err(&pdev->dev, "failed to register regulator %s\n",
info->desc.name);
/* when we fail, un-register all earlier regulators */
- i--;
- while (i > 0) {
+ while (--i >= 0) {
info = &ab8500_regulator_info[i];
regulator_unregister(info->regulator);
- i--;
}
return err;
}
--
1.7.0.4
^ permalink raw reply related [flat|nested] 6+ messages in thread
* RE: [PATCH] regulator: ab8500 - fix the logic to remove already registered regulators in error path
2010-08-14 13:44 [PATCH] regulator: ab8500 - fix the logic to remove already registered regulators in error path Axel Lin
@ 2010-08-14 14:34 ` Sundar R IYER
2010-08-15 12:03 ` Linus Walleij
2010-08-14 14:39 ` Sundar R IYER
` (2 subsequent siblings)
3 siblings, 1 reply; 6+ messages in thread
From: Sundar R IYER @ 2010-08-14 14:34 UTC (permalink / raw)
To: Axel Lin, linux-kernel; +Cc: Liam Girdwood, Mark Brown, Linus WALLEIJ
[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #1: Type: text/plain; charset="utf-8", Size: 1659 bytes --]
Thanx!
BTW, could you also include the AB3100 as well into this patch? I derived it from
the AB3100 implementation.
Linus, any comments?
Regards,
Sundar
>-----Original Message-----
>From: Axel Lin [mailto:axel.lin@gmail.com]
>Sent: Saturday, August 14, 2010 7:14 PM
>To: linux-kernel
>Cc: Liam Girdwood; Mark Brown; Sundar R IYER
>Subject: [PATCH] regulator: ab8500 - fix the logic to remove already registered
>regulators in error path
>
>In current implementation, ab8500_regulator_info[0].regulator is not
>unregistered if the error happen at i > 0.
>
>This patch fixes the resource leak and also improves the readability.
>
>Signed-off-by: Axel Lin <axel.lin@gmail.com>
>---
>I think this change is better ( in readability ) than simply change "while (i > 0)" to
>"while (i >= 0)".
>
> drivers/regulator/ab8500.c | 4 +---
> 1 files changed, 1 insertions(+), 3 deletions(-)
>
>diff --git a/drivers/regulator/ab8500.c b/drivers/regulator/ab8500.c
>index dc3f1a4..775688e 100644
>--- a/drivers/regulator/ab8500.c
>+++ b/drivers/regulator/ab8500.c
>@@ -368,11 +368,9 @@ static __devinit int ab8500_regulator_probe(struct
>platform_device *pdev)
> dev_err(&pdev->dev, "failed to register regulator %s\n",
> info->desc.name);
> /* when we fail, un-register all earlier regulators */
>- i--;
>- while (i > 0) {
>+ while (--i >= 0) {
> info = &ab8500_regulator_info[i];
> regulator_unregister(info->regulator);
>- i--;
> }
> return err;
> }
>--
>1.7.0.4
>
>
ÿôèº{.nÇ+·®+%Ëÿ±éݶ\x17¥wÿº{.nÇ+·¥{±þG«éÿ{ayº\x1dÊÚë,j\a¢f£¢·hïêÿêçz_è®\x03(éÝ¢j"ú\x1a¶^[m§ÿÿ¾\a«þG«éÿ¢¸?¨èÚ&£ø§~á¶iOæ¬z·vØ^\x14\x04\x1a¶^[m§ÿÿÃ\fÿ¶ìÿ¢¸?I¥
^ permalink raw reply [flat|nested] 6+ messages in thread
* RE: [PATCH] regulator: ab8500 - fix the logic to remove already registered regulators in error path
2010-08-14 13:44 [PATCH] regulator: ab8500 - fix the logic to remove already registered regulators in error path Axel Lin
2010-08-14 14:34 ` Sundar R IYER
@ 2010-08-14 14:39 ` Sundar R IYER
2010-08-15 13:47 ` Mark Brown
2010-08-18 13:29 ` Liam Girdwood
3 siblings, 0 replies; 6+ messages in thread
From: Sundar R IYER @ 2010-08-14 14:39 UTC (permalink / raw)
To: Axel Lin, linux-kernel; +Cc: Liam Girdwood, Mark Brown, Linus WALLEIJ
[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #1: Type: text/plain; charset="utf-8", Size: 2172 bytes --]
Oops, I didnât see the below patch.
[PATCH] regulator: ab3100 - fix the logic to remove already registered regulators in error path
Sorry for the inconvenience!
Cheers!
Sundar
>-----Original Message-----
>From: Sundar R IYER
>Sent: Saturday, August 14, 2010 8:05 PM
>To: 'Axel Lin'; linux-kernel
>Cc: Liam Girdwood; Mark Brown; Linus WALLEIJ
>Subject: RE: [PATCH] regulator: ab8500 - fix the logic to remove already registered
>regulators in error path
>
>Thanx!
>
>BTW, could you also include the AB3100 as well into this patch? I derived it from
>the AB3100 implementation.
>
>Linus, any comments?
>
>Regards,
>Sundar
>
>>-----Original Message-----
>>From: Axel Lin [mailto:axel.lin@gmail.com]
>>Sent: Saturday, August 14, 2010 7:14 PM
>>To: linux-kernel
>>Cc: Liam Girdwood; Mark Brown; Sundar R IYER
>>Subject: [PATCH] regulator: ab8500 - fix the logic to remove already registered
>>regulators in error path
>>
>>In current implementation, ab8500_regulator_info[0].regulator is not
>>unregistered if the error happen at i > 0.
>>
>>This patch fixes the resource leak and also improves the readability.
>>
>>Signed-off-by: Axel Lin <axel.lin@gmail.com>
>>---
>>I think this change is better ( in readability ) than simply change "while (i > 0)" to
>>"while (i >= 0)".
>>
>> drivers/regulator/ab8500.c | 4 +---
>> 1 files changed, 1 insertions(+), 3 deletions(-)
>>
>>diff --git a/drivers/regulator/ab8500.c b/drivers/regulator/ab8500.c
>>index dc3f1a4..775688e 100644
>>--- a/drivers/regulator/ab8500.c
>>+++ b/drivers/regulator/ab8500.c
>>@@ -368,11 +368,9 @@ static __devinit int ab8500_regulator_probe(struct
>>platform_device *pdev)
>> dev_err(&pdev->dev, "failed to register regulator %s\n",
>> info->desc.name);
>> /* when we fail, un-register all earlier regulators */
>>- i--;
>>- while (i > 0) {
>>+ while (--i >= 0) {
>> info = &ab8500_regulator_info[i];
>> regulator_unregister(info->regulator);
>>- i--;
>> }
>> return err;
>> }
>>--
>>1.7.0.4
>>
>>
ÿôèº{.nÇ+·®+%Ëÿ±éݶ\x17¥wÿº{.nÇ+·¥{±þG«éÿ{ayº\x1dÊÚë,j\a¢f£¢·hïêÿêçz_è®\x03(éÝ¢j"ú\x1a¶^[m§ÿÿ¾\a«þG«éÿ¢¸?¨èÚ&£ø§~á¶iOæ¬z·vØ^\x14\x04\x1a¶^[m§ÿÿÃ\fÿ¶ìÿ¢¸?I¥
^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: [PATCH] regulator: ab8500 - fix the logic to remove already registered regulators in error path
2010-08-14 14:34 ` Sundar R IYER
@ 2010-08-15 12:03 ` Linus Walleij
0 siblings, 0 replies; 6+ messages in thread
From: Linus Walleij @ 2010-08-15 12:03 UTC (permalink / raw)
To: Sundar R IYER; +Cc: Axel Lin, linux-kernel, Liam Girdwood, Mark Brown
2010/8/14 Sundar R IYER <sundar.iyer@stericsson.com>:
> BTW, could you also include the AB3100 as well into this patch? I derived it from
> the AB3100 implementation.
Aha the same thing for AB8500, yeah I confess it is probably my coding
mistake replicated so
Acked-by: Linus Walleij <linus.walleij@stericsson.com>
on this one too then!
Thanks.
Linus Walleij
^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: [PATCH] regulator: ab8500 - fix the logic to remove already registered regulators in error path
2010-08-14 13:44 [PATCH] regulator: ab8500 - fix the logic to remove already registered regulators in error path Axel Lin
2010-08-14 14:34 ` Sundar R IYER
2010-08-14 14:39 ` Sundar R IYER
@ 2010-08-15 13:47 ` Mark Brown
2010-08-18 13:29 ` Liam Girdwood
3 siblings, 0 replies; 6+ messages in thread
From: Mark Brown @ 2010-08-15 13:47 UTC (permalink / raw)
To: Axel Lin; +Cc: linux-kernel, Liam Girdwood, Sundar R Iyer
On Sat, Aug 14, 2010 at 09:44:04PM +0800, Axel Lin wrote:
> In current implementation, ab8500_regulator_info[0].regulator is not
> unregistered if the error happen at i > 0.
>
> This patch fixes the resource leak and also improves the readability.
>
> Signed-off-by: Axel Lin <axel.lin@gmail.com>
Acked-by: Mark Brown <broonie@opensource.wolfsonmicro.com>
^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: [PATCH] regulator: ab8500 - fix the logic to remove already registered regulators in error path
2010-08-14 13:44 [PATCH] regulator: ab8500 - fix the logic to remove already registered regulators in error path Axel Lin
` (2 preceding siblings ...)
2010-08-15 13:47 ` Mark Brown
@ 2010-08-18 13:29 ` Liam Girdwood
3 siblings, 0 replies; 6+ messages in thread
From: Liam Girdwood @ 2010-08-18 13:29 UTC (permalink / raw)
To: Axel Lin; +Cc: linux-kernel, Mark Brown, Sundar R Iyer
On Sat, 2010-08-14 at 21:44 +0800, Axel Lin wrote:
> In current implementation, ab8500_regulator_info[0].regulator is not
> unregistered if the error happen at i > 0.
>
> This patch fixes the resource leak and also improves the readability.
>
> Signed-off-by: Axel Lin <axel.lin@gmail.com>
> ---
> I think this change is better ( in readability ) than simply change "while (i > 0)" to "while (i >= 0)".
>
> drivers/regulator/ab8500.c | 4 +---
> 1 files changed, 1 insertions(+), 3 deletions(-)
>
> diff --git a/drivers/regulator/ab8500.c b/drivers/regulator/ab8500.c
> index dc3f1a4..775688e 100644
> --- a/drivers/regulator/ab8500.c
> +++ b/drivers/regulator/ab8500.c
> @@ -368,11 +368,9 @@ static __devinit int ab8500_regulator_probe(struct platform_device *pdev)
> dev_err(&pdev->dev, "failed to register regulator %s\n",
> info->desc.name);
> /* when we fail, un-register all earlier regulators */
> - i--;
> - while (i > 0) {
> + while (--i >= 0) {
> info = &ab8500_regulator_info[i];
> regulator_unregister(info->regulator);
> - i--;
> }
> return err;
> }
Applied.
Thanks
Liam
--
Freelance Developer, SlimLogic Ltd
ASoC and Voltage Regulator Maintainer.
http://www.slimlogic.co.uk
^ permalink raw reply [flat|nested] 6+ messages in thread
end of thread, other threads:[~2010-08-18 13:29 UTC | newest]
Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2010-08-14 13:44 [PATCH] regulator: ab8500 - fix the logic to remove already registered regulators in error path Axel Lin
2010-08-14 14:34 ` Sundar R IYER
2010-08-15 12:03 ` Linus Walleij
2010-08-14 14:39 ` Sundar R IYER
2010-08-15 13:47 ` Mark Brown
2010-08-18 13:29 ` Liam Girdwood
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox