From: Pete Popov <ppopov@mvista.com>
To: joeg@clearcore.com
Cc: Linux MIPS mailing list <linux-mips@linux-mips.org>,
Ralf Baechle <ralf@linux-mips.org>
Subject: Re: [PATCH] au1000_eth.c - Dave Jones
Date: 24 Jun 2003 17:24:13 -0700 [thread overview]
Message-ID: <1056500652.10455.312.camel@zeus.mvista.com> (raw)
In-Reply-To: <20030614052652.8161.qmail@clearcore.com>
I'm behind a few patches. I'll take care of it.
Pete
On Fri, 2003-06-13 at 22:26, Joe George wrote:
> This patch was submitted on lkml by Dave Jones and reviewed
> by Jeff Garzik. Description:
>
> - Missing release region
> - Unneeded initialization of private struct
> (already done in init_etherdev)
> - Remove unneeded freeing of dev-priv
> (auto-free'd by kfree(dev)
> - actually kfree(dev), plugging leak.
>
> Joe
>
>
> diff -upN linux-mips-cvs24/drivers/net/au1000_eth.c tst_mips24/drivers/net/au1000_eth.c
> --- linux-mips-cvs24/drivers/net/au1000_eth.c Fri Jun 13 20:15:18 2003
> +++ tst_mips24/drivers/net/au1000_eth.c Fri Jun 13 22:19:09 2003
> @@ -1110,38 +1110,21 @@ au1000_probe1(struct net_device *dev, lo
> char *pmac, *argptr;
> char ethaddr[6];
>
> - if (!request_region(PHYSADDR(ioaddr), MAC_IOSIZE, "Au1x00 ENET")) {
> + if (!request_region(PHYSADDR(ioaddr), MAC_IOSIZE, "Au1x00 ENET"))
> return -ENODEV;
> - }
>
> if (version_printed++ == 0) printk(version);
>
> if (!dev) {
> - dev = init_etherdev(0, sizeof(struct au1000_private));
> - }
> - if (!dev) {
> - printk (KERN_ERR "au1000 eth: init_etherdev failed\n");
> - return -ENODEV;
> + dev = init_etherdev(NULL, sizeof(struct au1000_private));
> + printk (KERN_ERR "au1000 eth: init_etherdev failed\n");
> + release_region(ioaddr, MAC_IOSIZE);
> + return -ENODEV;
> }
>
> printk("%s: Au1xxx ethernet found at 0x%lx, irq %d\n",
> dev->name, ioaddr, irq);
>
> - /* Initialize our private structure */
> - if (dev->priv == NULL) {
> - aup = (struct au1000_private *)
> - kmalloc(sizeof(*aup), GFP_KERNEL);
> - if (aup == NULL) {
> - retval = -ENOMEM;
> - goto free_region;
> - }
> - dev->priv = aup;
> - }
> -
> - aup = dev->priv;
> - memset(aup, 0, sizeof(*aup));
> -
> -
> /* Allocate the data buffers */
> aup->vaddr = (u32)dma_alloc(MAX_BUF_SIZE *
> (NUM_TX_BUFFS+NUM_RX_BUFFS), &aup->dma_addr);
> @@ -1280,8 +1263,6 @@ free_region:
> if (aup->vaddr)
> dma_free((void *)aup->vaddr,
> MAX_BUF_SIZE * (NUM_TX_BUFFS+NUM_RX_BUFFS));
> - if (dev->priv != NULL)
> - kfree(dev->priv);
> kfree(aup->mii);
> kfree(dev);
> printk(KERN_ERR "%s: au1000_probe1 failed. Returns %d\n",
> @@ -1450,15 +1431,15 @@ static int au1000_close(struct net_devic
> spin_lock_irqsave(&aup->lock, flags);
>
> /* stop the device */
> - if (netif_device_present(dev)) {
> + if (netif_device_present(dev))
> netif_stop_queue(dev);
> - }
>
> /* disable the interrupt */
> free_irq(dev->irq, dev);
> spin_unlock_irqrestore(&aup->lock, flags);
>
> reset_mac(dev);
> + kfree(dev);
> MOD_DEC_USE_COUNT;
> return 0;
> }
>
>
next prev parent reply other threads:[~2003-06-25 0:23 UTC|newest]
Thread overview: 3+ messages / expand[flat|nested] mbox.gz Atom feed top
2003-06-14 5:26 [PATCH] au1000_eth.c - Dave Jones Joe George
2003-06-25 0:24 ` Pete Popov [this message]
2003-06-29 2:02 ` Pete Popov
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=1056500652.10455.312.camel@zeus.mvista.com \
--to=ppopov@mvista.com \
--cc=joeg@clearcore.com \
--cc=linux-mips@linux-mips.org \
--cc=ralf@linux-mips.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox