From: Jeff Garzik <jgarzik@pobox.com>
To: Wang Chen <wangchen@cn.fujitsu.com>
Cc: "David S. Miller" <davem@davemloft.net>,
NETDEV <netdev@vger.kernel.org>,
akpm@linux-foundation.org
Subject: Re: [Fwd: [PATCH 1/2] CS89X0: Add cleanup for dma after fail]
Date: Fri, 30 May 2008 22:12:57 -0400 [thread overview]
Message-ID: <4840B429.60506@pobox.com> (raw)
In-Reply-To: <483F721F.1090204@cn.fujitsu.com>
Wang Chen wrote:
> Jeff, will you pick up this one?
> I also cc Andrew, because his name is in the code.
>
> From: Wang Chen <wangchen@cn.fujitsu.com>
>
> After request_dma() succeeding, any error path should do free_dma().
>
> Signed-off-by: Wang Chen <wangchen@cn.fujitsu.com>
> ---
> drivers/net/cs89x0.c | 10 +++++++---
> 1 files changed, 7 insertions(+), 3 deletions(-)
>
> diff --git a/drivers/net/cs89x0.c b/drivers/net/cs89x0.c
> index 348371f..fba87ab 100644
> --- a/drivers/net/cs89x0.c
> +++ b/drivers/net/cs89x0.c
> @@ -1394,7 +1394,11 @@ net_open(struct net_device *dev)
> #endif
> if (!result) {
> printk(KERN_ERR "%s: EEPROM is configured for unavailable media\n", dev->name);
> - release_irq:
> +release_dma:
> +#if ALLOW_DMA
> + free_dma(dev->dma);
> +#endif
> +release_irq:
> #if ALLOW_DMA
> release_dma_buff(lp);
> #endif
> @@ -1442,12 +1446,12 @@ net_open(struct net_device *dev)
> if ((result = detect_bnc(dev)) != DETECTED_NONE)
> break;
> printk(KERN_ERR "%s: no media detected\n", dev->name);
> - goto release_irq;
> + goto release_dma;
> }
applied
prev parent reply other threads:[~2008-05-31 2:13 UTC|newest]
Thread overview: 2+ messages / expand[flat|nested] mbox.gz Atom feed top
2008-05-30 3:18 [Fwd: [PATCH 1/2] CS89X0: Add cleanup for dma after fail] Wang Chen
2008-05-31 2:12 ` Jeff Garzik [this message]
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=4840B429.60506@pobox.com \
--to=jgarzik@pobox.com \
--cc=akpm@linux-foundation.org \
--cc=davem@davemloft.net \
--cc=netdev@vger.kernel.org \
--cc=wangchen@cn.fujitsu.com \
/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;
as well as URLs for NNTP newsgroup(s).