netdev.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] Bogus return status in drivers/net/tg3.c
@ 2003-12-19 22:32 Francois Romieu
  2003-12-20  0:17 ` [PATCH] Bogus return status in drivers/net/amd8111e.c Francois Romieu
  2003-12-20  5:44 ` [PATCH] Bogus return status in drivers/net/tg3.c David S. Miller
  0 siblings, 2 replies; 7+ messages in thread
From: Francois Romieu @ 2003-12-19 22:32 UTC (permalink / raw)
  To: netdev; +Cc: davem, Jeff Garzik

Apply on top of 2.6.0 + Jeff Garzik's 2.6.0-test11-bk5-netdrvr-exp2


The status variable is not set before branching to the error path.


 drivers/net/tg3.c |    7 +++++--
 1 files changed, 5 insertions(+), 2 deletions(-)

diff -puN drivers/net/tg3.c~trivial-tg3-fscked-return-status drivers/net/tg3.c
--- linux-2.6.0-vanilla/drivers/net/tg3.c~trivial-tg3-fscked-return-status	2003-12-19 23:21:55.000000000 +0100
+++ linux-2.6.0-vanilla-fr/drivers/net/tg3.c	2003-12-19 23:24:10.000000000 +0100
@@ -7533,13 +7533,16 @@ static int __devinit tg3_init_one(struct
 	if (pm_cap == 0) {
 		printk(KERN_ERR PFX "Cannot find PowerManagement capability, "
 		       "aborting.\n");
+		err = -EIO;
 		goto err_out_free_res;
 	}
 
 	/* Configure DMA attributes. */
-	if (!pci_set_dma_mask(pdev, 0xffffffffffffffffULL)) {
+	err = pci_set_dma_mask(pdev, 0xffffffffffffffffULL);
+	if (!err) {
 		pci_using_dac = 1;
-		if (pci_set_consistent_dma_mask(pdev, 0xffffffffffffffffULL)) {
+		err = pci_set_consistent_dma_mask(pdev, 0xffffffffffffffffULL);
+		if (err < 0) {
 			printk(KERN_ERR PFX "Unable to obtain 64 bit DMA "
 			       "for consistent allocations\n");
 			goto err_out_free_res;

_

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

end of thread, other threads:[~2003-12-20  5:54 UTC | newest]

Thread overview: 7+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2003-12-19 22:32 [PATCH] Bogus return status in drivers/net/tg3.c Francois Romieu
2003-12-20  0:17 ` [PATCH] Bogus return status in drivers/net/amd8111e.c Francois Romieu
2003-12-20  0:43   ` [PATCH] 2.6.0 - r8169 64 bit Francois Romieu
2003-12-20  1:09     ` Francois Romieu
2003-12-20  5:44 ` [PATCH] Bogus return status in drivers/net/tg3.c David S. Miller
2003-12-20  5:49   ` Jeff Garzik
2003-12-20  5:54     ` David S. Miller

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