[<prev] [next>] [thread-next>] [day] [month] [year] [list]
Message-ID: <49A81565.3030004@gmail.com>
Date: Fri, 27 Feb 2009 17:31:33 +0100
From: Roel Kluin <roel.kluin@...il.com>
To: linux-net-drivers@...arflare.com
CC: netdev@...r.kernel.org, "David S. Miller" <davem@...emloft.net>,
Andrew Morton <akpm@...ux-foundation.org>
Subject: [PATCH] sfc: mdio_clause45_read errors go unnoticed
This patch was not tested in any way, but:
since commit 27dd2caca4eabe7c13a052b7456495ba75535e6a
------------------------------>8-------------8<---------------------------------
mdio_clause45_read may return -ERR, but since 'devices' is unsigned, this is not
noticed.
Signed-off-by: Roel Kluin <roel.kluin@...il.com>
---
diff --git a/drivers/net/sfc/mdio_10g.c b/drivers/net/sfc/mdio_10g.c
index f9e2f95..bcb5ddc 100644
--- a/drivers/net/sfc/mdio_10g.c
+++ b/drivers/net/sfc/mdio_10g.c
@@ -126,23 +126,29 @@ int mdio_clause45_check_mmds(struct efx_nic *efx,
unsigned int mmd_mask, unsigned int fatal_mask)
{
u32 devices;
- int mmd = 0, probe_mmd;
+ int ret, mmd = 0, probe_mmd;
/* Historically we have probed the PHYXS to find out what devices are
* present,but that doesn't work so well if the PHYXS isn't expected
* to exist, if so just find the first item in the list supplied. */
probe_mmd = (mmd_mask & MDIO_MMDREG_DEVS_PHYXS) ? MDIO_MMD_PHYXS :
__ffs(mmd_mask);
- devices = (mdio_clause45_read(efx, efx->mii.phy_id,
- probe_mmd, MDIO_MMDREG_DEVS0) |
- mdio_clause45_read(efx, efx->mii.phy_id,
- probe_mmd, MDIO_MMDREG_DEVS1) << 16);
- /* Check all the expected MMDs are present */
- if (devices < 0) {
+ ret = mdio_clause45_read(efx, efx->mii.phy_id, probe_mmd,
+ MDIO_MMDREG_DEVS0);
+ if (ret >= 0) {
+ devices = ret;
+ ret = mdio_clause45_read(efx, efx->mii.phy_id, probe_mmd,
+ MDIO_MMDREG_DEVS1);
+ }
+
+ /* Check all the expected MMDs were present */
+ if (ret < 0) {
EFX_ERR(efx, "failed to read devices present\n");
return -EIO;
}
+ devices |= ret << 16;
+
if ((devices & mmd_mask) != mmd_mask) {
EFX_ERR(efx, "required MMDs not present: got %x, "
"wanted %x\n", devices, mmd_mask);
--
To unsubscribe from this list: send the line "unsubscribe netdev" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Powered by blists - more mailing lists