[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-ID: <20111001193650.GA14434@electric-eye.fr.zoreil.com>
Date: Sat, 1 Oct 2011 21:36:50 +0200
From: Francois Romieu <romieu@...zoreil.com>
To: Mark Einon <mark.einon@...il.com>
Cc: "Rafael J. Wysocki" <rjw@...k.pl>, gregkh@...e.de,
devel@...verdev.osuosl.org, linux-kernel@...r.kernel.org,
o.hartmann@...ovital.com, alan@...ux.intel.com
Subject: Re: [PATCH 4/8] staging: et131x: Add pci suspend & resume functions
Mark Einon <mark.einon@...il.com> :
> On 1 October 2011 12:03, Francois Romieu <romieu@...zoreil.com> wrote:
[...]
> >> + ? ? err = et131x_open(netdev);
> >> + ? ? if (err) {
> >> + ? ? ? ? ? ? dev_err(&pdev->dev, "Can't resume interface!\n");
> >> + ? ? ? ? ? ? goto out;
> >> + ? ? }
> >
> > You can/should split et131x_{open/close} to remove this failure point.
>
> Hi, thanks for the comments francois,
> I'm not quite sure what you mean here. Can you expand on your comment please?
Something like:
int et131x_open(struct net_device *netdev)
{
add_timer(...)
err = request_irq(...)
if (err < 0)
goto release_timer;
et131x_start(...)
out:
return err;
release_timer:
blah;
goto out;
}
Same thing with et131x_close / et131x_stop. You only use et131x_{start/stop}
for suspend/resume : one error path is gone away.
--
Ueimor
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/
Powered by blists - more mailing lists