lists.openwall.net   lists  /  announce  owl-users  owl-dev  john-users  john-dev  passwdqc-users  yescrypt  popa3d-users  /  oss-security  kernel-hardening  musl  sabotage  tlsify  passwords  /  crypt-dev  xvendor  /  Bugtraq  Full-Disclosure  linux-kernel  linux-netdev  linux-ext4  linux-hardening  linux-cve-announce  PHC 
Open Source and information security mailing list archives
 
Hash Suite: Windows password security audit tool. GUI, reports in PDF.
[<prev] [next>] [day] [month] [year] [list]
Date:   Thu, 7 Nov 2019 21:24:55 +0100
From:   Markus Elfring <Markus.Elfring@....de>
To:     netdev@...r.kernel.org, "David S. Miller" <davem@...emloft.net>,
        Igor Russkikh <igor.russkikh@...antia.com>
Cc:     LKML <linux-kernel@...r.kernel.org>,
        kernel-janitors@...r.kernel.org
Subject: [PATCH] net: aquantia: Use common error handling code in
 aq_pci_probe()

From: Markus Elfring <elfring@...rs.sourceforge.net>
Date: Thu, 7 Nov 2019 21:17:40 +0100

Move the same error code assignments so that such exception handling
can be better reused at the end of this function.

This issue was detected by using the Coccinelle software.

Signed-off-by: Markus Elfring <elfring@...rs.sourceforge.net>
---
 .../ethernet/aquantia/atlantic/aq_pci_func.c  | 29 +++++++++----------
 1 file changed, 13 insertions(+), 16 deletions(-)

diff --git a/drivers/net/ethernet/aquantia/atlantic/aq_pci_func.c b/drivers/net/ethernet/aquantia/atlantic/aq_pci_func.c
index e82c96b50373..be0c018d0074 100644
--- a/drivers/net/ethernet/aquantia/atlantic/aq_pci_func.c
+++ b/drivers/net/ethernet/aquantia/atlantic/aq_pci_func.c
@@ -241,30 +241,23 @@ static int aq_pci_probe(struct pci_dev *pdev,
 			resource_size_t reg_sz;

 			mmio_pa = pci_resource_start(pdev, bar);
-			if (mmio_pa == 0U) {
-				err = -EIO;
-				goto err_free_aq_hw;
-			}
+			if (mmio_pa == 0U)
+				goto e_io;

 			reg_sz = pci_resource_len(pdev, bar);
-			if ((reg_sz <= 24 /*ATL_REGS_SIZE*/)) {
-				err = -EIO;
-				goto err_free_aq_hw;
-			}
+			if (reg_sz <= 24 /* ATL_REGS_SIZE */)
+				goto e_io;

 			self->aq_hw->mmio = ioremap_nocache(mmio_pa, reg_sz);
-			if (!self->aq_hw->mmio) {
-				err = -EIO;
-				goto err_free_aq_hw;
-			}
+			if (!self->aq_hw->mmio)
+				goto e_io;
+
 			break;
 		}
 	}

-	if (bar == 4) {
-		err = -EIO;
-		goto err_free_aq_hw;
-	}
+	if (bar == 4)
+		goto e_io;

 	numvecs = min((u8)AQ_CFG_VECS_DEF,
 		      aq_nic_get_cfg(self)->aq_hw_caps->msix_irqs);
@@ -312,6 +305,10 @@ static int aq_pci_probe(struct pci_dev *pdev,
 err_pci_func:
 	pci_disable_device(pdev);
 	return err;
+
+e_io:
+	err = -EIO;
+	goto err_free_aq_hw;
 }

 static void aq_pci_remove(struct pci_dev *pdev)
--
2.24.0

Powered by blists - more mailing lists

Powered by Openwall GNU/*/Linux Powered by OpenVZ