netdev.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH RFT] 3c59x: fix freeing nonexistent resource on driver unload
@ 2013-05-02 21:10 Sergei Shtylyov
       [not found] ` <CAP8WD_ZYxhjYag3dQSKnbB6JojV=jxZzmn7_kJW_eOzQOWtKTg@mail.gmail.com>
                   ` (2 more replies)
  0 siblings, 3 replies; 7+ messages in thread
From: Sergei Shtylyov @ 2013-05-02 21:10 UTC (permalink / raw)
  To: netdev, klassert, tedheadster

When unloading the driver that drives an EISA board, a message similar to the
following one is displayed:

Trying to free nonexistent resource <0000000000013000-000000000001301f>

Then an user is unable to reload the driver because the resource it requested in
the previous load hasn't been freed. This happens most probably due to a typo in
vortex_eisa_remove() which calls release_region() with 'dev->base_addr'  instead
of 'edev->base_addr'...

Reported-by: Matthew Whitehead <tedheadster@gmail.com>
Signed-off-by: Sergei Shtylyov <sergei.shtylyov@cogentembedded.com>

---
The patch is against David Miller's 'net-next.git' repo.
Matthew, please test it and report on the list.

 drivers/net/ethernet/3com/3c59x.c |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Index: net-next/drivers/net/ethernet/3com/3c59x.c
===================================================================
--- net-next.orig/drivers/net/ethernet/3com/3c59x.c
+++ net-next/drivers/net/ethernet/3com/3c59x.c
@@ -951,7 +951,7 @@ static int vortex_eisa_remove(struct dev
 
 	unregister_netdev(dev);
 	iowrite16(TotalReset|0x14, ioaddr + EL3_CMD);
-	release_region(dev->base_addr, VORTEX_TOTAL_SIZE);
+	release_region(edev->base_addr, VORTEX_TOTAL_SIZE);
 
 	free_netdev(dev);
 	return 0;

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

end of thread, other threads:[~2013-05-06 21:49 UTC | newest]

Thread overview: 7+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2013-05-02 21:10 [PATCH RFT] 3c59x: fix freeing nonexistent resource on driver unload Sergei Shtylyov
     [not found] ` <CAP8WD_ZYxhjYag3dQSKnbB6JojV=jxZzmn7_kJW_eOzQOWtKTg@mail.gmail.com>
2013-05-04 18:12   ` Sergei Shtylyov
2013-05-04 22:07 ` Sergei Shtylyov
2013-05-06 16:22 ` David Miller
2013-05-06 20:45   ` Sergei Shtylyov
2013-05-06 20:50     ` David Miller
2013-05-06 21:49       ` Sergei Shtylyov

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).