From: Francois Romieu <romieu@fr.zoreil.com>
To: chas williams <chas@locutus.cmf.nrl.navy.mil>
Cc: davem@redhat.com, linux-kernel@vger.kernel.org
Subject: [ATM] [PATCH] unbalanced exit path in Forerunner HE he_init_one()
Date: Thu, 8 May 2003 01:01:46 +0200 [thread overview]
Message-ID: <20030508010146.A20715@electric-eye.fr.zoreil.com> (raw)
In-Reply-To: <200305071813.h47IDpc9010906@hera.kernel.org>; from linux-kernel@vger.kernel.org on Wed, May 07, 2003 at 08:47:45AM +0000
- pci_enable_device() isn't balanced on error path;
- result of atm_dev_register() is lost if he_dev allocation fails.
drivers/atm/he.c | 40 +++++++++++++++++++++++++++++-----------
1 files changed, 29 insertions(+), 11 deletions(-)
diff -puN drivers/atm/he.c~drivers-atm-he-chas drivers/atm/he.c
--- linux-2.5.69-1.1042.92.10-to-1.1097/drivers/atm/he.c~drivers-atm-he-chas Thu May 8 00:59:44 2003
+++ linux-2.5.69-1.1042.92.10-to-1.1097-fr/drivers/atm/he.c Thu May 8 00:59:44 2003
@@ -354,29 +354,36 @@ he_init_one(struct pci_dev *pci_dev, con
{
struct atm_dev *atm_dev;
struct he_dev *he_dev;
+ int ret = -EIO;
printk(KERN_INFO "he: %s\n", version);
#if LINUX_VERSION_CODE > KERNEL_VERSION(2,3,43)
- if (pci_enable_device(pci_dev)) return -EIO;
+ if (pci_enable_device(pci_dev))
+ goto out;
#endif
if (pci_set_dma_mask(pci_dev, HE_DMA_MASK) != 0)
{
printk(KERN_WARNING "he: no suitable dma available\n");
- return -EIO;
+ goto out_disable;
}
atm_dev = atm_dev_register(DEV_LABEL, &he_ops, -1, 0);
- if (!atm_dev) return -ENODEV;
+ if (!atm_dev) {
+ ret = -ENODEV;
+ goto out_disable;
+ }
#if LINUX_VERSION_CODE > KERNEL_VERSION(2,4,3)
pci_set_drvdata(pci_dev, atm_dev);
#else
pci_dev->driver_data = atm_dev;
#endif
- he_dev = (struct he_dev *) kmalloc(sizeof(struct he_dev),
- GFP_KERNEL);
- if (!he_dev) return -ENOMEM;
+ he_dev = (struct he_dev *) kmalloc(sizeof(*he_dev), GFP_KERNEL);
+ if (!he_dev) {
+ ret = -ENOMEM;
+ goto out_deregister;
+ }
memset(he_dev, 0, sizeof(struct he_dev));
he_dev->pci_dev = pci_dev;
@@ -385,16 +392,27 @@ he_init_one(struct pci_dev *pci_dev, con
HE_DEV(atm_dev) = he_dev;
he_dev->number = atm_dev->number; /* was devs */
if (he_start(atm_dev)) {
- atm_dev_deregister(atm_dev);
- he_stop(he_dev);
- kfree(he_dev);
- return -ENODEV;
+ ret = -ENODEV;
+ goto out_stop;
}
he_dev->next = NULL;
if (he_devs) he_dev->next = he_devs;
he_devs = he_dev;
- return 0;
+ ret = 0;
+out:
+ return ret;
+
+out_stop:
+ he_stop(he_dev);
+ kfree(he_dev);
+out_deregister:
+ atm_dev_deregister(atm_dev);
+out_disable:
+#if LINUX_VERSION_CODE > KERNEL_VERSION(2,3,43)
+ pci_disable_device(pci_dev);
+#endif
+ goto out;
}
static void __devexit
next parent reply other threads:[~2003-05-07 22:59 UTC|newest]
Thread overview: 23+ messages / expand[flat|nested] mbox.gz Atom feed top
[not found] <200305071813.h47IDpc9010906@hera.kernel.org>
2003-05-07 23:01 ` Francois Romieu [this message]
2003-05-08 5:06 ` Christoph Hellwig
2003-05-08 10:08 ` Francois Romieu
2003-05-08 10:54 ` David S. Miller
2003-05-08 22:47 ` Werner Almesberger
2003-05-09 0:58 ` chas williams
2003-05-09 1:23 ` David S. Miller
2003-05-09 22:02 ` [ATM] [UPDATE] " Francois Romieu
2003-05-09 23:38 ` [ATM] [UPDATE] unbalanced exit path in Forerunner HE he_init_one() (and an iphase patch too!) chas williams
2003-05-10 5:20 ` Christoph Hellwig
2003-05-10 13:52 ` chas williams
2003-05-10 14:02 ` David S. Miller
2003-05-10 15:18 ` chas williams
2003-05-10 15:25 ` David S. Miller
2003-05-10 14:43 ` Christoph Hellwig
2003-05-10 16:12 ` Greg KH
2003-05-10 19:39 ` [USB] [PATCH] Crud-- (was: Re: [ATM] [UPDATE] unbalanced usw) Francois Romieu
2003-05-10 21:01 ` Francois Romieu
2003-05-10 23:04 ` Francois Romieu
2003-05-13 20:10 ` Greg KH
2003-05-10 10:54 ` [ATM] [UPDATE] unbalanced exit path in Forerunner HE he_init_one() (and an iphase patch too!) Francois Romieu
2003-05-08 12:20 ` [ATM] [PATCH] unbalanced exit path in Forerunner HE he_init_one() chas williams
2003-05-08 13:18 ` Francois Romieu
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=20030508010146.A20715@electric-eye.fr.zoreil.com \
--to=romieu@fr.zoreil.com \
--cc=chas@locutus.cmf.nrl.navy.mil \
--cc=davem@redhat.com \
--cc=linux-kernel@vger.kernel.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
all inboxes | Powered by JetHome®