linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH 1/9] cxgb3 - fix MSI-X failure path
@ 2007-11-16 19:21 Divy Le Ray
  2007-11-24  3:00 ` Jeff Garzik
  0 siblings, 1 reply; 2+ messages in thread
From: Divy Le Ray @ 2007-11-16 19:21 UTC (permalink / raw)
  To: jeff; +Cc: davem, netdev, linux-kernel, swise, wenxiong

From: Divy Le Ray <divy@chelsio.com>

Return error code when msi-x settings fail.

Signed-off-by: Divy Le Ray <divy@chelsio.com>
---

 drivers/net/cxgb3/cxgb3_main.c |    3 ++-
 1 files changed, 2 insertions(+), 1 deletions(-)

diff --git a/drivers/net/cxgb3/cxgb3_main.c b/drivers/net/cxgb3/cxgb3_main.c
index 61ffc92..bb0d1c8 100644
--- a/drivers/net/cxgb3/cxgb3_main.c
+++ b/drivers/net/cxgb3/cxgb3_main.c
@@ -839,7 +839,8 @@ static int cxgb_up(struct adapter *adap)
 		if (err)
 			goto irq_err;
 
-		if (request_msix_data_irqs(adap)) {
+		err = request_msix_data_irqs(adap);
+		if (err) {
 			free_irq(adap->msix_info[0].vec, adap);
 			goto irq_err;
 		}

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

* Re: [PATCH 1/9] cxgb3 - fix MSI-X failure path
  2007-11-16 19:21 [PATCH 1/9] cxgb3 - fix MSI-X failure path Divy Le Ray
@ 2007-11-24  3:00 ` Jeff Garzik
  0 siblings, 0 replies; 2+ messages in thread
From: Jeff Garzik @ 2007-11-24  3:00 UTC (permalink / raw)
  To: Divy Le Ray; +Cc: davem, netdev, linux-kernel, swise, wenxiong

Divy Le Ray wrote:
> From: Divy Le Ray <divy@chelsio.com>
> 
> Return error code when msi-x settings fail.
> 
> Signed-off-by: Divy Le Ray <divy@chelsio.com>
> ---
> 
>  drivers/net/cxgb3/cxgb3_main.c |    3 ++-
>  1 files changed, 2 insertions(+), 1 deletions(-)

applied 1-9 to #upstream, then trimmed all trailing whitespace



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

end of thread, other threads:[~2007-11-24  3:00 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2007-11-16 19:21 [PATCH 1/9] cxgb3 - fix MSI-X failure path Divy Le Ray
2007-11-24  3:00 ` Jeff Garzik

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).