* [PATCH] misc: Fix irq leak in max8997_muic_probe error path
@ 2011-12-18 2:03 Axel Lin
0 siblings, 0 replies; 2+ messages in thread
From: Axel Lin @ 2011-12-18 2:03 UTC (permalink / raw)
To: linux-kernel
Cc: Donggeun Kim, MyungJoo Ham, Kyungmin Park, Arnd Bergmann,
Greg Kroah-Hartman
Current code does not properly free allocated irqs if request_threaded_irq
returns error, fix it.
Signed-off-by: Axel Lin <axel.lin@gmail.com>
---
drivers/misc/max8997-muic.c | 6 ++----
1 files changed, 2 insertions(+), 4 deletions(-)
diff --git a/drivers/misc/max8997-muic.c b/drivers/misc/max8997-muic.c
index 74a9448..409b7fc 100644
--- a/drivers/misc/max8997-muic.c
+++ b/drivers/misc/max8997-muic.c
@@ -566,10 +566,6 @@ static int __devinit max8997_muic_probe(struct platform_device *pdev)
"failed: irq request (IRQ: %d,"
" error :%d)\n",
muic_irq->irq, ret);
-
- for (i = i - 1; i >= 0; i--)
- free_irq(muic_irq->irq, info);
-
goto err_irq;
}
}
@@ -583,6 +579,8 @@ static int __devinit max8997_muic_probe(struct platform_device *pdev)
return ret;
err_irq:
+ while (--i >= 0)
+ free_irq(pdata->irq_base + muic_irqs[i].irq, info);
sysfs_remove_group(&pdev->dev.kobj, &max8997_muic_group);
err_sysfs:
err_pdata:
--
1.7.5.4
^ permalink raw reply related [flat|nested] 2+ messages in thread
* Re: [PATCH] misc: Fix irq leak in max8997_muic_probe error path
@ 2011-12-19 2:29 함명주
0 siblings, 0 replies; 2+ messages in thread
From: 함명주 @ 2011-12-19 2:29 UTC (permalink / raw)
To: Axel Lin, linux-kernel@vger.kernel.org
Cc: 김동근, 박경민, Arnd Bergmann,
Greg Kroah-Hartman
[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #1: Type: text/plain; charset=euc-kr, Size: 1284 bytes --]
> Current code does not properly free allocated irqs if request_threaded_irq
> returns error, fix it.
>
> Signed-off-by: Axel Lin <axel.lin@gmail.com>
Thanks for pointing that out.
Acked-by: MyungJoo Ham <myungjoo.ham@samsung.com>
> ---
> drivers/misc/max8997-muic.c | 6 ++----
> 1 files changed, 2 insertions(+), 4 deletions(-)
>
> diff --git a/drivers/misc/max8997-muic.c b/drivers/misc/max8997-muic.c
> index 74a9448..409b7fc 100644
> --- a/drivers/misc/max8997-muic.c
> +++ b/drivers/misc/max8997-muic.c
> @@ -566,10 +566,6 @@ static int __devinit max8997_muic_probe(struct platform_device *pdev)
> "failed: irq request (IRQ: %d,"
> " error :%d)\n",
> muic_irq->irq, ret);
> -
> - for (i = i - 1; i >= 0; i--)
> - free_irq(muic_irq->irq, info);
> -
> goto err_irq;
> }
> }
> @@ -583,6 +579,8 @@ static int __devinit max8997_muic_probe(struct platform_device *pdev)
> return ret;
>
> err_irq:
> + while (--i >= 0)
> + free_irq(pdata->irq_base + muic_irqs[i].irq, info);
> sysfs_remove_group(&pdev->dev.kobj, &max8997_muic_group);
> err_sysfs:
> err_pdata:
> --
> 1.7.5.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] 2+ messages in thread
end of thread, other threads:[~2011-12-19 2:29 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2011-12-18 2:03 [PATCH] misc: Fix irq leak in max8997_muic_probe error path Axel Lin
-- strict thread matches above, loose matches on Subject: below --
2011-12-19 2:29 함명주
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox