All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] net: 3c59x: fix leak of iomaps
@ 2010-07-23 16:44 ` Kulikov Vasiliy
  0 siblings, 0 replies; 4+ messages in thread
From: Kulikov Vasiliy @ 2010-07-23 16:44 UTC (permalink / raw)
  To: kernel-janitors
  Cc: Steffen Klassert, David S. Miller, Eric Dumazet, Ben Hutchings,
	Alexey Dobriyan, Joe Perches, netdev

If vortex_probe1() fails we should unmap ioaddr mapped earlier.

Signed-off-by: Kulikov Vasiliy <segooon@gmail.com>
---
 drivers/net/3c59x.c |    1 +
 1 files changed, 1 insertions(+), 0 deletions(-)

diff --git a/drivers/net/3c59x.c b/drivers/net/3c59x.c
index 9b137e1..ebd4c19 100644
--- a/drivers/net/3c59x.c
+++ b/drivers/net/3c59x.c
@@ -1029,6 +1029,7 @@ static int __devinit vortex_init_one(struct pci_dev *pdev,
 	rc = vortex_probe1(&pdev->dev, ioaddr, pdev->irq,
 			   ent->driver_data, unit);
 	if (rc < 0) {
+		pci_iounmap(pdev, ioaddr);
 		pci_disable_device(pdev);
 		goto out;
 	}
-- 
1.7.0.4


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

* [PATCH] net: 3c59x: fix leak of iomaps
@ 2010-07-23 16:44 ` Kulikov Vasiliy
  0 siblings, 0 replies; 4+ messages in thread
From: Kulikov Vasiliy @ 2010-07-23 16:44 UTC (permalink / raw)
  To: kernel-janitors
  Cc: Steffen Klassert, David S. Miller, Eric Dumazet, Ben Hutchings,
	Alexey Dobriyan, Joe Perches, netdev

If vortex_probe1() fails we should unmap ioaddr mapped earlier.

Signed-off-by: Kulikov Vasiliy <segooon@gmail.com>
---
 drivers/net/3c59x.c |    1 +
 1 files changed, 1 insertions(+), 0 deletions(-)

diff --git a/drivers/net/3c59x.c b/drivers/net/3c59x.c
index 9b137e1..ebd4c19 100644
--- a/drivers/net/3c59x.c
+++ b/drivers/net/3c59x.c
@@ -1029,6 +1029,7 @@ static int __devinit vortex_init_one(struct pci_dev *pdev,
 	rc = vortex_probe1(&pdev->dev, ioaddr, pdev->irq,
 			   ent->driver_data, unit);
 	if (rc < 0) {
+		pci_iounmap(pdev, ioaddr);
 		pci_disable_device(pdev);
 		goto out;
 	}
-- 
1.7.0.4


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

* Re: [PATCH] net: 3c59x: fix leak of iomaps
  2010-07-23 16:44 ` Kulikov Vasiliy
@ 2010-07-23 20:06   ` David Miller
  -1 siblings, 0 replies; 4+ messages in thread
From: David Miller @ 2010-07-23 20:06 UTC (permalink / raw)
  To: segooon
  Cc: kernel-janitors, klassert, eric.dumazet, ben, adobriyan, joe, netdev

From: Kulikov Vasiliy <segooon@gmail.com>
Date: Fri, 23 Jul 2010 20:44:44 +0400

> If vortex_probe1() fails we should unmap ioaddr mapped earlier.
> 
> Signed-off-by: Kulikov Vasiliy <segooon@gmail.com>

Applied.  Thanks for following up on this.

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

* Re: [PATCH] net: 3c59x: fix leak of iomaps
@ 2010-07-23 20:06   ` David Miller
  0 siblings, 0 replies; 4+ messages in thread
From: David Miller @ 2010-07-23 20:06 UTC (permalink / raw)
  To: segooon
  Cc: kernel-janitors, klassert, eric.dumazet, ben, adobriyan, joe, netdev

From: Kulikov Vasiliy <segooon@gmail.com>
Date: Fri, 23 Jul 2010 20:44:44 +0400

> If vortex_probe1() fails we should unmap ioaddr mapped earlier.
> 
> Signed-off-by: Kulikov Vasiliy <segooon@gmail.com>

Applied.  Thanks for following up on this.

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

end of thread, other threads:[~2010-07-23 20:06 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2010-07-23 16:44 [PATCH] net: 3c59x: fix leak of iomaps Kulikov Vasiliy
2010-07-23 16:44 ` Kulikov Vasiliy
2010-07-23 20:06 ` David Miller
2010-07-23 20:06   ` David Miller

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.